diff --git a/frappe/__init__.py b/frappe/__init__.py index d9188a6c80..7fa302f763 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -12,9 +12,9 @@ import os, sys, importlib, inspect, json # public from .exceptions import * -from .utils.jinja import get_jenv, get_template, render_template +from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template -__version__ = '8.3.10' +__version__ = '8.4.0' __title__ = "Frappe Framework" local = Local() @@ -380,7 +380,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message attachments=None, content=None, doctype=None, name=None, reply_to=None, cc=[], message_id=None, in_reply_to=None, send_after=None, expose_recipients=None, send_priority=1, communication=None, retry=1, now=None, read_receipt=None, is_notification=False, - inline_images=None): + inline_images=None, template=None, args=None): """Send email using user's default **Email Account** or global default **Email Account**. @@ -403,7 +403,14 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message :param expose_recipients: Display all recipients in the footer message - "This email was sent to" :param communication: Communication link to be set in Email Queue record :param inline_images: List of inline images as {"filename", "filecontent"}. All src properties will be replaced with random Content-Id + :param template: Name of html template from templates/emails folder + :param args: Arguments for rendering the template """ + + text_content = None + if template: + message, text_content = get_email_from_template(template, args) + message = content or message if as_markdown: @@ -415,7 +422,7 @@ def sendmail(recipients=[], sender="", subject="No Subject", message="No Message import email.queue email.queue.send(recipients=recipients, sender=sender, - subject=subject, message=message, + subject=subject, message=message, text_content=text_content, reference_doctype = doctype or reference_doctype, reference_name = name or reference_name, unsubscribe_method=unsubscribe_method, unsubscribe_params=unsubscribe_params, unsubscribe_message=unsubscribe_message, attachments=attachments, reply_to=reply_to, cc=cc, message_id=message_id, in_reply_to=in_reply_to, diff --git a/frappe/contacts/doctype/address/address.py b/frappe/contacts/doctype/address/address.py index 4446805952..5455e77468 100644 --- a/frappe/contacts/doctype/address/address.py +++ b/frappe/contacts/doctype/address/address.py @@ -185,6 +185,13 @@ def get_shipping_address(company): address_as_dict = address[0] name, address_template = get_address_templates(address_as_dict) return address_as_dict.get("name"), frappe.render_template(address_template, address_as_dict) + +def get_company_address(company): + ret = frappe._dict() + ret.company_address = get_default_address('Company', company) + ret.company_address_display = get_address_display(ret.company_address) + + return ret def address_query(doctype, txt, searchfield, start, page_len, filters): from frappe.desk.reportview import get_match_cond diff --git a/frappe/core/doctype/docfield/docfield.json b/frappe/core/doctype/docfield/docfield.json index 5f686e7ac9..dc435fe4f7 100644 --- a/frappe/core/doctype/docfield/docfield.json +++ b/frappe/core/doctype/docfield/docfield.json @@ -11,8 +11,10 @@ "doctype": "DocType", "document_type": "Setup", "editable_grid": 1, + "engine": "InnoDB", "fields": [ { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -41,6 +43,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 1, "collapsible": 0, @@ -73,6 +76,7 @@ "width": "163" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 1, "collapsible": 0, @@ -92,7 +96,7 @@ "no_copy": 0, "oldfieldname": "fieldtype", "oldfieldtype": "Select", - "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nFold\nHeading\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSmall Text\nTable\nText\nText Editor\nTime\nSignature", + "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColor\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nFold\nHeading\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSmall Text\nTable\nText\nText Editor\nTime\nSignature", "permlevel": 0, "print_hide": 0, "print_hide_if_no_value": 0, @@ -105,6 +109,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 1, "collapsible": 0, @@ -135,6 +140,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -167,6 +173,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -198,6 +205,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -228,6 +236,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -260,6 +269,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -290,6 +300,7 @@ "width": "70px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -319,6 +330,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -349,6 +361,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -378,6 +391,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -408,6 +422,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -438,6 +453,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -465,6 +481,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -496,6 +513,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -526,6 +544,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -554,6 +573,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -584,6 +604,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -616,6 +637,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -646,6 +668,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -675,6 +698,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -704,6 +728,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -734,6 +759,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -761,6 +787,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -794,6 +821,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -823,6 +851,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -855,6 +884,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -887,6 +917,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -917,6 +948,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -947,6 +979,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -975,6 +1008,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1007,6 +1041,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1039,6 +1074,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1071,6 +1107,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1101,6 +1138,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1129,6 +1167,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1161,6 +1200,7 @@ "width": "50px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1192,6 +1232,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1219,6 +1260,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1251,6 +1293,7 @@ "width": "300px" }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1280,6 +1323,7 @@ "unique": 0 }, { + "allow_bulk_edit": 0, "allow_on_submit": 0, "bold": 0, "collapsible": 0, @@ -1319,7 +1363,7 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2017-04-21 16:56:04.023296", + "modified": "2017-07-06 12:36:21.248293", "modified_by": "Administrator", "module": "Core", "name": "DocField", diff --git a/frappe/core/doctype/doctype/doctype.py b/frappe/core/doctype/doctype/doctype.py index 465dacf63f..f4563876ed 100644 --- a/frappe/core/doctype/doctype/doctype.py +++ b/frappe/core/doctype/doctype/doctype.py @@ -773,8 +773,7 @@ def init_list(doctype): def check_if_fieldname_conflicts_with_methods(doctype, fieldname): doc = frappe.get_doc({"doctype": doctype}) - method_list = [method for method in dir(doc) if callable(getattr(doc, method))] + method_list = [method for method in dir(doc) if isinstance(method, str) and callable(getattr(doc, method))] if fieldname in method_list: frappe.throw(_("Fieldname {0} conflicting with meta object").format(fieldname)) - diff --git a/frappe/custom/doctype/custom_field/custom_field.json b/frappe/custom/doctype/custom_field/custom_field.json index 1d74bbd87c..a4bec7ec1f 100644 --- a/frappe/custom/doctype/custom_field/custom_field.json +++ b/frappe/custom/doctype/custom_field/custom_field.json @@ -11,6 +11,7 @@ "doctype": "DocType", "document_type": "Setup", "editable_grid": 0, + "engine": "InnoDB", "fields": [ { "allow_bulk_edit": 0, @@ -219,7 +220,7 @@ "no_copy": 0, "oldfieldname": "fieldtype", "oldfieldtype": "Select", - "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSmall Text\nTable\nText\nText Editor\nTime\nSignature", + "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColor\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSmall Text\nTable\nText\nText Editor\nTime\nSignature", "permlevel": 0, "print_hide": 0, "print_hide_if_no_value": 0, @@ -1160,7 +1161,7 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2017-06-13 09:52:49.692096", + "modified": "2017-07-06 17:23:43.835189", "modified_by": "Administrator", "module": "Custom", "name": "Custom Field", diff --git a/frappe/custom/doctype/customize_form/customize_form.py b/frappe/custom/doctype/customize_form/customize_form.py index e42f617a39..085e632545 100644 --- a/frappe/custom/doctype/customize_form/customize_form.py +++ b/frappe/custom/doctype/customize_form/customize_form.py @@ -68,6 +68,8 @@ allowed_fieldtype_change = (('Currency', 'Float', 'Percent'), ('Small Text', 'Da ('Text', 'Data'), ('Text', 'Text Editor', 'Code', 'Signature'), ('Data', 'Select'), ('Text', 'Small Text')) +allowed_fieldtype_for_options_change = ('Read Only', 'HTML', 'Select',) + class CustomizeForm(Document): def on_update(self): frappe.db.sql("delete from tabSingles where doctype='Customize Form'") @@ -197,6 +199,10 @@ class CustomizeForm(Document): frappe.msgprint(_("You cannot unset 'Read Only' for field {0}").format(df.label)) continue + elif property == "options" and df.get("fieldtype") not in allowed_fieldtype_for_options_change: + frappe.msgprint(_("You can't set 'Options' for field {0}").format(df.label)) + continue + self.make_property_setter(property=property, value=df.get(property), property_type=docfield_properties[property], fieldname=df.fieldname) diff --git a/frappe/custom/doctype/customize_form/test_customize_form.py b/frappe/custom/doctype/customize_form/test_customize_form.py index ffa82c3b00..87f0a6324f 100644 --- a/frappe/custom/doctype/customize_form/test_customize_form.py +++ b/frappe/custom/doctype/customize_form/test_customize_form.py @@ -165,22 +165,22 @@ class TestCustomizeForm(unittest.TestCase): df = d.get("fields", {"fieldname": "title"})[0] # invalid fieldname - df.options = """{doc_type} - {introduction_test}""" + df.default = """{doc_type} - {introduction_test}""" self.assertRaises(InvalidFieldNameError, d.run_method, "save_customization") # space in formatter - df.options = """{doc_type} - {introduction text}""" + df.default = """{doc_type} - {introduction text}""" self.assertRaises(InvalidFieldNameError, d.run_method, "save_customization") # valid fieldname - df.options = """{doc_type} - {introduction_text}""" + df.default = """{doc_type} - {introduction_text}""" d.run_method("save_customization") # valid fieldname with escaped curlies - df.options = """{{ {doc_type} }} - {introduction_text}""" + df.default = """{{ {doc_type} }} - {introduction_text}""" d.run_method("save_customization") # undo - df.options = None + df.default = None d.run_method("save_customization") diff --git a/frappe/custom/doctype/customize_form_field/customize_form_field.json b/frappe/custom/doctype/customize_form_field/customize_form_field.json index f6c2d91aac..4b9ab79eaa 100644 --- a/frappe/custom/doctype/customize_form_field/customize_form_field.json +++ b/frappe/custom/doctype/customize_form_field/customize_form_field.json @@ -94,7 +94,7 @@ "no_copy": 0, "oldfieldname": "fieldtype", "oldfieldtype": "Select", - "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nFold\nHeading\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSignature\nSmall Text\nTable\nText\nText Editor\nTime", + "options": "Attach\nAttach Image\nButton\nCheck\nCode\nColor\nColumn Break\nCurrency\nData\nDate\nDatetime\nDynamic Link\nFloat\nFold\nHeading\nHTML\nImage\nInt\nLink\nLong Text\nPassword\nPercent\nRead Only\nSection Break\nSelect\nSignature\nSmall Text\nTable\nText\nText Editor\nTime", "permlevel": 0, "print_hide": 0, "print_hide_if_no_value": 0, @@ -1202,7 +1202,7 @@ "issingle": 0, "istable": 1, "max_attachments": 0, - "modified": "2017-04-21 17:02:14.903382", + "modified": "2017-07-06 17:24:03.665171", "modified_by": "Administrator", "module": "Custom", "name": "Customize Form Field", diff --git a/frappe/desk/doctype/event/event.json b/frappe/desk/doctype/event/event.json index 41de06dbee..75e949e90f 100644 --- a/frappe/desk/doctype/event/event.json +++ b/frappe/desk/doctype/event/event.json @@ -895,8 +895,8 @@ "issingle": 0, "istable": 0, "max_attachments": 0, - "modified": "2017-05-01 15:27:39.217961", - "modified_by": "vartakashwini@gmail.com", + "modified": "2017-07-06 12:37:44.036819", + "modified_by": "Administrator", "module": "Desk", "name": "Event", "owner": "Administrator", diff --git a/frappe/desk/page/backups/backups.js b/frappe/desk/page/backups/backups.js index c42819aba1..c82407c6bd 100644 --- a/frappe/desk/page/backups/backups.js +++ b/frappe/desk/page/backups/backups.js @@ -9,6 +9,13 @@ frappe.pages['backups'].on_page_load = function(wrapper) { frappe.set_route('Form', 'System Settings'); }); + page.add_inner_button(__("Download Files Backup"), function () { + frappe.call({ + method:"frappe.desk.page.backups.backups.schedule_files_backup", + args: {"user_email": frappe.session.user_email} + }); + }); + frappe.breadcrumbs.add("Setup"); $(frappe.render_template("backups")).appendTo(page.body.addClass("no-border")); diff --git a/frappe/desk/page/backups/backups.py b/frappe/desk/page/backups/backups.py index 145693972c..f3517c6953 100644 --- a/frappe/desk/page/backups/backups.py +++ b/frappe/desk/page/backups/backups.py @@ -1,6 +1,7 @@ import os import frappe -from frappe.utils import get_site_path, cint +from frappe import _ +from frappe.utils import get_site_path, cint, get_url from frappe.utils.data import convert_utc_to_user_timezone import datetime @@ -57,3 +58,29 @@ def delete_downloadable_backups(): if len(files) > backup_limit: cleanup_old_backups(path, files, backup_limit) + +@frappe.whitelist() +def schedule_files_backup(user_email): + from frappe.utils.background_jobs import enqueue, get_jobs + queued_jobs = get_jobs(site=frappe.local.site, queue="long") + method = 'frappe.desk.page.backups.backups.backup_files_and_notify_user' + + if method not in queued_jobs[frappe.local.site]: + enqueue("frappe.desk.page.backups.backups.backup_files_and_notify_user", queue='long', user_email=user_email) + frappe.msgprint(_("Queued for backup. You will receive an email with the download link")) + else: + frappe.msgprint(_("Backup job is already queued. You will receive an email with the download link")) + +def backup_files_and_notify_user(user_email=None): + from frappe.utils.backups import backup + backup_files = backup(with_files=True) + get_downloadable_links(backup_files) + + subject = "File backup is ready" + message = frappe.render_template('frappe/templates/emails/file_backup_notification.html', backup_files, is_path=True) + frappe.sendmail(recipients=[user_email], subject=subject, message=message) + +def get_downloadable_links(backup_files): + for key in ['backup_path_files', 'backup_path_private_files']: + path = backup_files[key] + backup_files[key] = get_url('/'.join(path.split('/')[-2:])) \ No newline at end of file diff --git a/frappe/email/doctype/email_group/email_group.py b/frappe/email/doctype/email_group/email_group.py index 0aad49c1e6..d74570d0aa 100755 --- a/frappe/email/doctype/email_group/email_group.py +++ b/frappe/email/doctype/email_group/email_group.py @@ -26,7 +26,7 @@ class EmailGroup(Document): for user in frappe.db.get_all(doctype, [email_field, unsubscribed_field or "name"]): try: - email = parse_addr(user.get(email_field))[1] + email = parse_addr(user.get(email_field))[1] if user.get(email_field) else None if email: frappe.get_doc({ "doctype": "Email Group Member", diff --git a/frappe/email/email_body.py b/frappe/email/email_body.py index a7dc579189..290735361d 100755 --- a/frappe/email/email_body.py +++ b/frappe/email/email_body.py @@ -16,7 +16,15 @@ def get_email(recipients, sender='', msg='', subject='[No Subject]', text_content = None, footer=None, print_html=None, formatted=None, attachments=None, content=None, reply_to=None, cc=[], email_account=None, expose_recipients=None, inline_images=[]): - """send an html email as multipart with attachments and all""" + """ Prepare an email with the following format: + - multipart/mixed + - multipart/alternative + - text/plain + - multipart/related + - text/html + - inline image + - attachment + """ content = content or msg emailobj = EMail(sender, recipients, subject, reply_to=reply_to, cc=cc, email_account=email_account, expose_recipients=expose_recipients) @@ -58,8 +66,8 @@ class EMail: self.expose_recipients = expose_recipients self.msg_root = MIMEMultipart('mixed') - self.msg_multipart = MIMEMultipart('alternative') - self.msg_root.attach(self.msg_multipart) + self.msg_alternative = MIMEMultipart('alternative') + self.msg_root.attach(self.msg_alternative) self.cc = cc or [] self.html_set = False @@ -88,33 +96,42 @@ class EMail: """ from email.mime.text import MIMEText part = MIMEText(message, 'plain', 'utf-8') - self.msg_multipart.attach(part) + self.msg_alternative.attach(part) def set_part_html(self, message, inline_images): from email.mime.text import MIMEText if inline_images: - related = MIMEMultipart('related') - + # process inline images + _inline_images = [] for image in inline_images: # images in dict like {filename:'', filecontent:'raw'} + content_id = random_string(10) + message = replace_filename_with_cid(message, + image.get('filename'), content_id) - # replace filename in message with CID - message = re.sub('''src=['"]{0}['"]'''.format(image.get('filename')), - 'src="cid:{0}"'.format(content_id), message) + _inline_images.append({ + 'filename': image.get('filename'), + 'filecontent': image.get('filecontent'), + 'content_id': content_id + }) - self.add_attachment(image.get('filename'), image.get('filecontent'), - None, content_id=content_id, parent=related) + # prepare parts + msg_related = MIMEMultipart('related') html_part = MIMEText(message, 'html', 'utf-8') - related.attach(html_part) + msg_related.attach(html_part) - self.msg_multipart.attach(related) + for image in _inline_images: + self.add_attachment(image.get('filename'), image.get('filecontent'), + content_id=image.get('content_id'), parent=msg_related, inline=True) + + self.msg_alternative.attach(msg_related) else: - self.msg_multipart.attach(MIMEText(message, 'html', 'utf-8')) + self.msg_alternative.attach(MIMEText(message, 'html', 'utf-8')) def set_html_as_text(self, html): - """return html2text""" + """Set plain text from HTML""" self.set_text(to_markdown(html)) def set_message(self, message, mime_type='text/html', as_attachment=0, filename='attachment.html'): @@ -139,7 +156,7 @@ class EMail: self.add_attachment(res[0], res[1]) def add_attachment(self, fname, fcontent, content_type=None, - parent=None, content_id=None): + parent=None, content_id=None, inline=False): """add attachment""" from email.mime.audio import MIMEAudio from email.mime.base import MIMEBase @@ -174,8 +191,8 @@ class EMail: # Set the filename parameter if fname: - part.add_header(b'Content-Disposition', - ("attachment; filename=\"%s\"" % fname).encode('utf-8')) + attachment_type = 'inline' if inline else 'attachment' + part.add_header(b'Content-Disposition', attachment_type, filename=fname.encode('utf=8')) if content_id: part.add_header(b'Content-ID', '<{0}>'.format(content_id)) @@ -311,3 +328,12 @@ def get_footer(email_account, footer=None): footer += '
{0}
'.format(default_mail_footer) return footer + +def replace_filename_with_cid(message, filename, content_id): + """ Replaces with + + """ + message = re.sub('''embed=['"]{0}['"]'''.format(filename), + 'src="cid:{0}"'.format(content_id), message) + + return message diff --git a/frappe/email/queue.py b/frappe/email/queue.py index 05444dabc9..9abb9dccd2 100755 --- a/frappe/email/queue.py +++ b/frappe/email/queue.py @@ -17,7 +17,7 @@ from frappe.utils.scheduler import log class EmailLimitCrossedError(frappe.ValidationError): pass -def send(recipients=None, sender=None, subject=None, message=None, reference_doctype=None, +def send(recipients=None, sender=None, subject=None, message=None, text_content=None, reference_doctype=None, reference_name=None, unsubscribe_method=None, unsubscribe_params=None, unsubscribe_message=None, attachments=None, reply_to=None, cc=[], message_id=None, in_reply_to=None, send_after=None, expose_recipients=None, send_priority=1, communication=None, now=False, read_receipt=None, @@ -28,6 +28,7 @@ def send(recipients=None, sender=None, subject=None, message=None, reference_doc :param sender: Email sender. :param subject: Email subject. :param message: Email message. + :param text_content: Text version of email message. :param reference_doctype: Reference DocType of caller document. :param reference_name: Reference name of caller document. :param send_priority: Priority for Email Queue, default 1. @@ -65,12 +66,13 @@ def send(recipients=None, sender=None, subject=None, message=None, reference_doc check_email_limit(recipients) - formatted = get_formatted_html(subject, message, email_account=email_account) + if not text_content: + try: + text_content = html2text(message) + except HTMLParser.HTMLParseError: + text_content = "See html attachment" - try: - text_content = html2text(formatted) - except HTMLParser.HTMLParseError: - text_content = "See html attachment" + formatted = get_formatted_html(subject, message, email_account=email_account) if reference_doctype and reference_name: unsubscribed = [d.email for d in frappe.db.get_all("Email Unsubscribe", "email", diff --git a/frappe/email/test_email_body.py b/frappe/email/test_email_body.py new file mode 100644 index 0000000000..1ca56dce5d --- /dev/null +++ b/frappe/email/test_email_body.py @@ -0,0 +1,103 @@ +# Copyright (c) 2017, Frappe Technologies Pvt. Ltd. and Contributors +# License: GNU General Public License v3. See license.txt +from __future__ import unicode_literals + +import unittest, os, base64 +from frappe.email.email_body import replace_filename_with_cid, get_email + +class TestEmailBody(unittest.TestCase): + def setUp(self): + email_html = ''' +
+

Hey John Doe!

+

This is embedded image you asked for

+ +
+''' + email_text = ''' +Hey John Doe! +This is the text version of this email +''' + frappe_app_path = os.path.join('..', 'apps', 'frappe') + img_path = os.path.join(frappe_app_path, 'frappe', 'public', 'images', 'favicon.png') + + with open(img_path) as f: + img_content = f.read() + img_base64 = base64.b64encode(img_content) + + # email body keeps 76 characters on one line + self.img_base64 = fixed_column_width(img_base64, 76) + + self.email_string = get_email( + recipients=['test@example.com'], + sender='me@example.com', + subject='Test Subject', + content=email_html, + text_content=email_text, + inline_images=[{ + 'filename': 'favicon.png', + 'filecontent': img_content + }] + ).as_string() + + + def test_image(self): + img_signature = ''' +Content-Type: image/png +MIME-Version: 1.0 +Content-Transfer-Encoding: base64 +Content-Disposition: inline; filename="favicon.png" +''' + + self.assertTrue(img_signature in self.email_string) + self.assertTrue(self.img_base64 in self.email_string) + + + def test_text_content(self): + text_content = ''' +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: quoted-printable + + +Hey John Doe! +This is the text version of this email +''' + self.assertTrue(text_content in self.email_string) + + + def test_email_content(self): + html_head = ''' +Content-Type: text/html; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: quoted-printable + + + +''' + + html = '''

Hey John Doe!

''' + + self.assertTrue(html_head in self.email_string) + self.assertTrue(html in self.email_string) + + + def test_replace_filename_with_cid(self): + original_message = ''' +
+ test +
+ ''' + processed_message = ''' +
+ test +
+ ''' + message = replace_filename_with_cid(original_message, 'test.jpg', 'abcdefghij') + self.assertEquals(message, processed_message) + + +def fixed_column_width(string, chunk_size): + parts = [string[0+i:chunk_size+i] for i in range(0, len(string), chunk_size)] + return '\n'.join(parts) \ No newline at end of file diff --git a/frappe/frappeclient.py b/frappe/frappeclient.py index f0acec9fdc..30c71956dd 100644 --- a/frappe/frappeclient.py +++ b/frappe/frappeclient.py @@ -102,7 +102,7 @@ class FrappeClient(object): :param doctype: `doctype` to be deleted :param name: `name` of document to be deleted''' return self.post_request({ - "cmd": "frappe.model.delete_doc", + "cmd": "frappe.client.delete", "doctype": doctype, "name": name }) diff --git a/frappe/model/db_schema.py b/frappe/model/db_schema.py index 2bad7a4d1b..a99a783e1f 100644 --- a/frappe/model/db_schema.py +++ b/frappe/model/db_schema.py @@ -43,6 +43,7 @@ type_map = { ,'Attach': ('text', '') ,'Attach Image':('text', '') ,'Signature': ('longtext', '') + ,'Color': ('varchar', varchar_len) } default_columns = ['name', 'creation', 'modified', 'modified_by', 'owner', @@ -307,7 +308,7 @@ class DbTable: if not frappe.db.sql("show index from `%s` where key_name = %s" % (self.name, '%s'), col.fieldname): query.append("add index `{}`(`{}`)".format(col.fieldname, col.fieldname)) - + for col in self.drop_index: if col.fieldname != 'name': # primary key # if index key exists diff --git a/frappe/model/naming.py b/frappe/model/naming.py index 3f0b1b7228..c47422c3ec 100644 --- a/frappe/model/naming.py +++ b/frappe/model/naming.py @@ -99,6 +99,9 @@ def make_autoname(key='', doctype='', doc=''): def parse_naming_series(parts, doctype= '', doc = ''): n = '' + if isinstance(parts, basestring): + parts = parts.split('.') + series_set = False today = now_datetime() for e in parts: @@ -142,6 +145,9 @@ def getseries(key, digits, doctype=''): def revert_series_if_last(key, name): if ".#" in key: prefix, hashes = key.rsplit(".", 1) + if '.' in prefix: + prefix = parse_naming_series(prefix.split('.')) + if "#" not in hashes: return else: diff --git a/frappe/public/css/desk.css b/frappe/public/css/desk.css index 302fe38647..fa13c421fa 100644 --- a/frappe/public/css/desk.css +++ b/frappe/public/css/desk.css @@ -995,3 +995,51 @@ input[type="checkbox"]:checked:before { visibility: visible; } } +.color-picker { + position: relative; + z-index: 999; +} +.color-picker .color-picker-pallete { + border-radius: 4px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + background: #fff; + border: 1px solid #d1d8dd; + width: 290px; + height: 106px; + padding-top: 10px; + padding-left: 5px; + position: absolute; + top: 0; + left: 0; +} +.color-picker .color-picker-pallete:after, +.color-picker .color-picker-pallete:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + pointer-events: none; + position: absolute; + bottom: 100%; + left: 30px; +} +.color-picker .color-picker-pallete:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 8px; + margin-left: -8px; +} +.color-picker .color-picker-pallete:before { + border-color: rgba(221, 221, 221, 0); + border-bottom-color: #d1d8dd; + border-width: 9px; + margin-left: -9px; +} +.color-picker .color-box { + cursor: pointer; + display: inline-block; + width: 20px; + height: 20px; + margin: -2px 0 0 3px; + border: 1px solid rgba(0, 0, 0, 0.25); +} diff --git a/frappe/public/js/frappe/form/control.js b/frappe/public/js/frappe/form/control.js index 02d509af7c..aacdda239c 100755 --- a/frappe/public/js/frappe/form/control.js +++ b/frappe/public/js/frappe/form/control.js @@ -652,6 +652,85 @@ frappe.ui.form.ControlCurrency = frappe.ui.form.ControlFloat.extend({ frappe.ui.form.ControlPercent = frappe.ui.form.ControlFloat; +frappe.ui.form.ControlColor = frappe.ui.form.ControlData.extend({ + make_input: function () { + this._super(); + this.colors = [ + "#ffc4c4", "#ff8989", "#ff4d4d", "#a83333", + "#ffe8cd", "#ffd19c", "#ffb868", "#a87945", + "#ffd2c2", "#ffa685", "#ff7846", "#a85b5b", + "#ffd7d7", "#ffb1b1", "#ff8989", "#a84f2e", + "#fffacd", "#fff168", "#fff69c", "#a89f45", + "#ebf8cc", "#d9f399", "#c5ec63", "#7b933d", + "#cef6d1", "#9deca2", "#6be273", "#428b46", + "#d2f8ed", "#a4f3dd", "#77ecca", "#49937e", + "#d2f1ff", "#a6e4ff", "#78d6ff", "#4f8ea8", + "#d2d2ff", "#a3a3ff", "#7575ff", "#4d4da8", + "#dac7ff", "#b592ff", "#8e58ff", "#5e3aa8", + "#f8d4f8", "#f3aaf0", "#ec7dea", "#934f92" + ]; + this.make_color_input(); + }, + make_color_input: function () { + this.$wrapper + .find('.control-input-wrapper') + .append(`
+
+
`); + this.$color_pallete = this.$wrapper.find('.color-picker-pallete'); + + var color_html = this.colors.map(this.get_color_box).join(""); + this.$color_pallete.append(color_html); + this.$color_pallete.hide(); + this.bind_events(); + }, + get_color_box: function (hex) { + return `
`; + }, + set_formatted_input: function(value) { + this._super(value); + this.$input.css({ + "background-color": value + }); + }, + bind_events: function () { + var mousedown_happened = false; + this.$wrapper.on("click", ".color-box", (e) => { + mousedown_happened = false; + + var color_val = $(e.target).data("color"); + this.set_value(color_val); + // set focus so that we can blur it later + this.set_focus(); + }); + + this.$wrapper.find(".color-box").mousedown(() => { + mousedown_happened = true; + }); + + this.$input.on("focus", () => { + this.$color_pallete.show(); + }); + this.$input.on("blur", () => { + if (mousedown_happened) { + // cancel the blur event + mousedown_happened = false; + } else { + // blur event is okay + $(this.$color_pallete).hide(); + } + }); + }, + validate: function (value) { + var is_valid = /^#[0-9A-F]{6}$/i.test(value); + if(is_valid) { + return value; + } + frappe.msgprint(__("{0} is not a valid hex color", [value])); + return null; + } +}); + frappe.ui.form.ControlDate = frappe.ui.form.ControlData.extend({ make_input: function() { this._super(); @@ -683,7 +762,17 @@ frappe.ui.form.ControlDate = frappe.ui.form.ControlData.extend({ }, onShow: function() { $('.datepicker--button:visible').text(__('Today')); - }, + + if(!me.frm) return; + var window_height = $(window).height(); + var window_scroll_top = $(window).scrollTop(); + var el_offset_top = me.$input.offset().top + 280; + var position = 'top left'; + if(window_height + window_scroll_top >= el_offset_top) { + position = 'bottom left'; + } + me.datepicker.update('position', position); + } }; }, set_datepicker: function() { @@ -883,6 +972,9 @@ frappe.ui.form.ControlCheck = frappe.ui.form.ControlData.extend({ this._super(); this.$input.removeClass("form-control"); }, + get_input_value: function() { + return this.input && this.input.checked ? 1 : 0; + }, validate: function(value) { return cint(value); }, @@ -893,14 +985,7 @@ frappe.ui.form.ControlCheck = frappe.ui.form.ControlData.extend({ this.last_value = value; this.set_mandatory(value); this.set_disp_area(); - }, - get_input_value: function() { - if (!this.$input) { - return; - } - - return this.$input.prop("checked") ? 1 : 0; - }, + } }); frappe.ui.form.ControlButton = frappe.ui.form.ControlData.extend({ @@ -1853,8 +1938,6 @@ frappe.ui.form.ControlTextEditor = frappe.ui.form.ControlCode.extend({ // also firefox tends to reset the cursor for some reason if the values // are reset - let current = this.get_input_value(); - if(this.setting_count > 2) { // we don't understand how the internal triggers work, // so if someone is setting the value third time, then quit @@ -1867,13 +1950,13 @@ frappe.ui.form.ControlTextEditor = frappe.ui.form.ControlCode.extend({ if(!this._last_change_on || (time_since_last_keystroke > 3000)) { setTimeout(() => this.setting_count = 0, 500); - this.editor.summernote('code', value); + this.editor.summernote('code', value || ''); } else { this._setting_value = setInterval(() => { if(time_since_last_keystroke > 3000) { if(this.last_value !== this.get_input_value()) { // if not already in sync, reset - this.editor.summernote('code', this.last_value); + this.editor.summernote('code', this.last_value || ''); } clearInterval(this._setting_value); this._setting_value = null; diff --git a/frappe/public/js/frappe/form/save.js b/frappe/public/js/frappe/form/save.js index ae71144e0b..46bf42b421 100644 --- a/frappe/public/js/frappe/form/save.js +++ b/frappe/public/js/frappe/form/save.js @@ -176,6 +176,8 @@ frappe.ui.form.save = function (frm, action, callback, btn) { console.log("Already saving. Please wait a few moments.") throw "saving"; } + + frappe.ui.form.remove_old_form_route(); frappe.ui.form.is_saving = true; return frappe.call({ @@ -206,7 +208,18 @@ frappe.ui.form.save = function (frm, action, callback, btn) { } } -frappe.ui.form.update_calling_link = function (newdoc) { +frappe.ui.form.remove_old_form_route = () => { + let index = -1; + let current_route = frappe.get_route(); + frappe.route_history.map((arr, i) => { + if (arr.join("/") === current_route.join("/")) { + index = i; + } + }); + frappe.route_history.splice(index, 1); +} + +frappe.ui.form.update_calling_link = (newdoc) => { if (frappe._from_link && newdoc.doctype === frappe._from_link.df.options) { var doc = frappe.get_doc(frappe._from_link.doctype, frappe._from_link.docname); // set value diff --git a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js index 34e9432d27..53ca4cfff0 100644 --- a/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +++ b/frappe/public/js/frappe/ui/toolbar/awesome_bar.js @@ -43,6 +43,9 @@ frappe.search.AwesomeBar = Class.extend({ } }); + // Added to aid UI testing of global search + input.awesomplete = awesomplete; + $input.on("input", function(e) { var value = e.target.value; var txt = value.trim().replace(/\s\s+/g, ' '); diff --git a/frappe/public/less/desk.less b/frappe/public/less/desk.less index 6a0ad2bb77..ad3011cb9e 100644 --- a/frappe/public/less/desk.less +++ b/frappe/public/less/desk.less @@ -918,3 +918,56 @@ input[type="checkbox"] { visibility: visible; } } + +// color picker +.color-picker { + position: relative; + z-index: 999; + + .color-picker-pallete { + border-radius: 4px; + box-shadow: 0 4px 12px rgba(0,0,0,.15); + background: #fff; + border: 1px solid @border-color; + width: 290px; + height: 106px; + padding-top: 10px; + padding-left: 5px; + position: absolute; + top: 0; + left: 0; + + &:after, + &:before { + border: solid transparent; + content: " "; + height: 0; + width: 0; + pointer-events: none; + position: absolute; + bottom: 100%; + left: 30px; + } + &:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 8px; + margin-left: -8px; + } + &:before { + border-color: rgba(221, 221, 221, 0); + border-bottom-color: @border-color; + border-width: 9px; + margin-left: -9px; + } + } + .color-box { + cursor: pointer; + display: inline-block; + width: 20px; + height: 20px; + margin: -2px 0 0 3px; + border: 1px solid rgba(0,0,0, 0.25); + + } +} diff --git a/frappe/templates/emails/email_header.html b/frappe/templates/emails/email_header.html new file mode 100644 index 0000000000..5ddd436bc4 --- /dev/null +++ b/frappe/templates/emails/email_header.html @@ -0,0 +1,10 @@ + + + + + +
+ {{brand_text}} + +

{{ brand_text }}

+
\ No newline at end of file diff --git a/frappe/templates/emails/file_backup_notification.html b/frappe/templates/emails/file_backup_notification.html new file mode 100644 index 0000000000..7528e93570 --- /dev/null +++ b/frappe/templates/emails/file_backup_notification.html @@ -0,0 +1,6 @@ +Hello, + +
+

Please use following links to download file backup.

+

Public Files Backup: {{ backup_path_files }}

+

Private Files Backup: {{ backup_path_private_files }}

diff --git a/frappe/templates/emails/standard.html b/frappe/templates/emails/standard.html index f99503747e..5bc623d253 100644 --- a/frappe/templates/emails/standard.html +++ b/frappe/templates/emails/standard.html @@ -1,28 +1,55 @@ + - - -{{ subject or "" }} + + + {{ subject or "" }} - - -
- {{ content }} - {{ signature }} -
- - -
- {{ footer }} -
- - + + + + + +
+ + + + + + + + + + +
+ {{ header or "" }} +
+ + + + +
+

{{ content }}

+

{{ signature }}

+
+
+ + + + + + + + +
+
- + + \ No newline at end of file diff --git a/frappe/templates/print_formats/standard_macros.html b/frappe/templates/print_formats/standard_macros.html index b3c2059887..6fb0ba3da5 100644 --- a/frappe/templates/print_formats/standard_macros.html +++ b/frappe/templates/print_formats/standard_macros.html @@ -1,7 +1,7 @@ {% macro render_field(df, doc) -%} {%- if df.fieldtype=="Table" -%} {{ render_table(df, doc) }} - {%- elif df.fieldtype=="HTML" -%} + {%- elif df.fieldtype=="HTML" and df.options -%}
{{ frappe.render_template(df.options, {"doc": doc}) or "" }}
{%- elif df.fieldtype in ("Text", "Text Editor", "Code") -%} {{ render_text_field(df, doc) }} diff --git a/frappe/tests/test_api.py b/frappe/tests/test_api.py index 9cdfd8839f..490587b21a 100644 --- a/frappe/tests/test_api.py +++ b/frappe/tests/test_api.py @@ -2,11 +2,13 @@ # MIT License. See license.txt from __future__ import unicode_literals -import unittest, frappe +import unittest, frappe, os from frappe.utils import get_url class TestAPI(unittest.TestCase): def test_insert_many(self): + if os.environ.get('CI'): + return from frappe.frappeclient import FrappeClient frappe.db.sql('delete from `tabToDo` where description like "Test API%"') diff --git a/frappe/tests/test_document.py b/frappe/tests/test_document.py index 3182b33f45..147771c393 100644 --- a/frappe/tests/test_document.py +++ b/frappe/tests/test_document.py @@ -3,6 +3,8 @@ from __future__ import unicode_literals import frappe, unittest, os +from frappe.utils import cint +from frappe.model.naming import revert_series_if_last, make_autoname, parse_naming_series class TestDocument(unittest.TestCase): def test_get_return_empty_list_for_table_field_if_none(self): @@ -217,3 +219,20 @@ class TestDocument(unittest.TestCase): self.assertEquals(before_update + new_count, after_update) + def test_naming_series(self): + data = ["TEST-", "TEST/17-18/.test_data./.####", "TEST.YYYY.MM.####"] + + for series in data: + name = make_autoname(series) + prefix = series + + if ".#" in series: + prefix = series.rsplit('.',1)[0] + + prefix = parse_naming_series(prefix) + old_current = frappe.db.get_value('Series', prefix, "current", order_by="name") + + revert_series_if_last(series, name) + new_current = cint(frappe.db.get_value('Series', prefix, "current", order_by="name")) + + self.assertEquals(cint(old_current) - 1, new_current) diff --git a/frappe/tests/ui/test_calendar_view.js b/frappe/tests/ui/test_calendar_view.js new file mode 100644 index 0000000000..44a87b7174 --- /dev/null +++ b/frappe/tests/ui/test_calendar_view.js @@ -0,0 +1,94 @@ +QUnit.module('views'); + +QUnit.test("Calendar View Tests", function(assert) { + assert.expect(7); + let done = assert.async(); + let random_text = frappe.utils.get_random(10); + let today = frappe.datetime.get_today()+" 16:20:35"; //arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion + let visible_time = () => { + // Method to return the start-time (hours) of the event visible + return $('.fc-time').text().split('p')[0]; // 'p' because the arbitrary time is pm + }; + // let visible_hours = () => { + // // Method to return the start-time (hours) of the event visible + // return $('.fc-time').text().split(':')[0].replace(/\D+/g, ''); + // }; + // let visible_minutes = () => { + // // Method to return the start-time (minutes) of the event visible + // return $('.fc-time').text().split(':')[1].replace(/\D+/g, ''); + // }; + let event_title_text = () => { + // Method to return the title of the event visible + return $('.fc-title:visible').text(); + }; + + frappe.run_serially([ + // Create an event using the frappe API + () => frappe.tests.make("Event", [ + {subject: random_text}, + {starts_on: today}, + {event_type: 'Private'} + ]), + + // Goto Calendar view + () => frappe.set_route(["List", "Event", "Calendar"]), + // Check if event is created + () => { + // Check if the event exists and if its title matches with the one created + assert.equal(event_title_text(), random_text); + // Check if time of event created is correct + // assert.equal(visible_hours(), 4); + // assert.equal(visible_minutes(), 20); + assert.equal(visible_time(), "4:20"); + }, + + // Delete event + // Goto Calendar view + () => frappe.set_route(["List", "Event", "Calendar"]), + () => frappe.timeout(0.3), + // Open the event to be deleted + () => frappe.tests.click_generic_text(random_text), + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Delete'), + () => frappe.tests.click_page_head_item('Yes'), + () => frappe.timeout(4), + // Goto Calendar View + () => frappe.set_route(["List", "Event", "Calendar"]), + () => frappe.timeout(0.3), + + // Check if all menu items redirect to correct locations + // Check if clicking on 'Import' redirects you to ["data-import-tool"] + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Import'), + () => assert.deepEqual(["data-import-tool"], frappe.get_route()), + () => window.history.back(), + () => frappe.timeout(0.5), + + // Check if clicking on 'User Permissions Manager' redirects you to ["user-permissions"] + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('User Permissions Manager'), + () => assert.deepEqual(["user-permissions"], frappe.get_route()), + () => window.history.back(), + () => frappe.timeout(0.5), + + // Check if clicking on 'Role Permissions Manager' redirects you to ["permission-manager"] + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Role Permissions Manager'), + () => assert.deepEqual(["permission-manager"], frappe.get_route()), + () => window.history.back(), + () => frappe.timeout(0.5), + + // Check if clicking on 'Customize' redirects you to ["Form", "Customize Form"] + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Customize'), + () => assert.deepEqual(["Form", "Customize Form"], frappe.get_route()), + () => window.history.back(), + () => frappe.timeout(0.5), + + // Check if event is deleted + () => assert.equal(event_title_text(), ""), + + () => done() + + ]); +}); \ No newline at end of file diff --git a/frappe/tests/ui/test_desktop.js b/frappe/tests/ui/test_desktop.js new file mode 100644 index 0000000000..389b22f77d --- /dev/null +++ b/frappe/tests/ui/test_desktop.js @@ -0,0 +1,64 @@ +QUnit.module('views'); + +QUnit.test("Verification of navbar menu links", function(assert) { + assert.expect(14); + let done = assert.async(); + let navbar_user_items = ['Set Desktop Icons', 'My Settings', 'Reload', 'View Website', 'Background Jobs', 'Logout']; + let modal_and_heading = ['Documentation', 'About']; + + frappe.run_serially([ + // Goto Desk using button click to check if its working + () => frappe.tests.click_navbar_item('Home'), + () => assert.deepEqual([""], frappe.get_route()), + + // Click username on the navbar (Adminisrator) and verify visibility of all elements + () => frappe.tests.click_navbar_item('navbar_user'), + () => navbar_user_items.forEach(function(navbar_user_item) { + assert.ok(frappe.tests.is_visible(navbar_user_item)); + }), + + // Click Help and verify visibility of all elements + () => frappe.tests.click_navbar_item('Help'), + () => modal_and_heading.forEach(function(modal) { + assert.ok(frappe.tests.is_visible(modal)); + }), + + // Goto Desk + () => frappe.tests.click_navbar_item('Home'), + () => frappe.timeout(0.3), + + // Click navbar-username and verify links of all menu items + // Check if clicking on 'Set Desktop Icons' redirects you to the correct page + () => frappe.tests.click_navbar_item('navbar_user'), + () => frappe.tests.click_dropdown_item('Set Desktop Icons'), + () => assert.deepEqual(["modules_setup"], frappe.get_route()), + () => frappe.tests.click_navbar_item('Home'), + + // Check if clicking on 'My Settings' redirects you to the correct page + () => frappe.tests.click_navbar_item('navbar_user'), + () => frappe.tests.click_dropdown_item('My Settings'), + () => assert.deepEqual(["Form", "User", "Administrator"], frappe.get_route()), + () => frappe.tests.click_navbar_item('Home'), + + // Check if clicking on 'Background Jobs' redirects you to the correct page + () => frappe.tests.click_navbar_item('navbar_user'), + () => frappe.tests.click_dropdown_item('Background Jobs'), + () => assert.deepEqual(["background_jobs"], frappe.get_route()), + () => frappe.tests.click_navbar_item('Home'), + + // Click Help and check both modals + // Check if clicking 'Documentation' opens the right modal + () => frappe.tests.click_navbar_item('Help'), + () => frappe.tests.click_dropdown_item('Documentation'), + () => assert.ok(frappe.tests.is_visible('Documentation', 'span')), + () => frappe.tests.click_generic_text('Close', 'button'), + + // Check if clicking 'About' opens the right modal + () => frappe.tests.click_navbar_item('Help'), + () => frappe.tests.click_dropdown_item('About'), + () => assert.ok(frappe.tests.is_visible('Frappe Framework', 'div')), + () => frappe.tests.click_generic_text('Close', 'button'), + + () => done() + ]); +}); \ No newline at end of file diff --git a/frappe/tests/ui/test_gantt_view.js b/frappe/tests/ui/test_gantt_view.js new file mode 100644 index 0000000000..0ec6c38ff2 --- /dev/null +++ b/frappe/tests/ui/test_gantt_view.js @@ -0,0 +1,53 @@ +QUnit.module('views'); + +QUnit.test("Gantt View Tests", function(assert) { + assert.expect(2); + let done = assert.async(); + let random_text = frappe.utils.get_random(10); + let start_date = frappe.datetime.get_today()+" 16:20:35"; // arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion + let end_date = frappe.datetime.get_today()+" 18:30:45"; //arbitrary value taken to prevent cases like 12a for 12:00am and 12h to 24h conversion + let event_id = () => { + // Method to acquire the ID of the event created. This is needed to redirect to the event page + let event_label = $('.bar-label').text(); + let init = event_label.indexOf('('); + let fin = event_label.indexOf(')'); + return (event_label.substr(init+1,fin-init-1)); + }; + let event_title_text = (text) => { + // Method to check the name of the event created. This is needed to verify the creation and deletion of the event + return $('#bar > g > g.bar-group > text:visible').text().includes(text); + }; + + frappe.run_serially([ + // Create an event using the Frapee API + () => { + return frappe.tests.make("Event", [ + {subject: random_text}, + {starts_on: start_date}, + {ends_on: end_date}, + {event_type: 'Private'} + ]); + }, + + // Check if event is created + () => frappe.set_route(["List", "Event", "Gantt"]), + () => assert.ok( event_title_text(random_text) ), + + // Delete event + () => frappe.set_route(["List", "Event", "Gantt"]), + () => frappe.timeout(0.3), + // Redirect to the event page to delete the event + () => frappe.set_route(["Form", "Event", event_id()]), + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Delete'), + () => frappe.tests.click_page_head_item('Yes'), + () => frappe.timeout(0.3), + () => frappe.set_route(["List", "Event", "Gantt"]), + () => frappe.timeout(0.3), + + // Check if event is deleted + () => assert.ok( event_title_text("") ), + + () => done() + ]); +}); \ No newline at end of file diff --git a/frappe/tests/ui/test_lib.js b/frappe/tests/ui/test_lib.js index 169b5d6abe..ede4a3449f 100644 --- a/frappe/tests/ui/test_lib.js +++ b/frappe/tests/ui/test_lib.js @@ -90,6 +90,70 @@ frappe.tests = { return frappe.run_serially(tasks); }); }, + click_page_head_item: (text) => { + // Method to items present on the page header like New, Save, Delete etc. + let possible_texts = ["New", "Delete", "Save", "Yes"]; + return frappe.run_serially([ + () => { + if (text == "Menu"){ + $("span.menu-btn-group-label:contains('Menu'):visible").click(); + } else if (text == "Refresh") { + $(".btn-secondary:contains('Refresh'):visible").click(); + } else if (possible_texts.includes(text)) { + $(".btn-primary:contains("+text+"):visible").click(); + } + }, + () => frappe.timeout(0.3) + ]); + }, + click_dropdown_item: (text) => { + // Method to click dropdown elements + return frappe.run_serially([ + () => { + let li = $(".dropdown-menu li:contains("+text+"):visible").get(0); + $(li).find('a')[0].click(); + }, + () => frappe.timeout(0.3) + ]); + }, + click_navbar_item: (text) => { + // Method to click an elements present on the navbar + return frappe.run_serially([ + () => { + if (text == "Help"){ + $(".dropdown-help .dropdown-toggle:visible").click(); + } + else if (text == "navbar_user"){ + $(".dropdown-navbar-user .dropdown-toggle:visible").click(); + } + else if (text == "Notification"){ + $(".navbar-new-comments").click(); + } + else if (text == "Home"){ + $(".navbar-home:contains('Home'):visible")[0].click(); + } + }, + () => frappe.timeout(0.3) + ]); + }, + click_generic_text: (text, tag='a') => { + // Method to click an element by its name + return frappe.run_serially([ + () => $(tag+":contains("+text+"):visible")[0].click(), + () => frappe.timeout(0.3) + ]); + }, + click_desktop_icon: (text) => { + // Method to click the desktop icons on the Desk, by their name + return frappe.run_serially([ + () => $("#icon-grid > div > div.app-icon[title="+text+"]").click(), + () => frappe.timeout(0.3) + ]); + }, + is_visible: (text, tag='a') => { + // Method to check the visibility of an element + return $(tag+":contains("+text+")").is(':visible'); + }, click_button: function(text) { $(`.btn:contains("${text}"):visible`).click(); return frappe.timeout(0.3); @@ -98,4 +162,4 @@ frappe.tests = { $(`a:contains("${text}"):visible`).click(); return frappe.timeout(0.3); } -}; \ No newline at end of file +}; diff --git a/frappe/tests/ui/test_list.js b/frappe/tests/ui/test_list.js index 94f1cfd21a..f154b45c01 100644 --- a/frappe/tests/ui/test_list.js +++ b/frappe/tests/ui/test_list.js @@ -1,27 +1,31 @@ QUnit.module('views'); -QUnit.test("test quick entry", function(assert) { +QUnit.test("Test quick entry", function(assert) { assert.expect(2); let done = assert.async(); - let random = frappe.utils.get_random(10); + let random_text = frappe.utils.get_random(10); frappe.run_serially([ () => frappe.set_route('List', 'ToDo'), () => frappe.new_doc('ToDo'), - () => frappe.quick_entry.dialog.set_value('description', random), + () => frappe.quick_entry.dialog.set_value('description', random_text), () => frappe.quick_entry.insert(), (doc) => { assert.ok(doc && !doc.__islocal); return frappe.set_route('Form', 'ToDo', doc.name); }, - () => { - assert.ok(cur_frm.doc.description.includes(random)); - return done(); - } + () => assert.ok(cur_frm.doc.description.includes(random_text)), + + // Delete the created ToDo + () => frappe.tests.click_page_head_item('Menu'), + () => frappe.tests.click_dropdown_item('Delete'), + () => frappe.tests.click_page_head_item('Yes'), + + () => done() ]); }); -QUnit.test("test list values", function(assert) { +QUnit.test("Test list values", function(assert) { assert.expect(2); let done = assert.async(); frappe.set_route('List', 'DocType') @@ -30,4 +34,4 @@ QUnit.test("test list values", function(assert) { assert.ok($('.list-item:visible').length > 10); done(); }); -}); \ No newline at end of file +}); diff --git a/frappe/translations/am.csv b/frappe/translations/am.csv index ed5a959601..c1ad59ea8d 100644 --- a/frappe/translations/am.csv +++ b/frappe/translations/am.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook የተጠቃሚ ስም DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ማስታወሻ: በርካታ ክፍለ ጊዜዎች ተንቀሳቃሽ መሣሪያ ሁኔታ ውስጥ የሚፈቀደው ይሆናል apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ተጠቃሚ ነቅቷል የኢሜይል ገቢ መልዕክት ሳጥንዎ {ተጠቃሚዎች} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ይህ ኢሜይል መላክ አልተቻለም. በዚህ ወር ለ {0} ኢሜይሎች መላክ ገደብ ተሻገረ ነው. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,እስከመጨረሻው {0} አስገባ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,እስከመጨረሻው {0} አስገባ? DocType: Address,County,ካውንቲ DocType: Workflow,If Checked workflow status will not override status in list view,ምልክት የተደረገባቸው የስራ ፍሰት ሁኔታ ዝርዝር እይታ ውስጥ ሁኔታ ሊሽሩት ከሆነ apps/frappe/frappe/client.py +280,Invalid file path: {0},ልክ ያልሆነ የፋይል ዱካ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,አን apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ዛፍ DocType: User,User Emails,የተጠቃሚ ኢሜይሎች DocType: User,Username,የተጠቃሚ ስም -apps/frappe/frappe/model/base_document.py +581,Value too big,ዋጋ በጣም ትልቅ ነው +apps/frappe/frappe/model/base_document.py +580,Value too big,ዋጋ በጣም ትልቅ ነው DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,አሂድ ስክሪፕት ሙከራ DocType: Contact,Department,ክፍል @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,ምዝግብ ማስታወሻዎች DocType: Custom DocPerm,This role update User Permissions for a user,አንድ ተጠቃሚ ይህን ሚና ዝማኔ የተጠቃሚ ፍቃዶች apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},ሰይም {0} DocType: Workflow State,zoom-out,አጉላ-ውጭ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,መክፈት አይቻልም {0} በውስጡ ለምሳሌ ያህል ክፍት ነው ጊዜ +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,መክፈት አይቻልም {0} በውስጡ ለምሳሌ ያህል ክፍት ነው ጊዜ apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ሠንጠረዥ {0} ባዶ ሊሆን አይችልም apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Ledgers ጋር apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,ሥዕሎች DocType: Communication,Reference Owner,የማጣቀሻ ባለቤት DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ትንሹ ሲናፈስ ክፍልፋይ አሀድ (ሳንቲም). ይህ 0.01 እንደ መግባት ያለበት ሲሆን ዶላር ለማግኘት ለምሳሌ 1 በመቶ ለ DocType: Social Login Keys,GitHub,የፊልሙ -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, የረድፍ {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, የረድፍ {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,አንድ FULLNAME መስጠት እባክህ. apps/frappe/frappe/model/document.py +904,Beginning with,ጀምሮ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,የውሂብ አስመጣ አብነት apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,ወላጅ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","የነቃ ከሆነ, የይለፍ ቃል ጥንካሬ ዝቅተኛ የይለፍ ውጤት ዋጋ ላይ ተመስርቶ ተፈጻሚ ይሆናል. 2 አንድ እሴት በመካከለኛ ጠንካራ መሆን እና 4 በጣም ጠንካራ መሆን." DocType: About Us Settings,"""Team Members"" or ""Management""","ቡድን አባላት" ወይም "አስተዳደር" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',መስክ ላይ 'ይመልከቱ »አይነት ነባሪ ወይ' 0 'ወይም' 1 'መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',መስክ ላይ 'ይመልከቱ »አይነት ነባሪ ወይ' 0 'ወይም' 1 'መሆን አለበት apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ትናንትና DocType: Contact,Designation,ስያሜ DocType: Test Runner,Test Runner,የሙከራ Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,መስክ የታተመ ነው DocType: Email Group,Email Group,የኢሜይል ቡድን DocType: Note,Seen By,በ ተመልክቻለሁ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,በርካታ ያክሉ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,አይደለም +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,አይደለም apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,በመስክ የማሳያ መለያ አዘጋጅ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ትክክል ያልሆነ እሴት: {0} መሆን አለበት {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","ለውጥ መስክ ንብረቶች (ደብቅ, ተነባቢ ብቻ, ፈቃድ ወዘተ)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ያግኙ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,አስተዳዳሪ የወጡ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ወዘተ "የሽያጭ መጠይቅ, ድጋፍ መጠይቅ" እንደ የእውቂያ አማራጮች, አዲስ መስመር ላይ በእያንዳንዱ ወይም በኮማ የተለዩ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. አውርድ -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,አስገባ +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,አስገባ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ይምረጡ {0} DocType: Print Settings,Classic,ክላሲክ DocType: Desktop Icon,Color,ቀለም @@ -121,7 +121,7 @@ DocType: Translation,Translation,ትርጉም apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ጫን apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,አቶ DocType: Custom Script,Client,ደምበኛ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,እርስዎ ሊጫን በኋላ ይህ ቅጽ ተቀይሯል +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,እርስዎ ሊጫን በኋላ ይህ ቅጽ ተቀይሯል DocType: User Permission for Page and Report,User Permission for Page and Report,ገጽ እና ሪፖርት የተጠቃሚ ፈቃድ DocType: Address,Himachal Pradesh,Himachal ፕራዴሽ DocType: System Settings,"If not set, the currency precision will depend on number format","ካልተዘጋጀ, ምንዛሬ ዝንፍ ቁጥር ቅርጸት ላይ ይወሰናል" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,ምክንያት apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ተጠቃሚ እባክዎን ይግለጹ DocType: Email Unsubscribe,Email Unsubscribe,ኢሜይል ከደንበኝነት DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ምርጥ ውጤቶች በሚያሳይ ዳራ ጋር ገደማ ስፋት 150px የሆነ ምስል ይምረጡ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,የ የስርዓት አስተዳዳሪ ይሆናል የመጀመሪያው ተጠቃሚ (ይህንን በኋላ ላይ መቀየር ይችላሉ). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,የ የስርዓት አስተዳዳሪ ይሆናል የመጀመሪያው ተጠቃሚ (ይህንን በኋላ ላይ መቀየር ይችላሉ). ,App Installer,የመተግበሪያ ጫኝ DocType: Workflow State,circle-arrow-up,ክበብ-ቀስት-ምትኬ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,በመስቀል ላይ ... DocType: Email Domain,Email Domain,የኢሜይል ጎራ DocType: Workflow State,italic,ሰያፍ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,ለሁሉም -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: ይፍጠሩ ያለ አስመጣ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: ይፍጠሩ ያለ አስመጣ ማዘጋጀት አይቻልም apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ክስተት እና ሌሎች የቀን መቁጠሪያዎች. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ሁሉም መስኮች አስተያየት ለማስገባት አስፈላጊ ናቸው. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,አምዶች ለመደርደር ይጎትቱ @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,መደበኛ የጎን አሞሌ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ቤት እና አባሪዎች አቃፊዎችን መሰረዝ አልተቻለም apps/frappe/frappe/config/desk.py +19,Files,ፋይሎች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,ፍቃዶች እነርሱ የተመደቡት እነዚህን ነገሮች ሚናዎች ላይ የተመሠረቱ ተጠቃሚዎች ላይ ተግባራዊ ያግኙ. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,በዚህ ሰነድ ጋር የተዛመዱ ኢሜይሎችን መላክ አይፈቀዱም -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0} ለመደርደር / ቡድን ከ atleast 1 አምድ ይምረጡ +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,በዚህ ሰነድ ጋር የተዛመዱ ኢሜይሎችን መላክ አይፈቀዱም +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0} ለመደርደር / ቡድን ከ atleast 1 አምድ ይምረጡ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,የ ማጠሪያ ኤ ፒ አይን በመጠቀም ክፍያዎን በመሞከር ከሆነ ይህንን ያረጋግጡ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,አንድ መደበኛ ድረ-ገጽታ መሰረዝ አይፈቀድም DocType: Feedback Trigger,Example,ለምሳሌ @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,ጠቅላላ ተመዝጋቢዎች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","አንድ ሚና ደረጃ 0 ላይ መዳረሻ ከሌለው, ከዚያ ከፍተኛ ደረጃ ትርጉም የለሽ ናቸው." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,አስቀምጥ እንደ DocType: Communication,Seen,የታየው -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,ተጨማሪ ዝርዝሮችን አሳይ +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,ተጨማሪ ዝርዝሮችን አሳይ DocType: System Settings,Run scheduled jobs only if checked,መርጠነው ከሆነ ብቻ ነው መርሐግብር ስራዎችን አሂድ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,ክፍል ርዕሶች የነቃ ከሆነ ብቻ ነው ይታያሉ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,ማህደር @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,አሳይ ገበ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,ልክ የሆነ የኢሜይል እና ስም ያስፈልጋል DocType: DocType,Hide Heading,ደብቅ HEADING DocType: Address,Current,የአሁኑ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,ተዛማጅ ሰነዶች apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes ቡድኖች DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,አስወግድ-ክበብ @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,ማጣሪያ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} እንደ ልዩ ቁምፊዎችን ሊኖረው አይችልም {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,በአንድ ወቅት ብዙ እሴቶች ያዘምኑ. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ስህተት: እናንተ ከፍተዋል በኋላ ሰነድ ተቀይሯል -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ አድራሻ አብነት አልተገኘም. ውቅረት> ማተም እና ብራንዲንግ> አድራሻ መለጠፊያ አንድ አዲስ ፍጠር እባክህ. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ዘግተው የወጡ: {1} DocType: Address,West Bengal,የምዕራብ ቤንጋል -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: መድብ Submittable አይደለም ከሆነ አስገባ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: መድብ Submittable አይደለም ከሆነ አስገባ ማዘጋጀት አይቻልም DocType: Social Login Keys,Facebook,ፌስቡክ apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",በ የተጣራ "{0}» DocType: Salutation,Administrator,አስተዳዳሪ @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,የጦማር ርዕስ apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,መደበኛ ሚና ተሰናክሏል አይችልም DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,በራሪ ጽሑፍ -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,በ ቅደም ንዑስ-መጠይቅ መጠቀም አይቻልም +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,በ ቅደም ንዑስ-መጠይቅ መጠቀም አይቻልም DocType: Web Form,Button Help,የአዝራር እገዛ DocType: Kanban Board Column,purple,ሐምራዊ DocType: About Us Settings,Team Members,ቡድን አባላት @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","የእርስዎ የደንበኝነት ምዝገባ {0} ላይ ጊዜው አልፎበታል. ማደስ, {1}." DocType: Workflow State,plus-sign,የመደመር-ምልክት apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ቀደም ሲል ሙሉ በሙሉ ማዋቀር -apps/frappe/frappe/__init__.py +890,App {0} is not installed,የመተግበሪያ {0} አልተጫነም +apps/frappe/frappe/__init__.py +889,App {0} is not installed,የመተግበሪያ {0} አልተጫነም DocType: Workflow State,Refresh,አዝናና DocType: Event,Public,ሕዝባዊ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ምንም የሚታይ የለም @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,በ የተወደ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,የኢሜይል ድጋፍ DocType: DocField,Print Hide If No Value,የህትመት ደብቅ ከሆነ ምንም ዋጋ DocType: Event,yellow,ቢጫ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,የመስክ አለበት የታተመ ነው ትክክለኛ fieldname መሆን +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,የመስክ አለበት የታተመ ነው ትክክለኛ fieldname መሆን apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,ስቀል አባሪ DocType: Block Module,Block Module,አግድ ሞዱል apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ወደ ውጪ ላክ አብነት @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,ግ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},አዲስ መለያ ላይ ለእርስዎ ተፈጥሯል {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,መመሪያዎች ኢሜይል የተደረገለት -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ያስገቡ የኢሜይል ተቀባይ (ዎች) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ያስገቡ የኢሜይል ተቀባይ (ዎች) DocType: Print Format,Verdana,ቨረንዳ DocType: Email Flag Queue,Email Flag Queue,የኢሜይል ይጠቁሙ ወረፋ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ክፍት መለየት አይቻልም {0}. ሌላ ነገር ይሞክሩ. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,የመልዕክት መታወቂያ DocType: Property Setter,Field Name,የመስክ ስም apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite አልተዋቀረም. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ወይም -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ሞጁል ስም ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ቀጥል +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ሞጁል ስም ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ቀጥል DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,የምስክር ወረቀት DocType: User,Tile,ሰቅ @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ሁሉንም ስሪቶች አሳይ DocType: Workflow State,Print,እትም DocType: User,Restrict IP,የ IP ገድብ +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ዳሽቦርድ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,በዚህ ጊዜ ኢሜይሎችን መላክ አልተቻለም apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ይፈልጉ ወይም ትእዛዝ ይተይቡ DocType: Communication,Timeline Name,የጊዜ መስመር ስም @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,የሽያጭ መምህር አስተዳዳ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,አንድ የመጨረሻ ደረጃ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,የ የሰነድ አይነት (DocType) ይህን መስክ ጋር የተገናኙ መሆን ይፈልጋሉ ስም. ለምሳሌ ደንበኛ DocType: User,Roles Assigned,ሚናዎችን የተመደበው -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,የፍለጋ እገዛ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,የፍለጋ እገዛ DocType: Top Bar Item,Parent Label,የወላጅ መለያ ስም apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ጥያቄዎ ደርሶናል ተደርጓል. በቅርቡ ምላሽ ይሆናል. ማንኛውም ተጨማሪ መረጃ ያላቸው ከሆነ, ይህን መልዕክት ምላሽ ይስጡ." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,ፍቃዶች በራስ-ሰር መደበኛ ሪፖርቶች እና ፍለጋዎች ይተረጎማሉ. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,አርትዕ HEADING DocType: File,File URL,ፋይል ዩ አር ኤል DocType: Version,Table HTML,ማውጫ ኤችቲኤምኤል +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'ምንም ውጤቶች አልተገኙም

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ተመዝጋቢዎች ያክሉ apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ዛሬ ለ መጪ ክስተቶች DocType: Email Alert Recipient,Email By Document Field,ሰነድ መስክ በ ኢሜይል @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,የገንዘብ መጠን መስክ ላ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,የተጠቃሚ አጋራ ግዴታ ነው DocType: DocField,Hidden,የተደበቀ DocType: Web Form,Allow Incomplete Forms,ያልተሟላ ቅጾች ፍቀድ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} አስቀድሞ መዘጋጀት አለበት +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} አስቀድሞ መዘጋጀት አለበት apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","የጋራ ሐረጎች ለማስቀረት, ጥቂት ቃላትን ይጠቀሙ." DocType: Workflow State,plane,አውሮፕላን -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,ውይ. ክፍያዎ አልተሳካም. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ በአሁኑ ጊዜ ከሆነ, "ተከታታይ መሰየምን", የግዴታ ይሆናል." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,በዛሬው ጊዜ ማንቂያዎች ያግኙ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,በዛሬው ጊዜ ማንቂያዎች ያግኙ apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType ብቻ አስተዳዳሪ ተሰይሟል ይችላል apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},ሊቀየር እሴት {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,ማረጋገጫ ለማግኘት እባክዎ ኢሜይልዎን ያረጋግጡ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ከዚህም በረት ያልሆኑ ቅጽ መጨረሻ ላይ መሆን አይችልም DocType: Communication,Bounced,ካረፈ DocType: Deleted Document,Deleted Name,ተሰርዟል ስም apps/frappe/frappe/config/setup.py +14,System and Website Users,ሥርዓት እና የድር ጣቢያ ተጠቃሚዎች @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,የሰነድ ወረ DocType: GSuite Templates,Destination ID,መድረሻ መታወቂያ DocType: Desktop Icon,List,ዝርዝር DocType: Communication,Link Name,አገናኝ ስም -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,"የመስክ {0} ረድፍ ውስጥ {1} ሊደበቅ አይችልም, እና ነባሪ ያለ የግዴታ" DocType: System Settings,mm/dd/yyyy,ወር / ቀን / ዓመት apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,የተሳሳተ የሚስጥርቃል: DocType: Print Settings,Send document web view link in email,በኢሜይል ውስጥ ሰነድ የድር እይታ አገናኝ ላክ apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ሰነድ የእርስዎ ግብረ {0} በተሳካ ሁኔታ ተቀምጧል ነው apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,ቀዳሚ -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,ጉዳዩ: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,ጉዳዩ: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} ለ ረድፎች {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ንዑስ-ምንዛሬ. ለምሳሌ "ሳንቲም" ለ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,የተሰቀለ ፋይል ይምረጡ @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,ማያያዣ apps/frappe/frappe/utils/file_manager.py +96,No file attached,የተያያዘው ምንም ፋይል DocType: Version,Version,ትርጉም DocType: User,Fill Screen,ማያ ገጽ ሙላ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","በጎደለ ውሂብ, ይህ ዛፍ ሪፖርት ለማሳየት አልተቻለም. አብዛኞቹ አይቀርም, ይህን ምክንያት ፍቃዶች አጣርተው ነው." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ውቅረት> ኢሜይል> ኢሜይል መለያ ከ እባክዎ ማዋቀር ነባሪውን የኢሜይል መለያ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","በጎደለ ውሂብ, ይህ ዛፍ ሪፖርት ለማሳየት አልተቻለም. አብዛኞቹ አይቀርም, ይህን ምክንያት ፍቃዶች አጣርተው ነው." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. የሚከተለውን ይምረጡ-ፋይል apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ስቀል በኩል አርትዕ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","የሰነድ ዓይነት ..., ለምሳሌ የደንበኛ" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","የሰነድ ዓይነት ..., ለምሳሌ የደንበኛ" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,ሁኔታ «{0}» ልክ ያልሆነ ነው DocType: Workflow State,barcode,የአሞሌ apps/frappe/frappe/config/setup.py +232,Add your own translations,የእራስዎ ትርጉሞችን ያክሉ @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,እሮብ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",ባሻገር ሚና ላይ የተመሠረተ ፍቃድ ደንቦች ጀምሮ: በእናንተ DocTypes ላይ የተመሠረተ የተጠቃሚ ፍቃዶችን ማመልከት ይችላሉ. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","እነዚህ ፈቃዶች የተፈቀደለት ታሪክ ጋር የተያያዘ ነው የት ግብይቶች ማመልከት ይሆናል. የኩባንያ ሲ ተጠቃሚ በ X የተጠቃሚ ፍቃዶች ታክሏል ከሆነ ለምሳሌ ያህል, የተጠቃሚ X ብቻ የተገናኘ እሴት ያሉ ኩባንያ ሐ ያለው ግብይቶችን ማየት ይችላሉ." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,የምስል መስክ ልክ የሆነ fieldname መሆን አለበት DocType: OAuth Client,Token,ማስመሰያ DocType: Property Setter,ID (name) of the entity whose property is to be set,የማን ንብረት ህጋዊ አካል መታወቂያ (ስም) ሊዘጋጅ ነው apps/frappe/frappe/limits.py +82,"To renew, {0}.","ማደስ, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,የጎን ንጥሎች apps/frappe/frappe/installer.py +125,App {0} already installed,የመተግበሪያ {0} አስቀድሞ ተጭኗል DocType: Workflow State,exclamation-sign,ቃለ አጋኖ-ምልክት apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ፍቃዶችን አሳይ -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,የጊዜ ሂደት መስክ አንድ አገናኝ ወይም ተለዋዋጭ አገናኝ መሆን አለበት apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ቀን ክልል apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ገጽ {0} ከ {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ድር apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","የኢንክሪፕሽን ቁልፍ ልክ ያልሆነ ነው, site_config.json ያረጋግጡ" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ወደ DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ስኬታማ: {0} ወደ {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ስኬታማ: {0} ወደ {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,በማሳያ ውስጥ ተጠቃሚ ዝርዝሮችን መቀየር አይቻልም. https://erpnext.com ላይ አዲስ መለያ ለመመዝገብ እባክዎ apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,ለውጦችን ለማድረግ ይህን የተባዙ እባክዎ apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,የፒዲኤፍ ትውልድ ምክንያቱም ይሰበር ምስል አገናኞች አልተሳካም @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,ሊሰበሰቡ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ተቀምጧል apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ምን ጋር እርዳታ የሚያስፈልጋቸው ለምንድን ነው? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ይምረጡ አማራጮች. አዲስ መስመር ላይ እያንዳንዱ አማራጭ. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,እስከመጨረሻው ሰርዝ {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,እስከመጨረሻው ሰርዝ {0}? DocType: Workflow State,music,ሙዚቃ DocType: Web Page,Settings,ቅንብሮች apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,doctype እባክዎን ይግለጹ DocType: Print Format,Style Settings,ቅጥ ቅንብሮች -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ደርድር መስክ {0} ልክ የሆነ fieldname መሆን አለበት apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ይበልጥ DocType: Contact,Sales Manager,የሽያጭ ሃላፊ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,ዳግም ሰይም DocType: Print Format,Format Data,ቅርጸት ውሂብ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,እንደ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,እንደ DocType: Customize Form Field,Customize Form Field,ቅጽ መስክ ያብጁ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,ተጠቃሚ ፍቀድ DocType: OAuth Client,Grant Type,ፍቃድ ስጥ አይነት apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,አንድ ተጠቃሚ የማበጀት ናቸው ሰነዶች ይመልከቱ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,መተግበሪያ የመደብር አይፈቀድም -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",የኢሜይል ጎራ አንድ ፍጠር: ለዚህ መለያ አልተዋቀረም? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,እንደ ልዩ ምልክት% መጠቀም +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",የኢሜይል ጎራ አንድ ፍጠር: ለዚህ መለያ አልተዋቀረም? DocType: User,Reset Password Key,ዳግም አስጀምር የይለፍ ቁልፍ DocType: Email Account,Enable Auto Reply,ራስ-መልስ አንቃ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,አይቼዋለሁ አይደለም @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,ብቻ አንዴ አዘጋጅ DocType: Email Queue Recipient,Email Queue Recipient,የኢሜይል ወረፋ ተቀባይ DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,የተጠቃሚ ስም {0} አስቀድሞ አለ -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} importable አይደለም እንደ ከውጪ ማዘጋጀት አይቻልም apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},ከእርስዎ አድራሻ መለጠፊያ ውስጥ አንድ ስህተት አለ {0} DocType: Footer Item,"target = ""_blank""",target = "ባዶን" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,ሙሉ ስም ከ apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},እርስዎ ሪፖርት መዳረሻ የለህም: {0} DocType: User,Send Welcome Email,እንኳን ደህና መጡ ኢሜይል ላክ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,አውርድ ተመሳሳይ ቅርጸት ሁሉንም የተጠቃሚ ፍቃዶችን የያዘ CSV ፋይል ይስቀሉ. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ማጣሪያ አስወግድ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ማጣሪያ አስወግድ DocType: Address,Daman and Diu,Daman እና Diu DocType: Address,Personal,የግል apps/frappe/frappe/config/setup.py +113,Bulk Rename,የጅምላ ይቀየር @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","መደበኛ DocType አብጅ ቅጽ መጠቀም, ነባሪ ህትመት ቅርጸት ሊኖረው አይችልም" DocType: Report,Query,ጥያቄ DocType: DocType,Sort Order,የድርድር ቅደም ተከተል -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'ዝርዝር ይመልከቱ ውስጥ' ረድፍ ውስጥ አይነት {0} አይፈቀድም {1} DocType: Custom Field,Select the label after which you want to insert new field.,አዲስ መስክ ማስገባት ይፈልጋሉ በኋላ ያለውን መለያ ይምረጡ. ,Document Share Report,የሰነድ አጋራ ሪፖርት DocType: User,Last Login,የመጨረሻው መግቢያ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname ረድፍ ውስጥ ያስፈልጋል {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,አምድ DocType: Custom Field,Adds a custom field to a DocType,አንድ DocType ወደ ብጁ መስክ ያክላል DocType: File,Is Home Folder,መነሻ አቃፊ ነው @@ -583,7 +583,7 @@ DocType: File,Folder,አቃፊ DocType: DocField,Index,ማውጫ DocType: Email Group,Newsletter Manager,በራሪ ጽሑፍ አቀናባሪ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,አማራጭ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,ሁሉም ልኡክ ጽሁፎች +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ወደ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ጥያቄዎች ወቅት ስህተት ይግቡ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} በተሳካ ሁኔታ የኢሜይል ቡድን ታክሏል. DocType: Address,Uttar Pradesh,ኡታር ፕራዴሽ @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,አመልካች DocType: DocShare,Everyone,ሁሉም ሰው DocType: Workflow State,backward,ወደኋላ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ተመሳሳይ ሚና, Level እና ጋር ብቻ ይፈቀዳል አንድ አገዛዝ {1}" DocType: Email Queue,Add Unsubscribe Link,ከደንበኝነት አገናኝ አክል apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ገና ምንም አስተያየቶች የሉም. አዲስ ውይይት ይጀምሩ. DocType: Workflow State,share,ያጋሩ @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,አይ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,ይመልከቱ ተመዝጋቢዎች apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ወይዘሪት DocType: Website Theme,Background Color,የጀርባ ቀለም -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ኢሜይል በመላክ ላይ ሳለ ስህተቶች ነበሩ. እባክዎ ዳግም ይሞክሩ. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ኢሜይል በመላክ ላይ ሳለ ስህተቶች ነበሩ. እባክዎ ዳግም ይሞክሩ. DocType: Portal Settings,Portal Settings,ፖርታል ቅንብሮች DocType: Web Page,0 is highest,0 ከፍተኛ ነው apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,እናንተ ወደ {0} ይህን የሐሳብ ልውውጥ ዳግም ያገናኟቸው እንደሚፈልጉ እርግጠኛ ነዎት? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,ከእኛ ቅንብሮች ያነጋግሩ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,በመፈለግ ላይ ... DocType: Workflow State,text-width,ጽሑፍ-ስፋት -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ይህ መዝገብ ከፍተኛው አባሪ ገደብ ላይ ተደርሷል. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ይህ መዝገብ ከፍተኛው አባሪ ገደብ ላይ ተደርሷል. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,የሚከተሉት የግዴታ መስኮች መሞላት አለበት:
DocType: Email Alert,View Properties (via Customize Form),(ብጁ ቅጽ በኩል) ይመልከቱ ንብረቶች DocType: Note Seen By,Note Seen By,የታየ ማስታወሻ @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,ራጃስታን apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ሪፖርት ገንቢ ሪፖርቶች ሪፖርቱ የአናጺ በቀጥታ የሚተዳደሩ ናቸው. ምንም የማደርገው የለም. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,የእርስዎ ኢሜይል አድራሻ ያረጋግጡ apps/frappe/frappe/model/document.py +903,none of,ማንም -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,እኔ አንድ ቅጂ ላክ +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,እኔ አንድ ቅጂ ላክ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,የተጠቃሚ ፍቃዶችን ይስቀሉ DocType: Dropbox Settings,App Secret Key,የመተግበሪያ ሚስጥር ቁልፍ apps/frappe/frappe/config/website.py +7,Web Site,ድህረገፅ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ምልክት የተደረገባቸው ንጥሎች ዴስክቶፕ ላይ ይታያል -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ነጠላ አይነቶች ሊዘጋጁ አይችሉም apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban ቦርድ {0} የለም. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} በአሁኑ ጊዜ ይህን ሰነዱን እያዩት ነው DocType: ToDo,Assigned By Full Name,ሙሉ ስም በ ተመድቧል apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ዘምኗል -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,ሪፖርት ነጠላ አይነቶች ሊዘጋጁ አይችሉም apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ቀናት በፊት DocType: Email Account,Awaiting Password,በመጠባበቅ ላይ የይለፍ ቃል DocType: Address,Address Line 1,አድራሻ መስመር 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","የስራ ፍሰት ለ ስቴትስ (ለምሳሌ ረቂቅ, የጸደቀ, ተሰርዟል)." DocType: Print Settings,Allow Print for Draft,ረቂቅ ለ አትም ፍቀድ apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,አዘጋጅ ብዛት -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ለማረጋገጥ ይህን ሰነድ ማስገባት DocType: Contact,Unsubscribed,ያልተመዘገበ apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,ገጽ እና ሪፖርት አዘጋጅ ብጁ ሚናዎች apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,ደረጃ መስጠት: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,የውሂብ አስመጣ መሣሪያ DocType: Address,Dadra and Nagar Haveli,Dadra እና Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,በመስቀል ላይ ፋይሎች ጥቂት ሰኮንዶች እባክዎ ይጠብቁ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,የእርስዎ ሥዕል ያያይዙ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,የእርስዎ ሥዕል ያያይዙ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ረድፍ እሴቶች ተለውጧል DocType: Workflow State,Stop,ተወ DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,አንተ መክፈት ይፈልጋሉ ገጽ ጋር አገናኝ. እርስዎ አንድ ቡድን ወላጅ ማድረግ ከፈለጉ ባዶውን ይተዉት. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,የግራ ወደ ስያሜዎች DocType: Help Article,Expert,አዋቂ DocType: Workflow State,circle-arrow-right,ክበብ-ቀስት-ቀኝ DocType: LDAP Settings,LDAP Server Url,ኤልዲኤፒ የአገልጋይ ዩአርኤል -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,በውስጡ {0} ክፍት ነው ለምሳሌ መክፈት አይቻልም +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,በውስጡ {0} ክፍት ነው ለምሳሌ መክፈት አይቻልም apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ጭነት ወረፋ DocType: Custom DocPerm,Custom DocPerm,ብጁ DocPerm DocType: Newsletter,Send Unsubscribe Link,ከደንበኝነት አገናኝ ላክ @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,የመተግበሪያ {0} ተወግዷል DocType: Custom DocPerm,Apply User Permissions,የተጠቃሚ ፍቃዶችን ተግብር DocType: User,Modules HTML,ሞዱሎች ኤችቲኤምኤል -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ውቅረት> የተጠቃሚ ፍቃዶች አስኪያጅ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,የሚጎድሉ እሴቶች የሚያስፈልግ DocType: DocType,Other Settings,ሌሎች ቅንብሮች DocType: Social Login Keys,Frappe,Frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ተሸካሚ ማስመሰ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ምንም የተመረጠ ሰነድ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ዶ DocType: Event,Event,ድርጊት -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0} ላይ: {1} እንዲህ ሲል ጽፏል: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,መደበኛ መስክ መሰረዝ አልተቻለም. የሚፈልጉ ከሆነ ይህን መደበቅ ትችላለህ DocType: Top Bar Item,For top bar,ከላይ አሞሌ ለ apps/frappe/frappe/utils/bot.py +148,Could not identify {0},መለየት አልተቻለም {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,ዴስክ መዳረሻ DocType: Workflow State,minus,ያለ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,የአገልጋይ ስህተት: የ አገልጋይ ምዝግቦች ያረጋግጡ ወይም የቴክኖሎጂ ድጋፍን ያነጋግሩ. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,እንኳን ደህና መጡ ኢሜይል ተልኳል -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,የመጀመሪያው አጠቃቀም ሥርዓት ለማዘጋጀት እንመልከት. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,የመጀመሪያው አጠቃቀም ሥርዓት ለማዘጋጀት እንመልከት. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ተለይተው የቀረቡ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ቀድሞውኑ የተመዘገበ DocType: System Settings,Float Precision,ተንሳፈፈ ፕሪስሽን @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,አትም ፍቀድ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ምንም የተጫኑ መተግበሪያዎች apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,እንደ አስገዳጅ በመስክ ላይ ምልክት DocType: Communication,Clicked,ጠቅ ተደርጓል -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ምንም ፈቃድ «{0}» {1} DocType: User,Google User ID,የ Google ተጠቃሚ መታወቂያ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ለመላክ የተያዘለት DocType: DocType,Track Seen,ትራክ አይቼዋለሁ @@ -822,7 +821,7 @@ DocType: Address,Kerala,በኬረለ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,በአንድ ላይ ክፍለ ጊዜዎች DocType: OAuth Client,Client Credentials,የደንበኛ ምስክርነቶች -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,አንድ ሞዱል ወይም መሣሪያ ይክፈቱ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,አንድ ሞዱል ወይም መሣሪያ ይክፈቱ DocType: Communication,Delivery Status,የመላኪያ ሁኔታ DocType: Module Def,App Name,የመተግበሪያ ስም apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,የሚፈቀደው ከፍተኛ የፋይል መጠን ነው {0} ሜባ @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,የማጣቀሻ ኮሙኒኬ DocType: Email Queue,Unsubscribe Method,ከደንበኝነት ዘዴ DocType: GSuite Templates,Related DocType,ተዛማጅ DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ይዘት ለማከል አርትዕ -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ይምረጡ ቋንቋዎች -apps/frappe/frappe/__init__.py +510,No permission for {0},ምንም ፍቃድ {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ይምረጡ ቋንቋዎች +apps/frappe/frappe/__init__.py +509,No permission for {0},ምንም ፍቃድ {0} DocType: DocType,Advanced,የላቀ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,የኤ ፒ አይ ቁልፍ ይመስላል ወይም ኤ ሚስጥር ስህተት ነው !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ማጣቀሻ: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,ቅጽ አይነት ያስገቡ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ምንም መዛግብት መለያ ሰጥታለች. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,መስክ አስወግድ DocType: User,Send Password Update Notification,የይለፍ ቃል አዘምን ማሳወቂያ ላክ -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DocType, DocType መፍቀድ. ተጥንቀቅ!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType መፍቀድ. ተጥንቀቅ!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ማተም, ኢሜይል ብጁ ቅርጸቶች" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,አዲስ ስሪት ወደ ዘምኗል DocType: Custom Field,Depends On,እንደ ሁኔታው @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,አንዱ apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,ለመቅዳት ፋይል ይምረጡ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,አንድ አፍታ በማረጋገጥ ላይ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,አሳይ መለያዎች +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ተግብር ጥብቅ የተጠቃሚ ፈቃድ መዋቀሩን እና የተጠቃሚ ፍቃድ አንድ ተጠቃሚ አንድ DocType ለ ይገለጻል ከሆነ, ከዚያም አገናኝ ዋጋ ባዶ ቦታ ሁሉ ሰነዶች, ይህ ተጠቃሚ አይታዩም" DocType: Address,Billing,አከፋፈል DocType: Email Queue,Not Sent,የተላከ አይደለም DocType: Web Form,Actions,እርምጃዎች @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ግልጽ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,እያንዳንዱ ቀን ክስተቶች በአንድ ቀን ላይ መጨረስ አለባቸው. DocType: Communication,User Tags,የተጠቃሚ መለያዎች apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,በማምጣት ምስሎች .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ውቅረት> ተጠቃሚ DocType: Workflow State,download-alt,አውርድ-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},በማውረድ ላይ መተግበሪያ {0} DocType: Communication,Feedback Request,ግብረ ጥያቄ @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ምትኬዎች apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,እውቅያ ያክሉ DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,አማራጭ: ሁልጊዜ እነዚህን መታወቂያዎች መላክ. አዲስ ረድፍ ላይ እያንዳንዱ የኢሜይል አድራሻ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,ደብቅ ዝርዝሮች +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,ደብቅ ዝርዝሮች DocType: Workflow State,Tasks,ተግባሮች DocType: Event,Tuesday,ማክሰኞ DocType: Blog Settings,Blog Settings,የጦማር ቅንብሮች @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ይህን የተቀመጡ እና አምድ እና ውጤት መመለስ ባለበት ተመሳሳይ አቃፊ ውስጥ ዘንዶ ፋይል ጻፍ. DocType: DocType,Sort Field,ደርድር መስክ DocType: Razorpay Settings,Razorpay Settings,Razorpay ቅንብሮች -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,አርትዕ ማጣሪያ -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",ለምሳሌ. ሪፖርት DocType ማጣራት ነው ነገር ግን ምንም የተጠቃሚ ፍቃዶች አንድ ተጠቃሚ ሪፖርት የተገለጹ የተጠቃሚ ፍቃዶችን ተግብር ከሆነ; እንግዲያስ ሁሉ ሪፖርቶች ይህ ተጠቃሚ እንደሚታዩ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,አርትዕ ማጣሪያ +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,የመስክ {0} አይነት {1} የግዴታ ሊሆን አይችልም apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,አክል ተጨማሪ apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ደብቅ ገበታ DocType: System Settings,Session Expiry Mobile,ክፍለ ጊዜ የሚቃጠልበት ሞባይል @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,ዘግይቷል apps/frappe/frappe/config/setup.py +128,List of backups available for download,ለመውረድ የሚገኙ ምትኬዎች ዝርዝር apps/frappe/frappe/www/login.html +89,Sign up,ተመዝገቢ DocType: Test Runner,Output,ዉጤት +DocType: Email Alert,Set Property After Alert,ማንቂያ በኋላ ንብረት አዘጋጅ apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ቅጾች መስኮች ያክሉ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ነገር ይመስላል ይህ ጣቢያ የ Paypal ውቅር ጋር ስህተት ነው. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ቅጠል DocType: Portal Menu Item,Portal Menu Item,ፖርታል ምናሌ ንጥል DocType: User Email,Email ID,የኢሜይል መታወቂያ +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ሪፖርት DocType ለ ከተመረጠ ነው ነገር ግን ምንም የተጠቃሚ ፍቃዶች አንድ ተጠቃሚ ሪፖርት የተገለጹ የተጠቃሚ ፍቃዶችን ተግብር ከሆነ, ከዚያ ሁሉንም ሪፖርቶች ይህ ተጠቃሚ እንደሚታዩ" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,የደንበኛ መተግበሪያ ተጠቃሚው የሚፈቅድ በኋላ መዳረሻ ይኖራቸዋል ይህም ሀብት ዝርዝር.
ለምሳሌ ፕሮጀክት DocType: Translation,Translated Text,የተተረጎመ ጽሑፍ DocType: Contact Us Settings,Query Options,የመጠይቅ አማራጮች @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,እውቂያዎች DocType: System Settings,Setup Complete,ተጠናቋል apps/frappe/frappe/config/setup.py +66,Report of all document shares,ሁሉ ሰነዱን ማጋራቶች ሪፖርት apps/frappe/frappe/www/update-password.html +18,New Password,አዲስ የይለፍ ቃል -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ማጣሪያ {0} የሚጎድል +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ማጣሪያ {0} የሚጎድል apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,አዝናለሁ! አንተ በራስ-የመነጨ አስተያየቶች መሰረዝ አይችሉም DocType: Website Theme,Style using CSS,የሲ ኤስ ኤስ በመጠቀም ቅጥ apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,የማጣቀሻ DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,አግድ ሞዱሎች apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ርዝመት በመመለስ ላይ {0} ለ «{1}» ውስጥ «{2}»; ርዝመት በማዘጋጀት ላይ {3} ውሂብ ማሳጠሪያ ያደርጋል ነው. DocType: Print Format,Custom CSS,ብጁ CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,አስተያየት ያክሉ -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},ችላ: {0} ወደ {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ችላ: {0} ወደ {1} DocType: Address,Gujarat,ጉጃራት apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ሰር ክስተቶች (ቀጠሮ) ላይ ስህተት ይግቡ. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ትክክለኛ በኮማ የተለዩ እሴት (የ CSV ፋይል) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,ነባሪ ገቢ DocType: Workflow State,repeat,ደገመ DocType: Website Settings,Banner,ሰንደቅ DocType: Role,"If disabled, this role will be removed from all users.","ተሰናክሏል ከሆነ, ይህ ሚና ሁሉም ተጠቃሚዎች ይወገዳል." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ፍለጋ ላይ እገዛ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ፍለጋ ላይ እገዛ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,የተመዘገበ ነገር ግን ተሰናክሏል DocType: DocType,Hide Copy,ገልብጥ ደብቅ apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ሁሉም ሚናዎች አጽዳ @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,አገር apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,አድራሻዎች DocType: Communication,Shared,የተጋራ -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,የሰነድ አትም ያያይዙ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,የሰነድ አትም ያያይዙ DocType: Bulk Update,Field,መስክ DocType: Communication,Received,ተቀብሏል DocType: Social Login Keys,Google Client ID,Google ደንበኛ መታወቂያ @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,የመጠይቅ ሪፖርት DocType: User,Set New Password,አዲስ የይለፍ ቃል አዘጋጅ DocType: User,Github User ID,የፊልሙ የተጠቃሚ መታወቂያ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,የሰነድ አይነት ከሆነ -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም {1} ጋር የተያያዘ ነው {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም {1} ጋር የተያያዘ ነው {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},ያልታወቀ መተግበሪያ {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",የ% s ልክ የሆነ ሪፖርት ቅርጸት አይደለም. የሚከተሉትን የ% s ወደ አንድ \ ይገባል ሪፖርት ቅርጸት DocType: Communication,Chat,ውይይት -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ረድፎች ውስጥ ብዙ ጊዜ ይገኛል {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ረድፎች ውስጥ ብዙ ጊዜ ይገኛል {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} ከ {1} {2} ውስጥ ረድፍ # ወደ {3} DocType: Communication,Expired,ጊዜው አልፎበታል DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),አንድ መስመሮች ውስጥ መሬት የአምዶች ቁጥር (ፍርግርግ ውስጥ ጠቅላላ አምዶች ከ 11 መሆን አለበት) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,አንድ መለያ apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},ያልታወቀ የህትመት ቅርጸት: {0} DocType: Workflow State,arrow-down,ቀስት ወደ ታች apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ተደመሰሰ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ተጠቃሚ መሰረዝ አይፈቀድም {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ተጠቃሚ መሰረዝ አይፈቀድም {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,ለመጨረሻ ጊዜ የዘመነው DocType: Help Article,Likes,የተወደዱ DocType: Website Settings,Top Bar,ከፍተኛ አሞሌ DocType: GSuite Settings,Script Code,ስክሪፕት ኮድ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,የተጠቃሚ ኢሜይል ፍጠር -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,የተጠቀሰ ምንም ፍቃዶች +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,የተጠቀሰ ምንም ፍቃዶች apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,አለምአቀፍ ቅንብሮች: ተጠቃሚዎች ብቻ ምልክት የተደረገባቸው ምስሎች መምረጥ ይችላሉ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} አልተገኘም DocType: Custom Role,Custom Role,ብጁ ሚና apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,መነሻ / የሙከራ አቃፊ 2 DocType: System Settings,Ignore User Permissions If Missing,የጠፋ ከሆነ የተጠቃሚ ፍቃዶችን ችላ -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,ከመስቀልዎ በፊት ሰነዱን ያስቀምጡ. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ከመስቀልዎ በፊት ሰነዱን ያስቀምጡ. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,የይለፍ ቃልዎን ያስገቡ DocType: Dropbox Settings,Dropbox Access Secret,መሸወጃ መዳረሻ ሚስጥር apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ሌላው አስተያየት ያክሉ apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,አርትዕ DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ጋዜጣ ከደንበኝነት -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,አንድ ክፍል መግቻ በፊት መምጣት አለበት ማጠፍ +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,አንድ ክፍል መግቻ በፊት መምጣት አለበት ማጠፍ apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ለመጨረሻ ጊዜ በ የተቀየረው DocType: Workflow State,hand-down,እጅ-ታች DocType: Address,GST State,GST ግዛት -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ያለ አስገባ ሰርዝ ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ያለ አስገባ ሰርዝ ማዘጋጀት አይቻልም DocType: Website Theme,Theme,ገጽታ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,ስህተቶች ነበሩ. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ማረጋገጫ ኮድ ያመጣቸው አዘዋውር @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,የ DocType: Website Theme,Text Color,የጽሁፍ ቀለም DocType: Desktop Icon,Force Show,አስገድድ አሳይ apps/frappe/frappe/auth.py +78,Invalid Request,ልክ ያልሆነ ጥያቄ -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ይህ ቅጽ ማንኛውም ግቤት የለውም +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ይህ ቅጽ ማንኛውም ግቤት የለውም apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},ክፍለ ጊዜ የሚቃጠልበት ቅርጸት ውስጥ መሆን አለባቸው {0} DocType: Website Sidebar Item,Group,ቡድን DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ዒላማ ይምረጡ = "ባዶን" አንድ አዲስ ገጽ ውስጥ ለመክፈት. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ስህተቶች የቀረቡ ችላ. DocType: Workflow State,wrench,ጥምዝዝ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,አዘጋጅ አይደለም -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ውቅረት> ተጠቃሚ DocType: Authentication Log,Date,ቀን DocType: Website Settings,Disable Signup,ምዝገባ አሰናክል apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,የስርዓት እየተዘጋጀ ሳለ ይጠብቁ. ይሄ ጥቂት ደቂቃዎች ሊወስድ ይችላል. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,አስተያየት ያክሉ DocType: DocField,Mandatory,የግዴታ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ሞዱል Export ወደ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: ምንም መሠረታዊ ፍቃዶች ስብስብ +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: ምንም መሠረታዊ ፍቃዶች ስብስብ apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,የእርስዎ የደንበኝነት ምዝገባ ላይ ጊዜው {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},የመጠባበቂያ አውርድ አገናኝ በሚከተለው የኢሜይል አድራሻ ላይ ኢሜይል ይሆናል: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","ሰርዝ, አስገባ ትርጉም, አዋጅን" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,ጥያቄ-ሪፖርት apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},የተመደበ {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ማጣሪያዎች ተቀምጧል DocType: DocField,Percent,መቶኛ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ማጣሪያዎችን ለማዘጋጀት እባክዎ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ማጣሪያዎችን ለማዘጋጀት እባክዎ apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ጋር የተገናኙ DocType: Workflow State,book,መጽሐፍ DocType: Website Settings,Landing Page,የማረፊያ ገጽ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,ብጁ ስክሪፕት ላይ ስህተት +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,ብጁ ስክሪፕት ላይ ስህተት apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} ስም apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ማስመጣት ጥያቄ ወረፋ. ይሄ ትንሽ ጊዜ ሊወስድ ይችላል, እባክዎ ይታገሱ." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ምንም ፍቃዶች ይህን መስፈርት የተዘጋጀ ነው. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,የመግቢያ ሞባ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,ይህን ሀብት ለመድረስ በቂ ፍቃዶች የለዎትም. መዳረሻ ለማግኘት የእርስዎን አስተዳዳሪ ያነጋግሩ. DocType: Custom Field,Custom,ብጁ apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,የተለያዩ መስፈርቶች ላይ የተመሠረቱ ማዋቀር የኢሜይል ማስጠንቀቂያ. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},ስር የቀረቡ ልጥፎች {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},ስር የቀረቡ ልጥፎች {0} DocType: Email Alert,Send alert if date matches this field's value,ቀን በዚህ መስክ ያለውን እሴት ጋር የሚዛመድ ከሆነ ማንቂያ ላክ DocType: Workflow,Transitions,ሽግግሮች apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} አስወግድ እና ሁሉንም ውሂብ ሰርዝ? @@ -1284,9 +1285,8 @@ DocType: User,Login After,መግቢያ በኋላ DocType: Print Format,Monospace,ሞኖስፔስ DocType: Letter Head,Printing,ማተም DocType: Workflow State,thumbs-up,አሪፍ-ባይ -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አይደለም ማዋቀር. ውቅረት> ኢሜይል> ኢሜይል መለያ ከ አዲስ ኢሜይል መለያ ይፍጠሩ DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,ተሰልቶ 1 እና 6 መካከል መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,ተሰልቶ 1 እና 6 መካከል መሆን አለበት apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},ፍሬድሪክ: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ና DocType: Error Snapshot,Frames,ክፈፎች @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,ምስል አገናኝ DocType: Auto Email Report,Report Filters,ሪፖርት ማጣሪያዎች apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,አሁን DocType: Workflow State,step-backward,ደረጃ-ወደኋላ -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{APP_TITLE} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,ጣቢያዎ ውቅር ውስጥ መሸወጃ መዳረሻ ቁልፎች ማዘጋጀት እባክዎ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,በዚህ ኢሜይል አድራሻ መላክ ለመፍቀድ ይህን መዝገብ ይሰርዙ apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ብቻ የግዴታ መስኮች አዳዲስ መዝገቦች አስፈላጊ ናቸው. ከፈለጉ እርስዎ ያልሆኑ አስገዳጅ ዓምዶች መሰረዝ ይችላሉ. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,አባሪዎች አቃፊ ነው apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,ሁሉንም ዘርጋ apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,ልክ የመግቢያ መታወቂያ ያስፈልጋል. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,ዳግም-ክፈት -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,የ ክፍያ ሰርዘዋል -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ውሂብ ጋር ልክ የሆነ የ CSV ፋይል ይምረጡ +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ውሂብ ጋር ልክ የሆነ የ CSV ፋይል ይምረጡ apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} UN-የተጋራው ጋር ይህ ሰነድ {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} {1} አይፈቀድም ከ ሰነድ ሁኔታ ሽግግር DocType: DocType,"Make ""name"" searchable in Global Search",* Global Search ውስጥ ተፈልጎ የሚገኝ አድርገው "ስም" @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,የ DocType: Help Category,Help Category,የእገዛ ምድብ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,አባል {0} ተሰናክሏል apps/frappe/frappe/www/404.html +8,Page missing or moved,የጠፋ ወይም ተንቀሳቅሷል ገጽ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,አርትዕ {0} ንብረቶች DocType: DocType,Route,መንገድ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay የክፍያ ፍኖት ቅንብሮች DocType: DocField,Name,ስም apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,የእርስዎ ዕቅድ {0} ውስጥ ከፍተኛ ቦታ አልፈዋል. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ወደ ሰነዶች ፈልግ DocType: OAuth Authorization Code,Valid,ሕጋዊ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,አገናኝ ክፈት -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,የእርስዎ ቋንቋ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,አገናኝ ክፈት +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,የእርስዎ ቋንቋ apps/frappe/frappe/desk/form/load.py +46,Did not load,መጫን ነበር apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ረድፍ አክል DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,ግብረ ጥ DocType: Address,Lakshadweep Islands,Lakshadweep ደሴቶች apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,ይጻፉ ይችላሉ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","አንዳንድ ሰነዶች, አንድ ደረሰኝ እንደ አንድ የመጨረሻ መለወጥ የለበትም. እንዲህ ዓይነት ሰነዶች የመጨረሻው እርከን ገብቷል ተብሎ ይጠራል. እናንተ ሚና አስገባ ይችላሉ ለመገደብ ይችላሉ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,ይህን ሪፖርት ወደ ውጪ ለመላክ አይፈቀድም +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ይህን ሪፖርት ወደ ውጪ ለመላክ አይፈቀድም apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ንጥል ተመርጧል DocType: Newsletter,Test Email Address,የሙከራ ኢሜይል አድራሻ DocType: ToDo,Sender,የላኪ @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,አስመጣ .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,የሰነድ መታወቂያ DocType: Print Settings,Letter,ደብዳቤ -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,የምስል መስክ አይነት መሆን አለበት ምስል ያያይዙ +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,የምስል መስክ አይነት መሆን አለበት ምስል ያያይዙ DocType: DocField,Columns,አምዶች DocType: Async Task,Succeeded,ተሳክቷል apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},ውስጥ ያስፈልጋል አስገዳጅ መስኮች {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,ጽሑፍ አርታዒ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,እኛ ገጽ ስለ ቅንብሮች. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,አርትዕ ብጁ የ HTML DocType: Error Snapshot,Error Snapshot,ስህተት ቅጽበተ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ውስጥ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ውስጥ DocType: Email Alert,Value Change,እሴት ለውጥ DocType: Standard Reply,Standard Reply,መደበኛ ምላሽ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,የግቤት ሳጥን ስፋት @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ርዕስ ለማመንጨት ይህን fieldname ይጠቀሙ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,ከ አስመጣ ኢሜይል apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,የተጠቃሚ እንደ ጋብዝ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,ይምረጡ አባሪዎች +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,ይምረጡ አባሪዎች apps/frappe/frappe/model/naming.py +94, for {0},ለ {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,ስህተቶች ነበሩ. ይህን ሪፖርት ያድርጉ. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,እርስዎ ይህን ሰነድ ማተም አይፈቀድም +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,እርስዎ ይህን ሰነድ ማተም አይፈቀድም apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,ሪፖርት ማጣሪያ ሠንጠረዥ ውስጥ ማጣሪያዎችን ዋጋ ማዘጋጀት እባክህ. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,በመጫን ላይ ሪፖርት +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,በመጫን ላይ ሪፖርት apps/frappe/frappe/limits.py +72,Your subscription will expire today.,የእርስዎ የደንበኝነት ምዝገባ ዛሬ ጊዜው ያልፍበታል. DocType: Page,Standard,መለኪያ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ፋይል አያይዝ @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ክልላዊ ቅጥያዎች DocType: LDAP Settings,Base Distinguished Name (DN),Base ልዩ ስም (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ይህን ውይይት ውጣ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},አማራጮች አገናኝ መስክ ካልተዋቀረ {0} DocType: Customize Form,"Must be of type ""Attach Image""","ምስል አያይዝ" አይነት መሆን አለበት apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ሁሉንም አትምረጥ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},እርስዎ መስክ እንዳልተዋቀረ አይደለም 'ብቻ አንብብ' ይችላሉ {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ማስታወሻ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ስህተት ሪፖርት አድርግ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,ግብረ መልስ ሁኔታዎች አይዛመዱም -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,የጊዜ ሂደት መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,የጊዜ ሂደት መስክ ልክ የሆነ fieldname መሆን አለበት DocType: Currency,Symbol,ምልክት -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,የረድፍ # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,የረድፍ # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,አዲስ የይለፍ ቃል ኢሜይል apps/frappe/frappe/auth.py +245,Login not allowed at this time,በዚህ ጊዜ አይፈቀድም ይግቡና DocType: Email Account,Email Sync Option,ኢሜይል አስምር አማራጭ @@ -1555,7 +1553,7 @@ DocType: DocField,Text,ጽሑፍ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,መደበኛ የተለመዱ ጥያቄዎች መለሰለት. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ነባሪ በመላክ ላይ DocType: Workflow State,volume-off,ድምጽ-ጠፍቷል -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},የተወደደ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},የተወደደ {0} DocType: Footer Item,Footer Item,ግርጌ ንጥል ,Download Backups,አውርድ ምትኬዎች apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,መነሻ / የሙከራ አቃፊ 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,የጽሁፍ አሰላለፍ apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ስም እንደ ልዩ ቁምፊዎች ሊይዝ አይችልም {0} DocType: Contact Us Settings,Forward To Email Address,አስተላልፍ አድራሻ ኢሜይል ወደ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ሁሉንም ውሂብ አሳይ -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,የርዕስ መስክ ልክ የሆነ fieldname መሆን አለበት apps/frappe/frappe/config/core.py +7,Documents,ሰነዶች DocType: Email Flag Queue,Is Completed,የተጠናቀቁ ነው apps/frappe/frappe/www/me.html +22,Edit Profile,አርትዕ መገለጫ @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",እዚህ ላይ በተገለጸው fieldname እሴት አለው ወይም ደንብ እውነተኛ (ምሳሌዎች) ናቸው ብቻ ከሆነ ይህ መስክ ይታያል: myfield ኢቫል: doc.myfield == 'የእኔ እሴት »ኢቫል: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ዛሬ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ዛሬ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ይህን ካዋቀሩት በኋላ, ተጠቃሚዎች ብቻ ነው የሚችል መዳረሻ ሰነዶችን ይሆናል (ለምሳሌ. ልጥፍ ብሎግ) አገናኝ (ለምሳሌ. ብሎገር) አለ ቦታ." DocType: Error Log,Log of Scheduler Errors,መርሐግብር ስህተቶች መካከል መዝገብ DocType: User,Bio,የህይወት ታሪክ @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ኮከብ በመሆን ዝቅተኛ & 5 ኮከቦች ከፍተኛው ደረጃ መሆን DocType: Event,Ref Name,ማጣቀሻ ስም DocType: Web Page,Center,መሃል +DocType: Email Alert,Value To Be Set,ዋጋ እንዲዘጋጅ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,በመጀመሪያ ደረጃ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ሁኔታ ለመለወጥ የተመደበ አንድ ሰነድ እና ሚና ውስጥ የሚፈቀዱ ግዛቶች ይወክላል. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,አድስ ቅጽ @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,የድር እይታ አለው apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType ስም ደብዳቤ ጋር መጀመር አለበት እና ፊደሎችን, ቁጥሮችን, ክፍት ቦታዎችን እና የሥር ሊያካትት ይችላል" DocType: Communication,Spam,አይፈለጌ መልዕክት DocType: Integration Request,Integration Request,ውህደት ይጠይቁ -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,ውድ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,ውድ DocType: Address,Maharashtra,ማሃራሽትራ DocType: Address,Accounts User,የተጠቃሚ መለያዎች DocType: Web Page,HTML for header section. Optional,ራስጌ ክፍል ለ ኤች. ግዴታ ያልሆነ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ይህ ባህሪ አሁንም ፍጹም አዲስ እና የሙከራ ነው -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,ከፍተኛ {0} ረድፎች አይፈቀድም +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,ከፍተኛ {0} ረድፎች አይፈቀድም DocType: Email Unsubscribe,Global Unsubscribe,ዓለም አቀፍ ከደንበኝነት apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ይህ በጣም የተለመደ የይለፍ ቃል ነው. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,ይመልከቱ DocType: Communication,Assigned,የተመደበ DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,ይምረጡ የህትመት ቅርጸት +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ይምረጡ የህትመት ቅርጸት apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,አጭር ሰሌዳ ቅጦችን ለመገመት ቀላል ናቸው DocType: Portal Settings,Portal Menu,ፖርታል ማውጫ apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} ርዝመት በ 1 እና በ 1000 መካከል መሆን አለበት @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ተጠቃሚ ይፈልጉ አይቻልም apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,ልክ ያልሆነ የውጤት ቅርጸት DocType: Custom DocPerm,Apply this rule if the User is the Owner,የተጠቃሚ ባለቤት ከሆነ ይህን ህግ ተግብር -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,የመግቢያ መታወቂያ ይሆናል +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,የመግቢያ መታወቂያ ይሆናል apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,ሪፖርት ይገንቡ DocType: Note,Notify users with a popup when they log in,እነርሱም ውስጥ መግባት ጊዜ አንድ ብቅ-ባይ ጋር ተጠቃሚዎች አሳውቅ apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} የለም, ማዋሃድ አዲስ ዒላማ ይምረጡ" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,ሚናዎች ፈ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,አዘምን DocType: Error Snapshot,Snapshot View,ቅጽበተ-ይመልከቱ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ከመላክህ በፊት ጋዜጣ ላይ ያስቀምጡ -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},አማራጮች ረድፍ ውስጥ መስክ {0} ትክክለኛ DocType መሆን አለበት {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} አመት (ዎች) በፊት +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},አማራጮች ረድፍ ውስጥ መስክ {0} ትክክለኛ DocType መሆን አለበት {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,አርትዕ ንብረቶች DocType: Patch Log,List of patches executed,ጥገናዎች ዝርዝር ተገደለ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} አስቀድሞ ከደንበኝነት -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ኮሙኒኬሽን መካከለኛ +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ኮሙኒኬሽን መካከለኛ DocType: Website Settings,Banner HTML,ባነር ኤችቲኤምኤል apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. Razorpay «{0}» ምንዛሬ ግብይቶችን አይደግፍም apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,ምትኬ ወረፋ. ይህም አንድ ሰዓት ጥቂት ደቂቃዎች ሊወስድ ይችላል. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,OAuth ደንበኛ መተግበሪያ ይመዝገቡ -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ሊሆን አይችልም "{2}». ከዚህ ውስጥ አንዱ መሆን አለበት "{3}» apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ወይም {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,ዴስክቶፕ እየተሰረቁ አሳይ ወይም ደብቅ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,የይለፍ ቃል አዘምን @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,አሳይ መስመር ክፍሎች በኋላ ሰበረ DocType: Blogger,Short Name,አጭር ስም apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},ገጽ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","አንተ እንደ ሁሉም አመሳስል አማራጭ በመምረጥ ላይ ናቸው, ይህ ከአገልጋይ ሁሉንም \ ማንበብ እንዲሁም ያልተነበበ መልዕክት ዝርዝሩን ይሆናል. ይህ ደግሞ ኮሙኒኬሽን (ኢሜይሎች) መካከል ያለውን ድግግሞሽና \ ሊያስከትል ይችላል." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ፋይሎች መጠን @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,የግዢ አስተዳዳሪ DocType: Custom Script,Sample,ናሙና apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,UnCategorised መለያዎች DocType: Event,Every Week,በየሳምንቱ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,የኢሜይል መለያ አይደለም ማዋቀር. ውቅረት> ኢሜይል> ኢሜይል መለያ ከ አዲስ ኢሜይል መለያ ይፍጠሩ apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,የእርስዎ አጠቃቀም ያረጋግጡ ወይም ከፍ ያለ ዕቅድ ማሻሻያ ለማድረግ እዚህ ላይ ጠቅ ያድርጉ DocType: Custom Field,Is Mandatory Field,አስገዳጅ መስክ ነው DocType: User,Website User,የድር ጣቢያ ተጠቃሚ @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,ብጁ የጎን ማውጫ DocType: Workflow State,pencil,እርሳስ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,መልዕክቶች እና ሌሎች ማሳወቂያዎች ይወያዩ. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},እንደ ሊዘጋጁ አይችሉም በኋላ ያስገቡ {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},እንደ ሊዘጋጁ አይችሉም በኋላ ያስገቡ {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,ያጋሩ {0} ጋር apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,የኢሜይል መለያ ማዋቀር የይለፍ ቃልዎን ያስገቡ: DocType: Workflow State,hand-up,እጅ-ምትኬ DocType: Blog Settings,Writers Introduction,ማስጻፍ መግቢያ DocType: Address,Phone,ስልክ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ላይ ሳለ ስህተት በመገምገም ላይ የኢሜይል ማንቂያ {0}. የ አብነት ያስተካክሉ. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ላይ ሳለ ስህተት በመገምገም ላይ የኢሜይል ማንቂያ {0}. የ አብነት ያስተካክሉ. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ይምረጡ የሰነድ አይነት ወይም ሚና ለመጀመር. DocType: Contact,Passive,የማይሠራ DocType: Contact,Accounts Manager,መለያዎች አስተዳዳሪ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,የእርስዎ ክፍያ ተሰርዟል. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ይምረጡ የፋይል አይነት DocType: Help Article,Knowledge Base Editor,እውቀት ቤዝን አርታዒ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ገጹ አልተገኘም @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,የንብረት አይነት DocType: Workflow State,screenshot,ቅጽበታዊ ገጽ እይታ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ብቻ አስተዳዳሪ መደበኛ ሪፖርት ማስቀመጥ ይችላሉ. ዳግም መሰየም እና ያስቀምጡ. DocType: System Settings,Background Workers,የጀርባ ሠራተኞች +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} ሜታ ነገር ጋር የሚጋጩ DocType: Deleted Document,Data,መረጃ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,የሰነድ ሁኔታ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ሠራህ {0} መካከል {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,አሳይ የተጠቃሚ ፍቃዶች apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,በእናንተ ውስጥ መግባት እና መጠባበቂያ መድረስ መቻል የስርዓት አቀናባሪ ሚና እንዲኖረው ማድረግ ያስፈልጋል. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,የቀረ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,በማያያዝ በፊት ያስቀምጡ. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,በማያያዝ በፊት ያስቀምጡ. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ታክሏል {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ነባሪ ገጽታ ውስጥ ተዘጋጅቷል {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ከ ሊቀየር አይችልም {0} ወደ {1} ረድፍ ውስጥ {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,የስርዓት ቅንብሮች apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ክፍለ-ጊዜ መጀመር አልተሳካም apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ይህ ኢሜይል {0} ተልኳል እና ተቀድቷል ነበር {1} DocType: Workflow State,th,ኛ -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ውቅረት> ኢሜይል> ኢሜይል መለያ ከ እባክዎ ማዋቀር ነባሪውን የኢሜይል መለያ -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ፍጠር አዲስ {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ፍጠር አዲስ {0} DocType: Email Rule,Is Spam,አይፈለጌ መልዕክት ነው apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},ሪፖርት {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ክፍት {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ክፍት {0} DocType: OAuth Client,Default Redirect URI,ነባሪ ማዘዋወር URI DocType: Email Alert,Recipients,ተቀባዮች DocType: Workflow State,ok-sign,ok-ምልክት @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,የእገዛ ርዕሶች ,Modules Setup,ሞዱሎች ማዋቀር apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,አይነት: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,የእርስዎ ክፍያ አልተሳካም. DocType: Communication,Unshared,አልተጋራም DocType: Address,Karnataka,ካርናታካ apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ሞዱል አልተገኘም @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,የምርት ምስል DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ከላይ የዳሰሳ አሞሌ, ግርጌ እና ዓርማ ማዋቀር." DocType: Web Form Field,Max Value,ከፍተኛ እሴት -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},ለ {0} ውስጥ ደረጃ {1} በ {2} ረድፍ ውስጥ {3} DocType: Contact,All,ሁሉ DocType: Email Queue,Recipient,ተቀባይ DocType: Communication,Has Attachment,አባሪ አለው @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,አሰልፍ-ቀኝ DocType: Auto Email Report,Email To,ወደ ኢሜይል apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,አቃፊ {0} ባዶ አይደለም DocType: Page,Roles,ሚናዎችን -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},ስህተት: ለ ጠፍቷል ዋጋ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,የመስክ {0} ሊመረጥ አይችልም. DocType: System Settings,Session Expiry,ክፍለ ጊዜ የሚቃጠልበት DocType: Workflow State,ban-circle,እገዳ-ክበብ DocType: Email Flag Queue,Unread,ያልተነበበ @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,የተጠቃሚ ነባሪዎችን apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,አዲስ ፍጠር DocType: Workflow State,chevron-down,ሸቭሮን-ታች -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),አልተላከም ኢሜይል {0} (ተሰናክሏል / ከደንበኝነት) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),አልተላከም ኢሜይል {0} (ተሰናክሏል / ከደንበኝነት) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,ትንሹ የምንዛሬ ክፍልፋይ ዋጋ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ወደ መድብ @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,ከ DocType: Website Theme,Google Font (Heading),የ Google ቅርጸ ቁምፊ (ርዕስ የለም) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,በመጀመሪያ አንድ ቡድን አንጓ ይምረጡ. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},ያግኙ {0} ውስጥ {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},ያግኙ {0} ውስጥ {1} DocType: OAuth Client,Implicit,በውስጥ DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, መስኮችን, "ሁኔታ" ሊኖረው ይገባል "መገዛት" የተባለ) በዚህ DocType ላይ የሐሳብ ልውውጥ ጨምር" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","ተጠቃሚው መዳረሻ የሚፈቅድ አንድ ጊዜ ፈቃድ ኮድ መቀበል, እንዲሁም አለመሳካት ምላሾች ዩአርአይዎች. በተለምዶ ማረት ነጥብ ወደ ደንበኛ መተግበሪያ በ አጋልጧል.
ለምሳሌ: http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,ከገባ በኋላ {0} መቀየር አይፈቀድም +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,ከገባ በኋላ {0} መቀየር አይፈቀድም DocType: Communication,Comment Type,የአስተያየት አይነት DocType: OAuth Client,OAuth Client,OAuth ደንበኛ apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ተጠቃሚዎች @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},የፋይል ቅርጸት ማንበብ አልተቻለም {0} DocType: Auto Email Report,Filter Data,የማጣሪያ ውሂብ apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,አንድ መለያ አክል -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,መጀመሪያ አንድ ፋይል አባሪ ያድርጉ. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","ስም ማዋቀር አንዳንድ ስህተቶች ነበሩ, አስተዳዳሪ ያነጋግሩ" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ገቢ የኢሜይል መለያ ትክክል አይደለም apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,ኢሜይል ተልኳል DocType: DocField,Ignore XSS Filter,XSS ማጣሪያ ችላ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ተወግዷል apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox የመጠባበቂያ ቅንብሮች -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,እንደ ኢሜይል ላክ +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,እንደ ኢሜይል ላክ DocType: Website Theme,Link Color,አገናኝ ቀለም apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,አባል {0} ተሰናክሏል አይችልም apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","ውድ የስርዓት አስተዳዳሪ," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ሀገርህ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ሀገርህ DocType: Event,Sunday,እሁድ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ፍርግርግ እይታ ውስጥ DocType: Address Template,Template,አብነት @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,ዴልሂ apps/frappe/frappe/config/integrations.py +48,LDAP Settings,የኤልዲኤፒ ቅንብሮች apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,በማሻሻሌ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,የ PayPal ክፍያ ፍኖት ቅንብሮች -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: አይፈቀድም ቢበዛ ቁምፊዎች ነው እንደ «{1}» ({3}), በመቀጨቱ ያገኛሉ {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: አይፈቀድም ቢበዛ ቁምፊዎች ነው እንደ «{1}» ({3}), በመቀጨቱ ያገኛሉ {2}" DocType: OAuth Client,Resource Owner Password Credentials,የባለቤት የይለፍ ቃል ምስክርነቶች ንብረቱ DocType: OAuth Client,Response Type,የምላሽ አይነት apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,ከፍተኛ ተጠቃሚዎች @@ -2033,7 +2037,7 @@ DocType: DocField,Table,ጠረጴዛ DocType: File,File Size,የፋይል መጠን apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,ይህን ቅጽ ማስገባት መግባት አለበት DocType: User,Background Image,የጀርባ ምስል -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ዞን እና ምንዛሬ ይምረጡ" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","የእርስዎን አገር, የሰዓት ዞን እና ምንዛሬ ይምረጡ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,መካከል DocType: Async Task,Queued,ተሰልፏል @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,ፈጠረ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},ልክ ያልሆነ ማጣሪያ: {0} DocType: Email Account,no failed attempts,ምንም አልተሳካም ሙከራዎች +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ምንም ነባሪ አድራሻ አብነት አልተገኘም. ውቅረት> ማተም እና ብራንዲንግ> አድራሻ መለጠፊያ አንድ አዲስ ፍጠር እባክህ. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,የመተግበሪያ መዳረሻ ቁልፍ DocType: OAuth Bearer Token,Access Token,የመዳረሻ ማስመሰያ @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,የፊልሙ የተጠቃሚ ስም DocType: DocType,Image View,ምስል ይመልከቱ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ነገር ግብይቱ ወቅት ችግር ተፈጥሯል ይመስላል. እኛ ክፍያ ተረጋግጧል አላቸው በመሆኑ Paypal በራስ ሰር ይህን መጠን ተመላሽ ያደርጋል. ማለት ነው; አይደለም ከሆነ, አንድ ኢሜይል መላክ እና ትሰስር መታወቂያ መጥቀስ እባክህ: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","የይለፍ ውስጥ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","መስክ «{0}» ብጁ መስክ ላይ የተጠቀሰው በኋላ አስገባ «{1}», መለያ ጋር «{2}», የለም" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","የይለፍ ውስጥ ምልክቶችን, ቁጥሮችን እና ካፒታል ፊደሎችን አካትት" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","መስክ «{0}» ብጁ መስክ ላይ የተጠቀሰው በኋላ አስገባ «{1}», መለያ ጋር «{2}», የለም" DocType: Workflow State,signal,ምልክት DocType: DocType,Show Print First,አሳይ አትም በመጀመሪያ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl ለመለጠፍ አስገባ + @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ፋይል «{0} 'አልተገኘም apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ክፍል አስወግድ DocType: User,Change Password,የሚስጥር ቁልፍ ይቀይሩ -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},ልክ ያልሆነ ኢሜይል: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ሰላም! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},ልክ ያልሆነ ኢሜይል: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ሰላም! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,የክስተት መጨረሻ ከመጀመሪያው ቀጥሎ መሆን አለበት apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},በእናንተ ላይ አንድ ሪፖርት ለማግኘት ፈቃድ የለህም: {0} +DocType: System Settings,Apply Strict User Permissions,ጥብቅ የተጠቃሚ ፍቃዶችን ተግብር DocType: DocField,Allow Bulk Edit,የጅምላ አርትዕ ፍቀድ DocType: Blog Post,Blog Post,የጦማር ልጥፍ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,የላቀ ፍለጋ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,የላቀ ፍለጋ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,የይለፍ ቃል ዳግም መመሪያዎች የእርስዎ ኢሜይል ተልከዋል apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ደረጃ 0 መስክ ደረጃ ፈቃዶችን ለ ሰነድ ደረጃ ፈቃዶች, \ ከፍተኛ ደረጃ ነው." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,ተሽሯል DocType: Web Page,Sidebar and Comments,የጎን አሞሌ እና አስተያየቶች apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",አንድ ሰነድ በኋላ ይቅር እና ማስቀመጥ እንዲሻሻል ጊዜ: አሮጌውን ቁጥር አንድ ስሪት ነው አዲስ ቁጥር ያገኛሉ. DocType: Stripe Settings,Publishable Key,Publishable ቁልፍ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} አመት (ዎች) በፊት DocType: Workflow State,circle-arrow-left,ክበብ-ቀስት-ግራ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis መሸጎጫ አገልጋይ እየሄደ አይደለም. አስተዳዳሪ / ቴክኒካል ድጋፍ ያነጋግሩ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,የፓርቲ ስም -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,አዲስ መዝገብ ይስሩ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,አዲስ መዝገብ ይስሩ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,በመፈለግ ላይ DocType: Currency,Fraction,ክፍልፋይ DocType: LDAP Settings,LDAP First Name Field,ኤልዲኤፒ የመጀመሪያ ስም መስክ -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,ነባር አባሪዎችን ይምረጡ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ነባር አባሪዎችን ይምረጡ DocType: Custom Field,Field Description,የመስክ መግለጫ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ተከታትላችሁ በኩል አልተዘጋጀም ስም apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,የኢሜይል ገቢ መልዕክት ሳጥን @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,መረጃ: DocType: Custom Field,Permission Level,ፍቃድ ደረጃ DocType: User,Send Notifications for Transactions I Follow,እኔ ተከተለኝ የግብይት ማሳወቂያዎች ላክ -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: አስገባ ሰርዝ, ጻፍ ያለ እንዲሻሻል ማዘጋጀት አይቻልም" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ወደ አባሪ መሰረዝ ይፈልጋሉ እርግጠኛ ነዎት? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም {1} ጋር የተያያዘ ነው {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'ምንም ውጤቶች አልተገኙም

-apps/frappe/frappe/__init__.py +1063,Thank you,አመሰግናለሁ +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","መሰረዝ ወይም {0} ስለ ማስቀረት አይቻልም {1} ጋር የተያያዘ ነው {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,አመሰግናለሁ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,በማስቀመጥ ላይ DocType: Print Settings,Print Style Preview,ቅጥ የህትመት ቅድመ እይታ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,ዝርዝር ይመልከቱ DocType: Email Account,Use TLS,ይጠቀሙ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ልክ ያልሆነ አገባብ ወይም የይለፍ ቃል apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ቅጾች ብጁ ጃቫስክሪፕት ያክሉ. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR አይ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR አይ ,Role Permissions Manager,ሚና ፍቃዶች አስተዳዳሪ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,አዲስ የህትመት ቅርጸት ስም -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,አጽዳ አባሪ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,አጽዳ አባሪ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,የግዴታ: ,User Permissions Manager,የተጠቃሚ ፍቃዶች አስተዳዳሪ DocType: Property Setter,New value to be set,አዲስ እሴት እንዲዘጋጅ @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ቀ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ጦማር ልጥፎች ለመመደብ. DocType: Workflow State,Time,ጊዜ DocType: DocField,Attach,አያይዝ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ልክ የሆነ fieldname ጥለት አይደለም. ይህ መሆን አለበት {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ቢያንስ አንድ ግንኙነት ሰነዱን ይገኛል አለ ከሆነ ብቻ ነው ግብረ ጥያቄ ይላኩ. DocType: Custom Role,Permission Rules,ፍቃድ ደንቦች DocType: GSuite Settings,GSuite Settings,GSuite ቅንብሮች DocType: Address,Links,አገናኞች -apps/frappe/frappe/model/base_document.py +428,Value missing for,እሴት ጠፍቷል +apps/frappe/frappe/model/base_document.py +427,Value missing for,እሴት ጠፍቷል apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,የልጅ አክል -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ገብቷል ቅረጽ ሊሰረዝ አይችልም. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ምትኬ መጠን DocType: GSuite Templates,Template Name,የአብነት ስም -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ሰነድ አዲስ አይነት +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ሰነድ አዲስ አይነት DocType: Custom DocPerm,Read,አነበበ DocType: Role Permission for Page and Report,Role Permission for Page and Report,ገጽ እና ሪፖርት ለ ሚና ፍቃድ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,እሴት አሰልፍ apps/frappe/frappe/www/update-password.html +14,Old Password,የድሮ የይለፍ ቃል -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},ልጥፎች {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ልጥፎች {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ቅርጸት ወደ አምዶች, የሚከተለው መጠይቅ ውስጥ አምድ መለያዎችን ይሰጣሉ." DocType: Has Domain,Has Domain,ጎራ አለው apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,መለያ የለህም? ተመዝገቢ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable አይደለም ከሆነ መድብ እንዲሻሻል ማዘጋጀት አይቻልም DocType: Address,Bihar,ቢሃር apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,ሚና አርትዕ ፍቃዶች DocType: Communication,Link DocType,አገናኝ DocType @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,የእርስዎ መገለጫ የኢሜይል አድራሻ ያለው መሆኑን ያረጋግጡ apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,በዚህ ቅጽ ላይ ያልተቀመጡ ለውጦች አለዎት. ደረጃ ከመሔድ በፊት ያስቀምጡ. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} አማራጭ መሆን አለበት ነባሪ DocType: Tag Doc Category,Tag Doc Category,መለያ ሰነድ ምድብ DocType: User,User Image,የተጠቃሚ ምስል apps/frappe/frappe/email/queue.py +289,Emails are muted,ኢሜይሎች ድምጸ-ናቸው @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,ቀጣይ DocType: Workflow State,ok,እሺ DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,እነዚህ እሴቶች በራስ-ሰር ግብይቶች ውስጥ መዘመን እና እንዲሁም እነዚህን እሴቶች የያዙ ግብይቶች ላይ ይህ ተጠቃሚ ፍቃዶችን ለመገደብ ጠቃሚ ይሆናል. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,አታሚ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** አልተሳካም: {0} ወደ {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** አልተሳካም: {0} ወደ {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,አስገዳጅ ይምረጡ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ያስሱ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ኢሜይሎች ተልኳል @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,በማሄድ ላይ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,ዳግም አስጀምር የይለፍ ቃል apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,ከ {0} ተመዝጋቢዎች ለማከል ያልቁ እባክዎ DocType: Workflow State,hand-left,እጅ-ግራ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ልዩ መሆን አይችልም DocType: Email Account,Use SSL,SSL ተጠቀም DocType: Workflow State,play-circle,ጨዋታ-ክበብ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,አርትዕ የህትመት ቅርጸት ይምረጡ @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,ምንም ቅዳ DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,ኤልዲኤፒ ጋር ይግቡ DocType: Web Form,Breadcrumbs,የዳቦ ፍርፋሪ -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,ባለቤት ከሆነ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,ባለቤት ከሆነ DocType: OAuth Authorization Code,Expiration time,የሚያልፍበት ሰዓት DocType: Web Page,Website Sidebar,የድር ጣቢያ የጎን DocType: Web Form,Show Sidebar,የጎን አሞሌን አሳይ @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ማግኘት አ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,ራሳቸውን ስሞች እና አይበልጥም. ለመገመት ቀላል ናቸው. apps/frappe/frappe/config/website.py +93,Knowledge Base,እውቀት መሰረት DocType: Workflow State,briefcase,የእጅ ቦርሳ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},እሴት መለወጥ አይችልም {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},እሴት መለወጥ አይችልም {0} DocType: Feedback Request,Is Manual,በእጅ ነው DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ቅጥ አዝራሩን ቀለም ያመለክታል: ስኬት - አረንጓዴ, አደጋ - ቀይ, ተገላቢጦሽ - ጥቁር, የመጀመሪያ ደረጃ - ደማቅ ሰማያዊ, መረጃ - ፈካ ያለ ሰማያዊ, ማስጠንቀቂያ - ኦሬንጅ" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,ምንም ሪፖርት ተጭኗል. / [ሪፖርት ስም] አንድ ሪፖርት ለማስኬድ መጠይቅ-ሪፖርት ይጠቀሙ. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,እድገት apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ሚና በ apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,የጠፋ መስኮች apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname ውስጥ ልክ ያልሆነ fieldname «{0}» -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,አንድ ሰነድ ዓይነት ውስጥ ይፈልጉ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,አንድ ሰነድ ዓይነት ውስጥ ይፈልጉ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,መስክ እንኳን ከገባ በኋላ ሊደረግበት እንዲቀር DocType: Custom DocPerm,Role and Level,ሚና እና ደረጃ DocType: File,Thumbnail URL,ድንክዬ ዩ አር ኤል @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + g) DocType: Contact,More Information,ተጨማሪ መረጃ DocType: Desktop Icon,Desktop Icon,ዴስክቶፕ አዶ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ክፍያዎ በተሳካ ሁኔታ ተቀባይነት አግኝቷል +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ክፍያዎ በተሳካ ሁኔታ ተቀባይነት አግኝቷል apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,አዝናለሁ! እርስዎ ይህን ገጽ ለማየት አይፈቀድም. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ጠቃሚ ምክር: በእጥፍ ንኬት መክፈት ሕዋስ አርትዕ ለማድረግ DocType: Workflow State,bell,ደወል apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,የኢሜይል ማንቂያ ላይ ስህተት apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ይህን ሰነድ ያጋሩ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ውቅረት> የተጠቃሚ ፍቃዶች አስኪያጅ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,ልጆችን እንዳለው መጠን: {0} {1} አንድ ቅጠል መስቀለኛ መንገድ ሊሆን አይችልም DocType: Communication,Info,መረጃ -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,አባሪ አክል +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,አባሪ አክል DocType: Communication,Email,ኢሜይል apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,ለመልክትዎ አመሰግናለሁ -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,አንብብ ደረሰኝ ላክ +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,አንብብ ደረሰኝ ላክ DocType: Stripe Settings,Stripe Settings,ሰንበር ቅንብሮች DocType: Dropbox Settings,Dropbox Setup via Site Config,የጣቢያ Config በኩል dropbox ቅንብር apps/frappe/frappe/www/login.py +64,Invalid Login Token,ልክ ያልሆነ መግቢያ ማስመሰያ @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,የድር ዕይታ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ማስጠንቀቂያ: ይህ ህትመት ቅርጸት የድሮ ቅጥ ውስጥ ነው እና ኤ ፒ አይ በኩል ሊፈጠር አይችልም. DocType: DocField,Print Width,አትም ስፋት ,Setup Wizard,የውቅር አዋቂ +DocType: Address,GST State Number,GST ስቴት ቁጥር DocType: User,Allow user to login only before this hour (0-24),ተጠቃሚ ብቻ በዚህ ሰዓት በፊት መግባት (0-24) ፍቀድ apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,አቃፊ የግዴታ ነው apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ትንሽ ጽሑፍ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,አስተዳዳሪ ማግኘት {0} ላይ {1} የአይ ፒ አድራሻ በኩል {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,እኩል -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',የሜዳ አማራጮች 'ተለዋዋጭ አገናኝ' አይነት 'DocType' እንደ አማራጮች ጋር ሌላ አገናኝ መስክ ላይ መጥቀስ አለባቸው DocType: About Us Settings,Team Members Heading,ርእስ ቡድን አባላት apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,ልክ ያልሆነ የ CSV ቅርጸት apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ምትኬዎች ቁጥር አዘጋጅ @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,እውቂያ DocType: User,Third Party Authentication,የሦስተኛ ወገን ማረጋገጫ DocType: Website Settings,Banner is above the Top Menu Bar.,ሰንደቅ ምርጥ ምናሌ አሞሌ በላይ ነው. DocType: Razorpay Settings,API Secret,የኤ ፒ አይ ሚስጥር -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ወደ ውጪ ላክ ሪፖርት: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ወደ ውጪ ላክ ሪፖርት: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} የለም DocType: Email Account,Port,ወደብ DocType: Print Format,Arial,አሪያል @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,የአምድ ስም DocType: Language,Based On,በዛላይ ተመስርቶ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ነባሪ አድርግ apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe አገልጋይ ዩአርኤል ይመልከቱ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} መጠቆም አይችልም DocType: Communication,Email Account,የኢሜይል መለያ DocType: Workflow State,Download,አውርድ DocType: Blog Post,Blog Intro,መግቢያ ብሎግ @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,አስገባ ኮድ DocType: ToDo,Low,ዝቅ ያለ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,አንተ ጂንጃ templating በመጠቀም ሰነዱን ከ ተለዋዋጭ ንብረቶች ማከል ይችላሉ. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ልክ ያልሆነ ገደብ {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ሰነድ አይነት ዘርዝር +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ሰነድ አይነት ዘርዝር DocType: Event,Ref Type,ማጣቀሻ አይነት apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","አዲስ ሪኮርድ እየሰቀሉ ከሆነ, የ "ስም" (አይዲ) አምድ ባዶ ተወው." DocType: Address,Chattisgarh,Chattisgarh @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,እንደ PDF Print ላክ DocType: Web Form,Amount,መጠን DocType: Workflow Transition,Allowed,ተፈቅዷል -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ቅጽ ውስጥ አንድ ብቻ ነው እጠፈው ሊኖሩ ይችላሉ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},የፋይል ቅርጸት መጻፍ አልተቻለም {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,ነባሪ ቅንብሮች እነበረበት መልስ? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ልክ ያልሆነ መነሻ ገጽ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,ልክ ያልሆነ ግባ. እንደገና ሞክር. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ረድፍ ውስጥ አገናኝ ወይም ሠንጠረዥ አይነት መስክ {0} ያስፈልጋል አማራጮች {1} DocType: Auto Email Report,Send only if there is any data,ምንም ውሂብ የለም ብቻ ከሆነ ነው ላክ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ዳግም አስጀምር ማጣሪያዎች -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: ከፍተኛ ደረጃ ማዘጋጀት በፊት ደረጃ 0 ላይ ፈቃድ መዘጋጀት አለበት apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ተልእኮ በ ተዘግቷል {0} DocType: Integration Request,Remote,ሩቅ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,አሰበ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,አሰበ apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,መጀመሪያ DocType እባክዎ ይምረጡ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,የእርስዎ ኢሜይል ያረጋግጡ apps/frappe/frappe/www/login.html +42,Or login with,ወይስ ጋር መግባት DocType: Error Snapshot,Locals,የአካባቢው ሰዎች apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},በኩል እንዳልተካፈለች {0} ላይ {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ውስጥ አስተያየት ውስጥ ጠቅሶሃል {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ለምሳሌ: (55 + 434) / 4 ወይም = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ለምሳሌ: (55 + 434) / 4 ወይም = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ያስፈልጋል DocType: Integration Request,Integration Type,የውህደት አይነት DocType: Newsletter,Send Attachements,Attachements ላክ @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,Perm ደረጃ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,በዛሬው ቀን መቁጠሪያ ውስጥ ክስተቶች DocType: Web Page,Web Page,ድረ ገጽ DocType: Blog Category,Blogger,ብሎገር -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ግሎባል ፍለጋ ውስጥ' አይነት አይፈቀድም {0} ረድፍ ውስጥ {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ይመልከቱ ዝርዝር -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},የቀን ቅርጸት ውስጥ መሆን አለባቸው: {0} DocType: Workflow,Don't Override Status,ሁኔታ ሻር አትበል apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ደረጃ ይስጡ. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ግብረ ጥያቄ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,የፍለጋ ቃል -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,የመጀመሪያው አባል: አንተ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,የመጀመሪያው አባል: አንተ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,ይምረጡ አምዶች DocType: Translation,Source Text,ምንጭ ጽሑፍ apps/frappe/frappe/www/login.py +55,Missing parameters for login,መግባት ይጎድላሉ መለኪያዎች @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,በማስገባት ላይ DocType: ToDo,Assigned By,በ የተመደበው apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,እናንተ መስኮች ላይ ደረጃ ለማዘጋጀት ያብጁ ቅጽ መጠቀም ይችላሉ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,የእርስዎን ክልል ይምረጡ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,የእርስዎን ክልል ይምረጡ DocType: Custom DocPerm,Level,ደረጃ DocType: Custom DocPerm,Report,ሪፖርት apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,የገንዘብ መጠን 0 የበለጠ መሆን አለበት. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,ዳራ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","የተጠቃሚ ፍቃዶችን ለማመልከት ያገለግላል DocTypes መካከል JSON ዝርዝር. ባዶ ከሆነ, ሁሉም የተገናኘ DocTypes የተጠቃሚ ፍቃዶችን ተግባራዊ ለማድረግ ጥቅም ላይ ይውላል." DocType: Report,Ref DocType,ማጣቀሻ DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,አንድ ደረጃ ያክሉ -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: ያለ ይቅር እንዲሻሻል ማዘጋጀት አይቻልም apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,ሙሉ ገጽ DocType: DocType,Is Child Table,የልጅ ማውጫ ነው apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ውስጥ አንዱ መሆን አለበት {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ይህ የተንሸራ apps/frappe/frappe/config/setup.py +260,Install Applications.,መተግበሪያዎች ይጫኑ. DocType: Contact,Last Name,የአያት ሥም DocType: Event,Private,የግል -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ዛሬ ምንም ማንቂያዎች +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ዛሬ ምንም ማንቂያዎች DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),እንደ ፒዲኤፍ የኢሜይል የህትመት አባሪዎች ይላኩ (የሚመከር) DocType: Web Page,Left,ግራ DocType: Event,All Day,ሙሉ ቀን @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,ጠዋት አንድ የኢ DocType: Blog Post,Published On,ላይ የታተመ DocType: Contact,Gender,ፆታ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ጠፍቷል አስገዳጅ መረጃ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,የመስክ «{0}» ያልሆኑ ልዩ እሴቶች አሉት እንደ ልዩ ሊዘጋጅ አይችልም apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,ብቻ 200 ያስገባል አንድ ጥያቄ ውስጥ አይፈቀዱም DocType: Footer Item,URL,ዩ አር ኤል DocType: ToDo,Reference Type,የማጣቀሻ አይነት @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ማስጠንቀቂያ-ምልክት DocType: Workflow State,User,ተጠቃሚ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",እንደ የአሳሽ መስኮት ውስጥ አሳይ ርዕስ "ቅድመ ቅጥያ - ርዕስ" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ሰነድ ዓይነት ውስጥ ጽሑፍ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ሰነድ ዓይነት ውስጥ ጽሑፍ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,አሂድ ፈተናዎች apps/frappe/frappe/handler.py +91,Logged Out,ውጪ ገብቷል apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,ተጨማሪ ... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,በአሁኑ ጊዜ በማየት ላይ DocType: DocField,Default,ነባሪ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ታክሏል -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',ፈልግ «{0}» +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ፈልግ «{0}» apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,መጀመሪያ ሪፖርት ማስቀመጥ እባክዎ apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ተመዝጋቢዎች ታክሏል apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,አይደለም ውስጥ DocType: Workflow State,star,ኮከብ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,እሴቶች በኮማ የተለዩ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,እሴቶች በኮማ የተለዩ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},አይነት ምንዛሬ ለማግኘት ከፍተኛ ስፋት ረድፍ ውስጥ 100px ነው {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},የእርስዎን ግብረመልስ ለማጋራት እባክዎ {0} apps/frappe/frappe/config/website.py +13,Content web page.,የይዘት ድረ-ገጽ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,አዲስ ሚና አክል @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ትክክለኛ የኤልዲኤፒ ተጠቃሚ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} አይደለም የሚሰራ መንግስት apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',ሌላ የክፍያ ስልት ይምረጡ. PayPal «{0}» ምንዛሬ ግብይቶችን አይደግፍም -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,የፍለጋ መስክ {0} ልክ ያልሆነ ነው DocType: Workflow State,ok-circle,ok-ክበብ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',አንተ 'ደንበኞች ውስጥ ብርቱካናማ ማግኘት' በመጠየቅ ነገሮችን ማግኘት ይችላሉ apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,አዝናለሁ! ተጠቃሚ የራሳቸውን መዝገብ ሙሉ መዳረሻ ሊኖራቸው ይገባል. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Meta አጣራ DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ይህን ቅጽ አንድ ድረ-ገጽ ካለው ጽሑፍ ድረ ገጽ አገናኝ ለ እንዲታዩ. አገናኝ መንገድ በራስ-ሰር page_name` እና `parent_website_route`` ላይ ተመስርተው የመነጩ ይሆናል DocType: Feedback Request,Feedback Trigger,ግብረ ቀስቅስ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,በመጀመሪያ {0} ማዘጋጀት እባክዎ DocType: Unhandled Email,Message-id,መልዕክት-መታወቂያ DocType: Patch Log,Patch,መጣፈያ DocType: Async Task,Failed,አልተሳካም diff --git a/frappe/translations/ar.csv b/frappe/translations/ar.csv index ad8b08bb3e..85e7268e6d 100644 --- a/frappe/translations/ar.csv +++ b/frappe/translations/ar.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,اسم المستخدم للفيس بوك DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ملاحظة: سيتم السماح جلسات متعددة في حالة جهاز المحمول apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},تمكين البريد الوارد البريد الإلكتروني للمستخدم {المستخدمين} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,لا يمكن إرسال هذا البريد الإلكتروني. لقد تجاوزت الحدود ارسال {0} رسائل البريد الإلكتروني لهذا الشهر. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,إرسال دائم {0} ؟ +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,إرسال دائم {0} ؟ DocType: Address,County,مقاطعة DocType: Workflow,If Checked workflow status will not override status in list view,إذا ووضع العمل تم الفحص لا تجاوز الوضع في عرض القائمة apps/frappe/frappe/client.py +280,Invalid file path: {0},مسار الملف غير صالح: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,يرج apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} شجرة DocType: User,User Emails,رسائل البريد الإلكتروني المستخدم DocType: User,Username,اسم االمستخدم -apps/frappe/frappe/model/base_document.py +581,Value too big,قيمة كبيرة جدا +apps/frappe/frappe/model/base_document.py +580,Value too big,قيمة كبيرة جدا DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,تشغيل اختبار البرنامج النصي DocType: Contact,Department,قسم @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,السجلات DocType: Custom DocPerm,This role update User Permissions for a user,هذا الدور ضوابط التحديث العضو لمستخدم apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},إعادة تسمية {0} DocType: Workflow State,zoom-out,تصغير -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,لا يمكن فتح {0} عندما مثيل لها مفتوح +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,لا يمكن فتح {0} عندما مثيل لها مفتوح apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,الجدول {0} لا يمكن أن يكون فارغ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,مع سجلات الحسابات apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,صور DocType: Communication,Reference Owner,إشارة المالك DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,أصغر وحدة تعميم جزء (عملة). على سبيل المثال ل 1 في المائة لUSD ويجب إدخال كما 0.01 DocType: Social Login Keys,GitHub,جيثب -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0}، الصف {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0}، الصف {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,يرجى إعطاء FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,بدء ب apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,قالب ادخال البيانات apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,أصل DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",إذا تم تمكينه، سيتم فرض قوة كلمة المرور استنادا إلى قيمة الحد الأدنى لقيمة كلمة المرور. قيمة 2 كونها متوسطة قوية و 4 قوية جدا. DocType: About Us Settings,"""Team Members"" or ""Management""","""أعضاء الفريق"" أو ""الإدارة""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',يجب أن يكون الافتراضي ل 'تحقق' نوع من المجال إما '0' أو '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',يجب أن يكون الافتراضي ل 'تحقق' نوع من المجال إما '0' أو '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,أمس DocType: Contact,Designation,تعيين DocType: Test Runner,Test Runner,اختبار عداء @@ -69,8 +69,8 @@ apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You nee DocType: DocType,Is Published Field,ونشرت الميدان DocType: Email Group,Email Group,البريد الإلكتروني المجموعة DocType: Note,Seen By,تمت رؤيته بواسطة -apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,إضافة عدة -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,لا تعجبني +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,إضافة متعددة +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,لا تعجبني apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,تعيين التسمية عرض للحقل apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},قيمة غير صحيحة: {0} يجب أن يكون {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",تغيير خصائص الحقل (إخفاء ، للقراءة فقط ، إذن الخ ) @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,إعدا apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,تسجيل دخول مسؤول النظام DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",خيارات الاتصال، مثل "الاستعلام المبيعات والدعم الاستعلام" الخ كل على سطر جديد أو مفصولة بفواصل. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. تحميل -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,إدراج +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,إدراج apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},حدد {0} DocType: Print Settings,Classic,كلاسيكي DocType: Desktop Icon,Color,اللون @@ -113,7 +113,7 @@ apps/frappe/frappe/core/doctype/user/user.py +874,"If you think this is unauthor apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} إلزامي DocType: Workflow State,eject,اخرج apps/frappe/frappe/public/js/legacy/clientscriptAPI.js +290,Field {0} not found.,الحقل {0} غير موجود. -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,مساعدة لضوابط العضو +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,مساعدة لصلاحيات المستخدم DocType: Standard Reply,Owner,مالك DocType: Communication,Visit,زيارة DocType: LDAP Settings,LDAP Search String,LDAP بحث سلسلة @@ -121,7 +121,7 @@ DocType: Translation,Translation,ترجمة apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,تثبيت apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,السيد DocType: Custom Script,Client,عميل -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,تم تعديل هذا النموذج بعد أن كنت قد تحميلها +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,تم تعديل هذا النموذج بعد أن كنت قد تحميلها DocType: User Permission for Page and Report,User Permission for Page and Report,إذن المستخدم لصفحة وتقرير DocType: Address,Himachal Pradesh,هيماشال براديش DocType: System Settings,"If not set, the currency precision will depend on number format",إذا لم يتم تعيينها، فإن دقة العملة تعتمد على تنسيق الأرقام @@ -135,7 +135,7 @@ apps/frappe/frappe/public/js/frappe/form/save.js +138,"Mandatory fields required apps/frappe/frappe/utils/password_strength.py +173,Capitalization doesn't help very much.,القيمة لا يساعد كثيرا جدا. DocType: Error Snapshot,Friendly Title,عنوان دية DocType: Newsletter,Email Sent?,ارسال البريد الالكترونى ؟ -DocType: Authentication Log,Authentication Log,مصادقة تسجيل الدخول +DocType: Authentication Log,Authentication Log,سجل اخطاء المصادقة apps/frappe/frappe/desk/form/save.py +50,Did not cancel,لم إلغاء DocType: Workflow State,plus,زائد apps/frappe/frappe/integrations/oauth2.py +119,Logged in as Guest or Administrator,دخولك كضيف أو المسؤول @@ -147,19 +147,19 @@ apps/frappe/frappe/public/js/frappe/misc/user.js +61,You,أنت DocType: Website Theme,lowercase,أحرف صغيرة DocType: Print Format,Helvetica,هلفتيكا DocType: Address,Jharkhand,جهارخاند -apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Newsletter has already been sent,وقد تم بالفعل أرسلت الرسالة الإخبارية +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Newsletter has already been sent,الرسالة الإخبارية قد تم إرسالها من قبل DocType: Unhandled Email,Reason,سبب apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,يرجى تحديد المستخدم DocType: Email Unsubscribe,Email Unsubscribe,البريد الإلكتروني إلغاء الاشتراك DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,اختر صورة بعرض 150px تقريبا مع خلفية شفافة لنتيجة افضل -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,المستخدم الأول سوف تصبح مدير النظام (يمكنك تغيير هذا لاحقا). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,المستخدم الأول سوف تصبح مدير النظام (يمكنك تغيير هذا لاحقا). ,App Installer,التطبيق المثبت DocType: Workflow State,circle-arrow-up,دائرة السهم إلى أعلى apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,تحميل ... DocType: Email Domain,Email Domain,المجال البريد الإلكتروني DocType: Workflow State,italic,مائل apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,للجميع -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : لا يمكن تحديد استيراد دون إنشاء +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : لا يمكن تحديد استيراد دون إنشاء apps/frappe/frappe/config/desk.py +26,Event and other calendars.,الحدث والتقويمات الأخرى. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,جميع الحقول ضرورية لتقديم التعليق. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,اسحب لفرز الأعمدة @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,القائمة الشريط ال apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,لا يمكن حذف مجلدات القائمة الرئيسية والمرفقات apps/frappe/frappe/config/desk.py +19,Files,الملفات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,الحصول على تطبيق الأذونات على المستخدمين على أساس ما الأدوار التي تم تعيينها . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,الرجاء تحديد أتلست العمود 1 من {0} لفرز / مجموعة +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,لا يسمح لك بإرسال رسائل البريد الإلكتروني ذات الصلة بهذه الوثيقة +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,الرجاء تحديد أتلست العمود 1 من {0} لفرز / مجموعة DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,حدد هذا الخيار إذا كنت اختبار الدفع الخاص بك باستخدام API رمل apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,لا يسمح لك بحذف موضوع الموقع القياسي DocType: Feedback Trigger,Example,مثال @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,إجمالي عدد المشتركين apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",إذا لم يكن لديك الوصول دور في المستوى 0، ثم مستويات أعلى لا معنى لها. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,حفظ باسم DocType: Communication,Seen,رأيت -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,إظهار مزيد من التفاصيل +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,إظهار مزيد من التفاصيل DocType: System Settings,Run scheduled jobs only if checked,تشغيل المهام المجدولة الا إذا دققت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,سيتم عرض فقط إذا تم تمكين عناوين المقطع apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,أرشيف @@ -219,13 +219,12 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,مشاهدة ا apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,مطلوب بريد إلكتروني صالح واسم صالح DocType: DocType,Hide Heading,إخفاء العنوان DocType: Address,Current,تيار -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,الوثائق ذات الصلة apps/frappe/frappe/config/core.py +17,Groups of DocTypes,مجموعات من DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,إزالة دائرة، DocType: Help Article,Beginner,مبتدئ DocType: Contact,Is Primary Contact,هو جهة الاتصال الرئيسية -apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,جافا سكريبت لإلحاق رئيس قسم من الصفحة. +apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,جافا سكريبت لإلحاقها بأعلى قسم من الصفحة. apps/frappe/frappe/www/printview.py +80,Not allowed to print draft documents,لا يسمح لطباعة مسودات الوثائق apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +12,Reset to defaults,إعادة تعيين إلى الإعدادات الافتراضية DocType: Workflow,Transition Rules,الانتقال قوانين @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,فلتر apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} لا يمكن أن يكون أحرف خاصة مثل {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,تحديث العديد من القيم في وقت واحد. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,تم تعديل الوثيقة بعد أن كنت قد فتحه: خطأ -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد> الطباعة والعلامة التجارية> نموذج العنوان. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} تسجيل الخروج: {1} DocType: Address,West Bengal,البنغال الغربي -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : لا يمكن تحديد تعيين بالتأكيد إذا لم يكن قابل للتأكيد DocType: Social Login Keys,Facebook,الفيسبوك apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",تمت تصفيتها من قبل "{0}" DocType: Salutation,Administrator,مدير @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,عنوان المدونه apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,أدوار القياسية لا يمكن تعطيل DocType: Address,Mizoram,ميزورام DocType: Newsletter,Newsletter,النشرة الإخبارية -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,لا يمكن استخدام الاستعلام الفرعي في النظام عن طريق +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,لا يمكن استخدام الاستعلام الفرعي في النظام عن طريق DocType: Web Form,Button Help,تعليمات زر DocType: Kanban Board Column,purple,أرجواني DocType: About Us Settings,Team Members,أعضاء الفريق @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,الحصول apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",انتهى اشتراكك في {0}. تجديد، {1}. DocType: Workflow State,plus-sign,زائد توقيع apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,الإعداد الكامل بالفعل -apps/frappe/frappe/__init__.py +890,App {0} is not installed,لم يتم تثبيت التطبيق {0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,لم يتم تثبيت التطبيق {0} DocType: Workflow State,Refresh,تحديث DocType: Event,Public,جمهور apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,لا شيء لإظهار @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,أحب بواس apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,دعم البريد الإلكتروني DocType: DocField,Print Hide If No Value,طباعة إخفاء إذا لا قيمة DocType: Event,yellow,الأصفر -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,ونشرت الميدان يجب أن يكون ساري المفعول FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,ونشرت الميدان يجب أن يكون ساري المفعول FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,رفع المرفقات DocType: Block Module,Block Module,كتلة الوحدة apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,قالب التصدير @@ -289,10 +287,10 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,ال DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},تم إنشاء حساب جديد لك في {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,تعليمات عبر البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),أدخل البريد الإلكتروني المستلم +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),أدخل البريد الإلكتروني المستلم DocType: Print Format,Verdana,فيردانا DocType: Email Flag Queue,Email Flag Queue,البريد الإلكتروني العلم قائمة الانتظار -apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,لا يمكن تحديد مفتوحة {0}. جرب شيئا آخر. +apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,لا يمكن تحديد {0} المفتوح. جرب شيئا آخر. apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,وقد تم تقديم المعلومات الخاصة بك apps/frappe/frappe/core/doctype/user/user.py +292,User {0} cannot be deleted,المستخدم {0} لا يمكن حذف DocType: System Settings,Currency Precision,دقة العملة @@ -303,8 +301,8 @@ DocType: Communication,Message ID,معرف الرسالة DocType: Property Setter,Field Name,اسم الحقل apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,لم تتم تهيئة غوغل غسويت. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,أو -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,اسم الوحدة برمجية ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,استمر +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,اسم الوحدة برمجية ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,استمر DocType: Custom Field,Fieldname,اسم الحقل DocType: Workflow State,certificate,شهادة DocType: User,Tile,قرميدة @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,عرض كل الإصدارات DocType: Workflow State,Print,طباعة DocType: User,Restrict IP,تقييد IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,لوحة القيادة apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,غير قادر على إرسال رسائل البريد الإلكتروني في هذا الوقت apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,بحث أو كتابة أمر DocType: Communication,Timeline Name,اسم الزمني @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,رئيس مدير المبيعات apps/frappe/frappe/www/complete_signup.html +13,One Last Step,واحد الخطوة الأخيرة apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,اسم نوع الوثيقة (DOCTYPE) تريد هذا الحقل لتكون مرتبطة. على سبيل المثال العملاء DocType: User,Roles Assigned,الأدوار المسندة -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,بحث تعليمات +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,بحث تعليمات DocType: Top Bar Item,Parent Label,الملصق الاصل apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",وقد وردت الاستعلام الخاص بك. سوف نقوم بالرد مرة أخرى قريبا. إذا كان لديك أي معلومات إضافية، يرجى الرد على هذا البريد. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,يتم تحويل أذونات تلقائيا إلى التقارير الموحدة و البحث . @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,تحرير العنوان DocType: File,File URL,ملف URL DocType: Version,Table HTML,جدول HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

لم يتم العثور على نتائج ل '

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,إضافة المشتركين apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,الأحداث القادمة لهذا اليوم DocType: Email Alert Recipient,Email By Document Field,البريد الإلكتروني بواسطة حقل الوثيقة @@ -355,21 +355,20 @@ DocType: Currency,Fraction Units,جزء الوحدات apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,{0} from {1} to {2},{0} من {1} إلى {2} DocType: Communication,Type,النوع DocType: Authentication Log,Subject,موضوع -DocType: Web Form,Amount Based On Field,المبلغ بناء على الميدان +DocType: Web Form,Amount Based On Field,المبلغ بناء على الحقل apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,المستخدم إلزامي للمشاركة DocType: DocField,Hidden,مخفي DocType: Web Form,Allow Incomplete Forms,يسمح للنماذج الغير مكتملة -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} يجب تحديده أولا +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} يجب تحديده أولا apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",.استخدم كلمات قليلة، وتجنب العبارات الشائعة DocType: Workflow State,plane,طائرة -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,عفوا. وقد فشل الدفع الخاص بك. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","إذا كنت تحميل سجلات جديدة، ""تسمية السلسلة"" تصبح إلزامية، إذا كان موجودا." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,الحصول على تنبيهات لهذا اليوم +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,الحصول على تنبيهات لهذا اليوم apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE لا يمكن تسميتها من قبل المسؤول apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},القيمة المتغيرة لل{0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,يرجى التحقق من بريدك الالكتروني للتحقق -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,أضعاف لا يمكن أن يكون في نهاية النموذج DocType: Communication,Bounced,وثب DocType: Deleted Document,Deleted Name,اسم المحذوفة apps/frappe/frappe/config/setup.py +14,System and Website Users,النظام و الموقع الالكتروني للمستخدمين @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,قائمة الانت DocType: GSuite Templates,Destination ID,رقم تعريف الوجهة DocType: Desktop Icon,List,قائمة DocType: Communication,Link Name,اسم الرابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون الافتراضي +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,الحقل {0} في {1} الصف لا يمكن أن تكون مخفية وإلزامية دون القيمة الافتراضية DocType: System Settings,mm/dd/yyyy,مم / اليوم / السنة apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,رمز مرور خاطئ: DocType: Print Settings,Send document web view link in email,إرسال ثيقة الارتباط عرض على شبكة الإنترنت في البريد الإلكتروني apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,{0} يتم حفظ ملاحظات للحصول على وثيقة بنجاح apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,سابق -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,رد: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,رد: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} صفوف لـ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",شبه العملات. ل "سنت" على سبيل المثال apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,حدد ملف مرفوع @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,رابط apps/frappe/frappe/utils/file_manager.py +96,No file attached,أي ملف مرفق DocType: Version,Version,الإصدار DocType: User,Fill Screen,ملء الشاشة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",غير قادر على عرض هذا التقرير المشجر، وذلك بسبب البيانات المفقودة. على الأرجح، يتم تصفيتها بسبب الأذونات. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,الرجاء الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",غير قادر على عرض هذا التقرير المشجر، وذلك بسبب البيانات المفقودة. على الأرجح، يتم تصفيتها بسبب الأذونات. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. حدد ملف apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,تحرير عبر التحميل -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",نوع الوثيقة ...، على سبيل المثال العملاء +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",نوع الوثيقة ...، على سبيل المثال العملاء apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,الشرط '{0}' غير صالح DocType: Workflow State,barcode,الباركود apps/frappe/frappe/config/setup.py +232,Add your own translations,أضف الترجمة الخاصة بك @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,الأربعاء apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",وبصرف النظر عن دور أساس القواعد إذن ، يمكنك تطبيق أذونات المستخدم استنادا DocTypes . apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",سيتم تطبيق هذه الأذونات لجميع المعاملات حيث يتم ربط السجل المسموح بها. -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,يجب أن يكون حقل صورة لFIELDNAME صحيح DocType: OAuth Client,Token,رمز DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (اسم) للكيان الذي هو الملكية التي سيتم تحديدها apps/frappe/frappe/limits.py +82,"To renew, {0}.",تجديد، {0}. @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,عناصر الشريط الجانبي apps/frappe/frappe/installer.py +125,App {0} already installed,التطبيق {0} مثبت مسبقا DocType: Workflow State,exclamation-sign,تعجب علامة- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,مشاهدة ضوابط -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,يجب أن يكون حقل الزمني رابط أو الارتباط الحيوي apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,نطاق الموعد apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,جانت apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},الصفحة {0} من {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,اعر apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",مفتاح التشفير غير صالح، يرجى التحقق من site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,إلى DocType: Kanban Board Column,darkgrey,الرمادي الداكن -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ناجح: {0} إلى {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ناجح: {0} إلى {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,لا يمكن تغيير تفاصيل المستخدم في العرض التوضيحي. يرجى الاشتراك للحصول على حساب جديد في https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,يرجى تكرار هذه إلى إجراء تغييرات apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,فشل الجيل PDF بسبب الروابط صورة مكسورة @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,للطي apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,حفظ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ما الذى تحتاج المساعدة به؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,خيارات للاختيار. كل خيار على سطر جديد. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,الغاء دائم {0} ؟ +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,الغاء دائم {0} ؟ DocType: Workflow State,music,موسيقى DocType: Web Page,Settings,إعدادات apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,يرجى تحديد DOCTYPE DocType: Print Format,Style Settings,نمط الضبط -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,يجب أن يكون حقل نوع {0} لFIELDNAME صحيح apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,أكثر DocType: Contact,Sales Manager,مدير المبيعات apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,إعادة تسمية DocType: Print Format,Format Data,تنسيق البيانات -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,مثل +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,مثل DocType: Customize Form Field,Customize Form Field,تخصيص حقل نموذج apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,تسمح للمستخدم DocType: OAuth Client,Grant Type,منحة نوع apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,تحقق من وثائق قابلة للقراءة من قبل العضو apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,لا يسمح بإدراج التطبيق -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,استخدام٪ كما البدل -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","عنوان مجال البريد الألكتروني غير معرف لهذا الحساب, إنشيء واحد ؟" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,استخدام٪ كما البدل +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","عنوان مجال البريد الألكتروني غير معرف لهذا الحساب, إنشيء واحد ؟" DocType: User,Reset Password Key,إعادة تعيين كلمة المرور الرئيسية DocType: Email Account,Enable Auto Reply,تمكين الرد التلقائي apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,لا أرى @@ -490,7 +490,7 @@ apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,الجذر apps/frappe/frappe/website/doctype/blog_post/blog_post.py +75,No comments yet,لا توجد تعليقات حتى الآن apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +126,Both DocType and Name required,كلا DOCTYPE واسم المطلوبة apps/frappe/frappe/model/document.py +574,Cannot change docstatus from 1 to 0,لا يمكن تغيير docstatus من 1 إلى 0 -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +40,Take Backup Now,أخذ النسخ الاحتياطي الآن +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +40,Take Backup Now,ابداء النسخ الاحتياطي الآن apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +41,Welcome,ترحيب apps/frappe/frappe/desk/page/applications/applications.js +95,Installed Apps,التطبيقات المثبتة DocType: Contact,Open,فتح @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,تعيين مرة واحدة فقط DocType: Email Queue Recipient,Email Queue Recipient,البريد الإلكتروني المستلم قائمة الانتظار DocType: Address,Nagaland,ناجالاند apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,اسم المستخدم {0} موجود بالفعل -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : لا يمكن تحديد استيراد، لأن {1} غير قابل للإستيراد apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},يوجد خطأ في قالب العناوين {0} DocType: Footer Item,"target = ""_blank""",الهدف = "_blank" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,من الاسم الكامل apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},لم يكن لديك الوصول إلى تقرير: {0} DocType: User,Send Welcome Email,إرسال رسالة ترحيبية apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,تحميل ملف CSV يحتوي على جميع أذونات المستخدم في نفس الشكل كما تحميل. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,إزالة تصفية (فلترة) +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,إزالة تصفية (فلترة) DocType: Address,Daman and Diu,دامان و ديو DocType: Address,Personal,الشخصية apps/frappe/frappe/config/setup.py +113,Bulk Rename,إعادة تسمية بالجمله @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",لا يمكن أن يكون تنسيق دوكتيب القياسي تنسيق طباعة افتراضي، استخدم كوستميز فورم DocType: Report,Query,سؤال DocType: DocType,Sort Order,ترتيب -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'في عرض القائمة' لا يسمح لنوع {0} في {1} الصف DocType: Custom Field,Select the label after which you want to insert new field.,حدد التسمية بعد الذي تريد إدراج حقل جديد. ,Document Share Report,وثيقة حصة تقرير DocType: User,Last Login,آخر تسجيل دخول -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},مطلوب Fieldname في الصف {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},مطلوب Fieldname في الصف {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,عمود DocType: Custom Field,Adds a custom field to a DocType,DocType اضافة حقل خاص ل DocType: File,Is Home Folder,هو المجلد الرئيسي @@ -583,7 +583,7 @@ DocType: File,Folder,مجلد DocType: DocField,Index,مؤشر DocType: Email Group,Newsletter Manager,مدير النشرة الإخبارية apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,الخيار 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,جميع المشاركات +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} إلى {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,تسجيل الخطأ خلال الطلبات. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} تم بنجاح الإضافة إلى مجموعة البريد الإلكتروني. DocType: Address,Uttar Pradesh,أوتار براديش @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,مؤشر DocType: DocShare,Everyone,كل شخص DocType: Workflow State,backward,الى الوراء -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0} قاعدة واحدة فقط سمح لها نفس الدور، المستوى و{1} DocType: Email Queue,Add Unsubscribe Link,إضافة رابط إلغاء الاشتراك apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,لا تعليقات حتى الآن. بدء مناقشة جديدة. DocType: Workflow State,share,مشاركة @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,غير apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,رأي المشتركين apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,السيدة DocType: Website Theme,Background Color,لون الخلفية -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,كانت هناك أخطاء أثناء إرسال البريد الإلكتروني. يرجى المحاولة مرة أخرى. DocType: Portal Settings,Portal Settings,إعدادات بوابة DocType: Web Page,0 is highest,0 أعلى قيمة apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,هل أنت متأكد أنك تريد إعادة ربط هذه الاتصالات إلى {0}؟ @@ -628,7 +628,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field apps/frappe/frappe/core/page/permission_manager/permission_manager.js +504,Restore Original Permissions,استعادة ضوابط الأصل DocType: Address,Shop,تسوق DocType: DocField,Button,زر -apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} شكل الطباعه المعتاده الأن لـ {1} نوع المستند +apps/frappe/frappe/printing/doctype/print_format/print_format.py +80,{0} is now default print format for {1} doctype,{0} هو الآن تنسيق الطباعة الافتراضي لـ {1} المستند apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +399,Archived Columns,أعمدة من الأرشيف DocType: Email Account,Default Outgoing,النفقات الافتراضية DocType: Workflow State,play,لعب @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,إعدادات الاتصال بنا apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,جار البحث ... DocType: Workflow State,text-width,عرض النص -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,بلغ الحد الأقصى مرفق لهذا السجل. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,بلغ الحد الأقصى مرفق لهذا السجل. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,يجب أن يتم تعبئة الحقول الإلزامية التالية:
DocType: Email Alert,View Properties (via Customize Form),عرض خصائص (عن طريق نموذج تخصيص) DocType: Note Seen By,Note Seen By,ملاحظة يراها @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,راجستان apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,تدار تقارير منشئ التقرير مباشرة بواسطة منشئ التقرير. لا شيء للقيام به. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,يرجى التحقق من عنوان البريد الإلكتروني الخاص بك apps/frappe/frappe/model/document.py +903,none of,أيا من -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,أرسل لي نسخة +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,أرسل لي نسخة apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,تحميل ضوابط العضو DocType: Dropbox Settings,App Secret Key,التطبيق سر مفتاح apps/frappe/frappe/config/website.py +7,Web Site,موقع الكتروني apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,سيتم عرض العناصر المحددة على سطح المكتب -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} لا يمكن تحديده لأنواع أحادية apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,كانبان مجلس {0} غير موجود. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} يستعرض هذه الوثيقة حالياً DocType: ToDo,Assigned By Full Name,تعيين بواسطة الاسم الكامل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} تم تحديث -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,لا يمكن تعيين التقرير لأنواع واحدة apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,قبل {0} أيام DocType: Email Account,Awaiting Password,في انتظار كلمة المرور DocType: Address,Address Line 1,العنوان سطر 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",الدول عن سير العمل (على سبيل المثال مشروع ، وافق ، ألغي ) . DocType: Print Settings,Allow Print for Draft,السماح بالطباعة للمسودة apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,ضبط الكمية -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,إرسال هذه الوثيقة إلى تأكيد DocType: Contact,Unsubscribed,إلغاء اشتراكك apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,تعيين أدوار مخصصة لصفحة وتقرير apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,تقييم: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,أداة استيراد البيانات DocType: Address,Dadra and Nagar Haveli,دادرا وناغار هافيلي apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,تحميل الملفات يرجى الانتظار لبضع ثوان. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,إرفاق صورتك +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,إرفاق صورتك apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,قيم صف تغييرها DocType: Workflow State,Stop,توقف DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,الرابط إلى الصفحة التي تريد فتحها. اتركه فارغا إذا كنت تريد أن تجعل من أحد الوالدين المجموعة. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,محاذاة التسميات إ DocType: Help Article,Expert,خبير DocType: Workflow State,circle-arrow-right,دائرة السهم الأيمن DocType: LDAP Settings,LDAP Server Url,خادم LDAP رابط -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,لا يمكن فتح المثال عندما ه {0} مفتوح +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,لا يمكن فتح المثال عندما ه {0} مفتوح apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,قائمة الانتظار للتثبيت DocType: Custom DocPerm,Custom DocPerm,DocPerm مخصص DocType: Newsletter,Send Unsubscribe Link,إرسال إلغاء ارتباط @@ -705,10 +705,9 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","لإضافة موضوع ديناميكي، استخدام علامات جينجا مثل
 {{ doc.name }} Delivered 
" -apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,التطبيق {0} إزالتها +apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,التطبيق {0} تم إزالتها DocType: Custom DocPerm,Apply User Permissions,تطبيق صلاحيات المستخدم DocType: User,Modules HTML,وحدات HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,الإعداد> مدير أذونات المستخدم apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,في عداد المفقودين القيم المطلوبة DocType: DocType,Other Settings,اعدادات اخرى DocType: Social Login Keys,Frappe,مخفوق الحليب بالأيس كريم @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,أوث حاملها رمز apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,لا المستند المحدد apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,الدكتور DocType: Event,Event,حدث -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",على {0}، {1} كتب: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",على {0}، {1} كتب: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,لا يمكنك حذف الحقول القياسية. يمكنك إخفاءها فقط إذا كنت تريد DocType: Top Bar Item,For top bar,الشريط العلوي لل apps/frappe/frappe/utils/bot.py +148,Could not identify {0},لا يمكن تحديد {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,مكتب وصول DocType: Workflow State,minus,ناقص apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,خطأ الخادم : يرجى مراجعة سجلات الخادم الخاص بك أو الاتصال بالدعم التكنولوجيا . apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,نرحب البريد الإلكتروني المرسلة -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,دعونا نقوم بإعداد النظام للمرة الاولى. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,دعونا نقوم بإعداد النظام للمرة الاولى. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,متميز apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,مسجل بالفعل DocType: System Settings,Float Precision,دقة الرقم العشري @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,السماح للطباعة apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,لا التطبيقات المثبتة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,بمناسبة حقل إلزامي كما DocType: Communication,Clicked,النقر -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},لا توجد صلاحية ل '{0} ' {1} DocType: User,Google User ID,جوجل هوية المستخدم apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,من المقرر أن ترسل DocType: DocType,Track Seen,المسار رأيت @@ -822,20 +821,20 @@ DocType: Address,Kerala,ولاية كيرالا DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,جلسات متزامنة DocType: OAuth Client,Client Credentials,وثائق تفويض العميل -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,فتح وحدة نمطية أو أداة +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,فتح وحدة نمطية أو أداة DocType: Communication,Delivery Status,حالة التسليم DocType: Module Def,App Name,اسم التطبيق apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,الحد الأقصى لحجم الملف المسموح به هو {0} MB DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)",الحقل الذي يمثل حالة سير العمل للصفقة (إذا حقل غير موجود، سيتم إنشاء حقل مخصص جديد مخفي) apps/frappe/frappe/utils/oauth.py +194,Email not verified with {1},البريد الإلكتروني لم يتم التحقق مع {1} -DocType: Help Article,Knowledge Base Contributor,قاعدة المعرفة مساهم +DocType: Help Article,Knowledge Base Contributor,مشارك قاعدة المعرفة DocType: Communication,Sent Read Receipt,أرسلت مقروءة إيصال DocType: Feedback Request,Reference Communication,إشارة الاتصالات DocType: Email Queue,Unsubscribe Method,طريقة إلغاء الاشتراك DocType: GSuite Templates,Related DocType,دوكتيب ذات الصلة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,تعديل لإضافة محتوى -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,اختر اللغات -apps/frappe/frappe/__init__.py +510,No permission for {0},لا إذن ل{0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,اختر اللغات +apps/frappe/frappe/__init__.py +509,No permission for {0},لا إذن ل{0} DocType: DocType,Advanced,متقدم apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,يبدو مفتاح API أو API سر من الخطأ !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},إشارة: {0} {1} @@ -857,13 +856,13 @@ DocType: Customize Form,Enter Form Type,أدخل نوع النموذج apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,لا توجد سجلات معلمة. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,إزالة الميدان DocType: User,Send Password Update Notification,ارسل إشعارات تحديث كلمة السر -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",السماح DOCTYPE ، DOCTYPE . كن حذرا! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",السماح DOCTYPE ، DOCTYPE . كن حذرا! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",تنسيقات مخصصة للطباعة البريد الإلكتروني apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,تحديث إلى الإصدار الجديد DocType: Custom Field,Depends On,يعتمد على DocType: Event,Green,أخضر DocType: Custom DocPerm,Additional Permissions,ضوابط إضافية -DocType: Email Account,Always use Account's Email Address as Sender,دائما تستخدم حساب البريد الألكتروني كمرسل +DocType: Email Account,Always use Account's Email Address as Sender,دائما استخدم حساب البريد الألكتروني كمرسل apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,سجل الدخول للتعليق apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,البدء في إدخال البيانات تحت هذا الخط apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +474,changed values for {0},القيم المتغيرة ل{0} @@ -932,7 +931,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_colum apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +803,This is PERMANENT action and you cannot undo. Continue?,هذا أجراء دائم لا يمكن التراجع. المتابعة؟ DocType: Event,Every Day,كل يوم DocType: LDAP Settings,Password for Base DN,كلمة السر لقاعدة DN -apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,الميدان الجدول +apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,حقل الجدول apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +162,Columns based on,أعمدة بناء على apps/frappe/frappe/config/integrations.py +68,Enter keys to enable integration with Google GSuite,أدخل المفاتيح لتمكين التكامل مع غوغل غسويت DocType: Workflow State,move,خطوة @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,واحدة من apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,الرجاء تحديد ملف للنسخ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,فحص لحظة واحدة apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,إظهار البطاقات +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",إذا تم تحديد تطبيق تصريح المستخدم الصارم ويتم تعريف إذن المستخدم لنوع دوكتيبي للمستخدم، فإن جميع المستندات التي تكون فيها قيمة الرابط فارغة، لن يتم عرضها على هذا المستخدم DocType: Address,Billing,الفواتير DocType: Email Queue,Not Sent,لا ترسل DocType: Web Form,Actions,الإجراءات @@ -971,7 +971,7 @@ DocType: Website Sidebar Item,Website Sidebar Item,موقع الشريط الج apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} السجلات محدثة DocType: PayPal Settings,PayPal Settings,إعدادات باي بال apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,حدد نوع الوثيقة -apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,لا يمكن حذف {0} كما أن لديها العقد التابعة +apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,لا يمكن حذف {0} لأن لديها عُقد تابعة apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,قبل {0} دقائق DocType: Kanban Board Column,lightblue,lightblue apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. تحديد الأعمدة @@ -979,9 +979,10 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,يجب على كل أحداث اليوم ينتهي في نفس اليوم. DocType: Communication,User Tags,بطاقات المستخدم apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,جار جلب الصور .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,الإعداد> المستخدم DocType: Workflow State,download-alt,تحميل بديل apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},تنزيل التطبيقات {0} -DocType: Communication,Feedback Request,ردود الفعل طلب +DocType: Communication,Feedback Request,طلب التعليق apps/frappe/frappe/website/doctype/web_form/web_form.py +55,Following fields are missing:,الحقول التالية مفقودة: apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,Experimental Feature,ميزة تجريبية apps/frappe/frappe/www/login.html +30,Sign in,تسجيل الدخول @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,النسخ الاحتياطية apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,إضافة جهة اتصال DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختياري: إرسال دوما إلى هذه المعرفات. كل عنوان البريد الإلكتروني على صف جديد -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,إخفاء التفاصيل +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,إخفاء التفاصيل DocType: Workflow State,Tasks,المهام DocType: Event,Tuesday,الثلاثاء DocType: Blog Settings,Blog Settings,إعدادات المدونه @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,كتابة ملف بيثون في نفس المجلد حيث تم حفظ هذا العمود والعودة والنتيجة. DocType: DocType,Sort Field,نوع الحقل DocType: Razorpay Settings,Razorpay Settings,إعدادات Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,تحرير تصفية (فلترة) -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",على سبيل المثال. إذا تطبيق ضوابط العضو محددا لتقرير DOCTYPE ولكن لم يتم تحديد أذونات المستخدم لتقرير للمستخدم، ثم يتم عرض جميع التقارير إلى أن العضو +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,تحرير تصفية (فلترة) +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,الحقل {0} من نوع {1} لا يمكن أن يكون إلزامي apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,أضف المزيد apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,إخفاء الرسم البياني DocType: System Settings,Session Expiry Mobile,جلسة انتهاء موبايل @@ -1026,12 +1026,13 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,Select To apps/frappe/frappe/core/page/permission_manager/permission_manager.js +427,If {0} is permitted,إذا {0} مسموح DocType: Custom DocPerm,If user is the owner,إذا كان المستخدم هو المالك ,Activity,نشاط -DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")",مساعدة: لربط إلى سجل آخر في النظام، استخدم "# نموذج / ملاحظة / [اسم ملاحظة]"، كما URL رابط. (لا تستخدم "الإلكتروني http://") +DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","مساعدة: لربط إلى سجل آخر في النظام، إستخدم ""# نموذج / ملاحظة / [اسم الملاحظة]""، كرابط URL. (لا تستخدم ""http://"")" apps/frappe/frappe/utils/password_strength.py +94,Let's avoid repeated words and characters,دعونا تجنب الكلمات المكررة وشخصيات DocType: Communication,Delayed,مؤجل apps/frappe/frappe/config/setup.py +128,List of backups available for download,قائمة احتياطية متوفرة للتحميل apps/frappe/frappe/www/login.html +89,Sign up,سجل DocType: Test Runner,Output,الناتج +DocType: Email Alert,Set Property After Alert,تعيين الملكية بعد تنبيه apps/frappe/frappe/config/setup.py +226,Add fields to forms.,إضافة حقول إلى النماذج. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,يبدو أن هناك شيئا خاطئا مع هذا التكوين باي بال لهذا الموقع. DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ورق DocType: Portal Menu Item,Portal Menu Item,بوابة عنصر القائمة DocType: User Email,Email ID,البريد الإلكتروني +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",إذا تم التحقق من أذونات المستخدم تطبيق تقرير دوكتيب ولكن لا يتم تعريف أذونات المستخدم لتقرير للمستخدم، ثم يتم عرض كافة التقارير لهذا المستخدم DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,قائمة الموارد التي سيكون لها التطبيق العميل الوصول إلى بعد قيام المستخدم يسمح بذلك.
على سبيل المثال مشروع DocType: Translation,Translated Text,ترجمة النص DocType: Contact Us Settings,Query Options,خيارات الاستعلام @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,اتصالات DocType: System Settings,Setup Complete,الإعداد كاملة apps/frappe/frappe/config/setup.py +66,Report of all document shares,تقرير عن سهم ثيقة apps/frappe/frappe/www/update-password.html +18,New Password,كلمة مرور جديدة -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,مرشح {0} مفقود +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,مرشح {0} مفقود apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,"عذراَ ! ,لا يمكنك حذف التعليقات الذي تم إنشاؤه تلقائيا" DocType: Website Theme,Style using CSS,أسلوب باستخدام CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,مرجع DOCTYPE @@ -1088,7 +1090,7 @@ apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},اسم {0} ل apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,إظهار أو إخفاء وحدات على مستوى البرنامج. apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,من تاريخ apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,نجاح -apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},ردود الفعل طلب {0} يتم إرسالها إلى {1} +apps/frappe/frappe/public/js/frappe/feedback.js +95,Feedback Request for {0} is sent to {1},طلب التعليق {0} يتم إرسالها إلى {1} apps/frappe/frappe/public/js/frappe/desk.js +379,Session Expired,انتهت الجلسة DocType: Kanban Board Column,Kanban Board Column,عمود مجلس كانبان apps/frappe/frappe/utils/password_strength.py +76,Straight rows of keys are easy to guess,صفوف متتالية من مفاتيح سهلة للتخمين @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,كتلة وحدات apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,الرجوع إلى طول {0} ل'{1}' في '{2}'. تحديد طول ك {3} سوف يسبب الاقتطاع من البيانات. DocType: Print Format,Custom CSS,مخصصةCSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,إضافة تعليق -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},تجاهل: {0} إلى {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},تجاهل: {0} إلى {1} DocType: Address,Gujarat,غوجارات apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,تسجيل من خطأ على الأحداث الآلي ( جدولة ) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ليس صالحا القيمة المفصولة بفواصل ( CSV ملف) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,الايرادات الافتراضية DocType: Workflow State,repeat,كرر DocType: Website Settings,Banner,راية DocType: Role,"If disabled, this role will be removed from all users.",إذا تعطيل، ستتم إزالة هذا الدور من كافة المستخدمين. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,دليل البحث +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,المساعدة في البحث apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,سجل لكن المعوقين DocType: DocType,Hide Copy,إخفاء النسخة apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,مسح كافة الأدوار @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,الدولة apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,عناوين DocType: Communication,Shared,مشتركة -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,إرفاق طباعة المستند +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,إرفاق طباعة المستند DocType: Bulk Update,Field,حقل DocType: Communication,Received,تلقيت DocType: Social Login Keys,Google Client ID,معرف عميل جوجل @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,الاستعلام عن DocType: User,Set New Password,وضع كلمة سر جديدة DocType: User,Github User ID,جيثب هوية المستخدم apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,إذا نوع الوثيقة -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","لا يمكن حذف أو إلغاء ل{0} {1} يرتبط مع {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","لا يمكن حذف أو إلغاء ل{0} {1} يرتبط مع {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},غير معروف التطبيق {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s ليست صيغة صحيحة للتقرير. يجب أن تكون \ أحد الصيغ التالية %s DocType: Communication,Chat,الدردشة -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} تظهر عدة مرات في الصفوف {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} تظهر عدة مرات في الصفوف {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} من {1} إلى {2} في الصف # {3} DocType: Communication,Expired,انتهى DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),عدد الأعمدة للحقل في الشبكة (يجب أن يكون مجموع الأعمدة في شبكة أقل من 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,هل لديك حس apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},تنسيق الطباعة غير معروف: {0} DocType: Workflow State,arrow-down,سهم لأسفل apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ضم -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},المستخدم لا يسمح لحذف {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,آخر تحديث يوم DocType: Help Article,Likes,اعجابات DocType: Website Settings,Top Bar,الشريط الأعلى DocType: GSuite Settings,Script Code,رمز البرنامج النصي apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,إنشاء البريد الإلكتروني المستخدم -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,لا الأذونات المحددة +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,لا الأذونات المحددة apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,إعدادات العالمية: سوف يكون المستخدمون فقط قادرا على اختيار الرموز المحددة apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,لم يتم العثور على {0} DocType: Custom Role,Custom Role,دور مخصص apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,الصفحة الرئيسية / مجلد اختبار 2 DocType: System Settings,Ignore User Permissions If Missing,تجاهل أذونات المستخدم إذا مفقود -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,الرجاء حفظ المستند قبل تحميلها. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,الرجاء حفظ المستند قبل تحميلها. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ادخل رقمك السري DocType: Dropbox Settings,Dropbox Access Secret,دروببوإكس الدخول السرية apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,إضافة تعليق آخر apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,تعديل DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,إلغاء الاشتراك من النشرة الإخبارية -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,الطي يجب أن يأتي قبل فاصل القسم +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,الطي يجب أن يأتي قبل فاصل القسم apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,التعديل الأخير من قبل DocType: Workflow State,hand-down,إلى أسفل اليد DocType: Address,GST State,غست الدولة -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : لا يمكن تحديد الغاء دون تأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : لا يمكن تحديد الغاء دون تأكيد DocType: Website Theme,Theme,موضوع apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,كانت هناك أخطاء . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,إعادة التوجيه URI ملزمة لكود التفويض @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ال DocType: Website Theme,Text Color,لون الخط DocType: Desktop Icon,Force Show,القوة مشاهدة apps/frappe/frappe/auth.py +78,Invalid Request,طلب غير صالح -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,هذا النموذج لا يحتوي على اي مدخل +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,هذا النموذج لا يحتوي على اي مدخل apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},يجب أن تكون الدورة انتهاء الصلاحية في شكل {0} DocType: Website Sidebar Item,Group,مجموعة DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","حدد الهدف = "" _blank "" لفتح صفحة جديدة في ." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,تجاهل أخطاء الترميز. DocType: Workflow State,wrench,وجع apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,غير محدد -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,الإعداد> المستخدم DocType: Authentication Log,Date,تاريخ DocType: Website Settings,Disable Signup,تعطيل الاشتراك apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"الرجاء الانتظار حتى يتم الانتهاء من اعداد النظام, قد يستغرق بضع دقائق." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,أضف تعليق DocType: DocField,Mandatory,إلزامي apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,وحدة لتصدير -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : لم يتم تحديد صلاحيات أساسية +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : لم يتم تحديد صلاحيات أساسية apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,سوف صلاحية الاشتراك في {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},سوف تكون عبر البريد الالكتروني رابط التحميل للنسخ الاحتياطي الخاص بك على عنوان البريد الإلكتروني التالي: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",معنى تسجيل ، إلغاء وتعديل @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,استعلام تقرير apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},تعيين إلى {0} {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,مرشحات حفظ DocType: DocField,Percent,في المئة -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,يرجى تعيين المرشحات +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,يرجى تعيين المرشحات apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ترتبط DocType: Workflow State,book,كتاب DocType: Website Settings,Landing Page,الصفحة المقصودة -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,خطأ في سيناريو مخصص +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,خطأ في سيناريو مخصص apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} الاسم apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",استيراد طلب قائمة الانتظار. هذا قد يستغرق بضع لحظات، يرجى التحلي بالصبر. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,لم يحدد ضوابط لهذه المعايير. @@ -1275,18 +1276,17 @@ DocType: System Settings,Allow Login using Mobile Number,السماح بتسجي apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,لم يكن لديك أذونات كافية للوصول إلى هذه الموارد. يرجى الاتصال بمدير الخاص بك للوصول. DocType: Custom Field,Custom,مخصص apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,إعداد تنبيه البريد الإلكتروني استنادا إلى معايير مختلفة. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},الوظائف المقدمة في إطار {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},الوظائف المقدمة في إطار {0} DocType: Email Alert,Send alert if date matches this field's value,إرسال تنبيه إذا تاريخ توافق مع قيمة هذا الحقل DocType: Workflow,Transitions,التحولات apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,إزالة {0} وحذف كافة البيانات؟ -apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} الي {2} +apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} الى {2} DocType: User,Login After,بعد الدخول DocType: Print Format,Monospace,معدل النصوص والشروط DocType: Letter Head,Printing,طبع DocType: Workflow State,thumbs-up,الابهام إلى أعلى -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,يجب أن تكون الدقة بين 1 و 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,يجب أن تكون الدقة بين 1 و 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,و DocType: Error Snapshot,Frames,إطارات @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,رابط الصورة DocType: Auto Email Report,Report Filters,مرشحات تقرير apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,الآن DocType: Workflow State,step-backward,خطوة إلى الوراء -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ app_title } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,الرجاء تعيين مفاتيح الوصول دروببوإكس في التكوين موقعك apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,حذف هذا السجل للسماح إرسالها إلى عنوان البريد الإلكتروني هذا apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ضرورية لسجلات جديدة الحقول الإلزامية فقط. يمكنك حذف الأعمدة غير الإلزامية إذا كنت ترغب في ذلك. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,هو مجلد المرفقات apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,توسيع الكل apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,صالحة معرف تسجيل الدخول المطلوبة. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,إعادة فتح -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,لقد ألغت دفع -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,يرجى تحديد ملف CSV صالحة مع البيانات +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,يرجى تحديد ملف CSV صالحة مع البيانات apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} الغى مشاركة هذه الوثيقة مع {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,لا يسمح وضع وثيقة الانتقال من {0} إلى {1} DocType: DocType,"Make ""name"" searchable in Global Search",جعل "اسم" للبحث في البحث العالمية @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ا DocType: Help Category,Help Category,مساعدة الفئة apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,المستخدم {0} تم تعطيل apps/frappe/frappe/www/404.html +8,Page missing or moved,الصفحة مفقودة أو تم نقلها -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,تعديل {0} خصائص DocType: DocType,Route,طريق apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,إعدادات بوابة الدفع Razorpay DocType: DocField,Name,اسم apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,لقد تجاوزت مساحة أقصى {0} لخطتك. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ابحث في المستندات DocType: OAuth Authorization Code,Valid,صالح -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,فتح الرابط -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,لغتك +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,فتح الرابط +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,لغتك apps/frappe/frappe/desk/form/load.py +46,Did not load,لم يتم تحميل apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,اضف سطر DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,وملاحظ DocType: Address,Lakshadweep Islands,جزر لاكشادويب apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,يمكن كتابة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",وثائق معينة ، مثل الفاتورة ، لا ينبغي تغييره مرة واحدة نهائية . و دعا الدولة النهائية ل هذه الوثائق المقدمة . يمكنك تقييد الأدوار التي يمكن إرسال. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,لا يسمح لك لتصدير هذا التقرير +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,لا يسمح لك لتصدير هذا التقرير apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,عنصر واحد محدد DocType: Newsletter,Test Email Address,اختبار عنوان البريد الإلكتروني DocType: ToDo,Sender,مرسل @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,استيراد الرمز البريدي apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,معرف المستند DocType: Print Settings,Letter,الحرف -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,يجب أن يكون حقل صورة من نوع إرفاق صورة +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,يجب أن يكون حقل صورة من نوع إرفاق صورة DocType: DocField,Columns,الأعمدة DocType: Async Task,Succeeded,نجح apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},الحقول الإلزامية المطلوبة في {0} @@ -1403,7 +1401,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +272,Show a d DocType: DocType,ASC,ASC DocType: Workflow State,align-left,محاذاة يسار DocType: User,Defaults,الافتراضات -DocType: Feedback Request,Feedback Submitted,ردود الفعل مقدم +DocType: Feedback Request,Feedback Submitted,تم تسليم التعليقات apps/frappe/frappe/public/js/frappe/model/model.js +510,Merge with existing,دمج مع القائمة DocType: User,Birth Date,تاريخ الميلاد DocType: Dynamic Link,Link Title,لينك تيتل @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,محرر النصوص apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,إعدادات صفحة من نحن apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,تحرير مخصص HTML DocType: Error Snapshot,Error Snapshot,خطأ لقطة -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,في +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,في DocType: Email Alert,Value Change,قيمة التغيير DocType: Standard Reply,Standard Reply,الرد القياسي apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,عرض مربع الإدخال @@ -1451,16 +1449,16 @@ DocType: Custom DocPerm,Write,الكتابة apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed to create Query / Script Reports,المسؤول الوحيد المسموح به لإنشاء تقارير الاستعلام / سكربت apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,التحديث DocType: File,Preview,معاينة -apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" is mandatory. Please specify value to be updated",الميدان "قيمة" إلزامي. يرجى تحديد قيمة ليتم تحديثه +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" is mandatory. Please specify value to be updated","الحقل ""القيمة"" إلزامي. يرجى تحديد قيمة ليتم تحديثه" DocType: Customize Form,Use this fieldname to generate title,استخدام هذا FIELDNAME لتوليد عنوان apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,استيراد البريد الإلكتروني من apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,دعوة كمستخدم -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,حدد المرفقات +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,حدد المرفقات apps/frappe/frappe/model/naming.py +94, for {0},ل{0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,كانت هناك أخطاء. الرجاء الإبلاغ عن ذلك. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,لا يسمح لك طباعة هذه الوثيقة +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,لا يسمح لك طباعة هذه الوثيقة apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,الرجاء تعيين قيمة المرشحات في الجدول تقرير تصفية. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,تحميل تقرير +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,تحميل تقرير apps/frappe/frappe/limits.py +72,Your subscription will expire today.,صلاحية اشتراكك ستنتهي اليوم. DocType: Page,Standard,معيار apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,إرفاق ملف @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,الامتدادات الإقليمية DocType: LDAP Settings,Base Distinguished Name (DN),قاعدة الاسم المميز (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ترك هذه المحادثة -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},خيارات لم يتم تعيين لحقل الرابط {0} DocType: Customize Form,"Must be of type ""Attach Image""",يجب أن يكون من نوع "إرفاق صورة" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,إلغاء تحديد الكل apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},لا يمكنك ضبطه "للقراءة فقط" لحقل {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ملاحظات apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,أبلغ عن مشكلة apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,لا تتطابق شروط التعليقات -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,يجب أن يكون حقل الزمني لFIELDNAME صحيح +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,يجب أن يكون حقل الزمني لFIELDNAME صحيح DocType: Currency,Symbol,رمز -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,الصف # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,الصف # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,كلمة مرور جديدة عبر البريد الالكتروني apps/frappe/frappe/auth.py +245,Login not allowed at this time,الدخول غير مسموح به في هذا الوقت DocType: Email Account,Email Sync Option,مزامنة البريد الإلكتروني الخيار @@ -1549,13 +1547,13 @@ apps/frappe/frappe/config/setup.py +246,Custom Tags,مخصص للخلف apps/frappe/frappe/desk/page/applications/applications.js +147,No matching apps found,لم يتم العثور على تطبيقات مطابقة DocType: Communication,Submitted,المسجلة DocType: System Settings,Email Footer Address,البريد الإلكتروني تذييل العنوان -apps/frappe/frappe/public/js/frappe/form/grid.js +597,Table updated,الجدول يستكمل +apps/frappe/frappe/public/js/frappe/form/grid.js +597,Table updated,الجدول محدث DocType: Communication,Timeline DocType,DOCTYPE الزمني DocType: DocField,Text,نص apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,الردود على الاستفسارات القياسية الشائعة. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,إرسال الافتراضي DocType: Workflow State,volume-off,حجم حالا -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},يحب {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},يحب {0} DocType: Footer Item,Footer Item,تذييل البند ,Download Backups,تحميل النسخ الاحتياطية apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,الصفحة الرئيسية / اختبار المجلد 1 @@ -1583,12 +1581,12 @@ DocType: System Settings,Date Format,تنسيق التاريخ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,لم تنشر apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Cancel).","اجراءات سير العمل مثال : الموافقة,الرفض" DocType: Workflow State,flag,علم -apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,يتم إرسال ردود الفعل طلب بالفعل إلى المستخدم +apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,تم إرسال طلب ردود الفعل إلى المستخدم سابقا DocType: Web Page,Text Align,محاذاة النص -apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},لا يمكن أن تحتوي على اسم أحرف خاصة مثل {0} +apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},الإسم لا يمكن أن يحتوي على أحرف خاصة مثل {0} DocType: Contact Us Settings,Forward To Email Address,انتقل إلى عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,إظهار جميع البيانات -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,يجب أن يكون حقل العنوان ل fieldname صالحة apps/frappe/frappe/config/core.py +7,Documents,وثائق DocType: Email Flag Queue,Is Completed,قد اكتمل apps/frappe/frappe/www/me.html +22,Edit Profile,تعديل الملف الشخصي @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",سيظهر هذا المجال إلا إذا كان FIELDNAME المحدد هنا له قيمة أو قواعد صحيحة (أمثلة): myfield حدة التقييم: doc.myfield == 'بلدي القيمة "وحدة التقييم: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,اليوم +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,اليوم apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",وبمجرد الانتهاء من تعيين هذه ، سوف يكون المستخدمون قادرين فقط الوصول إلى المستندات (على سبيل المثال مدونة بوست) حيث يوجد رابط (مثل مدون ) . DocType: Error Log,Log of Scheduler Errors,سجل من الأخطاء جدولة DocType: User,Bio,نبذة @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 نجمة يجري أدنى و5 نجوم يجري أعلى تصنيف DocType: Event,Ref Name,اسم المرجع DocType: Web Page,Center,مركز +DocType: Email Alert,Value To Be Set,قيمة ليتم تعيين apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,المستوى الأول DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,يمثل الدول المسموح بها في وثيقة واحدة والدور المنوط تغيير الدولة. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,نموذج التحديث @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,لديها عرض ويب apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",يجب أن يبدأ اسم DOCTYPE مع بريد إلكتروني ويمكن أن تتكون فقط من الحروف والأرقام والمسافات وأحرف (_) DocType: Communication,Spam,بريد مؤذي DocType: Integration Request,Integration Request,التكامل طلب -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,العزيز +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,العزيز DocType: Address,Maharashtra,ماهاراشترا DocType: Address,Accounts User,حسابات المستخدمين DocType: Web Page,HTML for header section. Optional,HTML لرأس القسم. اختياري apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,هذه الميزة هي العلامة التجارية الجديدة والتجريبية لا يزال -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,الحد الأقصى {0} الصفوف المسموح +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,الحد الأقصى {0} الصفوف المسموح DocType: Email Unsubscribe,Global Unsubscribe,إلغاء الاشتراك العالمية apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,هذا هو كلمة شائعة جدا. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,عرض DocType: Communication,Assigned,تم تحديد المهمة DocType: Print Format,Js,شبيبة -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,حدد تنسيق طباعة +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,حدد تنسيق طباعة apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,نماذج لوحة المفاتيح قصيرة من السهل تخمين DocType: Portal Settings,Portal Menu,البوابة القائمة apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,يجب أن يكون طول {0} بين 1 و 1000 @@ -1682,7 +1681,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +32,View Website,مش DocType: Workflow State,remove,نزع DocType: Email Account,If non standard port (e.g. 587),إذا غير المنفذ القياسي (على سبيل المثال 587) apps/frappe/frappe/public/js/frappe/form/toolbar.js +152,Reload,تحديث -apps/frappe/frappe/config/setup.py +248,Add your own Tag Categories,إضافة العلامات الخاصة بك الفئات +apps/frappe/frappe/config/setup.py +248,Add your own Tag Categories,إضافة فئات العلامة الخاصة بك apps/frappe/frappe/core/page/usage_info/usage_info.html +103,Total,المجموع DocType: Event,Participants,المشاركين DocType: Integration Request,Reference DocName,إشارة DocName @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,لا يمكن للمستخدم البحث apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,تنسيق الإخراج غير صالح DocType: Custom DocPerm,Apply this rule if the User is the Owner,تطبيق هذا الحكم إذا كان المستخدم هو مالك -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,سيكون معرف تسجيل الدخول +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,سيكون معرف تسجيل الدخول apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,بناء تقرير DocType: Note,Notify users with a popup when they log in,إعلام المستخدمين مع منبثقة عندما يقومون بتسجيل الدخول apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} غير موجود ، حدد هدفا جديدا لدمج @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,أدوار إذن apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,تحديث DocType: Error Snapshot,Snapshot View,لقطة مشاهدة apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,الرجاء حفظ النشرة قبل الإرسال -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},يجب أن تكون الخيارات ل DOCTYPE صالحة لحقل {0} في {1} الصف +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} سنة (سنوات) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},يجب أن تكون الخيارات ل DOCTYPE صالحة لحقل {0} في {1} الصف apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,تحرير خصائص DocType: Patch Log,List of patches executed,قائمة من بقع أعدمت apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} غير مشترك أصلاً -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,الاتصالات متوسطة +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,الاتصالات متوسطة DocType: Website Settings,Banner HTML,راية HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. Razorpay لا يعتمد المعاملات بالعملة '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,في قائمة الانتظار للنسخ الاحتياطي. قد يستغرق بضع دقائق إلى ساعة. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,تسجيل أوث العميل التطبيقات -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} لا يمكن أن يكون ""{2}"". ينبغي أن يكون واحدا من ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} أو {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,إظهار أو إخفاء أيقونات سطح المكتب apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,تعديل كلمة السر @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,فواصل عرض الخط بعد الأقسام DocType: Blogger,Short Name,الاسم المختصر apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},الصفحة {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",كنت اختيار مزامنة الخيار كما ALL، وسوف تتم إعادة مزامنة جميع \ قراءة وكذلك رسالة غير مقروءة من الخادم. هذا قد يسبب أيضا ازدواجية \ الاتصالات (البريد الإلكتروني). apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,حجم الملفات @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,مدير المشتريات DocType: Custom Script,Sample,عينة apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,غير مصنف الكلمات DocType: Event,Every Week,كل أسبوع +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,لم يتم إعداد حساب البريد الإلكتروني. يرجى إنشاء حساب بريد إلكتروني جديد من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,انقر هنا للتحقق من الاستخدام الخاص بك أو الترقية إلى خطة أعلى DocType: Custom Field,Is Mandatory Field,هو حقل إلزامي DocType: User,Website User,موقع العضو @@ -1770,7 +1771,7 @@ apps/frappe/frappe/config/setup.py +102,Import / Export Data from .csv files.,ا DocType: Auto Email Report,Only Send Records Updated in Last X Hours,فقط إرسال السجلات التي تم تحديثها في آخر X ساعات DocType: Communication,Feedback,Feedback apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +72,You are not allowed to create / edit reports,لا يسمح لك لإنشاء تقارير / تحرير -DocType: Workflow State,Icon will appear on the button,سوف تظهر أيقونة على زر +DocType: Workflow State,Icon will appear on the button,أيقونة سوف تظهر على الزر DocType: Website Settings,Website Settings,إعدادات الموقع apps/frappe/frappe/core/page/user_permissions/user_permissions.py +106,Please upload using the same template as download.,يرجى تحميل باستخدام نفس القالب التحميل. apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Month,شهر @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,الشريط الجانبي مخصص القائمة DocType: Workflow State,pencil,قلم رصاص apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,.رسائل الدردشة والإخطارات الأخرى -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},إدراج بعد لا يمكن تعيين ك {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},إدراج بعد لا يمكن تعيين ك {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,مشاركة {0} مع apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,اعداد حساب البريد الألكتروني فضلا ادخل كلمة السر: DocType: Workflow State,hand-up,ومن ناحية المتابعة DocType: Blog Settings,Writers Introduction,مقدمة الكاتب DocType: Address,Phone,هاتف -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,خطأ أثناء تقييم إرسال تنبيه {0}. الرجاء إصلاح القالب. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,خطأ أثناء تقييم إرسال تنبيه {0}. الرجاء إصلاح القالب. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,حدد نوع الوثيقة أو دور للبدء. DocType: Contact,Passive,غير فعال DocType: Contact,Accounts Manager,مدير حسابات +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,تم إلغاء دفعتك. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,حدد نوع الملف DocType: Help Article,Knowledge Base Editor,محرر قاعدة المعرفة apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,لم يتم العثور على الصفحة @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,نوع الملكية DocType: Workflow State,screenshot,لقطة شاشة apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,مسؤول فقط يمكن حفظ تقرير القياسية. الرجاء إعادة تسمية وحفظ. DocType: System Settings,Background Workers,عمال الخلفية +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,فييلدنام {0} متعارضة مع كائن ميتا DocType: Deleted Document,Data,معطيات apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,حالة المستند apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},كنت قد قدمت {0} من {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,ضوابط مشاهدة العضو apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,تحتاج إلى أن تقوم بتسجيل الدخول ولها دور مدير النظام أن يكون قادرا على الوصول إلى النسخ الاحتياطي. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,المتبقية -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,الرجاء حفظ قبل إرفاق. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,الرجاء حفظ قبل إرفاق. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),وأضاف {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},تم تعيين السمة الافتراضية في {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype لا يمكن تغييرها من {0} إلى {1} في {2} الصف @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,إعدادات النظام apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,فشل بدء الجلسة apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},وقد أرسلت هذه الرسالة الى {0} ونسخها إلى {1} DocType: Workflow State,th,ال -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,الرجاء الإعداد الافتراضي حساب البريد الإلكتروني من الإعداد> البريد الإلكتروني> حساب البريد الإلكتروني -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},انشاء جديد {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},انشاء جديد {0} DocType: Email Rule,Is Spam,هو المزعج apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},تقرير {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},مفتوحة {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},مفتوحة {0} DocType: OAuth Client,Default Redirect URI,افتراضي إعادة توجيه URI DocType: Email Alert,Recipients,المستلمين DocType: Workflow State,ok-sign,علامة OK- @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,مقالات المساعدة ,Modules Setup,إعداد وحدات apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,النوع: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,أخفقت دفعتك. DocType: Communication,Unshared,غير مشترك DocType: Address,Karnataka,كارناتاكا apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,لم يتم العثور على الوحدة برمجية @@ -1905,7 +1908,7 @@ DocType: System Settings,Scheduler Last Event,جدولة الحدث الأخير DocType: Website Settings,Add Google Analytics ID: eg. UA-89XXX57-1. Please search help on Google Analytics for more information.,"(UA-89XXX57-1)اضافة تحليلات جوجل رقم تعريفى من فضلك ابحث عن المساعدة فى تحليلات جوجل لمزيد من المعلومات" apps/frappe/frappe/utils/password.py +93,Password cannot be more than 100 characters long,كلمة السر لا يمكن أن تكون أطول من 100 حرفا -DocType: OAuth Client,App Client ID,التطبيق معرف العميل +DocType: OAuth Client,App Client ID,هوية العميل للتطبيق DocType: Kanban Board,Kanban Board Name,اسم مجلس كانبان DocType: Email Alert Recipient,"Expression, Optional",التعبير والاختياري DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,انسخ هذه الشفرة والصقها في ملف Code.gs وفريده في مشروعك على script.google.com @@ -1918,7 +1921,7 @@ apps/frappe/frappe/model/document.py +577,Cannot edit cancelled document,لا ي DocType: Unhandled Email,Unhandled Email,البريد الإلكتروني غير معالج DocType: Event,Monday,يوم الاثنين apps/frappe/frappe/utils/password_strength.py +85,Make use of longer keyboard patterns,الاستفادة من نماذج لوحة المفاتيح أطول -apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the Administrator.,خطأ مجموعة متداخلة . يرجى الاتصال مدير البرنامج. +apps/frappe/frappe/utils/nestedset.py +77,Nested set error. Please contact the Administrator.,خطأ مجموعة متداخلة . يرجى الاتصال بمدير البرنامج. DocType: Workflow State,envelope,مغلف apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,الخيار 2 DocType: Feedback Trigger,Email Field,البريد الإلكتروني الميدان @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,صورة العلامة التجارية DocType: Print Settings,A4,أ4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",الإعداد من أعلى الملاحة تذييل وبار والشعار. DocType: Web Form Field,Max Value,ماكس القيمة -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},ل {0} في {1} مستوى في {2} في {3} الصف DocType: Contact,All,جميع DocType: Email Queue,Recipient,مستلم DocType: Communication,Has Attachment,لديها مرفق @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,محاذاة اليمين DocType: Auto Email Report,Email To,البريد الإلكتروني الى apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,المجلد {0} ليست فارغة DocType: Page,Roles,الأدوار -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,الحقل {0} ليس اختيار. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},خطأ: قيمة مفقودة ل {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,الحقل {0} ليس اختيار. DocType: System Settings,Session Expiry,الدورة انتهاء الاشتراك DocType: Workflow State,ban-circle,دائرة الحظر DocType: Email Flag Queue,Unread,غير مقروء @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,الملف الشخصي الافتراضيات apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,انشاء جديد DocType: Workflow State,chevron-down,شيفرون لأسفل -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),البريد الإلكتروني لا يرسل إلى {0} (غير مشترك / غيرمفعل) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,أصغر العملات الكسر القيمة apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,تكليف إلى @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,من DocType: Website Theme,Google Font (Heading),خطوط قوقل (للعنوان) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,حدد عقدة المجموعة أولا. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},البحث عن {0} في {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},البحث عن {0} في {1} DocType: OAuth Client,Implicit,ضمني DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","كما إلحاق الاتصالات ضد هذا DOCTYPE (يجب أن يكون المجالات، ""الحالة""، ""الموضوع"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",محددات لاستقبال رمز التفويض مرة واحدة يتيح للمستخدم الوصول، وكذلك ردود الفشل. عادة ما يكون نقطة النهاية بقية عرضة للخطر من قبل العميل التطبيقات.
على سبيل المثال HTTP: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,لا يسمح لتغيير {0} بعد تقديم +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,لا يسمح لتغيير {0} بعد تقديم DocType: Communication,Comment Type,تعليق نوع DocType: OAuth Client,OAuth Client,العميل أوث apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,المستخدمين @@ -1990,13 +1994,13 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},تعذر قراءة تنسيق الملف {0} DocType: Auto Email Report,Filter Data,تصفية البيانات apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,إضافة علامة -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,يرجى إرفاق ملف الأول. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,يرجى إرفاق ملف الأول. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",كانت هناك بعض الأخطاء تحديد اسم، يرجى الاتصال بمسؤول apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,حساب البريد الإلكتروني الوارد غير صحيح apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.",يبدو أنك كتبت اسمك بدلا من بريدك الإلكتروني. \ يرجى إدخال عنوان بريد إلكتروني صالح حتى نتمكن من العودة. DocType: Website Slideshow Item,Website Slideshow Item,موقع السلعة عرض شرائح -DocType: GSuite Templates,Template ID,معرف النموذج +DocType: GSuite Templates,Template ID,معرف القالب DocType: Portal Settings,Default Role at Time of Signup,دور افتراضي في وقت الاشتراك DocType: DocType,Title Case,عنوان القضية DocType: DocType,"Naming Options: @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,إرسال البريد الإلكتروني DocType: DocField,Ignore XSS Filter,تجاهل XSS تصفية apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,إزالة apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,إعدادات النسخ الاحتياطي دروببوإكس -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,إرسال كبريد الالكتروني +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,إرسال كبريد الالكتروني DocType: Website Theme,Link Color,ارتباط اللون apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,المستخدم {0} لا يمكن تعطيل apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",عزيزي مدير النظام، -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,بلدك +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,بلدك DocType: Event,Sunday,الأحد apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,في شبكة عرض DocType: Address Template,Template,قالب @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,دلهي apps/frappe/frappe/config/integrations.py +48,LDAP Settings,إعدادات LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,المعدل apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,إعدادات بوابة الدفع باي بال -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) سوف تحصل على اقتطاع، وحرف كحد أقصى مسموح بها هي {2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) سوف تحصل على اقتطاع، وحرف كحد أقصى مسموح بها هي {2} DocType: OAuth Client,Resource Owner Password Credentials,الموارد المالك وثائق التفويض كلمة المرور DocType: OAuth Client,Response Type,نوع الاستجابة apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,الحد الأقصى للمستخدمين @@ -2034,17 +2038,18 @@ DocType: DocField,Table,جدول DocType: File,File Size,حجم الملف apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,يجب عليك تسجيل الدخول لتقديم هذا النموذج DocType: User,Background Image,صورة الخلفية -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",اختر بلدك، المنطقة الزمنية والعملات +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",اختر بلدك، المنطقة الزمنية والعملات apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ما بين DocType: Async Task,Queued,قائمة الانتظار DocType: PayPal Settings,Use Sandbox,استخدام رمل -apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,تنسيق مخصص للطباعة جديد +apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,تنسيق طباعة مخصص جديد DocType: Custom DocPerm,Create,انشاء apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},تصفية الباطلة: {0} DocType: Email Account,no failed attempts,محاولات فاشلة لا +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,لم يتم العثور على قالب عنوان افتراضي. الرجاء إنشاء ملف جديد من الإعداد> الطباعة والعلامة التجارية> نموذج العنوان. DocType: GSuite Settings,refresh_token,refresh_token -DocType: Dropbox Settings,App Access Key,التطبيق مفتاح الوصول +DocType: Dropbox Settings,App Access Key,مفتاح وصول التطبيق DocType: OAuth Bearer Token,Access Token,رمز وصول DocType: About Us Settings,Org History,تاريخ المنظمة DocType: Workflow,Workflow Name,اسم سير العمل @@ -2052,7 +2057,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +144,Notify by Emai DocType: DocField,In Standard Filter,في تصفية القياسية DocType: Web Form,Allow Edit,السماح بالتعديل apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,لصق -DocType: Auto Email Report,Based on Permissions For User,وبناء على ضوابط للمستخدم +DocType: Auto Email Report,Based on Permissions For User,اعتماداً على الصلاحيات للمستخدم apps/frappe/frappe/workflow/doctype/workflow/workflow.py +64,Cannot change state of Cancelled Document. Transition row {0},لا يمكن تغيير حالة الوثيقة ملغاة . DocType: Workflow,"Rules for how states are transitions, like next state and which role is allowed to change state etc.",ويسمح النظام لكيفية قيام الولايات التحولات، مثل الدولة والتي المقبل دور في تغيير الدولة الخ. apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} موجود بالفعل @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,جيثب اسم المستخدم DocType: DocType,Image View,عرض الصورة apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",يبدو وكأنه شيء على ما يرام أثناء العملية. وبما أننا لم تؤكد عملية الدفع، سوف باي بال برد تلقائيا هذا المبلغ. إذا لم يحدث ذلك، يرجى مراسلتنا على البريد الإلكتروني، وأذكر معرف الارتباط: {0}. -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",إدراج بعد الحقل '{0}' المذكورة في حقل مخصص '{1}'، مع التسمية '{2}'، غير موجود +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",تضمين الرموز والأرقام والأحرف الكبيرة في كلمة المرور +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",إدراج بعد الحقل '{0}' المذكورة في حقل مخصص '{1}'، مع التسمية '{2}'، غير موجود DocType: Workflow State,signal,إشارة DocType: DocType,Show Print First,إظهار الطباعة أوﻻ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter للإضافة @@ -2088,16 +2093,17 @@ DocType: Web Form,Web Form Fields,الحقول نموذج ويب DocType: Website Theme,Top Bar Text Color,أعلى شريط لون الخط apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},تحذير: غير قادر على العثور على {0} في أي جدول المتعلقة {1} apps/frappe/frappe/model/document.py +1043,This document is currently queued for execution. Please try again,هذه الوثيقة في قائمة الانتظار حاليا لتنفيذها. حاول مرة اخرى -apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ملف '{0}' غير موجود +apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ملف '{0}' لم يتم العثور apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,إزالة القسم DocType: User,Change Password,تغيير كلمة المرور -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},صالح البريد الإلكتروني: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,مرحبا! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},صالح البريد الإلكتروني: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,مرحبا! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,يجب أن يكون نهاية الحدث بعد بداية apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},ليس لديك إذن للحصول على تقرير عن: {0} +DocType: System Settings,Apply Strict User Permissions,تطبيق ضوابط المستخدم الصارمة DocType: DocField,Allow Bulk Edit,السماح بالتحرير المجمع DocType: Blog Post,Blog Post,منشور المدونه -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,البحث المتقدم +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,البحث المتقدم apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,تم إرسال إرشادات إعادة تعيين كلمة السر إلى بريدك الإلكتروني apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",المستوى 0 هو أذونات مستوى المستند، \ مستويات أعلى لأذونات مستوى المجال. @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,إلغاء DocType: Web Page,Sidebar and Comments,الشريط الجانبي وتعليقات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",عند تعديل مستند بعد الغاء وحفظه ، وسوف تحصل على عدد جديد هو نسخة من الرقم القديم . DocType: Stripe Settings,Publishable Key,مفتاح قابل للنشر -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} سنة (سنوات) DocType: Workflow State,circle-arrow-left,دائرة السهم اليسار apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,مخبأ خادم رديس يست قيد التشغيل. الرجاء الاتصال بمسؤول / الدعم الفني apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,اسم الطرف -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,أنشئ سجل جديد +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,أنشئ سجل جديد apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,البحث DocType: Currency,Fraction,جزء DocType: LDAP Settings,LDAP First Name Field,LDAP الاسم الميدان -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,اختر من القائمة إرفاق ملفات +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,اختر من القائمة إرفاق ملفات DocType: Custom Field,Field Description,وصف الحقل apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,الأسم: لم تحدد عن طريق موجه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,البريد الإلكتروني الوارد @@ -2169,14 +2174,13 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,معلومات: DocType: Custom Field,Permission Level,إذن المستوى DocType: User,Send Notifications for Transactions I Follow,إرسال الإشعارات عن المعاملات التي أتابعها -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : لا يمكن تحديد تأكيد ، الغاء ، تعديل دون كتابة apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,هل أنت متأكد أنك تريد حذف المرفق؟ -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","لا يمكن حذف أو إلغاء ل{0} {1} يرتبط مع {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

لم يتم العثور على نتائج ل '

" -apps/frappe/frappe/__init__.py +1063,Thank you,شكرا +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","لا يمكن حذف أو إلغاء ل{0} {1} يرتبط مع {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,شكرا apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,حفظ DocType: Print Settings,Print Style Preview,معاينة قبل الطباعة ستايل -apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder +apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,إختبار_المجلد apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,لا يسمح لك بتحديث الوثيقة نموذج الويب هذه apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,يرجى تحديد نوع الوثيقة أولا DocType: About Us Settings,About Us Settings,إعدادات صفحة من نحن @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,في عرض القائمة DocType: Email Account,Use TLS,استخدام TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,تسجيل الدخول أو كلمة المرور غير صالحة apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,إضافة جافا سكريبت الى (forms) -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,م +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,م ,Role Permissions Manager,مدير ضوابط الأدوار apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,اسم الشكل الجديد طباعة -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,مسح المرفقات +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,مسح المرفقات apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,إلزامية: ,User Permissions Manager,مدير ضوابط المستخدم DocType: Property Setter,New value to be set,القيمة الجديدة التي سيتم تحديدها @@ -2209,7 +2213,7 @@ DocType: Web Form,Login Required,تسجيل الدخول مطلوب apps/frappe/frappe/config/website.py +42,Write titles and introductions to your blog.,اكتب العناوين والمقدمات لمدونتك . DocType: Email Account,Email Login ID,معرف تسجيل الدخول إلى البريد الإلكتروني apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +3,Payment Cancelled,تم إلغاء الدفعة -,Addresses And Contacts,عناوين واتصالات +,Addresses And Contacts,العناوين و جهات الاتصال apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs,مسح سجلات سجلات الاخطاء apps/frappe/frappe/templates/emails/feedback_request_url.html +2,Please select a rating,يرجى تحديد تصنيف DocType: Email Account,Notify if unreplied for (in mins),يخطر إذا لا تحوي على ردود ل (في دقيقة) @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,منذ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,تصنيف تدوينات المدونة DocType: Workflow State,Time,الوقت DocType: DocField,Attach,إرفاق -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} غير صالح كأسم حقل. يجب أن يكون {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,إرسال ملاحظات طلب فقط إذا كان هناك اتصال واحد على الأقل متاح للوثيقة. DocType: Custom Role,Permission Rules,إذن قوانين DocType: GSuite Settings,GSuite Settings,إعدادات غسويت DocType: Address,Links,الروابط -apps/frappe/frappe/model/base_document.py +428,Value missing for,قيمة مفقودة لل +apps/frappe/frappe/model/base_document.py +427,Value missing for,قيمة مفقودة لل apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,إضافة الطفل -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: لا يمكن حذف سجل مؤكد. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,حجم النسخ الإحتياطي DocType: GSuite Templates,Template Name,اسم القالب -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,نوع جديد من الوثيقة +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جديد من الوثيقة DocType: Custom DocPerm,Read,قرأ DocType: Role Permission for Page and Report,Role Permission for Page and Report,إذن دور للصفحة وتقرير apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,محاذاة القيمة apps/frappe/frappe/www/update-password.html +14,Old Password,كلمة المرور القديمة -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},مشاركات {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},مشاركات {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",لتنسيق الأعمدة، وإعطاء تسميات الأعمدة في الاستعلام. DocType: Has Domain,Has Domain,لديه النطاق apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ليس لديك حساب ؟ تسجيل الدخول -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : لا يمكن تحديد تعيين بالتعديل إن لم يكن قابل للتأكيد DocType: Address,Bihar,بيهار apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,ضوابط تعديل الادوار DocType: Communication,Link DocType,رابط DOCTYPE @@ -2262,7 +2266,7 @@ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permiss apps/frappe/frappe/templates/includes/comments/comments.html +35,Your Name,اسمك DocType: DocType,InnoDB,ك InnoDB DocType: File,Is Folder,هو مجلد -,Feedback Ratings,ردود الفعل التقييمات +,Feedback Ratings,تقييمات التعليقات DocType: DocType,DocType,DOCTYPE apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +9,Party Type,نوع الحزب DocType: Website Theme,"If image is selected, color will be ignored.",إذا تم تحديد صورة، سيتم تجاهل اللون. @@ -2336,13 +2340,13 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,يرجى التأكد من أن التعريف الخاص بك لديه عنوان البريد الإلكتروني apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,لديك تغييرات لم يتم حفظها في هذا النموذج. DocType: Address,Telangana,تيلانجانا -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,الافتراضي ل{0} يجب أن يكون خيارا DocType: Tag Doc Category,Tag Doc Category,العلامة دوك الفئة DocType: User,User Image,صورة المستخدم apps/frappe/frappe/email/queue.py +289,Emails are muted,رسائل البريد الإلكتروني هي صامتة apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,CTRL + Up -DocType: Website Theme,Heading Style,يتجه نمط -apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,سيتم إنشاء مشروع جديد مع هذا الإسم +DocType: Website Theme,Heading Style,نمط العنوان +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,سيتم إنشاء مشروع جديد بهذا الإسم apps/frappe/frappe/utils/data.py +552,1 weeks ago,منذ اسبوع apps/frappe/frappe/desk/page/applications/applications.py +75,You cannot install this app,لا يمكنك تثبيت هذا التطبيق DocType: Communication,Error,خطأ @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,الإجر DocType: Workflow State,ok,حسنا DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,وسيتم تحديث هذه القيم تلقائيا في المعاملات وأيضا سوف تكون مفيدة لتقييد الأذونات لهذا المستخدم على المعاملات التي تحتوي على هذه القيم. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,الناشر -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** فشل: {0} إلى {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** فشل: {0} إلى {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,حدد إلزامية apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,تصفح apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,رسائل البريد الإلكتروني المرسلة @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,تشغيل apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,إعادة تعيين كلمة المرور apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,يرجى الترقية إلى إضافة المزيد من {0} المشتركين DocType: Workflow State,hand-left,اليد اليسرى -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ل {1} لا يمكن أن تكون فريدة من نوعها DocType: Email Account,Use SSL,استخدام SSL DocType: Workflow State,play-circle,لعب دائرة apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,حدد تنسيق طباعة إلى تحرير @@ -2437,7 +2441,7 @@ DocType: DocField,No Copy,اي نسخة DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,تسجيل الدخول مع LDAP DocType: Web Form,Breadcrumbs,فتات الخبز -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,إذا المالك +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,إذا المالك DocType: OAuth Authorization Code,Expiration time,وقت انتهاء الصلاحية DocType: Web Page,Website Sidebar,الشريط الجانبي الموقع DocType: Web Form,Show Sidebar,مشاهدة الشريط الجانبي @@ -2454,10 +2458,10 @@ DocType: Page,Yes,نعم DocType: DocType,Max Attachments,المرفقات ماكس DocType: Desktop Icon,Page,صفحة apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},لا يمكن أن تجد {0} في {1} -apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,الأسماء والألقاب في حد ذاتها هي سهلة التخمين. +apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,الأسماء والألقاب في حد ذاتها سهلة التخمين. apps/frappe/frappe/config/website.py +93,Knowledge Base,قاعدة المعرفة DocType: Workflow State,briefcase,حقيبة -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},لا يمكن تغيير القيمة ل {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},لا يمكن تغيير القيمة ل {0} DocType: Feedback Request,Is Manual,هو دليل DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",النمط يمثل لون الزر: النجاح - الخضراء، خطر -، معكوس الأحمر - الأسود، الابتدائية - أزرق داكن، معلومات - أزرق فاتح، تحذير - أورانج apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,أي تقرير المحملة. الرجاء استخدام استعلام تقرير / [اسم التقرير] لتشغيل التقرير. @@ -2504,7 +2508,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +61,Reply,رد apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),الصفحات في مكتب (أصحاب مكان) DocType: DocField,Collapsible Depends On,الضم يعتمد على apps/frappe/frappe/website/doctype/blog_post/templates/blog_post_row.html +14,By,بواسطة -DocType: Print Settings,Allow page break inside tables,تسمح فاصل صفحات داخل الجداول +DocType: Print Settings,Allow page break inside tables,السماح بفاصل صفحات داخل الجداول DocType: Email Account,SMTP Server,SMTP خادم DocType: Print Format,Print Format Help,تنسيق الطباعة مساعدة apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,قم بتحديث النموذج وحفظه بتنسيق تم تنزيله قبل إرفاقه. @@ -2523,8 +2527,8 @@ DocType: Web Form,Web Page Link Text,نص رابط صفحة الانترنت DocType: Page,System Page,صفحة النظام apps/frappe/frappe/config/setup.py +183,"Set default format, page size, print style etc.",تعيين تنسيق افتراضي، حجم الصفحة، نمط الطباعة الخ apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,زر ESC فى الكيبورد -DocType: Website Settings,Include Search in Top Bar,وتشمل البحث في الأعلى بار -DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى غسويت +DocType: Website Settings,Include Search in Top Bar,اضافة البحث في الشريط العلوي +DocType: GSuite Settings,Allow GSuite access,السماح بالدخول إلى GSuite DocType: DocType,DESC,تنازلي DocType: DocType,Naming,التسمية DocType: Event,Every Year,كل سنة @@ -2534,7 +2538,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,تقدم apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,حسب الصلاحية apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,الحقول في عداد المفقودين apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,FIELDNAME غير صالح '{0}' في autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,بحث في نوع الوثيقة +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,بحث في نوع الوثيقة apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,السماح للحقل بان يبقى قابل للتعديل حتى بعد الارسال DocType: Custom DocPerm,Role and Level,دور و المستوى DocType: File,Thumbnail URL,URL المصغرة @@ -2551,18 +2555,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(كنترول + G) DocType: Contact,More Information,المزيد من المعلومات DocType: Desktop Icon,Desktop Icon,أيقونة سطح المكتب -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,تم قبول الدفع الخاص بك بنجاح +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,تم قبول الدفع الخاص بك بنجاح apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,"عذراَ !, غير مسموح لك مشاهدة هذه الصفحة." apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,تلميح: انقر على خلية مزدوجة لتحرير DocType: Workflow State,bell,جرس apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,حدث خطأ في تنبيه البريد الإلكتروني apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,مشاركة هذه الوثيقة مع +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,الإعداد> مدير أذونات المستخدم apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} لا يمكن أن يكون تفريعة لأن لديه تفريعات أخرى DocType: Communication,Info,معلومات -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,إضافة مرفق +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,إضافة مرفق DocType: Communication,Email,البريد الإلكتروني apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,شكرا لرسالتك -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,إرسال مقروءة إيصال +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,إرسال مقروءة إيصال DocType: Stripe Settings,Stripe Settings,إعدادات الشريط DocType: Dropbox Settings,Dropbox Setup via Site Config,إعداد دروببوإكس عن طريق التكوين الموقع apps/frappe/frappe/www/login.py +64,Invalid Login Token,صالح رمز الدخول @@ -2624,7 +2629,7 @@ DocType: ToDo,Priority,أفضلية DocType: Email Queue,Unsubscribe Param,إلغاء الاشتراك بارام DocType: Auto Email Report,Weekly,الأسبوعية DocType: Communication,In Reply To,ردا على -DocType: DocType,Allow Import (via Data Import Tool),السماح استيراد (عبر أداة استيراد البيانات) +DocType: DocType,Allow Import (via Data Import Tool),السماح بالاستيراد (عبر أداة استيراد البيانات) apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,ريال سعودى DocType: DocField,Float,رقم عشري apps/frappe/frappe/www/update-password.html +71,Invalid Password,رمز مرور خاطئ @@ -2640,6 +2645,7 @@ DocType: DocType,Web View,عرض ويب apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,تحذير: هذا تنسيق الطباعة في النمط القديم، ولا يمكن أن تتولد عن طريق API. DocType: DocField,Print Width,طباعة العرض ,Setup Wizard,معالج الإعدادات +DocType: Address,GST State Number,رقم ضريبة السلع والخدمات DocType: User,Allow user to login only before this hour (0-24),تسمح للمستخدم لتسجيل الدخول فقط قبل هذه الساعة (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,المجلد إلزامي apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2665,7 +2671,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,نص صغير apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,.{2} المسؤول ولج {0} بتاريخ {1} عبر العنوان apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,تساوي -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"'الارتباط الحيوي ""نوع من الخيارات الميدانية يجب أن يشير إلى رابط حقل آخر مع خيارات باسم' DOCTYPE '" DocType: About Us Settings,Team Members Heading,عنوان أعضاء الفريق apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,تنسيق CSV غير صالح apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,تعيين عدد من النسخ الاحتياطية @@ -2676,7 +2682,7 @@ DocType: Contact,Contact,اتصل DocType: User,Third Party Authentication,مصادقة طرف ثالث DocType: Website Settings,Banner is above the Top Menu Bar.,راية فوق أعلى شريط القوائم. DocType: Razorpay Settings,API Secret,API السرية -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,تقرير التصدير: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,تقرير التصدير: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} غير موجود DocType: Email Account,Port,ميناء DocType: Print Format,Arial,Arial @@ -2699,7 +2705,7 @@ DocType: Kanban Board Column,Column Name,اسم العمود DocType: Language,Based On,وبناء على apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,جعله الافتراضي apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,التحقق من عنوان فرابي خادم -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ل {1} لا يمكن فهرستها DocType: Communication,Email Account,حساب البريد الإلكتروني DocType: Workflow State,Download,تحميل DocType: Blog Post,Blog Intro,بدايه المدونه @@ -2710,7 +2716,7 @@ DocType: Web Page,Insert Code,إدراج كود DocType: ToDo,Low,منخفض apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,يمكنك إضافة خصائص ديناميكية من المستند باستخدام Jinja templating . apps/frappe/frappe/commands/site.py +451,Invalid limit {0},حد غير صالح {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,قائمة نوع مستند +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,قائمة نوع مستند DocType: Event,Ref Type,المرجع نوع apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","إذا كنت تحميل سجلات جديدة، وترك ""اسم"" (ID) العمود فارغا." DocType: Address,Chattisgarh,شهاتيسغار @@ -2725,32 +2731,32 @@ DocType: Workflow State,road,طريق DocType: LDAP Settings,Organizational Unit,وحدة تنظيمية DocType: User,Timezone,التوقيت apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},غير قادر على تحميل: {0} -apps/frappe/frappe/config/integrations.py +28,Backup,دعم +apps/frappe/frappe/config/integrations.py +28,Backup,النسخ الإحتياطي apps/frappe/frappe/core/page/usage_info/usage_info.html +3,Expires in {0} days,ينتهي في {0} أيام DocType: DocField,Read Only,للقراءة فقط apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,النشرة الإخبارية جديدة DocType: Print Settings,Send Print as PDF,PDF إرسال طباعة بصيغة DocType: Web Form,Amount,كمية DocType: Workflow Transition,Allowed,سمح -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,يمكن أن يكون هناك واحد فقط طية في شكل apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},تعذر كتابة تنسيق الملف {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,استعادة الإعدادات الافتراضية؟ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,الصفحة الرئيسية غير صالحة apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,تسجيل الدخول غير صالح. حاول ثانية. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},الخيارات المطلوبة للارتباط أو حقل نوع الجدول {0} في الصف {1} DocType: Auto Email Report,Send only if there is any data,إرسال فقط إذا كان هناك أي بيانات apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,إعادة تعيين المرشحات -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : صلاحيات على مستوى 0 يجب تحديده قبل أن يتم تحديد صلاحيات أعلى apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},احالة مغلقة من قبل {0} DocType: Integration Request,Remote,عن بعد -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,إحسب +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,إحسب apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,يرجى تحديد DOCTYPE أولا apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,تأكيد البريد الإلكتروني الخاص بك apps/frappe/frappe/www/login.html +42,Or login with,أو الدخول مع DocType: Error Snapshot,Locals,السكان المحليين apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ترسل عن طريق {0} على {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} المذكور لكم في تعليق في {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,على سبيل المثال (55 + 434) / 4 = أو الرياضيات.خطيئة (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,على سبيل المثال (55 + 434) / 4 = أو الرياضيات.خطيئة (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} مطلوب DocType: Integration Request,Integration Type,نوع التكامل DocType: Newsletter,Send Attachements,إرسال المرفقات @@ -2760,14 +2766,14 @@ DocType: DocField,Perm Level,بيرم المستوى apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,الأحداث في التقويم اليوم DocType: Web Page,Web Page,صفحة على الإنترنت DocType: Blog Category,Blogger,مدون -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"""في البحث العام"" غير مسموح للنوع {0} في الصف {1}" apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,عرض القائمة -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},يجب أن تكون الآن في شكل : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},يجب أن تكون الآن في شكل : {0} DocType: Workflow,Don't Override Status,لا تجاوز الحالة apps/frappe/frappe/www/feedback.html +90,Please give a rating.,يرجى إعطاء تقدير. -apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} رد الطلب +apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} طلب ملاحظات apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,مصطلح البحث -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,المستخدم الأول : أنت +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,المستخدم الأول : أنت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,تحديد الأعمدة DocType: Translation,Source Text,النص المصدر apps/frappe/frappe/www/login.py +55,Missing parameters for login,المعلمات المفقودة لتسجيل الدخول @@ -2789,7 +2795,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,استيراد DocType: ToDo,Assigned By,تعيين بواسطة apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,يمكنك استخدام نموذج مخصص (Customize Form ) لتحديد المستويات على الحقول . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,حدد منطقتك +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,حدد منطقتك DocType: Custom DocPerm,Level,مستوى DocType: Custom DocPerm,Report,تقرير apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,يجب أن تكون كمية أكبر من 0. @@ -2809,7 +2815,7 @@ DocType: Website Theme,Background,خلفية DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",قائمة JSON من DocTypes تستخدم لتطبيق أذونات المستخدم. اذا كانت فارغة، وسوف تستخدم كل DocTypes مرتبطة تطبيق أذونات المستخدم. DocType: Report,Ref DocType,المرجع DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,الرجاء إضافة تقييم -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : لا يمكن تعيين تعدل دون الغاء apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,صفحة كاملة DocType: DocType,Is Child Table,هو الجدول التابع apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} يجب أن يكون واحدا من {1} @@ -2824,7 +2830,7 @@ DocType: Website Slideshow,This goes above the slideshow.,هذا يذهب فوق apps/frappe/frappe/config/setup.py +260,Install Applications.,تثبيت التطبيقات . DocType: Contact,Last Name,اسم العائلة DocType: Event,Private,خاص -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,لا تنبيهات لهذا اليوم +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,لا تنبيهات لهذا اليوم DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),إرسال البريد الإلكتروني المرفقات طباعة بصيغة PDF (مستحسن) DocType: Web Page,Left,ترك DocType: Event,All Day,كل يوم @@ -2838,7 +2844,7 @@ DocType: Event,Send an email reminder in the morning,إرسال رسالة تذ DocType: Blog Post,Published On,نشرت في DocType: Contact,Gender,جنس apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,معلومات إلزامية مفقود: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,المجال '{0}' لا يمكن تعيين فريدة من نوعها كما أن لديها القيم غير فريد +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,الحقل '{0}' لا يمكن تعيينه فريد من نوعه، كما أن لديها قيمة غير فريدة apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,فقط 200 إدراج سمحت في طلب واحد DocType: Footer Item,URL,رابط الانترنت DocType: ToDo,Reference Type,مرجع نوع @@ -2851,7 +2857,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,علامة إنذار DocType: Workflow State,User,مستخدم DocType: Website Settings,"Show title in browser window as ""Prefix - title""","اظهار العنوان في نافذة المتصفح كما ""بادئة - عنوان""" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,النص في نوع الوثيقة +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,النص في نوع الوثيقة apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,تشغيل الاختبارات apps/frappe/frappe/handler.py +91,Logged Out,تسجيل الخروج apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,أكثر من... @@ -2876,13 +2882,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,يطلع عليها حاليا DocType: DocField,Default,الافتراضي apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} أضيف -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',البحث عن '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',البحث عن '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,يرجى حفظ التقرير الأول apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} مشتركين تم اضافتهم apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ليس في DocType: Workflow State,star,نجم -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,قيم مفصولة بفواصل -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,قيم مفصولة بفواصل +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},عرض ماكس لنوع العملة هو 100px في الصف {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},يرجى حصة ملاحظاتك عن {0} apps/frappe/frappe/config/website.py +13,Content web page.,محتوى الويب الصفحة. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,إضافة دور جديد @@ -2900,7 +2906,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,لا أحد المستخدمين LDAP صحيح apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ليست حالة صالحة apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',يرجى تحديد طريقة دفع أخرى. باي بال لا تدعم المعاملات بالعملة '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,حقل البحث {0} غير صالح +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,حقل البحث {0} غير صالح DocType: Workflow State,ok-circle,دائرة OK- apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',يمكنك العثور على الأشياء عن طريق طلب 'find orange in customers' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,آسف! وينبغي أن يكون المستخدم الوصول الكامل إلى سجل الخاصة بهم. @@ -2950,7 +2956,7 @@ DocType: Website Theme,Link to Bootstrap CSS,تصل إلى التمهيد CSS DocType: Workflow State,camera,كاميرا DocType: Website Settings,Brand HTML,العلامة التجارية HTML DocType: Desktop Icon,_doctype,_doctype -DocType: Web Page,Header and Description,رأس والوصف +DocType: Web Page,Header and Description,العنوان والوصف apps/frappe/frappe/templates/includes/login/login.js +21,Both login and password required,كل من تسجيل الدخول وكلمة المرور المطلوبة apps/frappe/frappe/model/document.py +540,Please refresh to get the latest document.,يرجى تحديث للحصول على أحدث وثيقة. DocType: User,Security Settings,إعدادات الأمان @@ -2960,7 +2966,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,تصفية ميتا DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,النص ليتم عرضها لرابط صفحة الانترنت إذا هذا النموذج لديه صفحة على شبكة الإنترنت. الطريق للرابط سيتم تكوينه تلقائيا على أساس `` page_name` وparent_website_route` DocType: Feedback Request,Feedback Trigger,ردود الفعل الزناد -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,الرجاء تعيين {0} الأولى +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,الرجاء تعيين {0} الأولى DocType: Unhandled Email,Message-id,معرف الرسالة DocType: Patch Log,Patch,بقعة DocType: Async Task,Failed,باءت بالفشل @@ -2972,7 +2978,7 @@ DocType: System Settings,mm-dd-yyyy,MM-DD-YYYY apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} تم تسجيل الدخول apps/frappe/frappe/templates/emails/new_user.html +4,Your login id is,معرف تسجيل الدخول الخاص بك هو DocType: OAuth Client,Skip Authorization,تخطي تفويض -DocType: Web Form,Amount Field,كمية الميدان +DocType: Web Form,Amount Field,حقل المبلغ DocType: Dropbox Settings,Send Notifications To,إرسال إشعارات إلى DocType: Bulk Update,Max 500 records at a time,ماكس 500 سجل في وقت DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.",إذا كانت البيانات في HTML، يرجى نسخ لصق رمز HTML المحدد مع العلامات. diff --git a/frappe/translations/bg.csv b/frappe/translations/bg.csv index bcfe42591d..87fae82c51 100644 --- a/frappe/translations/bg.csv +++ b/frappe/translations/bg.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook потребителско име DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Забележка: няколко сесии ще бъдат разрешени в случай на мобилно устройство apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Активирана поща за употреба {потребители} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не може да изпратите този имейл. Можете да са пресекли границата на изпращане {0} имейли за този месец. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Постоянно изпращане {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Постоянно изпращане {0}? DocType: Address,County,Окръг DocType: Workflow,If Checked workflow status will not override status in list view,"Ако е избрано, статуса на работния процес не ще замени статус в списъчен изглед" apps/frappe/frappe/client.py +280,Invalid file path: {0},Невалиден файл пътя: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Мол apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Дървовидно DocType: User,User Emails,потребителски имейли DocType: User,Username,Потребителско име -apps/frappe/frappe/model/base_document.py +581,Value too big,Стойността е твърде голяма +apps/frappe/frappe/model/base_document.py +580,Value too big,Стойността е твърде голяма DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Стартирайте теста на скрипта DocType: Contact,Department,Отдел @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Журнали DocType: Custom DocPerm,This role update User Permissions for a user,Тази актуализация роля потребителски разрешения за потребител apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Преименуване на {0} DocType: Workflow State,zoom-out,намали -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Не може да се отвори {0}, когато си например е отворен" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Не може да се отвори {0}, когато си например е отворен" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Таблица {0} не може да бъде празно apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,С регистри apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Снимки DocType: Communication,Reference Owner,Референтен Собственик DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Най-малък циркулиращ фракция единица (монета). Защото например 1 цент за щатски долари и тя трябва да бъде вписано като 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Ред {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Ред {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Моля, дайте пълно име." apps/frappe/frappe/model/document.py +904,Beginning with,Започващи с apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Шаблон за импорт на данни apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Родител DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако е разрешено, силата на паролата ще бъде наложена въз основа на стойността на минималния парола. Стойност 2 е средно силна и 4 е много силна." DocType: About Us Settings,"""Team Members"" or ""Management""","""Членове на екип"" или ""Управление""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Default за "Проверка" тип на полето трябва да е или "0" или "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Default за "Проверка" тип на полето трябва да е или "0" или "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Вчера DocType: Contact,Designation,Предназначение DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Е публикувано поле DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,Видяно от apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Добавете няколко -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Не като +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Не като apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Определете етикета на дисплея за областта apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Неправилна стойност: {0} трябва да е {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Промени свойства на поле (скрий, само за четене, разрешение и т.н.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Наст apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Администратора е логнат DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Опции за контакти, като "Продажби Query, Support Query" и т.н., всеки на нов ред или разделени със запетаи." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Изтегляне -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Изберете {0} DocType: Print Settings,Classic,Класически DocType: Desktop Icon,Color,Цвят @@ -121,7 +121,7 @@ DocType: Translation,Translation,превод apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Инсталирай apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Господин DocType: Custom Script,Client,Клиент -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Тази форма е била променена, след като сте я заредили" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Тази форма е била променена, след като сте я заредили" DocType: User Permission for Page and Report,User Permission for Page and Report,Потребителят Разрешение за Пейдж и доклад DocType: Address,Himachal Pradesh,Химачал Прадеш DocType: System Settings,"If not set, the currency precision will depend on number format","Ако не е зададена, точната валута ще зависи от формата на числата" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Причина apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Моля, посочете потребителското име" DocType: Email Unsubscribe,Email Unsubscribe,Email Отписване DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Изберете изображение от приблизително ширина 150px с прозрачен фон за най-добри резултати. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Първият потребителят ще стане мениджър System (можете да промените това по-късно). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Първият потребителят ще стане мениджър System (можете да промените това по-късно). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Стрелка в кръг-нагоре apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Качва се ... DocType: Email Domain,Email Domain,Email домейн DocType: Workflow State,italic,курсивен apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,За всички -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Не можете да зададете Внос без Създаване +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Не можете да зададете Внос без Създаване apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Събития и други календари. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Всички полета са необходими за изпращане на коментара. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,"Плъзнете, за да сортирате колоните" @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Не може да изтриете папки Основна и Прикачени файлове apps/frappe/frappe/config/desk.py +19,Files,файлове apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Разрешения се прилагат на потребителите въз основа на това, което Ролите са разпределени." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Вие нямате право да изпращате имейли, свързани с този документ" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Моля, изберете поне една колона от {0} за сортиране / групиране" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Вие нямате право да изпращате имейли, свързани с този документ" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Моля, изберете поне една колона от {0} за сортиране / групиране" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Маркирай това, ако ще тествате плащането с помощта на API Sandbox (тестова)" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Не е позволено да изтривате стандартна тема на уебсайт DocType: Feedback Trigger,Example,Пример @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Общо Абонати apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако роля няма достъп на ниво 0, то по-високи нива са безсмислени." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Запази като DocType: Communication,Seen,Видян -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Покажи още детайли +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Покажи още детайли DocType: System Settings,Run scheduled jobs only if checked,"Стартирай редовни работни места, само ако се проверява" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Ще се показва само ако са разрешени заглавия на раздели apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Архив @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Покажи г apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Валиден имейл и име се изисква DocType: DocType,Hide Heading,Скриване на заглавието DocType: Address,Current,Текущ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Свързани документи apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Групи DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,махни-кръг @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Филтър apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Име на поле {0} не може да има специални символи като {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Актуализиране на много стойности едновременно. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Грешка: Документ е бил променен, след като сте го отворили" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} излезли: {1} DocType: Address,West Bengal,Западен Бенгал -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Cannot set Assign Submit if not Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Cannot set Assign Submit if not Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Филтрирани по "{0}" DocType: Salutation,Administrator,Администратор @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Блог - Заглавие apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Стандартни роли не могат да бъдат изключени DocType: Address,Mizoram,Мизорам DocType: Newsletter,Newsletter,Бютелин с новини -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Не може да се използва под-заявка за +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Не може да се използва под-заявка за DocType: Web Form,Button Help,Бутон Помощ DocType: Kanban Board Column,purple,лилаво DocType: About Us Settings,Team Members,Членове на екипа @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Махни apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Абонаментът ви е изтекъл на {0}. За да се поднови, {1}." DocType: Workflow State,plus-sign,плюс знак apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Настройката е вече изпълнена -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} не е инсталиран +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} не е инсталиран DocType: Workflow State,Refresh,Обнови DocType: Event,Public,Публичен apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Няма за какво да се покаже @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Харесван apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Email Support DocType: DocField,Print Hide If No Value,Print Hide Ако няма стойност DocType: Event,yellow,жълт -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Е публикуван поле трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Е публикуван поле трябва да бъде валиден FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Прикачи файл DocType: Block Module,Block Module,Блок Модул apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Шаблон за експорт @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Гл DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Нов акаунт е създаден за вас в {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Инструкции по имейл -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Въведете Email Получател (и) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Въведете Email Получател (и) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Не може да се идентифицира с отворен {0}. Опитайте нещо друго. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,Съобщението ID DocType: Property Setter,Field Name,Наименование на полето apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite не е конфигуриран. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,или -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Име на модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Продължи +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Име на модул ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Продължи DocType: Custom Field,Fieldname,Име на поле DocType: Workflow State,certificate,сертификат DocType: User,Tile,Плочка @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Покажи всички версии DocType: Workflow State,Print,Печат DocType: User,Restrict IP,Ограничаване на IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Табло apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Не може да се изпращат имейли в този момент apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Търси или въведи команда DocType: Communication,Timeline Name,Timeline Име @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Мениджър на данни за пр apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Една последна стъпка apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Наименование на вида на документа (DocType) искате тази област да бъдат свързани с. напр Customer DocType: User,Roles Assigned,Зададени роли -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Помощ за търсенето +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Помощ за търсенето DocType: Top Bar Item,Parent Label,Родител Заглавие apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Заявката Ви е било получено. Ние ще ви отговорим върна скоро. Ако имате някаква допълнителна информация, моля, отговорете на този имейл." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Permissions автоматично се преизчисляват в стандартни отчети и търсения. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Редактиране на Заглавие DocType: File,File URL,URL на файла DocType: Version,Table HTML,Таблица HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Няма намерени резултати за '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Добави Абонати apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Предстоящи събития за днес DocType: Email Alert Recipient,Email By Document Field,Email от документ Невярно @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Сума на база Невярно apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Потребителят е задължително за споделяне DocType: DocField,Hidden,Скрит DocType: Web Form,Allow Incomplete Forms,Оставя Непълни формуляри -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} трябва да се зададе първо +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} трябва да се зададе първо apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Използвайте няколко думи, избягвайте общи фрази." DocType: Workflow State,plane,равнина -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ами сега. Плащането Ви се е провалило. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако качвате нови рекорди, "именуване Series" става задължителен, ако има такива." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Абонамент за сигнали за днес +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Абонамент за сигнали за днес apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType може да се преименува само от Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},променената стойност на {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Моля, проверете електронната си поща за проверка" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold не може да бъде в края на формата +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold не може да бъде в края на формата DocType: Communication,Bounced,Върнат DocType: Deleted Document,Deleted Name,Изтрито Име apps/frappe/frappe/config/setup.py +14,System and Website Users,Системни и Сайт Потребители @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Документ Ча DocType: GSuite Templates,Destination ID,Идентификационен номер на дестинацията DocType: Desktop Icon,List,Списък DocType: Communication,Link Name,Препратка - Име -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} на ред {1} не може да бъде скрито и задължително без стойност по подразбиране DocType: System Settings,mm/dd/yyyy,дд/мм/гггг apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Грешна парола: DocType: Print Settings,Send document web view link in email,Изпрати документ уеб оглед връзката в имейл apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Вашата обратна връзка {0} е записана успешно apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Предишен -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} редове за {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Под-валута. Например ""цент""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Изберете качен файл @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Препратка apps/frappe/frappe/utils/file_manager.py +96,No file attached,Няма прикачени файлове DocType: Version,Version,Версия DocType: User,Fill Screen,Запълване на екрана -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се покаже този доклад дърво, поради липсващи данни. Най-вероятно, той се филтрира поради разрешения." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунт от Setup> Email> Email Account" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се покаже този доклад дърво, поради липсващи данни. Най-вероятно, той се филтрира поради разрешения." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Изберете File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Редакция чрез качване -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","вида документ ..., например на клиенти" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","вида документ ..., например на клиенти" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,"Условие ""{0}"" е невалидно" DocType: Workflow State,barcode,баркод apps/frappe/frappe/config/setup.py +232,Add your own translations,Добавете вашите собствени преводи @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Сряда apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Отделно от ролята, базирани Правила позволение, можете да приложите потребителски разрешения въз основа на DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Тези разрешения ще се прилагат за всички сделки, в които е позволено рекорд е свързано. Например, ако Company C се добавя към потребителски разрешения на потребителя X, ръководство X ще бъде в състояние да се види, че има сделки компания C като свързано стойност само." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Полето за изображението трябва да бъде валиден FIELDNAME DocType: OAuth Client,Token,жетон DocType: Property Setter,ID (name) of the entity whose property is to be set,Идентификато (име) на свойствтото което да се настрои apps/frappe/frappe/limits.py +82,"To renew, {0}.","Да се поднови, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Sidebar артикули apps/frappe/frappe/installer.py +125,App {0} already installed,Приложението {0} вече е инсталирано DocType: Workflow State,exclamation-sign,удивителен знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Показване на Разрешения -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline поле трябва да бъде Link или Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Период от време apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Гант apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Стр. {0} от {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Във apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Ключът за шифроване е невалиден. Моля, проверете site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Към DocType: Kanban Board Column,darkgrey,тъмно сив -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Успешно: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Успешно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Не можете да променяте потребителските детайли в демонстрацията. Моля, регистрирайте се за нов профил на адрес https://erpnext.com" apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Моля дублирайте това за да направите промени apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"PDF поколение се провали, защото на счупени графични връзки" @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Свиваем apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Запазен apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,За какво ти е необходима помощ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Опции за избор. Всеки вариант на нов ред. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Постоянно Отмени {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Постоянно Отмени {0}? DocType: Workflow State,music,музика DocType: Web Page,Settings,Настройки apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Моля, посочете DOCTYPE" DocType: Print Format,Style Settings,настройките на стил -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Сортиране поле {0} трябва да бъде валиден FIELDNAME apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Още DocType: Contact,Sales Manager,Мениджър Продажби apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Преименувай DocType: Print Format,Format Data,Форматирай данни -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Харесай +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Харесай DocType: Customize Form Field,Customize Form Field,Персонализирайте Фирма - Поле apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Позволи на потребителя DocType: OAuth Client,Grant Type,Вид Grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Проверете какви документи са достъпни за Потребител apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Приложението за регистрация не е разрешено -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,използвайте % като маска -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email на домейн не е конфигурирана за този профил, Създаване на един?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,използвайте % като маска +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email на домейн не е конфигурирана за този профил, Създаване на един?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Активирайте Auto Отговор apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не е видян @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Определете само веднъж DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Получател DocType: Address,Nagaland,Нагаланд apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Потребител {0} вече съществува -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Не можете импортирате тъй като {1} не може да бъде импортиран apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Има грешка във вашия шаблон на адрес {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,От Пълно име apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Вие нямате достъп до отчет: {0} DocType: User,Send Welcome Email,Изпрати имейл за добре дошли apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Качване на CSV файл, съдържащ всички потребителски разрешения в същия формат като Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Премахване на филтъра +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Премахване на филтъра DocType: Address,Daman and Diu,Даман и Диу DocType: Address,Personal,Персонален apps/frappe/frappe/config/setup.py +113,Bulk Rename,Масово преименуване @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Стандартният DocType не може да има стандартния формат на печат, използвайте Персонализиране на формуляра" DocType: Report,Query,Запитване DocType: DocType,Sort Order,Ред на сортиране -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""Списъчен изглед"" не е позволен за вид {0} на ред {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикета след която искате да вмъкнете нова област. ,Document Share Report,Документ Сподели Съобщи DocType: User,Last Login,Последно влизане -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname се изисква в ред {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname се изисква в ред {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона DocType: Custom Field,Adds a custom field to a DocType,Добавя потребителско поле към DocType DocType: File,Is Home Folder,Дали Home Folder @@ -583,7 +583,7 @@ DocType: File,Folder,Папка DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Newsletter мениджъра apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Вариант 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Всички мнения +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Журнал на грешки по време на заявки. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} е успешно добавен към Email група. DocType: Address,Uttar Pradesh,Утар Прадеш @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,индикатор DocType: DocShare,Everyone,Всички DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: само едно правило остава с една и съща Роля, Ниво и {1}" DocType: Email Queue,Add Unsubscribe Link,Добави абонамент в Google apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Все още няма коментари. Започнете ново обсъждане. DocType: Workflow State,share,дял @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,не apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Вижте Абонати apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Госпожица DocType: Website Theme,Background Color,Цвят На Фона -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Имаше грешки при изпращане на имейл. Моля, опитайте отново." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Имаше грешки при изпращане на имейл. Моля, опитайте отново." DocType: Portal Settings,Portal Settings,Portal Settings DocType: Web Page,0 is highest,0 е най-висока apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Сигурни ли сте, че искате да се свържете отново тази комуникация да {0}?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,"Настройки на ""Свържете се с нас""" apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Търсене ... DocType: Workflow State,text-width,текст-ширина -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Максимална граница за този запис Attachment постигнато. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Максимална граница за този запис Attachment постигнато. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Следните задължителни полета трябва да бъдат попълнени:
DocType: Email Alert,View Properties (via Customize Form),Преглед на Properties (чрез Customize форма) DocType: Note Seen By,Note Seen By,Забележка видяна от @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Раджастан apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Доклади Report Builder се управляват пряко от доклад строител. Нищо за правене. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Моля, потвърдете имейл адреса си" apps/frappe/frappe/model/document.py +903,none of,никой от -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Изпрати ми копие +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Изпрати ми копие apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Качване на потребителски достъпи DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Маркирайте елементи ще бъдат показани на работния плот -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} не може да бъде зададен за Единични видове apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Канбан Табло {0} не съществува. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} в момента преглеждат този документ DocType: ToDo,Assigned By Full Name,Възложени от Пълно име apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} актуализиран -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Доклад не може да бъде определен за единични видове apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Преди {0} дни DocType: Email Account,Awaiting Password,Очаква парола DocType: Address,Address Line 1,Адрес Line 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Членки за работния процес (напр Проект, Одобрен, Отменен)." DocType: Print Settings,Allow Print for Draft,Оставя Print за Проект apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Определете Количество -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,"Изпратете този документ, за да потвърдите" +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,"Изпратете този документ, за да потвърдите" DocType: Contact,Unsubscribed,Отписахте apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Комплект потребителски роли за страница и доклад apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Рейтинг: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data Import Tool DocType: Address,Dadra and Nagar Haveli,Дадра и Нагар Хавели apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Качване на файлове. Моля, изчакайте няколко секунди." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Прикрепете вашата снимка +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Прикрепете вашата снимка apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Стойности Changed DocType: Workflow State,Stop,Спри DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Препратка към страницата, която искате да отворите. Оставете празно, ако искате да го направите група." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Изравнете Етикети DocType: Help Article,Expert,Експерт DocType: Workflow State,circle-arrow-right,Стрелка в кръг-надясно DocType: LDAP Settings,LDAP Server Url,LDAP сървър Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Не може да се отвори позиция когато нейната {0} е отворена +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Не може да се отвори позиция когато нейната {0} е отворена apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,На опашка за инсталиране DocType: Custom DocPerm,Custom DocPerm,Персонализиран DocPerm DocType: Newsletter,Send Unsubscribe Link,Изпрати абонамент в Google @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} отстранен DocType: Custom DocPerm,Apply User Permissions,Нанесете потребителски разрешения DocType: User,Modules HTML,Модули HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Мениджър на разрешенията за потребители apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Липсват задължителни стойности DocType: DocType,Other Settings,Други настройки DocType: Social Login Keys,Frappe,Frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Носител Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Няма избран документ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Събитие -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","На {0}, {1} написа:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} написа:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Не можете да изтриете стандартно поле. Можете да го скрие, ако искате." DocType: Top Bar Item,For top bar,За горния бар apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Не може да се идентифицира {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,минус apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Грешка в сървъра: Моля, проверете вашите сървърни регистрационни файлове или се свържете с техническата поддръжка." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Имейлът за добре дошли е изпратен -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Нека да се подготви системата за първа употреба. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Нека да се подготви системата за първа употреба. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Показани apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Вече Е Регистриран DocType: System Settings,Float Precision,Прецизност на реални числа @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Оставя Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Не са инсталирани приложения apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Маркирайте полето като задължително DocType: Communication,Clicked,Кликнато -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Няма разрешение за '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Няма разрешение за '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Планирана да изпратите DocType: DocType,Track Seen,Track Погледнато @@ -822,7 +821,7 @@ DocType: Address,Kerala,Керала DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,Едновременни сесии DocType: OAuth Client,Client Credentials,Клиент на идентификационни данни -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Отваряне на модул или инструмент +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Отваряне на модул или инструмент DocType: Communication,Delivery Status,Статус на доставка DocType: Module Def,App Name,App име apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Максимален размер на файла е позволено до {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Референтен Communica DocType: Email Queue,Unsubscribe Method,Отписване Метод DocType: GSuite Templates,Related DocType,Свързани DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Редактирайте да добавите съдържание -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,избиране на език -apps/frappe/frappe/__init__.py +510,No permission for {0},Няма разрешение за {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,избиране на език +apps/frappe/frappe/__init__.py +509,No permission for {0},Няма разрешение за {0} DocType: DocType,Advanced,Разширени apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Изглежда API Key или API Secret не е наред !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Референтен номер: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Въведете Форма Type apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Не са маркирани записи. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Премахване на поле DocType: User,Send Password Update Notification,Изпрати Актуализация Уведомление Password -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Разрешаването DocType, DocType. Бъди внимателен!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Разрешаването DocType, DocType. Бъди внимателен!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Индивидуално формати за печат, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Актуализиран до нова версия DocType: Custom Field,Depends On,Зависи От @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,един от apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Моля, изберете файла, който да копирате" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,"Проверка. Един момент, моля." apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Покажи Етикети +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ако е поставена отметка дали е разрешено разрешение за кандидатстване за строго потребителско име и потребителско разрешение е зададено за DocType за потребител, тогава всички документи, в които стойността на връзката е празна, няма да се показва на този потребител" DocType: Address,Billing,Фактуриране DocType: Email Queue,Not Sent,Не е изпратено DocType: Web Form,Actions,Действия @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Всеки ден събития трябва да завършат в същия ден. DocType: Communication,User Tags,Потребителски етикети apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Извличане на изображения .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Потребител DocType: Workflow State,download-alt,изтегляне-н apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Изтеглянето на приложение {0} DocType: Communication,Feedback Request,Обратна връзка - Заявка @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Архиви apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Добави контакт DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,По желание: Винаги изпрати на тези документи за самоличност. Всеки имейл адреса на нов ред -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Скриване Детайли +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Скриване Детайли DocType: Workflow State,Tasks,Задачи DocType: Event,Tuesday,Вторник DocType: Blog Settings,Blog Settings,Блог - Настройки @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Напиши файл Python в същата папка, където това се записва и да се върнете на колоната и резултат." DocType: DocType,Sort Field,Поле за сортиране DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Редактиране на Филтър -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","напр. Ако Нанесете Потребителски Разрешения се проверява за Съобщи DocType но не и потребителски разрешения са определени за Доклад за Потребителя, тогава всички доклади са показали, че User" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Редактиране на Филтър +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Поле {0} от тип {1} не може да бъде задължително apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Добави още apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Скриване на таблицата DocType: System Settings,Session Expiry Mobile,Session Изтичане Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Отложен apps/frappe/frappe/config/setup.py +128,List of backups available for download,Списък на резервни копия на разположение за изтегляне apps/frappe/frappe/www/login.html +89,Sign up,Регистрирай се DocType: Test Runner,Output,продукция +DocType: Email Alert,Set Property After Alert,Задайте собственост след предупреждение apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Добави полета към форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Изглежда, че нещо не е наред с конфигурацията на Paypal на този сайт." DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,листо DocType: Portal Menu Item,Portal Menu Item,Portal Меню DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ако е разрешено да зададете потребителско разрешение за Report DocType, но не са дефинирани Потребителски права за отчет за потребител, тогава всички отчети се показват на този потребител" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Списъкът на ресурсите, които Client App ще имат достъп до, след като потребителят го позволява.
напр проект" DocType: Translation,Translated Text,Преведен текст DocType: Contact Us Settings,Query Options,Опции Критерии @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Контакти DocType: System Settings,Setup Complete,Настройката е извършена apps/frappe/frappe/config/setup.py +66,Report of all document shares,Справка за всички акции на документи apps/frappe/frappe/www/update-password.html +18,New Password,Нова Парола -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Филтър {0} липсва +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Филтър {0} липсва apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,За съжаление! Не можете да изтриете автоматично генерирани коментари DocType: Website Theme,Style using CSS,"Style, използвайки CSS" apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Референтен DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Блок модули apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Връщане дължина на {0} за "{1}" в "{2}"; Настройка на дължина като {3} ще доведе отрязване на данни. DocType: Print Format,Custom CSS,Потребителски CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Добавяне на коментар -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Игнорирани: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Игнорирани: {0} до {1} DocType: Address,Gujarat,Гуджарат apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Журнал на грешки за автоматизирани събития (Scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Не е валиден разделен със запетая (CSV файла) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,повторение DocType: Website Settings,Banner,Реклама DocType: Role,"If disabled, this role will be removed from all users.","Ако е забранено, тази роля ще бъде отстранен от всички потребители." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Помощ за Търсене +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Помощ за Търсене apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Регистрирани но инвалиди DocType: DocType,Hide Copy,Скриване Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Изчистване на всички роли @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Страна apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Адреси DocType: Communication,Shared,Споделено -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Прикрепете Документ за печат +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Прикрепете Документ за печат DocType: Bulk Update,Field,поле DocType: Communication,Received,Получен DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Доклад Query DocType: User,Set New Password,Въведете нова парола DocType: User,Github User ID,Github User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ако Документ Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не може да се изтрие или затвори, защото {0} {1} е свързан с {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не може да се изтрие или затвори, защото {0} {1} е свързан с {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Неизвестно приложение {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% не е валиден формат на справка. Форматът на справка трябва \ да е едно от следните неща %s DocType: Communication,Chat,Чат -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Име на поле {0} се среща няколко пъти в редове {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Име на поле {0} се среща няколко пъти в редове {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} от {1} до {2} на ред # {3} DocType: Communication,Expired,Изтекъл DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Брой колони за едно поле в Grid (Общо Колони в мрежа трябва да са по-малко от 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Имате акау apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Неизвестен Print формат: {0} DocType: Workflow State,arrow-down,стрелка надолу apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Свиване -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Потребителят не му е разрешено да изтрива {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Потребителят не му е разрешено да изтрива {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Последно променен на DocType: Help Article,Likes,Харесва DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Скрипт кодекс apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Създаване на потребителски имейл -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Няма посочени разрешения +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Няма посочени разрешения apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Глобални настройки: Потребителите ще бъдат в състояние да изберат избраните икони apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} не е намерен DocType: Custom Role,Custom Role,Персонализирана Роля apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Начало / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Игнорирай потребителските права ако липсват -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Моля, запишете документа, преди да качите." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Моля, запишете документа, преди да качите." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Въведете паролата си DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Добави Друг коментар apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Редактиране на DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Отписахте се от бюлетин -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Сгънете трябва да дойде преди Раздел Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Сгънете трябва да дойде преди Раздел Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Последно променено от DocType: Workflow State,hand-down,ръка-надолу DocType: Address,GST State,GST State -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Не може да отмените непотвърден документ +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Не може да отмените непотвърден документ DocType: Website Theme,Theme,Тема apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Имаше грешки. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Пренасочването URI длъжен да Код за упълномощаване @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мо DocType: Website Theme,Text Color,Цвят на текста DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Невалидна Заявка -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Тази форма не разполага с вход +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Тази форма не разполага с вход apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Сесия на годност трябва да бъде във формат на {0} DocType: Website Sidebar Item,Group,Група DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Изберете целеви = "_blank", за да отворите в нова страница." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Игнорирайте грешки в кодирането на символите (encoding). DocType: Workflow State,wrench,гаечен ключ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Не е зададен -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Потребител DocType: Authentication Log,Date,Дата DocType: Website Settings,Disable Signup,Забранете Регистрация apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Стойте там, докато вашата система е настройка. Това може да отнеме няколко минути." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Добави коментар DocType: DocField,Mandatory,Задължителен apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модул за експорт -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Няма основен набор разрешения +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Няма основен набор разрешения apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Абонаментът ви ще изтече на {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Изтегляне на връзката за резервната си ще бъде изпратено на следния имейл адрес: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значение на Знаете, Отмени, изменя" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,заявка-доклад apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Целеви да {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,"Филтри, запаметени" DocType: DocField,Percent,Процент -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Моля, задайте филтри" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Моля, задайте филтри" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Свързан с DocType: Workflow State,book,книга DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Грешка в персонализиран скрипт +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Грешка в персонализиран скрипт apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Име apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Импортът е добавен в опашката за чакащи задачи. Това може да отнеме няколко минути, моля, бъдете търпеливи." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Няма разрешение за определени за тези критерии. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Да се разреш apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Вие нямате достатъчно права за достъп до този ресурс. Моля, свържете се с вашия мениджър, за да получите достъп." DocType: Custom Field,Custom,Персонализиран apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert въз основа на различни критерии. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Постове намира под {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Постове намира под {0} DocType: Email Alert,Send alert if date matches this field's value,"Изпрати сигнал, ако дата съвпада стойност тази област е" DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Премахване на {0} и изтриване на всички данни? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Вход След DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Печатане DocType: Workflow State,thumbs-up,одобрение -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка> Имейл> Имейл акаунт" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Прецизността трябва да бъде между 1 и 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Прецизността трябва да бъде между 1 и 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,и DocType: Error Snapshot,Frames,Frames @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Линк към снимката DocType: Auto Email Report,Report Filters,Справка Филтри apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,сега DocType: Workflow State,step-backward,стъпка назад -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Моля, задайте Dropbox клавишите за достъп в сайта си довереник" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Изтрий този запис да позволи изпращането на този имейл адрес apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Само задължителни полета са необходими за нови записи. Можете да изтриете незадължителни колони, ако желаете." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Дали Прикачени Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Отваряне на всички apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Изисква валиден Login ID. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-отворена -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Успешно отменихте плащането -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Моля, изберете валиден CSV файл с данни" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Моля, изберете валиден CSV файл с данни" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} отмени споделянето на този документ с {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Статусът на документ не може да бъде сменен от {0} на {1} DocType: DocType,"Make ""name"" searchable in Global Search",Направете "име" търсене в Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,п DocType: Help Category,Help Category,Помощ - Категория apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Потребителят {0} е деактивиран apps/frappe/frappe/www/404.html +8,Page missing or moved,Страницата липсва или е преместена -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Редактиране на {0} свойства DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay настройки портал на плащане DocType: DocField,Name,Име apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Надвишихте макс пространство на {0} за плана си. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Търсене в документите DocType: OAuth Authorization Code,Valid,валиден -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Твоят език +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твоят език apps/frappe/frappe/desk/form/load.py +46,Did not load,Не се зареди apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Добави Row DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Е заявк DocType: Address,Lakshadweep Islands,Острови Лакшад apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Могат да записва apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Някои документи, като фактура, не трябва да се променят веднъж като са окончателни. Състоянието за такива документи се нарича Изпратен. Можете да ограничите какви роли може да правят ""Изпращане""." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Не е разрешено да експортирате тази справка +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Не е разрешено да експортирате тази справка apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 елемент е избран DocType: Newsletter,Test Email Address,Тест имейл адрес DocType: ToDo,Sender,Подател @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Документ ID DocType: Print Settings,Letter,Писмо -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Полето за изображението трябва да бъде от тип Прикрепете Изображение +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Полето за изображението трябва да бъде от тип Прикрепете Изображение DocType: DocField,Columns,Колони DocType: Async Task,Succeeded,Успя apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Задължителни полета в {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Редактор на текст apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,"Настройки на ""За нас"" страницата." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit персонализиран HTML DocType: Error Snapshot,Error Snapshot,Грешка Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,В +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,В DocType: Email Alert,Value Change,Промяна на стойност DocType: Standard Reply,Standard Reply,Стандартен отговор apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ширина на полето за въвеждане @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Използвайте тази fieldname за генериране на заглавието apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Импорт на имейл от apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Покани като Потребител -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Изберете Приложения +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Изберете Приложения apps/frappe/frappe/model/naming.py +94, for {0},за {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Имаше грешки. Моля, уведомете." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Вие нямате право да отпечатате този документ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Вие нямате право да отпечатате този документ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Моля, задайте филтри стойност в доклад Филтър маса." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Товарене Доклад +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Товарене Доклад apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Абонаментът ви ще изтече днес. DocType: Page,Standard,Стандарт apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Прикрепете File @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Регионални Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Оставете този разговор -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Опции не са определени за поле {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опции не са определени за поле {0} DocType: Customize Form,"Must be of type ""Attach Image""",Трябва да е от тип "Прикрепете Изображение" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Премахни отметката от всички apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Можете да не изключено "Само за четене" за област {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Забележка apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Грешка Доклад apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Обратните условия не съвпадат -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline поле трябва да бъде валиден FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline поле трябва да бъде валиден FIELDNAME DocType: Currency,Symbol,Символ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Ред # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Ред # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Нова парола е изпратена на емайла apps/frappe/frappe/auth.py +245,Login not allowed at this time,Не е позволено влизането в този момент DocType: Email Account,Email Sync Option,Email Sync Вариант @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Текст apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard отговори на общи запитвания. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Изпращане по подразбиране DocType: Workflow State,volume-off,Изключване на звука -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Харесан от {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Харесан от {0} DocType: Footer Item,Footer Item,Footer точка ,Download Backups,Изтегляне на резервни копия apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Начало / Test Folder 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Текст Подравнен apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Името не може да съдържа специални символи като {0} DocType: Contact Us Settings,Forward To Email Address,Препрати на имейл адрес apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Показване на всички данни -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Заглавие поле трябва да бъде валиден fieldname apps/frappe/frappe/config/core.py +7,Documents,Документи DocType: Email Flag Queue,Is Completed,е завършен apps/frappe/frappe/www/me.html +22,Edit Profile,Редактирай профил @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",В това поле ще се появи само ако FIELDNAME определено тук има стойност или правилата са верни (примери): myfield Оценка: doc.myfield == "My Value" Оценка: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,днес +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,днес apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","След като сте задали този, потребителите ще бъдат в състояние единствено достъп до документи (напр. Блог Post), където съществува връзката (напр. Blogger)." DocType: Error Log,Log of Scheduler Errors,Журнал на грешки за Scheduler DocType: User,Bio,Био @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 звезда е най-ниската и най-високата 5 звезди са рейтинг DocType: Event,Ref Name,Ref Име DocType: Web Page,Center,Център +DocType: Email Alert,Value To Be Set,"Стойност, която трябва да бъде зададена" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Първо ниво DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Представлява членки допускат в един документ и роля, отредена за промяна на състоянието." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Обновяване Form @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Има Уеб View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","име DocType трябва да започва с буква и тя може да се състои само от букви, цифри, интервали и долни" DocType: Communication,Spam,Спам DocType: Integration Request,Integration Request,интеграция Заявка -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Уважаеми +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Уважаеми DocType: Address,Maharashtra,Махаращра DocType: Address,Accounts User,Роля Потребител на 'Сметки' DocType: Web Page,HTML for header section. Optional,HTML за раздел глава. По избор apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Тази функция е нова и все още експериментална -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Позволен брой редове {0} +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Позволен брой редове {0} DocType: Email Unsubscribe,Global Unsubscribe,Глобално отписване apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Това е много често срещана парола. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Изглед DocType: Communication,Assigned,целеви DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Изберете Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Изберете Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Кратки модели на клавиатурата са лесни за отгатване DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Дължина на {0} трябва да бъде между 1 и 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Потребителят не може да търси apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Невалиден изходящ формат DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Прилага се, ако потребителят е собственик" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Ще бъде вашият идентификационен номер за вход +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Ще бъде вашият идентификационен номер за вход apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Изграждане на справка DocType: Note,Notify users with a popup when they log in,"Уведоми потребителите с изскачащ прозорец, когато влязат" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} не съществува, изберете нова цел за сливане" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,Роли Разр apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Актуализация DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Моля, запишете бюлетина, преди да го изпратите" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Опции трябва да бъде валиден DocType за поле {0} на ред {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} преди години +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опции трябва да бъде валиден DocType за поле {0} на ред {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Редактиране на стойности DocType: Patch Log,List of patches executed,Списък на изпълнени актуализации apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} е вече отписан -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Комуникационна среда +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Комуникационна среда DocType: Website Settings,Banner HTML,Реклама HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. Razorpay не поддържа транзакции с валута "{0}"" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,На опашка за архивиране. Това може да отнеме няколко минути до един час. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Регистрирайте OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може да бъде ""{2}"". Тя трябва да бъде една от ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} или {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Показване или скриване на иконите на работния плот apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Актуализация на парола @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Покажи Line Breaks след раздели DocType: Blogger,Short Name,Кратко Име apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Стр. {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Избирате Sync опция, тъй като всички, тя ще RESYNC всички \ чете, както и непрочетено съобщение от сървъра. Това също може да доведе до дублиране на \ Комуникационни (имейли)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,файлове Размер @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Мениджър покупки DocType: Custom Script,Sample,Проба apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Некатегоризирани етикети DocType: Event,Every Week,Всяка Седмица +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Имейл акаунта не е настроен. Моля, създайте нов имейл адрес от Настройка> Имейл> Имейл акаунт" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Кликнете тук, за да проверите вашето потребление или преминете към по-висок план" DocType: Custom Field,Is Mandatory Field,Е задължително поле DocType: User,Website User,Сайт на потребителя @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Персонализирано странично меню DocType: Workflow State,pencil,молив apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Чат съобщения и други уведомления. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Вмъкни след не може да бъде зададено като {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Вмъкни след не може да бъде зададено като {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Сподели {0} с apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,настройка на имейл акаунт моля въведете парола за: DocType: Workflow State,hand-up,ръка-нагоре DocType: Blog Settings,Writers Introduction,Писатели Въведение DocType: Address,Phone,Телефон -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,"Грешка при оценяването Email Alert {0}. Моля, коригирайте шаблон." +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,"Грешка при оценяването Email Alert {0}. Моля, коригирайте шаблон." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Изберете вида документ или Role да започне. DocType: Contact,Passive,Пасивен DocType: Contact,Accounts Manager,Роля Мениджър на 'Сметки' +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Плащането Ви е анулирано. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Изберете Вид на файла DocType: Help Article,Knowledge Base Editor,База от знание - Редактор apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страницата не е намерена @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Тип на имота DocType: Workflow State,screenshot,скрийншот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Само администратор може да записва стандартна справка. Моля, преименувате и запазете." DocType: System Settings,Background Workers,Фонов режим Работници +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,"Име на поле {0}, което е в противоречие с мета обект" DocType: Deleted Document,Data,Данни apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Статус на документ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Вече са направени {0} от {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Покажи потребителски разрешения apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Трябва да влезете в профила и да имате роля на системен мениджър, за да бъдете в състояние за достъп до архиви." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,оставащ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Моля, запишете преди да поставите." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Моля, запишете преди да поставите." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Добавен {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Тема по подразбиране е зададена в {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се променя от {0} на {1} в ред {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,Системни настройки apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Стартът на сесията се провали apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Този имейл е изпратен на {0} и копие до {1} DocType: Workflow State,th,тата -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Моля, настройте по подразбиране имейл акаунта от Setup> Email> Email Account" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Създаване на нова {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Създаване на нова {0} DocType: Email Rule,Is Spam,е спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Справка {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Адрес URI по подразбиране за препращане DocType: Email Alert,Recipients,Получатели DocType: Workflow State,ok-sign,ОК-знак @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Помощни статии ,Modules Setup,Настройка на модули apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Плащането Ви не бе успешно. DocType: Communication,Unshared,неразделен DocType: Address,Karnataka,Карнатака apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модулът не е намерен @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Изображение на марката DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup на горната навигационна лента, долния и лого." DocType: Web Form Field,Max Value,Максимална стойност -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},За {0} на равнище {1} в {2} в ред {3} DocType: Contact,All,Всички DocType: Email Queue,Recipient,Получател DocType: Communication,Has Attachment,С прикачен файл @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,уеднаквят десен DocType: Auto Email Report,Email To,Email до apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Папка {0} не е празна DocType: Page,Roles,Роли -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Поле {0} не е избираемо. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Грешка: липсва стойност за {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Поле {0} не е избираемо. DocType: System Settings,Session Expiry,Session Изтичане DocType: Workflow State,ban-circle,бан-кръг DocType: Email Flag Queue,Unread,непрочетен @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Потребителски настройки apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Създавай на нов DocType: Workflow State,chevron-down,Стрелка-надолу -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email не изпраща до {0} (отписахте / инвалиди) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email не изпраща до {0} (отписахте / инвалиди) DocType: Async Task,Traceback,Проследи DocType: Currency,Smallest Currency Fraction Value,Най-малък Фракция валути Value apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Възлага на @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,От DocType: Website Theme,Google Font (Heading),Google Font (Заглавие) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Изберете група възел на първо място. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Намерете {0} в {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Намерете {0} в {1} DocType: OAuth Client,Implicit,косвен DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Добавяне като комуникация против този DocType (трябва да има области, "статут", "Тема")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI адреси за получаване на разрешение код веднъж на потребителя ви позволява достъп, както и отговорите на провал. Обикновено почивка крайна точка изложени от Клиента App.
например HTTP: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Не е позволено да се промени {0} след подаването +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Не е позволено да се промени {0} след подаването DocType: Communication,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,OAuth клиент apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Потребители @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Файловият формат не може да се чете за {0} DocType: Auto Email Report,Filter Data,Данни за филтриране apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Добавяне на маркер -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Моля, първо прикачете файл." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Моля, първо прикачете файл." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Имаше някои грешки, определящи името, моля, свържете се с администратора" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Входящата пощенска кутия не е правилна apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,Email Изпратено DocType: DocField,Ignore XSS Filter,Игнорирайте XSS Филтър apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,премахнат apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Настройки на Dropbox архивиране -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Изпрати като мейл +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Изпрати като мейл DocType: Website Theme,Link Color,Цвят на Препратка apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Потребителят {0} не може да бъде деактивиран apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Уважаем мениджър на системата," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Стараната ти +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Стараната ти DocType: Event,Sunday,Неделя apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,В табличен изглед DocType: Address Template,Template,Шаблон @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Делхи apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Настройки LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Коригиращ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal настройки за плащане - шлюз -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) ще получите пресечен, като макс символи право е {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) ще получите пресечен, като макс символи право е {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ресурс за собственика Парола Credentials DocType: OAuth Client,Response Type,Вид отговор apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Максимален брой потребители @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Таблица DocType: File,File Size,Размер на файла apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Трябва да се логнете за да изпратите този формуляр DocType: User,Background Image,Изображение за фон -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Изберете вашата държава, часова зона и валута" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Изберете вашата държава, часова зона и валута" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,между DocType: Async Task,Queued,На опашка @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Създай apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Невалиден Филтър: {0} DocType: Email Account,no failed attempts,няма неуспешни опити +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Не бе намерен стандартният шаблон за адреси. Моля, създайте нов от Setup> Printing and Branding> Address Template." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App на ключа за достъп DocType: OAuth Bearer Token,Access Token,Токен за достъп @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github име DocType: DocType,Image View,Вижте изображението apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Изглежда, че нещо се обърка по време на операцията. Тъй като не са потвърдили плащането, Paypal автоматично ще ви възстанови тази сума. Ако това не стане, моля изпратете ни имейл и Correlation ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Въведете в паролата символи, цифри и главни букви" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Поставете След поле "{0}", споменат в персонализирано поле "{1}", с етикет "{2}", не съществува" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Въведете в паролата символи, цифри и главни букви" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Поставете След поле "{0}", споменат в персонализирано поле "{1}", с етикет "{2}", не съществува" DocType: Workflow State,signal,сигнал DocType: DocType,Show Print First,Покажи Print First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, за да публикувате" @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,"{0}" не е намерен файла apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Махни Раздел DocType: User,Change Password,Смени парола -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Невалиден Email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Здравейте! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Невалиден Email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Здравейте! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Край на събитието трябва да бъде след началото apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Не е нужно разрешение да получите отчет за: {0} +DocType: System Settings,Apply Strict User Permissions,Прилагане на строги потребителски разрешения DocType: DocField,Allow Bulk Edit,Разрешаване на групово редактиране DocType: Blog Post,Blog Post,Блог - Статия -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Разширено Търсене +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Разширено Търсене apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Инструкции за възстановяване на паролата са изпратени на Вашия имейл apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 е за разрешения на ниво документ, \ по-високи нива за разрешения на ниво поле." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,отм DocType: Web Page,Sidebar and Comments,Sidebar и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Когато се изменя документ след Отмени и спести нея, тя ще получи нов номер, който е версия на стария номер." DocType: Stripe Settings,Publishable Key,Ключ за публикуване -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} преди години DocType: Workflow State,circle-arrow-left,Стрелка в кръг-наляво apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Redis кеш сървър не работи. Моля, свържете се с администратора / подкрепа Tech" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Име на Компания -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Направете нов запис +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Направете нов запис apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,търсене DocType: Currency,Fraction,Фракция DocType: LDAP Settings,LDAP First Name Field,LDAP Име - Поле -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Изберете от съществуващите прикачени файлове +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Изберете от съществуващите прикачени файлове DocType: Custom Field,Field Description,Поле Описание apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Името не определя чрез Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Входящи @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Инфо: DocType: Custom Field,Permission Level,Ниво на достъп DocType: User,Send Notifications for Transactions I Follow,"Изпращай ми известия за транзакции, които следя" -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Cannot set Submit, Cancel, Amend without Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Сигурни ли сте, че искате да изтриете прикачения файл?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не може да се изтрие или затвори, защото {0} {1} е свързан с {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Няма намерени резултати за '

-apps/frappe/frappe/__init__.py +1063,Thank you,Благодаря +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не може да се изтрие или затвори, защото {0} {1} е свързан с {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Благодаря apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Запазване DocType: Print Settings,Print Style Preview,Печат Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,В списъчен изглед DocType: Email Account,Use TLS,Използване на TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Невалидна парола или потребителско име apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Добави JavaScript форми. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Номер +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Номер ,Role Permissions Manager,Мениджър на права за роля apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Името на новия Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Изчистване на прикачен файл +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Изчистване на прикачен файл apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Задължително: ,User Permissions Manager,Мениджър потребителски разрешения DocType: Property Setter,New value to be set,Задай Нова стойност @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Пре apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризиране блог постове. DocType: Workflow State,Time,Време DocType: DocField,Attach,Прикрепете -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валидна информация за полето. Трябва да бъде {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Изпрати Обратна връзка Заявка само ако има най-малко една комуникация е достъпно за документа. DocType: Custom Role,Permission Rules,Разрешение Правила DocType: GSuite Settings,GSuite Settings,Настройки на GSuite DocType: Address,Links,Връзки -apps/frappe/frappe/model/base_document.py +428,Value missing for,Липсва Цена за +apps/frappe/frappe/model/base_document.py +427,Value missing for,Липсва Цена за apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Добави Поделемент -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Осчетоводен Запис не може да бъде изтрит. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Архив - Размер DocType: GSuite Templates,Template Name,Име на шаблона -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,нов тип документ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нов тип документ DocType: Custom DocPerm,Read,Четене DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роля АКТ Пейдж и доклад apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Изравнете Value apps/frappe/frappe/www/update-password.html +14,Old Password,Стара Парола -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Мнения на {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Мнения на {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","За колони формат, даде етикети на колони в заявката." DocType: Has Domain,Has Domain,Има Домейн apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Не сте се регистрирали? Регистрирай се -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Cannot set Assign Amend if not Submittable DocType: Address,Bihar,Бихар apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Редактиране на права в роля DocType: Communication,Link DocType,Препратка DocType @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Моля, уверете се, че вашият профил има зададен имейл адрес" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Имате незапазени промени в тази форма. Моля, запишете преди да продължите." DocType: Address,Telangana,Телангана -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Стойност по подразбиране за {0} трябва да бъде опция DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория DocType: User,User Image,Потребител - Снимка apps/frappe/frappe/email/queue.py +289,Emails are muted,Имейлите са заглушени @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Следв DocType: Workflow State,ok,Добре DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Тези стойности ще бъдат актуализират автоматично при сделки и ще бъде полезен и за ограничаване на разрешения за този потребител върху сделките, съдържащи тези ценности." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Издател -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Грешка: {0} до {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Грешка: {0} до {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Изберете Задължително apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Разгледай apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Изпратени Емайли @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Изпълнение apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Моля Подобрете да добавите повече от {0} абонати DocType: Workflow State,hand-left,ръка-наляво -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} за {1} не може да бъде уникален DocType: Email Account,Use SSL,Използване на SSL DocType: Workflow State,play-circle,игра-кръг apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Изберете Print Формат за редактиране @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,Няма копие DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Влез с LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ако Собственик +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ако Собственик DocType: OAuth Authorization Code,Expiration time,време изтичане DocType: Web Page,Website Sidebar,Сайт Sidebar DocType: Web Form,Show Sidebar,Покажи Sidebar @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не можах apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Имена и фамилии сами по себе си са лесни за отгатване. apps/frappe/frappe/config/website.py +93,Knowledge Base,База от знание DocType: Workflow State,briefcase,куфарче -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},"Стойността не може да бъде променяна, за {0}" +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},"Стойността не може да бъде променяна, за {0}" DocType: Feedback Request,Is Manual,Дали Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style представлява цвета на бутона: Success - Green, Danger - Red, Inverse - Черно, Основно - Тъмно син, Info - Light Blue, Предупреждение - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Не Доклад зареден. Моля, използвайте заявка-доклад / [Докладвай Name], за да изготвите отчет." @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,прогре apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,от Роля apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,липсващи полета apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Невалиден FIELDNAME "{0}" в autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Търсене във вида на документ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Търсене във вида на документ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,"Оставя се поле, за да остане редактира дори след подаването" DocType: Custom DocPerm,Role and Level,Роля и Ниво DocType: File,Thumbnail URL,Thumbnail URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Повече информация DocType: Desktop Icon,Desktop Icon,Икона за Работен плот -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Вашето плащане беше успешно прието +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Вашето плащане беше успешно прието apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,За съжаление! Вие нямате право да видите тази страница. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,"Съвет: Двойно кликване клетка, за да редактирате" DocType: Workflow State,bell,звънец apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка при предупреждението по имейл apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Споделете този документ с +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Мениджър на разрешенията за потребители apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може да бъде клон, тъй като има подклонове" DocType: Communication,Info,Инфо -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Добави Attachment +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Добави Attachment DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Благодаря ви за вашето съобщение -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Изпрати прочетен Разписка +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Изпрати прочетен Разписка DocType: Stripe Settings,Stripe Settings,Настройки на ивицата DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup чрез сайта Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Невалиден токън за вход @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,уеб View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Внимание: Този формат за печат е в стар стил и не може да бъде генериран чрез API. DocType: DocField,Print Width,Print Width ,Setup Wizard,Wizard Setup +DocType: Address,GST State Number,GST номер на държавата DocType: User,Allow user to login only before this hour (0-24),Позволи на потребителя да се логнете само преди този час (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Папка е задължително apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Малък Текст apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Администратора е влизал на {0} на {1} чрез IP адрес {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Равно -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на полето Options "Dynamic Link" трябва да сочи към друг Link Невярно с опции като "DocType" DocType: About Us Settings,Team Members Heading,Членове на екипа - заглавие apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Невалиден CSV формат apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Определете брой резервни копия @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Контакт DocType: User,Third Party Authentication,Автентикация от трета страна DocType: Website Settings,Banner is above the Top Menu Bar.,Рекламата е над Top Menu Bar. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Export Доклад: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Export Доклад: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} не съществува DocType: Email Account,Port,Порт DocType: Print Format,Arial,Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,Базиран на apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Направи по подразбиране apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Проверете URL на Frappe сървъра -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} за {1} не може да се индексира DocType: Communication,Email Account,Имейл акаунт DocType: Workflow State,Download,Изтегляне DocType: Blog Post,Blog Intro,Блог - Въведение @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,Вмъкни код DocType: ToDo,Low,Нисък apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,"Можете да добавите динамични свойства на документа, с помощта Джинджа темплейт." apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Невалиден ограничение {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Списък на тип документ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Списък на тип документ DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако качвате нови рекорди, оставете "име" (ID) колона заготовката." DocType: Address,Chattisgarh,Чатисгарх @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Изпрати Принтирай като PDF DocType: Web Form,Amount,Стойност DocType: Workflow Transition,Allowed,Позволен -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Не може да има само едно стадо във форма +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Не може да има само едно стадо във форма apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Не може да се напише файлов формат за {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Възстановяване на настройките по подразбиране? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Невалиден Home Page apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Невалиден вход. Опитайте пак. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Опциите, които се изискват за поле на връзката или тип таблица {0} на ред {1}" DocType: Auto Email Report,Send only if there is any data,Изпрати само ако има някаква информация apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Фабрични филтри -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Разрешение на ниво 0 трябва да бъде зададено преди да се определят по-високи нива apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Възлагане затворено от {0} DocType: Integration Request,Remote,отдалечен -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Изчисли +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Изчисли apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Моля, изберете DocType първо" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Потвърдете Вашият Email apps/frappe/frappe/www/login.html +42,Or login with,Или влезте с DocType: Error Snapshot,Locals,Местните жители apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Съобщено посредством {0} от {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ви спомена в коментар в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,напр (55 + 434) / 4 или = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,напр (55 + 434) / 4 или = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} е задължително DocType: Integration Request,Integration Type,Вид интеграция DocType: Newsletter,Send Attachements,Изпрати прикачванията @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,Ниво на достъп apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Събития в днешния Calendar DocType: Web Page,Web Page,Уеб Страница DocType: Blog Category,Blogger,Списвач на блог -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"В глобалното търсене" не е разрешено за тип {0} на ред {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Вижте Списък -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Датата трябва да бъде във формат: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Датата трябва да бъде във формат: {0} DocType: Workflow,Don't Override Status,Не променяй статуса apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Моля, дайте оценка." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Заявка за Обратна връзка apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Дума за търсене -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Първият потребител: Вие +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Първият потребител: Вие apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Изберете Колони DocType: Translation,Source Text,Източник Текст apps/frappe/frappe/www/login.py +55,Missing parameters for login,Липсващи параметри за влизане @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Импортиране DocType: ToDo,Assigned By,Възложени от apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Можете да използвате Customize Форма за да зададете нивото на полета. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Изберете Вашия регион +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Изберете Вашия регион DocType: Custom DocPerm,Level,Ниво DocType: Custom DocPerm,Report,Справка apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сумата трябва да бъде по-голямо от 0. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,Фонов режим DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON списък на DocTypes използвани да се прилагат потребителски разрешения. Ако празна, всички свързани DocTypes ще бъдат използвани, за да се прилага потребителски разрешения." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Моля, добавете рейтинг" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Cannot set Amend without Cancel apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Пълна страница DocType: DocType,Is Child Table,Е подчинена таблица apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} трябва да бъде един от {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Това се отна apps/frappe/frappe/config/setup.py +260,Install Applications.,Инсталиране на приложения. DocType: Contact,Last Name,Фамилия DocType: Event,Private,Частен -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Няма сигнали за днес +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Няма сигнали за днес DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Изпрати Email Print Прикачени като PDF (препоръчително) DocType: Web Page,Left,Наляво DocType: Event,All Day,Цял Ден @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,Изпращане на е DocType: Blog Post,Published On,Публикуван на DocType: Contact,Gender,Пол apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Задължителната информация липсва: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0} ""не може да бъде зададено като уникално, тъй като има не-уникални стойности" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Само на 200 добавяния се допускат в една заявка DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Референтен Type @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,предупредителен-знак DocType: Workflow State,User,Потребител DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи заглавие в прозореца на браузъра като "Prefix - заглавие" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,текст на вида документ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,текст на вида документ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Изпълнявайте тестове apps/frappe/frappe/handler.py +91,Logged Out,Излязохте apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Повече... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,В момента разглеждат DocType: DocField,Default,Неустойка apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} добавен -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Търсене за '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Търсене за '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Моля, запишете справката първо" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,Добавени {0} абонати apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Не в DocType: Workflow State,star,звезда -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,"стойности, разделени със запетаи" -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,"стойности, разделени със запетаи" +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max ширина за вид валута е 100px в ред {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Моля, споделете вашето мнение за {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Съдържание уеб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Добави нова роля @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Не е валидно потребителско LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} не е валидна Област apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Моля, изберете друг начин на плащане. PayPal не поддържа транзакции с валута "{0}"" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Поле за търсене {0} не е валидно +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Поле за търсене {0} не е валидно DocType: Workflow State,ok-circle,OK-кръг apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Можете да намерите неща, като попита "намери оранжево в клиенти"" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,За съжаление! Потребителят трябва да има пълен достъп до собствения си рекорд. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Филтър Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, за да бъде показана за Линк към Web Page ако този формуляр има уеб страница. Link маршрут автоматично ще се генерира на базата на `page_name` и` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Обратна връзка Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Моля, задайте {0} първа" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Моля, задайте {0} първа" DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Кръпка DocType: Async Task,Failed,Не успя diff --git a/frappe/translations/bn.csv b/frappe/translations/bn.csv index c1df2ea671..02aa15c8a4 100644 --- a/frappe/translations/bn.csv +++ b/frappe/translations/bn.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ফেসবুক ব্যবহারকা DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,নোট: একাধিক সেশন মোবাইল ডিভাইস এর ক্ষেত্রে অনুমতি দেওয়া হবে apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ব্যবহারকারীর জন্য সক্রিয় ইমেইল ইনবক্সে {ব্যবহারকারীদের} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,এই ইমেইল পাঠাতে পারবেন না. আপনি এই মাসের জন্য {0} ইমেইল পাঠানোর সীমা অতিক্রম করেছেন. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,স্থায়ীভাবে {0} পাঠাবেন? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,স্থায়ীভাবে {0} পাঠাবেন? DocType: Address,County,বিভাগ DocType: Workflow,If Checked workflow status will not override status in list view,পরিক্ষীত কর্মপ্রবাহ অবস্থা তালিকা দৃশ্যে অবস্থা ওভাররাইড করতে হবে apps/frappe/frappe/client.py +280,Invalid file path: {0},অবৈধ ফাইল পাথ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,এক apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} বৃক্ষ DocType: User,User Emails,ব্যবহারকারীর ই-মেইল DocType: User,Username,ইউজারনেম -apps/frappe/frappe/model/base_document.py +581,Value too big,মান অত্যন্ত বড় +apps/frappe/frappe/model/base_document.py +580,Value too big,মান অত্যন্ত বড় DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,চালান স্ক্রিপ্ট টেস্ট DocType: Contact,Department,বিভাগ @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,লগ DocType: Custom DocPerm,This role update User Permissions for a user,একটি ব্যবহারকারীর জন্য এই ভূমিকা আপডেট ব্যবহারকারীর অনুমতি apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},পুনঃনামকরণ {0} DocType: Workflow State,zoom-out,ছোট করা -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,এটি খোলা যাবে না {0} তার উদাহরণস্বরূপ খোলা থাকলে +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,এটি খোলা যাবে না {0} তার উদাহরণস্বরূপ খোলা থাকলে apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ছক {0} খালি রাখা যাবে না apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,লেজার দিয়ে apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,চিত্র DocType: Communication,Reference Owner,রেফারেন্স মালিক DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ক্ষুদ্রতম প্রচারক ভগ্নাংশ ইউনিট (মুদ্রা). এটা 0.01 হিসাবে প্রবেশ করা উচিত এবং ইউএসডি জন্য যেমন 1 শতাংশ DocType: Social Login Keys,GitHub,গিটহাব -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, সারি {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, সারি {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,একটি FULLNAME দিন দয়া করে। apps/frappe/frappe/model/document.py +904,Beginning with,শুরু apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ডেটা আমদানি টেমপ্লেট apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,মাতা DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","সক্রিয় করা হলে, পাসওয়ার্ড ক্ষমতা নূন্যতম পাসওয়ার্ড স্কোরের মান উপর ভিত্তি করে প্রয়োগ করা হবে। 2 এর একটি মান মাঝারি শক্তিশালী হচ্ছে এবং 4 খুব শক্তিশালী হচ্ছে।" DocType: About Us Settings,"""Team Members"" or ""Management""","টিম সদস্য" বা "ম্যানেজমেন্ট" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',মাঠের 'চেক' টাইপ-এর জন্য ডিফল্ট হয় '0' বা '1' হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',মাঠের 'চেক' টাইপ-এর জন্য ডিফল্ট হয় '0' বা '1' হতে হবে apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,গতকাল DocType: Contact,Designation,উপাধি DocType: Test Runner,Test Runner,টেস্ট রানার @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,প্রকাশিত ক্ষেত্ DocType: Email Group,Email Group,ই-মেইল গ্রুপ DocType: Note,Seen By,দ্বারা দেখা apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,একাধিক যোগ করুন -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,এমন না +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,এমন না apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ক্ষেত্রের জন্য প্রদর্শনের লেবেল সেট apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ভুল মান: {0} হতে হবে {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","পরিবর্তন ক্ষেত্রের বৈশিষ্ট্য (আড়াল, কেবলমাত্র অনুমতি ইত্যাদি)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,আমা apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,অ্যাডমিনিস্ট্রেটর লগ ইন DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ইত্যাদি "সেলস কোয়েরি, সাপোর্ট ক্যোয়ারী" মত যোগাযোগ অপশন, একটি নতুন লাইন প্রতিটি বা কমা দ্বারা পৃথকীকৃত." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ডাউনলোড -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,সন্নিবেশ +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,সন্নিবেশ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},নির্বাচন {0} DocType: Print Settings,Classic,সর্বোত্তম DocType: Desktop Icon,Color,রঙ @@ -121,7 +121,7 @@ DocType: Translation,Translation,অনুবাদ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ইনস্টল apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,জনাব DocType: Custom Script,Client,মক্কেল -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,আপনি এটা লোড হওয়ার পরে এই ফর্ম পরিবর্তন করা হয়েছে +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,আপনি এটা লোড হওয়ার পরে এই ফর্ম পরিবর্তন করা হয়েছে DocType: User Permission for Page and Report,User Permission for Page and Report,পেজ এবং প্রতিবেদনের জন্য ব্যবহারকারীর অনুমোদন DocType: Address,Himachal Pradesh,হিমাচল প্রদেশ DocType: System Settings,"If not set, the currency precision will depend on number format","যদি সেট না করা, মুদ্রা স্পষ্টতা নম্বর বিন্যাস উপর নির্ভর করবে" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,কারণ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ব্যবহারকারী উল্লেখ করুন DocType: Email Unsubscribe,Email Unsubscribe,ইমেইল আনসাবস্ক্রাইব DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ভাল ফলাফলের জন্য একটি স্বচ্ছ পটভূমি সঙ্গে প্রায় প্রস্থ 150px এর একটি চিত্র নির্বাচন করুন. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,সিস্টেম ম্যানেজার হয়ে যাবে প্রথম ব্যবহারকারী (আপনি পরে তা পরিবর্তন করতে পারবেন). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,সিস্টেম ম্যানেজার হয়ে যাবে প্রথম ব্যবহারকারী (আপনি পরে তা পরিবর্তন করতে পারবেন). ,App Installer,অ্যাপ্লিকেশন ইনস্টলার DocType: Workflow State,circle-arrow-up,বৃত্ত-তীর-আপ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,আপলোড হচ্ছে ... DocType: Email Domain,Email Domain,ইমেল ডোমেন DocType: Workflow State,italic,বাঁকা ছাঁদে গঠিত apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,সকলের জন্যে -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: তৈরি ছাড়া আমদানি সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: তৈরি ছাড়া আমদানি সেট করা যায় না apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ঘটনা এবং অন্যান্য ক্যালেন্ডার. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,সমস্ত ক্ষেত্র মন্তব্য জমা দিতে প্রয়োজন। apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,কলাম সাজাতে ড্র্যাগ @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,স্ট্যান্ডার apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,বাড়ি ও সংযুক্তি ফোল্ডার মুছে ফেলা যায় না apps/frappe/frappe/config/desk.py +19,Files,নথি পত্র apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,অনুমতি তারা নির্ধারিত হয় কি ভূমিকা উপর ভিত্তি করে ব্যবহারকারী উপর প্রয়োগ করা হয়. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,আপনি এই নথির সাথে সম্পর্কিত ইমেল পাঠাতে অনুমতি দেওয়া হয় না -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,দয়া করে {0} সাজাতে / গ্রুপ থেকে অন্তত 1 টি কলাম নির্বাচন +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,আপনি এই নথির সাথে সম্পর্কিত ইমেল পাঠাতে অনুমতি দেওয়া হয় না +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,দয়া করে {0} সাজাতে / গ্রুপ থেকে অন্তত 1 টি কলাম নির্বাচন DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,এই চেক আপনি আপনার পেমেন্ট স্যান্ডবক্স API ব্যবহার করে পরীক্ষা করা হয় যদি apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,আপনি একটি প্রমিত ওয়েবসাইট বিষয়বস্তু মুছে দিতে অনুমতি দেওয়া হয় না DocType: Feedback Trigger,Example,উদাহরণ @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,মোট গ্রাহক apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","একটি ভূমিকা শ্রেনী 0 প্রবেশাধিকার নেই, তাহলে উচ্চ মাত্রার অর্থহীন." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,সংরক্ষণ করুন DocType: Communication,Seen,দেখা -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,অধিক বিবরণের দেখাও +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,অধিক বিবরণের দেখাও DocType: System Settings,Run scheduled jobs only if checked,চেক যদি শুধুমাত্র নির্ধারিত কাজ চালান apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,শুধুমাত্র যদি অধ্যায় শিরোনামের সক্রিয় করা হয় প্রদর্শন করা হবে apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,সংরক্ষাণাগার @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,চার্ট apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,বৈধ ইমেইল এবং নামের প্রয়োজন DocType: DocType,Hide Heading,লুকান শীর্ষক DocType: Address,Current,বর্তমান -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,সম্পর্কিত নথি apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes গ্রুপ DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,অপসারণ-বৃত্ত @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,ফিল্টার apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} মত বিশেষ অক্ষর থাকতে পারে না {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,এক সময়ে অনেক মান আপডেট করুন. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ত্রুটি: আপনি এটা খোলা আছে নথি পরিবর্ধিত হয়েছে -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনো ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায় নি। সেটআপ> মুদ্রণ এবং ব্র্যান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} লগ আউট: {1} DocType: Address,West Bengal,পশ্চিমবঙ্গ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: বরাদ্দ Submittable না হলে জমা সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: বরাদ্দ Submittable না হলে জমা সেট করা যায় না DocType: Social Login Keys,Facebook,ফেসবুক apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",দ্বারা ফিল্টার "{0}" DocType: Salutation,Administrator,প্রশাসক @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,ব্লগ শিরোনাম apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,স্ট্যান্ডার্ড ভূমিকা অক্ষম করা যাবে না DocType: Address,Mizoram,মিজোরাম DocType: Newsletter,Newsletter,নিউজলেটার -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,দ্বারা অনুক্রমে উপ-ক্যোয়ারী ব্যবহার করা যাবে না +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,দ্বারা অনুক্রমে উপ-ক্যোয়ারী ব্যবহার করা যাবে না DocType: Web Form,Button Help,বোতাম সাহায্য DocType: Kanban Board Column,purple,রক্তবর্ণ DocType: About Us Settings,Team Members,দলের সদস্যরা @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","আপনার সাবস্ক্রিপশন {0} এ উত্তীর্ণ হয়েছে. পুনর্জীবন দান করা, {1}." DocType: Workflow State,plus-sign,প্লাস-সাইন apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,সেটআপ ইতিমধ্যে সম্পূর্ণ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই +apps/frappe/frappe/__init__.py +889,App {0} is not installed,অ্যাপ {0} ইনস্টল করা নেই DocType: Workflow State,Refresh,সতেজ করা DocType: Event,Public,প্রকাশ্য apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,কিছুই দেখাতে @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,পছন্দ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ইমেইল সাপোর্ট DocType: DocField,Print Hide If No Value,প্রিন্ট লুকালেও কোন মূল্য DocType: Event,yellow,হলুদ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,প্রকাশিত হয় ফিল্ড আবশ্যক একটি বৈধ FIELDNAME হতে +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,প্রকাশিত হয় ফিল্ড আবশ্যক একটি বৈধ FIELDNAME হতে apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,আপলোড সংযুক্তি DocType: Block Module,Block Module,ব্লক মডিউল apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,রপ্তানি টেমপ্লেট @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,গ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},একটি নতুন অ্যাকাউন্ট তৈরি এ আপনার জন্য তৈরি করা হয়েছে {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,নির্দেশাবলী ইমেল করা -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),প্রবেশ করুন প্রাপক (গুলি) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),প্রবেশ করুন প্রাপক (গুলি) DocType: Print Format,Verdana,ভার্ডানা DocType: Email Flag Queue,Email Flag Queue,ইমেল পতাকা সারি apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,খোলা চিহ্নিত করা যাবে না {0}. অন্য কিছু করার চেষ্টা করুন. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,বার্তা আইডি DocType: Property Setter,Field Name,ক্ষেত্র নাম apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,গুগল GSuite কনফিগার করা নেই। apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,বা -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,মডিউল নাম ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,চালিয়ে +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,মডিউল নাম ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,চালিয়ে DocType: Custom Field,Fieldname,ক্ষেত্র নাম DocType: Workflow State,certificate,শংসাপত্র DocType: User,Tile,টালি @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,সব সংস্করণ প্রদর্শন করা হবে DocType: Workflow State,Print,ছাপা DocType: User,Restrict IP,আইপি সীমাবদ্ধ +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ড্যাশবোর্ড apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,এই সময়ে ইমেইল পাঠাতে অক্ষম apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,অনুসন্ধান বা কমান্ডটি টাইপ করুন DocType: Communication,Timeline Name,সময়রেখা নাম @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,সেলস ম্যানেজার apps/frappe/frappe/www/complete_signup.html +13,One Last Step,গত এক ধাপ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ডকুমেন্ট টাইপ (DOCTYPE) যদি এই ক্ষেত্রের সাথে যুক্ত হতে চান নাম. যেমন গ্রাহক DocType: User,Roles Assigned,ভূমিকা নির্ধারিত -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,অনুসন্ধান সহায়তা +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,অনুসন্ধান সহায়তা DocType: Top Bar Item,Parent Label,মূল ট্যাগ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","আপনার প্রশ্নের সাথে গৃহীত হয়েছে. আমরা খুব শীঘ্রই ফিরে উত্তর দিতে হবে. আপনি কোন অতিরিক্ত তথ্য আছে, এই মেইল উত্তর দয়া করে." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,অনুমতি স্বয়ংক্রিয়ভাবে স্ট্যান্ডার্ড প্রতিবেদন এবং অনুসন্ধান থেকে অনুবাদ করা হয়. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,সম্পাদনা শীর্ষক DocType: File,File URL,ফাইল URL DocType: Version,Table HTML,ছক এইচটিএমএল +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

কোন ফলাফল 'পাওয়া যায়নি

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,গ্রাহক apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,আজকের আপকামিং ইভেন্টস DocType: Email Alert Recipient,Email By Document Field,ডকুমেন্ট ক্ষেত্র দ্বারা ইমেইল @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,পরিমাণ ক্ষেত্র apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ব্যবহারকারী শেয়ার জন্য বাধ্যতামূলক DocType: DocField,Hidden,গোপন DocType: Web Form,Allow Incomplete Forms,অসম্পূর্ণ ফরম মঞ্জুর করুন -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} প্রথমে সেট করা আবশ্যক +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} প্রথমে সেট করা আবশ্যক apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","একটি কয়েকটি শব্দ ব্যবহার করুন, সাধারণ বাক্যাংশ এড়ানো." DocType: Workflow State,plane,সমতল -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,ওহো. আপনার পেমেন্ট ব্যর্থ হয়েছে. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","আপনি নতুন রেকর্ড আপলোড করা হয় তাহলে যদি থাকে, "সিরিজ নামকরণ", বাধ্যতামূলক হয়ে যায়." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,আজকের সতর্ক বার্তা গ্রহণ করুন +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,আজকের সতর্ক বার্তা গ্রহণ করুন apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE শুধুমাত্র অ্যাডমিনিস্ট্রেটর দ্বারা পালটে যাবে apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},পরিবর্তিত মান {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,যাচাইয়ের জন্য আপনার ইমেইল চেক করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ফোল্ড ফর্মের শেষে হতে পারে না DocType: Communication,Bounced,ফেরত DocType: Deleted Document,Deleted Name,মোছা নাম apps/frappe/frappe/config/setup.py +14,System and Website Users,সিস্টেম এবং ওয়েবসাইট ব্যবহারকারীদের @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ডকুমেন্ DocType: GSuite Templates,Destination ID,গন্তব্যস্থান আইডি DocType: Desktop Icon,List,তালিকা DocType: Communication,Link Name,লিংক নাম -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,মাঠ {0} সারিতে {1} আড়াল করা যাবে না এবং ডিফল্ট ছাড়া বাধ্যতামূলক DocType: System Settings,mm/dd/yyyy,মিমি / ডিডি / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,অবৈধ পাসওয়ার্ড: DocType: Print Settings,Send document web view link in email,পাঠান ইমেল নথি ওয়েব ভিউতে লিংক apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,নথির জন্য আপনার প্রতিক্রিয়া {0} সফলভাবে সংরক্ষিত হয় apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,পূর্ববর্তী -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,লিখেছেন: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,লিখেছেন: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} সারি {1} এর জন্য DocType: Currency,"Sub-currency. For e.g. ""Cent""",উপ-কারেন্সি. যেমন "সেন্ট" জন্য apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,আপলোড করা ফাইল নির্বাচন করুন @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,লিংক apps/frappe/frappe/utils/file_manager.py +96,No file attached,সংযুক্ত কোন ফাইল DocType: Version,Version,সংস্করণ DocType: User,Fill Screen,পর্দা ভরাট -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","কারণে অনুপস্থিত তথ্য, এই বৃক্ষ প্রতিবেদন প্রদর্শন করতে পারেনি. সম্ভবত, এটা কারণে অনুমতি ফিল্টার আউট হচ্ছে." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,দয়া করে সেটআপ> ইমেইল> ইমেল অ্যাকাউন্ট থেকে সেটআপ ডিফল্ট ইমেইল অ্যাকাউন্ট +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","কারণে অনুপস্থিত তথ্য, এই বৃক্ষ প্রতিবেদন প্রদর্শন করতে পারেনি. সম্ভবত, এটা কারণে অনুমতি ফিল্টার আউট হচ্ছে." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ফাইল নির্বাচন apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,আপলোডের মাধ্যমে সম্পাদনা -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","নথি প্রকার ..., যেমন গ্রাহক" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","নথি প্রকার ..., যেমন গ্রাহক" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,কন্ডিশন '{0}' অবৈধ DocType: Workflow State,barcode,বারকোড apps/frappe/frappe/config/setup.py +232,Add your own translations,আপনার নিজস্ব অনুবাদ যোগ করুন @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,বুধবার apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","পৃথক্ ভূমিকা ভিত্তিক অনুমতি বিধি থেকে, আপনি DocTypes উপর ভিত্তি করে ব্যবহারকারীর অনুমতি আবেদন করতে পারেন." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","এই অনুমতি অনুমতি রেকর্ড লিঙ্ক যেখানে সব লেনদেনের জন্য প্রযোজ্য হবে. কোম্পানীর সি ব্যবহারকারী এক্স ব্যবহারকারীর অনুমতি যোগ করা হয় উদাহরণস্বরূপ, যদি, ব্যবহারকারীর এক্স শুধুমাত্র একটি লিঙ্ক মান হিসাবে কোম্পানির সি আছে লেনদেনের দেখতে সক্ষম হবে." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,চিত্র ক্ষেত্রের একটি বৈধ FIELDNAME হবে DocType: OAuth Client,Token,টোকেন DocType: Property Setter,ID (name) of the entity whose property is to be set,যার সম্পত্তি সত্তা আইডি (নাম) নির্ধারণ করা হয় apps/frappe/frappe/limits.py +82,"To renew, {0}.",নবীকরণের জন্য {0}. @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,সাইডবার চলছে apps/frappe/frappe/installer.py +125,App {0} already installed,অ্যাপ {0} ইতিমধ্যে ইনস্টল DocType: Workflow State,exclamation-sign,বিস্ময়বোধক চিহ্ন apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,দেখান অনুমতিসমূহ -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,সময়রেখা ক্ষেত্রের একটি লিংক বা ডাইনামিক লিংক হতে হবে apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,তারিখের পরিসীমা apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},পাতা {0} এর {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ওয apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","এনক্রিপশন কী অবৈধ, অনুগ্রহ করে site_config.json পরীক্ষা" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,থেকে DocType: Kanban Board Column,darkgrey,গাঢ় ধূসর -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},সফল: {0} থেকে {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},সফল: {0} থেকে {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ডেমো ব্যবহারকারী বিশদ বিবরণ পরিবর্তন করা যাবে না। https://erpnext.com একটি নতুন অ্যাকাউন্টের জন্য সাইনআপ করুন apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,সমস্ত পরিবর্তন করতে পারবেন এই ডুপ্লিকেট অনুগ্রহ apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,পিডিএফ প্রজন্মের কারণ ভাঙা ইমেজ লিঙ্ক ব্যর্থ @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,বন্ধ হইতে সক্ষম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,সংরক্ষিত apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,আপনি সাহায্য প্রয়োজন কি? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,নির্বাচন করার জন্য বিকল্প. একটি নতুন লাইন প্রতিটি বিকল্প. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,স্থায়ীভাবে বাতিল {0}? DocType: Workflow State,music,সঙ্গীত DocType: Web Page,Settings,সেটিংস apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE উল্লেখ করুন DocType: Print Format,Style Settings,স্টাইল সেটিংস -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,বাছাই ক্ষেত্র {0} একটি বৈধ FIELDNAME হবে apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,অধিক DocType: Contact,Sales Manager,বিক্রয় ব্যবস্থাপক apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,পুনঃনামকরণ DocType: Print Format,Format Data,বিন্যাসে তথ্য -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,মত +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,মত DocType: Customize Form Field,Customize Form Field,ফরম ক্ষেত্র কাস্টমাইজ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,অনুমতি DocType: OAuth Client,Grant Type,গ্রান্ট প্রকার apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,কোনো ব্যবহারকারীর দ্বারা পাঠযোগ্য যা দস্তাবেজ চেক apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,তালিকা অ্যাপ্লিকেশন অনুমতি দেওয়া হয় না -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","ইমেল ডোমেন এই অ্যাকাউন্টের জন্য কনফিগার করা না থাকে, এক তৈরি করতে চান?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ওয়াইল্ডকার্ড হিসেবে% ব্যবহার +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ইমেল ডোমেন এই অ্যাকাউন্টের জন্য কনফিগার করা না থাকে, এক তৈরি করতে চান?" DocType: User,Reset Password Key,পাসওয়ার্ড রিসেট করুন কী DocType: Email Account,Enable Auto Reply,অটো উত্তর সক্রিয় apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,দেখা যায় না @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,শুধু একবার সেট DocType: Email Queue Recipient,Email Queue Recipient,ইমেল সারি প্রাপক DocType: Address,Nagaland,নাগাল্যান্ডের apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ইউজারনেম {0} আগে থেকেই আছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} আমদানিযোগ্য নয় হিসাবে আমদানি সেট করা যায় না apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},আপনার ঠিকানা টেমপ্লেট মধ্যে একটি ত্রুটি আছে {0} DocType: Footer Item,"target = ""_blank""",টার্গেট = "_blank" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,পূর্ণ নাম থেকে apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},আপনি রিপোর্ট করতে এক্সেস আছে না: {0} DocType: User,Send Welcome Email,স্বাগতম ইমেইল পাঠান apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ডাউনলোড হিসাবে একই বিন্যাসে সব ব্যবহারকারীর অনুমতি ধারণকারী CSV ফাইল আপলোড করুন. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ফিল্টার অপসারণ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ফিল্টার অপসারণ DocType: Address,Daman and Diu,দমন ও দিউ DocType: Address,Personal,ব্যক্তিগত apps/frappe/frappe/config/setup.py +113,Bulk Rename,বাল্ক পুনঃনামকরণ @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","স্ট্যান্ডার্ড DOCTYPE ডিফল্ট মুদ্রণ বিন্যাসে থাকতে পারে না, কাস্টমাইজ ফর্মটি ব্যবহার" DocType: Report,Query,প্রশ্ন DocType: DocType,Sort Order,সজ্জাক্রম -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},সারি {1} এর টাইপ {0} জন্য 'তালিকা দেখুন' অনুমোদিত নয় DocType: Custom Field,Select the label after which you want to insert new field.,"আপনি নতুন ক্ষেত্র সন্নিবেশ করতে চান, যা পরে ট্যাগ নির্বাচন করুন." ,Document Share Report,ডকুমেন্ট শেয়ার প্রতিবেদন DocType: User,Last Login,সর্বশেষ লগইন -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME সারিতে প্রয়োজন বোধ করা হয় {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,স্তম্ভ DocType: Custom Field,Adds a custom field to a DocType,একটি DOCTYPE একটি কাস্টম ক্ষেত্র যোগ DocType: File,Is Home Folder,হোম ফোল্ডার @@ -583,7 +583,7 @@ DocType: File,Folder,ফোল্ডার DocType: DocField,Index,সূচক DocType: Email Group,Newsletter Manager,নিউজলেটার ম্যানেজার apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,বিকল্প 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,সকল পোস্ট +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} এ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,অনুরোধ সময় ত্রুটির লগ ইন করুন. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} সফলভাবে ইমেইল গ্রুপে যোগ করা হয়েছে. DocType: Address,Uttar Pradesh,উত্তর প্রদেশ @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,ইনডিকেটর DocType: DocShare,Everyone,সবাই DocType: Workflow State,backward,অনুন্নত -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: একই ভূমিকা, শ্রেনী এবং ক্রেডিট সঙ্গে অনুমতি দেওয়া শুধু একটা রুল {1}" DocType: Email Queue,Add Unsubscribe Link,যোগ আনসাবস্ক্রাইব লিঙ্ক apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,এখনো কোন মন্তব্য নেই. একটি নতুন আলোচনা শুরু করুন. DocType: Workflow State,share,ভাগ @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,অন apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,দেখুন সদস্যবৃন্দ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,শ্রীমতি DocType: Website Theme,Background Color,পিছনের রঙ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ইমেইল পাঠানোর সময় কিছু সমস্যা হয়েছে. অনুগ্রহ করে আবার চেষ্টা করুন. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ইমেইল পাঠানোর সময় কিছু সমস্যা হয়েছে. অনুগ্রহ করে আবার চেষ্টা করুন. DocType: Portal Settings,Portal Settings,পোর্টাল সেটিংস DocType: Web Page,0 is highest,0 সর্বোচ্চ apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,আপনি কি নিশ্চিত যে আপনি {0} এই যোগাযোগের পুনঃলিঙ্ক ইচ্ছুক? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,আমাদের সেটিংস যোগাযোগ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,অনুসন্ধান করা হচ্ছে ... DocType: Workflow State,text-width,টেক্সট-প্রস্থ -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,এই রেকর্ডের জন্য এটাচমেন্টের সর্বাধিক সীমায় পৌঁছেছে. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,এই রেকর্ডের জন্য এটাচমেন্টের সর্বাধিক সীমায় পৌঁছেছে. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,নিম্নলিখিত বাধ্যতামূলক ক্ষেত্র পূরণ করা আবশ্যক:
DocType: Email Alert,View Properties (via Customize Form),(কাস্টমাইজ ফরম মাধ্যমে) বৈশিষ্ট্য দেখুন DocType: Note Seen By,Note Seen By,দ্বারা দেখা নোট @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,রাজস্থান apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,প্রতিবেদন নির্মাতা রিপোর্ট প্রতিবেদন নির্মাতা দ্বারা সরাসরি পরিচালিত হয়. কিছুই করার নাই. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,আপনার ইমেল ঠিকানা যাচাই করুন apps/frappe/frappe/model/document.py +903,none of,কেউ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,আমাকে একটি কপি পাঠান +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,আমাকে একটি কপি পাঠান apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ব্যবহারকারীর অনুমতি আপলোড DocType: Dropbox Settings,App Secret Key,অ্যাপ সিক্রেট কী apps/frappe/frappe/config/website.py +7,Web Site,ওয়েব সাইট apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,চেক আইটেম ডেস্কটপে প্রদর্শিত হবে -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} একক ধরনের জন্য নির্ধারণ করা যাবে না apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban বোর্ড {0} অস্তিত্ব নেই. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} বর্তমানে এই ডকুমেন্ট দেখছেন DocType: ToDo,Assigned By Full Name,পূর্ণ নাম দ্বারা নিয়োগ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} আপডেট করা হয়েছে -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,গালাগাল প্রতিবেদন একা ধরনের জন্য নির্ধারণ করা যাবে না apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} দিন আগে DocType: Email Account,Awaiting Password,প্রতীক্ষমাণ পাসওয়ার্ড DocType: Address,Address Line 1,ঠিকানা লাইন 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","দেখাবার জন্য যুক্তরাষ্ট্র (যেমন খসড়া অনুমোদিত, বাতিল হয়েছে)." DocType: Print Settings,Allow Print for Draft,খসড়া প্রিন্ট মঞ্জুর করুন apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,সেট পরিমাণ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,নিশ্চিত করার জন্য এই দস্তাবেজ জমা দিন DocType: Contact,Unsubscribed,সদস্যতামুক্তি apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,পৃষ্ঠা এবং প্রতিবেদনের জন্য কাস্টম ভূমিকা সেট apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,নির্ধারণ: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ডেটা আমদানি টুল DocType: Address,Dadra and Nagar Haveli,দাদরা ও নগর হাভেলি apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,আপলোড ফাইল কয়েক সেকেন্ডের জন্য দয়া করে অপেক্ষা করুন. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,তোমার ছবি সংযুক্ত +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,তোমার ছবি সংযুক্ত apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,সারি মূল্যবোধ পরিবর্তিত DocType: Workflow State,Stop,থামুন DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,আপনি খুলতে চান পাতা লিংক. আপনি এটি একটি গ্রুপ ঊর্ধ্বতন করতে চান তাহলে ফাঁকা ছেড়ে দিন. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,বাম লেবেলসম DocType: Help Article,Expert,বিশেষজ্ঞ DocType: Workflow State,circle-arrow-right,বৃত্ত-তীর-ডান DocType: LDAP Settings,LDAP Server Url,LDAP সার্ভারের ইউআরএল -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,তার {0} খোলা থাকলে উদাহরণস্বরূপ খোলা যাচ্ছে না +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,তার {0} খোলা থাকলে উদাহরণস্বরূপ খোলা যাচ্ছে না apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ইনস্টল জন্য পংক্তিবদ্ধ DocType: Custom DocPerm,Custom DocPerm,কাস্টম DocPerm DocType: Newsletter,Send Unsubscribe Link,পাঠান আনসাবস্ক্রাইব লিঙ্ক @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,অ্যাপ {0} সরানো DocType: Custom DocPerm,Apply User Permissions,ব্যবহারকারীর অনুমতি প্রয়োগ DocType: User,Modules HTML,মডিউল এইচটিএমএল -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,সেটআপ> ব্যবহারকারীর অনুমতি ম্যানেজার apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,অনুপস্থিত মানের প্রয়োজনীয় DocType: DocType,Other Settings,অন্যান্য সেটিংস্ DocType: Social Login Keys,Frappe,ফ্র্যাপে @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth এর বিয়ার apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,নির্বাচিত কোন দলীল apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ডাঃ DocType: Event,Event,ঘটনা -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} উপর, {1} লিখেছেন:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"স্ট্যান্ডার্ড ক্ষেত্রের মুছে ফেলা যায় না. আপনি চান, আপনি তা লুকিয়ে রাখতে পারেন" DocType: Top Bar Item,For top bar,শীর্ষ বারের জন্য apps/frappe/frappe/utils/bot.py +148,Could not identify {0},চিহ্নিত করা যায়নি {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,ডেস্ক অ্যাক্সেস DocType: Workflow State,minus,ঋণচিহ্ন apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,সার্ভার সমস্যা: আপনার সার্ভার লগ পরীক্ষা বা কারিগরি সহায়তা সাথে যোগাযোগ করুন. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,স্বাগতম ইমেইল পাঠানো -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,প্রথম ব্যবহারের জন্য সিস্টেম প্রস্তুত করা যাক. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,প্রথম ব্যবহারের জন্য সিস্টেম প্রস্তুত করা যাক. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,আলোচিত apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ইতিমধ্যে নিবন্ধভুক্ত DocType: System Settings,Float Precision,ফ্লোট যথার্থ @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,প্রিন্ট করার অনুমত apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,কোনো অ্যাপ্লিকেশন ইনস্টল করা apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,হিসাবে বাধ্যতামূলক ক্ষেত্র চিহ্ন DocType: Communication,Clicked,ক্লিক -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},কোন অনুমতি '{0}' {1} DocType: User,Google User ID,গুগল ব্যবহারকারী আইডি apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,পাঠাতে তফসিলি DocType: DocType,Track Seen,ট্র্যাক Seen @@ -822,7 +821,7 @@ DocType: Address,Kerala,কেরল DocType: File,Lft,এলএফটি DocType: User,Simultaneous Sessions,যুগপত দায়রা DocType: OAuth Client,Client Credentials,ক্লায়েন্ট পরিচয়পত্র -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,একটি মডিউল বা টুল খুলুন +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,একটি মডিউল বা টুল খুলুন DocType: Communication,Delivery Status,ডেলিভারি স্থিতি DocType: Module Def,App Name,অ্যাপ নাম apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,সর্বোচ্চ ফাইল সাইজ দেয়া হয় {0} মেগাবাইট @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,রেফারেন্স DocType: Email Queue,Unsubscribe Method,আন-সাবস্ক্রাইব পদ্ধতি DocType: GSuite Templates,Related DocType,সংশ্লিষ্ট DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,কন্টেন্ট যোগ করতে সম্পাদন -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ভাষা নির্বাচন -apps/frappe/frappe/__init__.py +510,No permission for {0},জন্য কোন অনুমতি {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ভাষা নির্বাচন +apps/frappe/frappe/__init__.py +509,No permission for {0},জন্য কোন অনুমতি {0} DocType: DocType,Advanced,অগ্রসর apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API কী মনে হয় বা API সিক্রেট ভুল হয় !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},রেফারেন্স: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,ফরম প্রকার লিখ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,কোন রেকর্ড বাঁধা. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ফিল্ড সরান DocType: User,Send Password Update Notification,পাসওয়ার্ড আপডেট বিজ্ঞপ্তি পাঠান -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE সক্ষম হবেন. সতর্ক হোন!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE সক্ষম হবেন. সতর্ক হোন!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","মুদ্রণ, ইমেইল জন্য কাস্টমাইজড ফর্ম্যাট" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,নতুন সংস্করণে আপডেট করা হয়েছে DocType: Custom Field,Depends On,নির্ভর করে @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,অন্যতম apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,দয়া করে কপি করতে ফাইল নির্বাচন apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,এক মুহূর্ত চেক করা হচ্ছে apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,দেখান ট্যাগ +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","প্রয়োগ যথাযথ ব্যবহারকারীর অনুমোদন পরীক্ষা করা হয় এবং ব্যবহারকারী অনুমতি একটি ব্যবহারকারীর জন্য একটি DOCTYPE জন্য সংজ্ঞায়িত হয়, তাহলে সব কাগজপত্র যেখানে লিংক মান ফাঁকা, যে ব্যবহারকারী দেখানো হবে না" DocType: Address,Billing,বিলিং DocType: Email Queue,Not Sent,পাঠাই নি DocType: Web Form,Actions,পদক্ষেপ @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,পরিষ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,প্রতিদিন ঘটনা একই দিনে শেষ হবে. DocType: Communication,User Tags,ব্যবহারকারী ট্যাগ্স apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,আনা হচ্ছে চিত্র .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,সেটআপ> ব্যবহারকারী DocType: Workflow State,download-alt,ডাউনলোড-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},অ্যাপ ডাউনলোড {0} DocType: Communication,Feedback Request,প্রতিক্রিয়া অনুরোধ @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ব্যাক-আপ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,পরিচিতি যোগ করুন DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ঐচ্ছিক: সর্বদা এই আইডি পাঠাতে. একটি নতুন সারি প্রতিটি ইমেইল -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,আড়াল বিস্তারিত +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,আড়াল বিস্তারিত DocType: Workflow State,Tasks,কার্য DocType: Event,Tuesday,মঙ্গলবার DocType: Blog Settings,Blog Settings,ব্লগ সেটিংস @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,এই সংরক্ষিত ও কলাম এবং ফলাফলের আসতে যেখানে একই ফোল্ডারে একটি পাইথন ফাইলটি লিখতে. DocType: DocType,Sort Field,সাজান মাঠ DocType: Razorpay Settings,Razorpay Settings,Razorpay সেটিংস -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,সম্পাদনা ফিল্টার -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","যেমন. গালাগাল প্রতিবেদন Doctype জন্য চেক করা হয় কিন্তু কোন ব্যবহারকারীর অনুমতি একটি ব্যবহারকারীর জন্য রিপোর্ট সংজ্ঞায়িত হয় ব্যবহারকারীর অনুমতি প্রয়োগ, তাহলে সব রিপোর্ট যে ব্যবহারকারী যাও দেখানো হয়" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,সম্পাদনা ফিল্টার +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,মাঠ {0} টাইপ {1} বাধ্যতামূলক হতে পারে না apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,আরো যোগ করো apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,চার্ট লুকান DocType: System Settings,Session Expiry Mobile,সেশন মেয়াদ উত্তীর্ন মোবাইল @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,বিলম্বিত apps/frappe/frappe/config/setup.py +128,List of backups available for download,ডাউনলোডের জন্য উপলব্ধ ব্যাকআপ তালিকা apps/frappe/frappe/www/login.html +89,Sign up,নিবন্ধন করুন DocType: Test Runner,Output,আউটপুট +DocType: Email Alert,Set Property After Alert,সতর্কতা পর সম্পদ সেট apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ফরম ক্ষেত্র যুক্ত. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,কিছু দেখে মনে হচ্ছে এই সাইটের পেপ্যাল কনফিগারেশন সাথে ভুল। DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,পাতা DocType: Portal Menu Item,Portal Menu Item,পোর্টাল মেনু আইটেম DocType: User Email,Email ID,ইমেইল আইডি +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","যদি ব্যবহারকারীর অনুমতি প্রয়োগ প্রতিবেদন DOCTYPE জন্য পরীক্ষা করা হয় কিন্তু কোন ব্যবহারকারীর অনুমতি একটি ব্যবহারকারীর জন্য প্রতিবেদন জন্য নির্দিষ্ট করা, তারপর সব রিপোর্ট ব্যবহারকারীকে দেখানো হয়" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,সম্পদের একটি তালিকা যা ক্লায়েন্ট অ্যাপ ব্যবহারকারী এটি করতে সক্ষম হবেন পরে অ্যাক্সেস থাকবে.
যেমন প্রকল্প DocType: Translation,Translated Text,অনুবাদ টেক্সট DocType: Contact Us Settings,Query Options,ক্যোয়ারী অপশন @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,যোগাযোগ DocType: System Settings,Setup Complete,সম্পূর্ণ সেটআপ apps/frappe/frappe/config/setup.py +66,Report of all document shares,সব নথি শেয়ারের প্রতিবেদন apps/frappe/frappe/www/update-password.html +18,New Password,নতুন পাসওয়ার্ড -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ফিল্টার {0} অনুপস্থিত +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ফিল্টার {0} অনুপস্থিত apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,দুঃখিত! আপনি স্বয়ংক্রিয় উত্পন্ন মন্তব্য মুছতে পারবেন না DocType: Website Theme,Style using CSS,সিএসএস ব্যবহার স্টাইল apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,রেফারেন্স DOCTYPE @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,ব্লক মডিউল apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,দৈর্ঘ্য প্রত্যাবর্তন {0} জন্য '{1}' এ '{2}'; দৈর্ঘ্য সেটিং {3} তথ্য এর truncation কারণ হবে হিসাবে. DocType: Print Format,Custom CSS,কাস্টম CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,একটা মন্তব্য যোগ করুন -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},উপেক্ষিত: {0} থেকে {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},উপেক্ষিত: {0} থেকে {1} DocType: Address,Gujarat,গুজরাট apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,স্বয়ংক্রিয় ঘটনা (নির্ধারণকারী) উপর ত্রুটির লগ ইন করুন. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),কোনো বৈধ কমা দ্বারা পৃথকীকৃত মান (CSV ফাইল) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,ডিফল্ট ইনকামিং DocType: Workflow State,repeat,পুনরাবৃত্তি DocType: Website Settings,Banner,নিশান DocType: Role,"If disabled, this role will be removed from all users.","যদি অক্ষম, এই ভূমিকা সব ব্যবহারকারীদের কাছ থেকে সরানো হবে." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,খুজে পেতে সাহায্য নিন +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,খুজে পেতে সাহায্য নিন apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,নিবন্ধিত কিন্তু প্রতিবন্ধী DocType: DocType,Hide Copy,কপি লুকান apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,সব ভূমিকা পরিষ্কার @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,দেশ apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,ঠিকানা DocType: Communication,Shared,শেয়ারকৃত -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ডকুমেন্ট প্রিন্ট সংযুক্ত +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ডকুমেন্ট প্রিন্ট সংযুক্ত DocType: Bulk Update,Field,ক্ষেত্র DocType: Communication,Received,গৃহীত DocType: Social Login Keys,Google Client ID,গুগল ক্লায়েন্ট আইডি @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,ক্যোয়ারী প্রতিবে DocType: User,Set New Password,নতুন পাসওয়ার্ড সেট করুন DocType: User,Github User ID,GitHub ইউজার আইডি apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ডকুমেন্ট টাইপ করুন -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না {1} সঙ্গে সংযুক্ত করা হয় {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না {1} সঙ্গে সংযুক্ত করা হয় {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},অজানা অ্যাপ্লিকেশন {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S এর একটি বৈধ প্রতিবেদন ফর্ম্যাট সঠিক নয়. গালাগাল প্রতিবেদন বিন্যাস \ উচিত% s- নিম্নলিখিত এক DocType: Communication,Chat,চ্যাট -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} সারি একাধিক বার প্রদর্শিত {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} সারি একাধিক বার প্রদর্শিত {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} থেকে {1} থেকে {2} মধ্যে সারি # {3} DocType: Communication,Expired,মেয়াদউত্তীর্ণ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),একটি ক্ষেত্রের জন্য কলামের সংখ্যা একটি গ্রিড মধ্যে (একটি গ্রিড মধ্যে মোট কলাম কম 11 হতে হবে) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,একটি এক apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},অজানা মুদ্রণ বিন্যাস: {0} DocType: Workflow State,arrow-down,তীর-ডাউন apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,পতন -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ব্যবহারকারী মোছার জন্য অনুমোদিত নয় {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ব্যবহারকারী মোছার জন্য অনুমোদিত নয় {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,সর্বশেষ আপডেট করা হয়েছে DocType: Help Article,Likes,পছন্দ DocType: Website Settings,Top Bar,শীর্ষ বার DocType: GSuite Settings,Script Code,স্ক্রিপ্ট কোড apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ব্যবহারকারী ইমেইল তৈরি করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,কোনো অনুমতি নির্দিষ্ট +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,কোনো অনুমতি নির্দিষ্ট apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,গ্লোবাল সেটিংস: ব্যবহারকারীরা শুধুমাত্র চেক আইকন নির্বাচন করতে সক্ষম হবে apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} পাওয়া যায়নি DocType: Custom Role,Custom Role,কাস্টম ভূমিকা apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,হোম / Test ফোল্ডার 2 DocType: System Settings,Ignore User Permissions If Missing,হারিয়ে যাওয়া যদি ব্যবহারকারীর অনুমতি উপেক্ষা -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,আপলোড করার আগে নথি সংরক্ষণ করুন. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,আপলোড করার আগে নথি সংরক্ষণ করুন. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,আপনার পাসওয়ার্ড লিখুন DocType: Dropbox Settings,Dropbox Access Secret,ড্রপবক্স অ্যাক্সেস গোপন apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,আরেকটি মন্তব্য যোগ করুন apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE সম্পাদনা apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,নিউজলেটার থেকে সদস্যতা মুক্ত -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,একটি অনুচ্ছেদ বিরতির আগে আসতে হবে ভাঁজ +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,একটি অনুচ্ছেদ বিরতির আগে আসতে হবে ভাঁজ apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,সর্বশেষ রুপান্তরিত DocType: Workflow State,hand-down,হাত নিচে করো DocType: Address,GST State,GST রাজ্য -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ছাড়া জমা বাতিল সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ছাড়া জমা বাতিল সেট করা যায় না DocType: Website Theme,Theme,বিষয়বস্তু apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,ত্রুটি রয়েছে. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,পুনর্নির্দেশ কোনো URI প্রমাণীকরণ কোড আবদ্ধ @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,আ DocType: Website Theme,Text Color,টেক্সট রঙ DocType: Desktop Icon,Force Show,ফোর্স দেখান apps/frappe/frappe/auth.py +78,Invalid Request,অনুরোধ অগ্রহণযোগ্য -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,এই ফর্ম কোন ইনপুট নেই +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,এই ফর্ম কোন ইনপুট নেই apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},সেশন মেয়াদ উত্তীর্ন বিন্যাসে নির্মাণ করা আবশ্যক {0} DocType: Website Sidebar Item,Group,গ্রুপ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",নির্বাচন টার্গেট = "_blank" একটি নতুন পাতা খুলুন. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ত্রুটি এনকোডিং উপেক্ষা করুন. DocType: Workflow State,wrench,বিকৃত করা apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,সেট না -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,সেটআপ> ব্যবহারকারী DocType: Authentication Log,Date,তারিখ DocType: Website Settings,Disable Signup,সাইনআপ অক্ষম apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"আপনার সিস্টেম সেটআপ করা হচ্ছে, যখন শক্ত হয়ে বসুন. এটি কয়েক মিনিট সময় নিতে পারে." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,মন্তব্য যোগ করুন DocType: DocField,Mandatory,কার্যভার apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,মডিউল রপ্তানি করতে -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} থে মৌলিক অনুমতি সেট +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} থে মৌলিক অনুমতি সেট apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,আপনার সাবস্ক্রিপশন মেয়াদ শেষ হবে {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},আপনার ব্যাকআপ জন্য ডাউনলোড লিংক ওপেন ইমেইল ঠিকানা ইমেল করা হবে: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","বাতিল, জমা অর্থ সংশোধন" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,ক্যোয়ারী-প্রতি apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},নির্ধারিত {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ফিল্টারগুলি সংরক্ষিত DocType: DocField,Percent,শতাংশ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ফিল্টার সেট করুন +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ফিল্টার সেট করুন apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,সংযুক্ত DocType: Workflow State,book,বই DocType: Website Settings,Landing Page,অবতরণ পাতা -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,কাস্টম স্ক্রিপ্ট ত্রুটি +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,কাস্টম স্ক্রিপ্ট ত্রুটি apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} নাম apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","আমদানি অনুরোধ সারিবদ্ধ. এটি কয়েক মিনিট সময় নিতে পারে, দয়া করে ধৈর্য ধরুন." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,কোন অনুমতি এই মানদণ্ড নির্ধারণ করা. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,লগইন মোব apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,আপনি এই রিসোর্স অ্যাক্সেস করার অনুমতি নেই. প্রবেশাধিকার পেতে আপনার ম্যানেজারের সাথে যোগাযোগ করুন. DocType: Custom Field,Custom,প্রথা apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,বিভিন্ন মানদণ্ডের উপর ভিত্তি করে সেটআপ ইমেইল এলার্ট. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},অধীনে দায়ের করা পোস্ট {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},অধীনে দায়ের করা পোস্ট {0} DocType: Email Alert,Send alert if date matches this field's value,তারিখ এই ক্ষেত্র এর মান মেলে যদি সতর্কতা পাঠান DocType: Workflow,Transitions,স্থানান্তর apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,সরান {0} এবং সব তথ্য মুছে ফেলতে চান? @@ -1284,9 +1285,8 @@ DocType: User,Login After,লগইন করার পর DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,মুদ্রণ DocType: Workflow State,thumbs-up,অঙ্গুষ্ঠ আপ -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেইল অ্যাকাউন্ট না সেটআপ। সেটআপ> ইমেইল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন অ্যাকাউন্ট তৈরি করুন DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,যথার্থ 1 এবং 6 এর মধ্যে হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,যথার্থ 1 এবং 6 এর মধ্যে হতে হবে apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,এবং DocType: Error Snapshot,Frames,ফ্রেম @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,চিত্র লিংক DocType: Auto Email Report,Report Filters,গালাগাল প্রতিবেদন ফিল্টার apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,এখন DocType: Workflow State,step-backward,ধাপে অনগ্রসর -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{অ্যাপ_শিরোনাম} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{অ্যাপ_শিরোনাম} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,আপনার সাইটে কনফিগ ড্রপবক্স এক্সেস কী সেট করুন apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,এই ইমেইল ঠিকানায় পাঠানোর অনুমতি এই রেকর্ড মুছে apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,শুধু বাধ্যতামূলক ক্ষেত্র নতুন রেকর্ডের জন্য প্রয়োজন হয়. যদি আপনি চান আপনি অ বাধ্যতামূলক কলাম মুছে দিতে পারেন. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,সংযুক্তি ফোল্ডা apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,সব কিছু বিশদভাবে ব্যক্ত করা apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,বৈধ লগইন আইডি প্রয়োজন. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,পুনরায় খুলুন -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,আপনি পেমেন্ট বাতিল করেছেন -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,তথ্য দিয়ে একটি বৈধ CSV ফাইল নির্বাচন করুন +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,তথ্য দিয়ে একটি বৈধ CSV ফাইল নির্বাচন করুন apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},"{0}, {1} এর সাথে এই নথি ভাগ বাতিল করেছে" apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} {1} অনুমোদিত নয় থেকে নথির অবস্থা রূপান্তর DocType: DocType,"Make ""name"" searchable in Global Search",করুন "নাম" গ্লোবাল অনুসন্ধান অনুসন্ধানযোগ্য @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ম DocType: Help Category,Help Category,সাহায্য বিভাগ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ব্যবহারকারী {0} নিষ্ক্রিয় করা হয় apps/frappe/frappe/www/404.html +8,Page missing or moved,অনুপস্থিত বা সরানো পৃষ্ঠা -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,সম্পাদনা {0} বৈশিষ্ট্য DocType: DocType,Route,রুট apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay পেমেন্ট গেটওয়ে সেটিংস DocType: DocField,Name,নাম apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,আপনি আপনার পরিকল্পনা জন্য {0} এর সর্বোচ্চ স্থান অতিক্রম করেছেন. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ডক্স অনুসন্ধান করুন DocType: OAuth Authorization Code,Valid,বৈধ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,খোলা সংযুক্তি -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,তোমার ভাষা +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,খোলা সংযুক্তি +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,তোমার ভাষা apps/frappe/frappe/desk/form/load.py +46,Did not load,লোড করা হয়নি apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,সারি যোগ করুন DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,প্রত DocType: Address,Lakshadweep Islands,লাক্ষাদ্বীপ দ্বীপপুঞ্জ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,লিখতে পারেন apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","নির্দিষ্ট কাগজপত্র, একটি চালান মত, একবার চূড়ান্ত পরিবর্তন করা উচিত নয়. যেমন নথি জন্য চূড়ান্ত রাষ্ট্র জমা বলা হয়. আপনি ভূমিকা জমা দিতে পারেন, যা সীমিত করতে পারে." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,আপনি এই প্রতিবেদন রপ্তানি করতে অনুমতি দেওয়া হয় না +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,আপনি এই প্রতিবেদন রপ্তানি করতে অনুমতি দেওয়া হয় না apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 টি আইটেম নির্বাচন DocType: Newsletter,Test Email Address,টেস্ট ইমেল ঠিকানা DocType: ToDo,Sender,প্রেরকের @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,আমদানি .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ডকুমেন্ট আইডি DocType: Print Settings,Letter,চিঠি -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,চিত্র ক্ষেত্র ধরনের হতে হবে চিত্র সংযুক্ত করুন +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,চিত্র ক্ষেত্র ধরনের হতে হবে চিত্র সংযুক্ত করুন DocType: DocField,Columns,কলাম DocType: Async Task,Succeeded,অনুসৃত apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},এ প্রয়োজন আবশ্যিক ক্ষেত্র {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,টেক্সট সম্পাদক apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,আমাদের পাতা সম্পর্কে জন্য সেটিংস. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,সম্পাদনা কাস্টম এইচটিএমএল DocType: Error Snapshot,Error Snapshot,ত্রুটি স্ন্যাপশট -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,মধ্যে +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,মধ্যে DocType: Email Alert,Value Change,মান পরিবর্তন DocType: Standard Reply,Standard Reply,প্রমিত উত্তর apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ইনপুট বক্স প্রস্থ @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,শিরোনাম উৎপন্ন এই FIELDNAME ব্যবহার apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,থেকে আমদানি ইমেইল apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,ব্যবহারকারী হিসেবে আমন্ত্রণ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,নির্বাচন সংযুক্তি +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,নির্বাচন সংযুক্তি apps/frappe/frappe/model/naming.py +94, for {0},জন্য {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,ত্রুটিযুক্ত ছিল. এই রিপোর্ট করুন দয়া করে. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,আপনি এই নথীটি ছাপানোর জন্য অনুমতি দেওয়া হয় না +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,আপনি এই নথীটি ছাপানোর জন্য অনুমতি দেওয়া হয় না apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,গালাগাল প্রতিবেদন ফিল্টার টেবিলে ফিল্টার মান নির্ধারণ করুন. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,লোড প্রতিবেদন +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,লোড প্রতিবেদন apps/frappe/frappe/limits.py +72,Your subscription will expire today.,আপনার সাবস্ক্রিপশন আজ এর মেয়াদ শেষ হবে. DocType: Page,Standard,মান apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,সংযুক্তি @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,আঞ্চলিক এক্সটেনশানগুলি DocType: LDAP Settings,Base Distinguished Name (DN),বেজ বিশিষ্ট নাম (ডিএন) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,এই কথোপকথন ত্যাগ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},বিকল্প লিংক ক্ষেত্রের জন্য নির্ধারণ করে না {0} DocType: Customize Form,"Must be of type ""Attach Image""",টাইপ করতে হবে "চিত্র সংযুক্ত করুন" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,সরিয়ে ফেলুন সব apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ফিল্ডের সেট না না 'শুধুমাত্র পাঠযোগ্য' পারেন {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,বিঃদ্রঃ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ভুলের তথ্য apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,প্রতিক্রিয়া অবস্থার মিলছে না -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,সময়রেখা ক্ষেত্রের একটি বৈধ FIELDNAME হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,সময়রেখা ক্ষেত্রের একটি বৈধ FIELDNAME হবে DocType: Currency,Symbol,প্রতীক -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,সারি # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,সারি # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,নতুন পাসওয়ার্ড ইমেইল apps/frappe/frappe/auth.py +245,Login not allowed at this time,এই সময়ে অনুমোদিত নয় লগইন DocType: Email Account,Email Sync Option,ইমেইল সিঙ্ক অপশন @@ -1555,7 +1553,7 @@ DocType: DocField,Text,পাঠ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,স্ট্যান্ডার্ড সাধারণ প্রশ্নের জবাব. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ডিফল্ট পাঠানো DocType: Workflow State,volume-off,ভলিউম বন্ধ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},দ্বারা পছন্দ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},দ্বারা পছন্দ {0} DocType: Footer Item,Footer Item,পাদচরণ আইটেম ,Download Backups,ডাউনলোড ব্যাকআপ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,হোম / Test ফোল্ডার 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,টেক্সট সারিবদ্ধ apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},নাম মত বিশেষ অক্ষর থাকতে পারে না {0} DocType: Contact Us Settings,Forward To Email Address,ফরোয়ার্ড ইমেইল ঠিকানায় apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,সব ডেটা দেখান -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,শিরোনাম ক্ষেত্রের একটি বৈধ FIELDNAME হতে হবে apps/frappe/frappe/config/core.py +7,Documents,কাগজপত্র DocType: Email Flag Queue,Is Completed,সম্পন্ন হয় apps/frappe/frappe/www/me.html +22,Edit Profile,জীবন বৃত্তান্ত সম্পাদনা @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",এই ক্ষেত্রটি প্রদর্শিত হবে শুধুমাত্র যদি FIELDNAME এখানে সংজ্ঞায়িত মূল্য আছে বা নিয়ম সত্য (উদাহরণ) হয়: myfield Eval: doc.myfield == 'আমার মূল্য' Eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,আজ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,আজ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","আপনি এই সেট করে থাকেন, শুধুমাত্র সেই ব্যবহারকারীদের ক্ষেত্রে সক্ষম এক্সেস নথি হতে হবে (যেমন. ব্লগ পোস্ট) লিংক (যেমন. ব্লগার) যেখানে বিদ্যমান." DocType: Error Log,Log of Scheduler Errors,নির্ধারণকারী ত্রুটি কার্যবিবরণী DocType: User,Bio,বায়ো @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 তারা হচ্ছে সর্বনিম্ন & 5 তারার সর্বোচ্চ রেটিং হচ্ছে DocType: Event,Ref Name,সুত্র নাম DocType: Web Page,Center,কেন্দ্র +DocType: Email Alert,Value To Be Set,মূল্য সেট হওয়ার apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,প্রথম ধাপ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,রাষ্ট্র পরিবর্তন নির্ধারিত একটি নথি এবং ভূমিকা অনুমোদিত যুক্তরাষ্ট্র প্রতিনিধিত্ব করে. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,সুদ্ধ ফরম @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,ওয়েব দৃশ্য আছে apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE এর একটি অক্ষর দিয়ে শুরু করা উচিত এবং এটা শুধুমাত্র অক্ষর, সংখ্যা, স্পেস এবং আন্ডারস্কোর দ্বারা গঠিত হতে পারে" DocType: Communication,Spam,স্প্যাম DocType: Integration Request,Integration Request,ইন্টিগ্রেশন অনুরোধ -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,প্রিয় +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,প্রিয় DocType: Address,Maharashtra,মহারাষ্ট্র DocType: Address,Accounts User,ব্যবহারকারীর অ্যাকাউন্ট DocType: Web Page,HTML for header section. Optional,হেডার বিভাগের জন্য এইচটিএমএল. ঐচ্ছিক apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,এই বৈশিষ্ট্যটি ব্র্যান্ড নতুন এবং এখনও পরীক্ষামূলক -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,সর্বাধিক {0} সারি অনুমতি +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,সর্বাধিক {0} সারি অনুমতি DocType: Email Unsubscribe,Global Unsubscribe,গ্লোবাল আনসাবস্ক্রাইব apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,এটি একটি খুব সাধারণ পাসওয়ার্ড. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,দৃশ্য DocType: Communication,Assigned,বরাদ্দ DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,নির্বাচন মুদ্রণ বিন্যাস +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,নির্বাচন মুদ্রণ বিন্যাস apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,সংক্ষিপ্ত কীবোর্ড নিদর্শন অনুমান করা সহজ DocType: Portal Settings,Portal Menu,পোর্টাল মেনু apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} এর দৈর্ঘ্য 1 এবং 1000 মধ্যে হতে হবে @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ব্যবহারকারী অনুসন্ধান করতে পারেন না apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,অবৈধ আউটপুট ফরম্যাট DocType: Custom DocPerm,Apply this rule if the User is the Owner,ব্যবহারকারী মালিক যদি এই নিয়ম প্রযোজ্য -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,আপনার লগইন আইডি হবে +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,আপনার লগইন আইডি হবে apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,প্রতিবেদন তৈরি DocType: Note,Notify users with a popup when they log in,যখন তারা লগ ইন ব্যবহারকারীদের একটি পপ-আপ দিয়ে সূচিত করুন apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} অস্তিত্ব নেই, একত্রীকরণ একটি নতুন টার্গেট নির্বাচন" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,ভূমিকা apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,আপডেট DocType: Error Snapshot,Snapshot View,স্ন্যাপশট দেখুন apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,পাঠানোর আগে নিউজলেটার সংরক্ষণ করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},বিকল্প সারিতে ক্ষেত্রের {0} জন্য একটি বৈধ DOCTYPE হতে হবে {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} বছর (গুলি) আগে +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},বিকল্প সারিতে ক্ষেত্রের {0} জন্য একটি বৈধ DOCTYPE হতে হবে {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,বৈশিষ্ট্য সম্পাদনা DocType: Patch Log,List of patches executed,প্যাচ তালিকা মৃত্যুদন্ড apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ইতিমধ্যে আন-সাবস্ক্রাইব -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,যোগাযোগের মাধ্যম +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,যোগাযোগের মাধ্যম DocType: Website Settings,Banner HTML,ব্যানার এইচটিএমএল apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। Razorpay মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,ব্যাকআপ জন্য সারিবদ্ধ. এটি একটি ঘন্টা থেকে কয়েক মিনিট সময় লাগতে পারে. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,নিবন্ধন OAUTH ক্লায়েন্ট অ্যাপ্লিকেশন -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} হতে পারে না "{2}". এটা এক হতে হবে "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} বা {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,দেখান বা ডেস্কটপ আইকন লুকান apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,পাসওয়ার্ড আপডেট @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,দেখান লাইন সেকশনস পর Breaks DocType: Blogger,Short Name,সংক্ষিপ্ত নাম apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},পাতা {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","আপনি সিঙ্ক বিকল্পটি নির্বাচন করা হয় হিসাবে সব, এটি সার্ভার থেকে সব \ পড়া সেইসাথে অপঠিত বার্তা পুনঃসিঙ্ক হবে। এই কমিউনিকেশন (ইমেল) এর অনুলিপি \ হতে পারে।" apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ফাইল সাইজ @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,ক্রয় ম্যানেজার DocType: Custom Script,Sample,নমুনা apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ট্যাগ্স DocType: Event,Every Week,প্রতি সপ্তাহে +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ইমেইল অ্যাকাউন্ট না সেটআপ। সেটআপ> ইমেইল> ইমেল অ্যাকাউন্ট থেকে একটি নতুন অ্যাকাউন্ট তৈরি করুন apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,এখানে ক্লিক করুন আপনার ব্যবহারের পরিমাণ চেক বা একটি উচ্চ প্ল্যানে আপগ্রেড করার DocType: Custom Field,Is Mandatory Field,পাঠিয়ে দিন DocType: User,Website User,ওয়েবসাইট দেখুন ব্যবহারকারী @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,কাস্টম সাইডবার মেনু DocType: Workflow State,pencil,পেন্সিল apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,বার্তা এবং অন্যান্য বিজ্ঞপ্তি চ্যাট. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},হিসাবে সেট করা যাবে না পরে ঢোকান {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},হিসাবে সেট করা যাবে না পরে ঢোকান {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,শেয়ার {0} সঙ্গে apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ই-মেইল অ্যাকাউন্ট সেটআপ জন্য আপনার পাসওয়ার্ড লিখুন: DocType: Workflow State,hand-up,হাত তোল DocType: Blog Settings,Writers Introduction,রাইটার্স ভূমিকা DocType: Address,Phone,ফোন -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ত্রুটি মূল্যায়নের ইমেইল এলার্ট {0}. আপনার টেমপ্লেট ঠিক করুন. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ত্রুটি মূল্যায়নের ইমেইল এলার্ট {0}. আপনার টেমপ্লেট ঠিক করুন. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,নির্বাচন ডকুমেন্ট প্রকার ভূমিকা বা শুরু করার জন্য. DocType: Contact,Passive,নিষ্ক্রিয় DocType: Contact,Accounts Manager,হিসাবরক্ষক ব্যবস্থাপক +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,আপনার অর্থ প্রদান বাতিল করা হয়েছে। apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,নির্বাচন ফাইল টাইপ DocType: Help Article,Knowledge Base Editor,নলেজ বেস সম্পাদক apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,পৃষ্ঠা খুঁজে পাওয়া যায়নি @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,সম্পত্তির প্রক DocType: Workflow State,screenshot,স্ক্রিনশট apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,কেবলমাত্র প্রশাসক একটি স্ট্যান্ডার্ড রিপোর্ট সংরক্ষণ করতে পারবেন. নামান্তর এবং সংরক্ষণ করুন. DocType: System Settings,Background Workers,পটভূমি ওয়ার্কার্স +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} মেটা বস্তুর সঙ্গে পরস্পরবিরোধী DocType: Deleted Document,Data,উপাত্ত apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,নথির অবস্থা apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},আপনার তৈরি করা {0} এর {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,দেখান ব্যবহারকারীর অনুমতি apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,আপনি লগইন এবং ব্যাকআপ অ্যাক্সেস পাবে সিস্টেম ম্যানেজার ভূমিকা আছে হবে. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,অবশিষ্ট -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,সংযোজনের পূর্বে সংরক্ষণ করুন. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,সংযোজনের পূর্বে সংরক্ষণ করুন. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),যোগ করা হয়েছে {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ডিফল্ট থিম সেট করা হয় {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype থেকে পরিবর্তন করা যাবে না {0} থেকে {1} সারিতে {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,পদ্ধতি নির্ধা apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,সেশন শুরু ব্যর্থ apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},এই ইমেইল {0} পাঠানো এবং কপি করা হয়েছে {1} DocType: Workflow State,th,ম -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,দয়া করে সেটআপ> ইমেইল> ইমেল অ্যাকাউন্ট থেকে সেটআপ ডিফল্ট ইমেইল অ্যাকাউন্ট -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},তৈরি করুন একটি নতুন {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},তৈরি করুন একটি নতুন {0} DocType: Email Rule,Is Spam,স্প্যাম apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},গালাগাল প্রতিবেদন {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ওপেন {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ওপেন {0} DocType: OAuth Client,Default Redirect URI,ডিফল্ট পুনর্চালনা কোনো URI DocType: Email Alert,Recipients,প্রাপক DocType: Workflow State,ok-sign,OK-সাইন @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,সাহায্য প্রবন্ধ ,Modules Setup,মডিউল সেটআপ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,শ্রেণী: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,আপনার অর্থ প্রদান ব্যর্থ হয়েছে। DocType: Communication,Unshared,ভাগমুক্ত DocType: Address,Karnataka,কর্ণাটক apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,মডিউল পাওয়া যায়নি @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,প্রতিকি ছবি DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","উপরের ন্যাভিগেশন বারের মধ্যে, ফুটার ও লোগোর সেটআপ." DocType: Web Form Field,Max Value,সর্বোচ্চ মূল্য -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},জন্য {0} এ স্তর {1} এ {2} সারিতে {3} DocType: Contact,All,সব DocType: Email Queue,Recipient,প্রাপক DocType: Communication,Has Attachment,সংযুক্তি আছে @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,সারিবদ্ধ-ডান DocType: Auto Email Report,Email To,ইমেইল apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ফোল্ডার {0} ফাঁকা নয় DocType: Page,Roles,ভূমিকা -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},ত্রুটি: VALUE নিখোঁজ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,মাঠ {0} নির্বাচনযোগ্য নয়. DocType: System Settings,Session Expiry,সেশন মেয়াদ উত্তীর্ন DocType: Workflow State,ban-circle,নিষেধাজ্ঞা-বৃত্ত DocType: Email Flag Queue,Unread,অপঠিত @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ব্যবহারকারী ডিফল্ট apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,নতুন তৈরি DocType: Workflow State,chevron-down,শেভ্রন-ডাউন -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),পাঠানো না ইমেইল {0} (প্রতিবন্ধী / আন-সাবস্ক্রাইব) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),পাঠানো না ইমেইল {0} (প্রতিবন্ধী / আন-সাবস্ক্রাইব) DocType: Async Task,Traceback,ট্রেসব্যাক DocType: Currency,Smallest Currency Fraction Value,ক্ষুদ্রতম একক ভগ্নাংশ মূল্য apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ধার্য @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,থেকে DocType: Website Theme,Google Font (Heading),গুগল ফন্ট (শিরোনাম) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,প্রথমে একটি গ্রুপ নোড নির্বাচন. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},তে {0} মধ্যে {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},তে {0} মধ্যে {1} DocType: OAuth Client,Implicit,অন্তর্নিহিত DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(ক্ষেত্রগুলি, "স্থিতি" থাকতে হবে "আনুষঙ্গিক") এই DOCTYPE বিরুদ্ধে যোগাযোগের হিসাবে সংযোজন" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","ব্যবহারকারী অ্যাক্সেস করতে পারবেন একবার অনুমোদন কোড গ্রহণ, সেইসাথে ব্যর্থতার প্রতিক্রিয়া জন্য URI উল্লিখিত. সাধারণত বিশ্রাম শেষবিন্দু ক্লায়েন্ট অ্যাপ্লিকেশন দ্বারা উদ্ভাসিত.
যেমন: http //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,জমা দেওয়ার পর {0} পরিবর্তন করার অনুমতি নেই DocType: Communication,Comment Type,মন্তব্য লিখুন DocType: OAuth Client,OAuth Client,OAUTH ক্লায়েন্ট apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ব্যবহারকারী @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},জন্য ফাইল ফরম্যাট পড়তে অক্ষম {0} DocType: Auto Email Report,Filter Data,ফিল্টার ডেটা apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,একটি ট্যাগ যুক্ত -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,প্রথম একটি ফাইলটি যুক্ত করুন. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","নামের সেটিং কিছু ত্রুটি ছিল, প্রশাসকের সাথে যোগাযোগ করুন" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ইনকামিং ইমেইল একাউন্ট সঠিক নয় apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,ইমেইল পাঠানো DocType: DocField,Ignore XSS Filter,XSS ফিল্টার Ignore apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,অপসারিত apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ড্রপবক্স ব্যাকআপ সেটিংস -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ইমেইল পাঠান +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ইমেইল পাঠান DocType: Website Theme,Link Color,লিংক রঙ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ব্যবহারকারী {0} অক্ষম করা যাবে না apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","প্রিয় সিস্টেম ম্যানেজার," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,তোমার দেশ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,তোমার দেশ DocType: Event,Sunday,রবিবার apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,গ্রিড ভিউ DocType: Address Template,Template,টেমপ্লেট @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,দিল্লি apps/frappe/frappe/config/integrations.py +48,LDAP Settings,দ্বারা LDAP সেটিংস apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,সংশোধনী apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,পেপ্যাল পেমেন্ট গেটওয়ে সেটিংস -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ছেঁটে ফেলা পাবেন, যেমন অনুমতি সর্বোচ্চ অক্ষর {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ছেঁটে ফেলা পাবেন, যেমন অনুমতি সর্বোচ্চ অক্ষর {2}" DocType: OAuth Client,Resource Owner Password Credentials,ভান্ডার হিসাবে মালিক পাসওয়ার্ড পরিচয়পত্র DocType: OAuth Client,Response Type,প্রতিক্রিয়ার প্রকার apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,ম্যাক্স ব্যবহারকারীরা @@ -2033,7 +2037,7 @@ DocType: DocField,Table,টেবিল DocType: File,File Size,ফাইলের আকার apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,আপনি এই ফর্মটি আবার জমা দিলে লগইন করতে হবে DocType: User,Background Image,পটভূমি চিত্র -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় মন্ডল ও মুদ্রা নির্বাচন" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","আপনার দেশ, সময় মন্ডল ও মুদ্রা নির্বাচন" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,মধ্যে DocType: Async Task,Queued,সারিবদ্ধ @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,তৈরি করুন apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},অকার্যকর ফিল্টার: {0} DocType: Email Account,no failed attempts,কোন ব্যর্থ প্রচেষ্টা +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,কোনো ডিফল্ট ঠিকানা টেমপ্লেট পাওয়া যায় নি। সেটআপ> মুদ্রণ এবং ব্র্যান্ডিং> ঠিকানা টেমপ্লেট থেকে একটি নতুন তৈরি করুন। DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,অ্যাপ্লিকেশন অ্যাক্সেস কী DocType: OAuth Bearer Token,Access Token,অ্যাক্সেস টোকেন @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub ইউজারনেম DocType: DocType,Image View,চিত্র দেখুন apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","দেখে মনে হচ্ছে কিছু মত লেনদেনের সময় কিছু ভুল হয়েছে. আমরা পেমেন্ট নিশ্চিত করেননি, পেপ্যাল স্বয়ংক্রিয়ভাবে আপনি এই পরিমাণ ফেরত দেওয়া হবে. ভাষা ব্যবহারযোগ্য না হলে, দয়া করে আমাদের একটি ইমেল পাঠাতে এবং সংশ্লেষন আইডি উল্লেখ: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ক্ষেত্র '{0}' কাস্টম ফিল্ড উল্লেখিত পর ঢোকান '{1}', লেবেল সঙ্গে '{2}', অস্তিত্ব নেই" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","পাসওয়ার্ড প্রতীক, সংখ্যা এবং বড় হাতের অক্ষরে অন্তর্ভুক্ত করুন" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ক্ষেত্র '{0}' কাস্টম ফিল্ড উল্লেখিত পর ঢোকান '{1}', লেবেল সঙ্গে '{2}', অস্তিত্ব নেই" DocType: Workflow State,signal,সংকেত DocType: DocType,Show Print First,দেখান Print প্রথম apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + পোষ্ট করতে লিখুন @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ফাইল '{0}' পাওয়া যায়নি apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,বিভাগটি অপসারণ DocType: User,Change Password,পাসওয়ার্ড পরিবর্তন করুন -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},অবৈধ ইমেল: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,হ্যালো! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},অবৈধ ইমেল: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,হ্যালো! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ইভেন্ট শেষে শুরুর পরে হবে apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},আপনি যদি একটি রিপোর্ট পেতে অনুমতি নেই: {0} +DocType: System Settings,Apply Strict User Permissions,কঠোর ব্যবহারকারীর অনুমতি প্রয়োগ DocType: DocField,Allow Bulk Edit,বাল্ক সম্পাদনা করার অনুমতি দিন DocType: Blog Post,Blog Post,ব্লগ পোস্ট -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,উন্নত অনুসন্ধান +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,উন্নত অনুসন্ধান apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,পাসওয়ার্ড রিসেট নির্দেশাবলী আপনার ইমেইল পাঠানো হয়েছে apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","শ্রেনী 0 ডকুমেন্ট স্তর অনুমতিগুলি, \ মাঠ পর্যায় অনুমতির জন্য উচ্চ মাত্রার জন্য।" @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,প্রত্যাহার করা হ DocType: Web Page,Sidebar and Comments,সাইডবার এবং মন্তব্যসমূহ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","আপনি একটি নথি পরে তা বাতিল এবং সংরক্ষণ সংশোধন হলে, এটা পুরানো সংখ্যা একটি সংস্করণ যে একটি নতুন নম্বর পেতে হবে." DocType: Stripe Settings,Publishable Key,প্রকাশযোগ্য কী -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} বছর (গুলি) আগে DocType: Workflow State,circle-arrow-left,বৃত্ত-তীর-বাম apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis ক্যাশে সার্ভার চলমান না. অ্যাডমিনিস্ট্রেটর / কারিগরি সহায়তা সাথে যোগাযোগ করুন apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,পার্টির নাম -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,একটি নতুন রেকর্ড করতে +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,একটি নতুন রেকর্ড করতে apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,খোঁজ DocType: Currency,Fraction,ভগ্নাংশ DocType: LDAP Settings,LDAP First Name Field,দ্বারা LDAP প্রথম নাম ফিল্ড -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,বিদ্যমান সংযুক্তি থেকে নির্বাচন DocType: Custom Field,Field Description,মাঠ বর্ণনা apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,প্রম্পট মাধ্যমে নির্ধারণ করে না নাম apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ইমেল ইনবক্স @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,তথ্য: DocType: Custom Field,Permission Level,অনুমতি শ্রেনী DocType: User,Send Notifications for Transactions I Follow,আমি অনুসরণ লেনদেন জন্য বিজ্ঞপ্তি পাঠাতে -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: সরিয়ে ফেলতে চান, লেখা ছাড়া সংশোধন সেট করা যায় না" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,আপনি সংযুক্তি মুছে ফেলতে চান আপনি কি নিশ্চিত? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না {1} সঙ্গে সংযুক্ত করা হয় {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

কোন ফলাফল 'পাওয়া যায়নি

-apps/frappe/frappe/__init__.py +1063,Thank you,তোমাকে ধন্যবাদ +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","মুছে ফেলতে অথবা কারণ {0} বাতিল করা যাবে না {1} সঙ্গে সংযুক্ত করা হয় {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,তোমাকে ধন্যবাদ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,রক্ষা DocType: Print Settings,Print Style Preview,স্টাইল মুদ্রণের পূর্বরূপ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,তালিকা দেখুন DocType: Email Account,Use TLS,ব্যবহারের জন্য TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,অবৈধ লগইন অথবা পাসওয়ার্ড apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ফর্ম কাস্টম জাভাস্ক্রিপ্ট করো. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR কোন +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR কোন ,Role Permissions Manager,ভূমিকা অনুমতি ম্যানেজার apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,নতুন মুদ্রণ বিন্যাস নাম -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,সংযুক্তি পরিষ্কার +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,সংযুক্তি পরিষ্কার apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,আবশ্যিক: ,User Permissions Manager,ব্যবহারকারীর অনুমতি ম্যানেজার DocType: Property Setter,New value to be set,নতুন মান সেট করা @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,২ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ব্লগ পোস্ট শ্রেণীবিভক্ত. DocType: Workflow State,Time,সময় DocType: DocField,Attach,জোড়া -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} একটি বৈধ FIELDNAME প্যাটার্ন নয়. এটা হওয়া উচিত {{}} FIELD_NAME. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,প্রতিক্রিয়া অনুরোধ পাঠান শুধুমাত্র যদি অন্তত এক যোগাযোগ নথির জন্য পাওয়া যায়. DocType: Custom Role,Permission Rules,অনুমতি বিধি DocType: GSuite Settings,GSuite Settings,GSuite সেটিং DocType: Address,Links,লিংক -apps/frappe/frappe/model/base_document.py +428,Value missing for,মূল্য জন্য অনুপস্থিত +apps/frappe/frappe/model/base_document.py +427,Value missing for,মূল্য জন্য অনুপস্থিত apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,শিশু করো -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: জমা রেকর্ড মুছে ফেলা যাবে না. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ব্যাকআপ ফাইলের আকার DocType: GSuite Templates,Template Name,টেম্পলেট নাম -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ডকুমেন্টের নতুন ধরনের +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ডকুমেন্টের নতুন ধরনের DocType: Custom DocPerm,Read,পড়া DocType: Role Permission for Page and Report,Role Permission for Page and Report,পেজ এবং প্রতিবেদনের জন্য ভূমিকা অনুমতি apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,সারিবদ্ধ মূল্য apps/frappe/frappe/www/update-password.html +14,Old Password,পুরনো পাসওয়ার্ড -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},দ্বারা পোস্ট {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},দ্বারা পোস্ট {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","বিন্যাস কলামে, ক্যোয়ারী কলাম লেবেল দিতে." DocType: Has Domain,Has Domain,ডোমেন হয়েছে apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,একটি একাউন্ট আছে না? নিবন্ধন করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable না হলে বরাদ্দ সংশোধন সেট করা যায় না DocType: Address,Bihar,বিহার apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,সম্পাদনা ভূমিকা অনুমতি DocType: Communication,Link DocType,লিংক DOCTYPE @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,আপনার প্রোফাইল একটি ইমেইল ঠিকানা আছে কিনা তা নিশ্চিত করুন apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,আপনি এই ফর্মটি আবার এ অসংরক্ষিত পরিবর্তন রয়েছে. আপনি অবিরত করার পূর্বে সংরক্ষণ করুন. DocType: Address,Telangana,তেলেঙ্গানা -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} একটি বিকল্প হতে হবে এর জন্য ডিফল্ট DocType: Tag Doc Category,Tag Doc Category,ট্যাগ ডক শ্রেণী DocType: User,User Image,ব্যবহারকারী চিত্র apps/frappe/frappe/email/queue.py +289,Emails are muted,ইমেইল নিঃশব্দ @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,পরব DocType: Workflow State,ok,ঠিক আছে DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,এই মানগুলি স্বয়ংক্রিয়ভাবে লেনদেন আপডেট করা হবে এবং এই মান ধারণকারী লেনদেনের এই ব্যবহারকারীর জন্য অনুমতি সীমিত করার উপযোগী হতে হবে. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,প্রকাশক -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** ব্যর্থ: {0} থেকে {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ব্যর্থ: {0} থেকে {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,আবশ্যিক নির্বাচন apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ব্রাউজ করুন apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ইমেল পাঠানো হয়েছে @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,চলমান apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,পাসওয়ার্ড রিসেট করুন apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,অনুগ্রহ করে বেশি {0} গ্রাহক যোগ করার জন্য আপগ্রেড DocType: Workflow State,hand-left,হাত-বাম -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} অনন্য হতে পারে না DocType: Email Account,Use SSL,ব্যবহারের SSL- র DocType: Workflow State,play-circle,খেলার-বৃত্ত apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,সম্পাদনা করুন প্রিন্ট বিন্যাস নির্বাচন @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,কোন কপি DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,দ্বারা LDAP দিয়ে লগইন করুন DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,মালিক যদি +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,মালিক যদি DocType: OAuth Authorization Code,Expiration time,মেয়াদ অতিক্রান্ত হওয়ার সময় DocType: Web Page,Website Sidebar,ওয়েবসাইট সাইডবার DocType: Web Form,Show Sidebar,পার্শ্বদণ্ড দেখান @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},খুঁজে apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,নাম এবং নিজেরাই পদবির অনুমান করা সহজ. apps/frappe/frappe/config/website.py +93,Knowledge Base,জ্ঞানভিত্তিক DocType: Workflow State,briefcase,ব্রিফকেস -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},মূল্য জন্য পরিবর্তন করা যাবে না {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},মূল্য জন্য পরিবর্তন করা যাবে না {0} DocType: Feedback Request,Is Manual,ম্যানুয়াল DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","স্টাইল বাটন রঙ প্রতিনিধিত্ব: সাফল্য - সবুজ, বিপদ - লাল, বিপরীত - কালো, প্রাথমিক - ডার্ক ব্লু, তথ্য - যে হাল্কা নীল, সতর্কবাণী - কমলা" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,কোন প্রতিবেদন লোডেড. / [প্রতিবেদন নাম] একটি রিপোর্ট চালানোর ক্যোয়ারী-প্রতিবেদন ব্যবহার করুন. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,উন্ন apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ভূমিকা দ্বারা apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,নিখোঁজ ক্ষেত্রসমূহ apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname অবৈধ FIELDNAME '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ডকুমেন্ট টাইপ এ অনুসন্ধান +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ডকুমেন্ট টাইপ এ অনুসন্ধান apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ক্ষেত্রের এমনকি জমা পরে সম্পাদনযোগ্য থাকা অনুমতি DocType: Custom DocPerm,Role and Level,ভূমিকা ও শ্রেনী DocType: File,Thumbnail URL,থাম্বনেল URL টি @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,অধিক তথ্য DocType: Desktop Icon,Desktop Icon,ডেস্কটপ আইকন -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,আপনার পেমেন্ট সফলভাবে গৃহীত হয়েছিল +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,আপনার পেমেন্ট সফলভাবে গৃহীত হয়েছিল apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,দুঃখিত! আপনি এই পৃষ্ঠাটি দেখতে অনুমতিপ্রাপ্ত নন. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,টিপ: ডাবল ক্লিক করে কক্ষ সম্পাদনা করতে DocType: Workflow State,bell,ঘণ্টা apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ইমেল সতর্কতা ত্রুটি apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,সাথে এই দস্তাবেজ ভাগ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,সেটআপ> ব্যবহারকারীর অনুমতি ম্যানেজার apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,এটা শিশুদের আছে {0} {1} পাতার একটি নোড হতে পারে না DocType: Communication,Info,তথ্য -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,সংযুক্তি যোগ +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,সংযুক্তি যোগ DocType: Communication,Email,ইমেইল apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,তোমার বার্তার জন্য তোমাকে ধন্যবাদ -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,পঠিত রসিদ পাঠান +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,পঠিত রসিদ পাঠান DocType: Stripe Settings,Stripe Settings,ডোরা সেটিং DocType: Dropbox Settings,Dropbox Setup via Site Config,সাইট কনফিগ মাধ্যমে ড্রপবক্স সেটআপ apps/frappe/frappe/www/login.py +64,Invalid Login Token,অবৈধ প্রবেশ টোকেন @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,ওয়েব দর্শন apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,সতর্কীকরণ: এটি মুদ্রণ বিন্যাস পুরানো শৈলী এবং API- র মাধ্যমে নির্মাণ করা যাবে না. DocType: DocField,Print Width,প্রিন্ট করুন প্রস্থ ,Setup Wizard,সেটআপ উইজার্ড +DocType: Address,GST State Number,GST রাষ্ট্রের সংখ্যা DocType: User,Allow user to login only before this hour (0-24),ব্যবহারকারী শুধুমাত্র এই ঘন্টা আগে লগইন করতে (0-24) অনুমতি দিন apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ফোল্ডার বাধ্যতামূলক apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ছোট লেখা apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,অ্যাডমিনিস্ট্রেটর ব্যবহার {0} থেকে {1} IP ঠিকানা মাধ্যমে {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,সমান -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ক্ষেত্রের বিকল্প 'ডাইনামিক লিংক' টাইপ 'DOCTYPE' হিসাবে অপশন সঙ্গে অন্য লিঙ্ক ক্ষেত্র নির্দেশ করতে হবে DocType: About Us Settings,Team Members Heading,শীর্ষক দলের সদস্যদের apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,অবৈধ CSV বিন্যাসে apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,সেট ব্যাক-আপ সংখ্যা @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,যোগাযোগ DocType: User,Third Party Authentication,থার্ড পার্টি প্রমাণীকরণ DocType: Website Settings,Banner is above the Top Menu Bar.,ব্যানার উপরের মেনু বার উপরে. DocType: Razorpay Settings,API Secret,এপিআই সিক্রেট -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,রপ্তানি প্রতিবেদন: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,রপ্তানি প্রতিবেদন: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} অস্তিত্ব নেই DocType: Email Account,Port,বন্দর DocType: Print Format,Arial,আড়িয়াল @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,কলামের নাম DocType: Language,Based On,উপর ভিত্তি করে apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ডিফল্ট করা apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,চেক ফ্র্যাপে সার্ভারের URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} সূচীবদ্ধ করা যাবে না জন্য DocType: Communication,Email Account,ইমেইল একাউন্ট DocType: Workflow State,Download,ডাউনলোড DocType: Blog Post,Blog Intro,মুখ্য পৃষ্ঠা Privacy Policy ব্লগ @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,কোড প্রবেশ করান DocType: ToDo,Low,কম apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,আপনি Jinja টেমপ্লেট ব্যবহার করে নথি থেকে গতিশীল বৈশিষ্ট্য যোগ করতে পারেন. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},অবৈধ সীমা {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,একটি নথি টাইপ তালিকা +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,একটি নথি টাইপ তালিকা DocType: Event,Ref Type,সুত্র ধরন apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","আপনি নতুন রেকর্ড আপলোড হয়, "নাম" (আইডি) কলাম ফাঁকা রাখুন." DocType: Address,Chattisgarh,ছত্তিশগড় @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,পিডিএফ হিসাবে প্রিন্ট পাঠান DocType: Web Form,Amount,পরিমাণ DocType: Workflow Transition,Allowed,প্রেজেন্টেশন -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,একটি ফর্ম শুধুমাত্র এক ভাঁজ আছে হতে পারে apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},জন্য ফাইল ফরম্যাট লিখতে ব্যর্থ হয়েছে {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,ডিফল্ট সেটিংসে পুনরুদ্ধার করতে চান? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,অকার্যকর হোম পেজ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,অবৈধ লগইন করুন. আবার চেষ্টা কর. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},লিংক বা সারিতে ছক টাইপ ক্ষেত্রটিতে {0} জন্য প্রয়োজন বোধ করা বিকল্পগুলি {1} DocType: Auto Email Report,Send only if there is any data,শুধুমাত্র পাঠান যদি সেখানে কোন তথ্য নেই apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,রিসেট ফিল্টার -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: উচ্চ মাত্রার সেট করা হয় আগে স্তর 0 এ অনুমতি সেট করা আবশ্যক apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},অ্যাসাইনমেন্ট দ্বারা বন্ধ {0} DocType: Integration Request,Remote,দূরবর্তী -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,গণনা করা +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,গণনা করা apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,প্রথম DOCTYPE দয়া করে নির্বাচন করুন apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,আপনার ইমেইল নিশ্চিত করুন apps/frappe/frappe/www/login.html +42,Or login with,অথবা লগইন করুন DocType: Error Snapshot,Locals,অঁচলবাসী apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},মাধ্যমে আদানপ্রদান {0} উপর {1} {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} একটি মন্তব্যে উল্লেখ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,যেমন (55 + + 434) / 4 বা = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,যেমন (55 + + 434) / 4 বা = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} প্রয়োজন DocType: Integration Request,Integration Type,ইন্টিগ্রেশন ধরণ DocType: Newsletter,Send Attachements,Attachements পাঠান @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,স্থায়ী ঢেউ তোলা শ্ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,আজকের ক্যালেন্ডার ঘটনাগুলি DocType: Web Page,Web Page,ওয়েব পেজ DocType: Blog Category,Blogger,ব্লগার -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'বৈশ্বিক অনুসন্ধান' টাইপ জন্য অনুমতি দেওয়া হয় না {0} সারিতে {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,তালিকা দেখুন -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},জন্ম বিন্যাসে নির্মাণ করা আবশ্যক: {0} DocType: Workflow,Don't Override Status,স্থিতি ওভাররাইড না apps/frappe/frappe/www/feedback.html +90,Please give a rating.,একটি রেটিং দিতে দয়া করে. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} প্রতিক্রিয়া অনুরোধ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,অনুসন্ধানের শর্ত -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,প্রথম ব্যবহারকারী: আপনি +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,প্রথম ব্যবহারকারী: আপনি apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,নির্বাচন কলাম DocType: Translation,Source Text,উত্স লেখা apps/frappe/frappe/www/login.py +55,Missing parameters for login,লগইন জন্য অনুপস্থিত পরামিতি @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,আমদানি হচ্ছে DocType: ToDo,Assigned By,দ্বারা নির্ধারিত হয় apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,আপনি ক্ষেত্রের উপর মাত্রা সেট কাস্টমাইজ ফর্ম ব্যবহার করতে পারেন. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,আপনার অঞ্চল নির্বাচন করুন +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,আপনার অঞ্চল নির্বাচন করুন DocType: Custom DocPerm,Level,শ্রেনী DocType: Custom DocPerm,Report,রিপোর্ট apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,পরিমাণ 0 অনেক বেশী হতে হবে. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,পটভূমি DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","ব্যবহারকারীর অনুমতি প্রয়োগ করতে ব্যবহৃত DocTypes এর JSON তালিকা. যদি খালি, সব লিঙ্ক DocTypes ব্যবহারকারীর অনুমতি প্রয়োগ করতে ব্যবহৃত হবে." DocType: Report,Ref DocType,সুত্র DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,একটি রেটিং যোগ করুন -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: বাতিল না করে সংশোধন সেট করা যায় না apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,পুরো পাতা DocType: DocType,Is Child Table,শিশু টেবিল হয় apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} কে অবশ্যই {1} এর মাঝে কোন একটি হতে হবে @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,এই স্লাই apps/frappe/frappe/config/setup.py +260,Install Applications.,অ্যাপ্লিকেশন ইনস্টল করুন. DocType: Contact,Last Name,নামের শেষাংশ DocType: Event,Private,ব্যক্তিগত -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,আজকের জন্য কোন সতর্কতা +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,আজকের জন্য কোন সতর্কতা DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),পিডিএফ হিসেবে ইমেইল প্রিন্ট সংযুক্তি পাঠান (প্রস্তাবিত) DocType: Web Page,Left,বাম DocType: Event,All Day,সারাদিন @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,সকালে একট DocType: Blog Post,Published On,প্রকাশিত DocType: Contact,Gender,লিঙ্গ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,আবশ্যিক তথ্য অনুপস্থিত: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,মাঠ '{0}' এটা অ অনন্য মান আছে হিসাবে অনন্য হিসাবে সেট করা যাবে না apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,শুধু 200 টিপে এক অনুরোধ অনুমতিপ্রাপ্ত DocType: Footer Item,URL,URL টি DocType: ToDo,Reference Type,রেফারেন্স ধরন @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,সতর্কীকরণ চিহ্ন DocType: Workflow State,User,ব্যবহারকারী DocType: Website Settings,"Show title in browser window as ""Prefix - title""",হিসাবে ব্রাইজার উইণ্ডোয় দেখান শিরোনাম "উপসর্গ - শিরোনাম" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ডকুমেন্ট টাইপ টেক্সট +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ডকুমেন্ট টাইপ টেক্সট apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,চালান টেস্ট apps/frappe/frappe/handler.py +91,Logged Out,প্রস্থান apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,আরো ... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,বর্তমানে দেখছেন DocType: DocField,Default,ডিফল্ট apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} যোগ করা হয়েছে -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',জন্য অনুসন্ধান করুন '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',জন্য অনুসন্ধান করুন '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,দয়া করে রিপোর্ট প্রথম সংরক্ষণ apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} গ্রাহকদের যোগ করা হয়েছে apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,না DocType: Workflow State,star,তারকা -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,মান কমা দ্বারা পৃথকীকৃত -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,মান কমা দ্বারা পৃথকীকৃত +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},টাইপ একক জন্য সর্বোচ্চ প্রস্থ সারিতে 100px হয় {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},জন্য আপনার মতামত শেয়ার করুন {0} apps/frappe/frappe/config/website.py +13,Content web page.,বিষয়বস্তু ওয়েবপৃষ্ঠাটি. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,একটি নতুন ভূমিকা করো @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,একটি বৈধ দ্বারা LDAP ব্যবহারকারী apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} কোনো বৈধ অবস্থা না apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',দয়া করে অন্য একটি অর্থ প্রদানের পদ্ধতি নির্বাচন করুন। পেপ্যাল মুদ্রায় লেনদেন অবলম্বন পাওয়া যায়নি '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয় +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,অনুসন্ধান ফিল্ড {0} বৈধ নয় DocType: Workflow State,ok-circle,OK-বৃত্ত apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',আপনি জিজ্ঞাসা 'গ্রাহকদের মধ্যে কমলা এটি' দ্বারা জিনিষ খুঁজে পেতে পারেন apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,দুঃখিত! ব্যবহারকারী তাদের নিজের রেকর্ড করতে সম্পূর্ণ সুযোগ থাকা উচিত. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,ফিল্টার মেটা DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,এই ফর্মটি একটি ওয়েব পেজ আছে তাহলে টেক্সট ওয়েব পৃষ্ঠা থেকে লিঙ্ক জন্য প্রদর্শন করা হবে. লিংক রুট স্বয়ংক্রিয়ভাবে page_name` এবং `` parent_website_route` উপর ভিত্তি করে তৈরি করা হবে DocType: Feedback Request,Feedback Trigger,প্রতিক্রিয়া ট্রিগার -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,প্রথম {0} সেট করুন +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,প্রথম {0} সেট করুন DocType: Unhandled Email,Message-id,বার্তা আইডিটি DocType: Patch Log,Patch,তালি DocType: Async Task,Failed,ব্যর্থ diff --git a/frappe/translations/bs.csv b/frappe/translations/bs.csv index 7a7bfbec69..8615683790 100644 --- a/frappe/translations/bs.csv +++ b/frappe/translations/bs.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook ime DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Napomena: više sesija će biti dozvoljeno u slučaju mobilnih uređaja apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Omogućeno e-mail inbox za korisnika {korisnike} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete slati ovo e-mail. Ste prešli granicu od slanja e-mailova {0} za ovaj mjesec. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Trajno Podnijeti {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Trajno Podnijeti {0} ? DocType: Address,County,okrug DocType: Workflow,If Checked workflow status will not override status in list view,Ako Provjeriti status tok posla neće nadjačati status u prikazu liste apps/frappe/frappe/client.py +280,Invalid file path: {0},Nevažeći putanja datoteke: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Molimo apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Stablo DocType: User,User Emails,korisnika Email DocType: User,Username,Korisničko -apps/frappe/frappe/model/base_document.py +581,Value too big,Vrijednost prevelika +apps/frappe/frappe/model/base_document.py +580,Value too big,Vrijednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Odjel @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Trupci DocType: Custom DocPerm,This role update User Permissions for a user,Ova uloga ažuriranje korisnik dozvole za korisnika apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Preimenovanje {0} DocType: Workflow State,zoom-out,odalji -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} ne može biti prazno apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,s knjigama apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Slike DocType: Communication,Reference Owner,referentni Vlasnik DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmanja kruži frakcija jedinici (novčić). Za npr 1 cent za USD i to treba upisati kao 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Red" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Red" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Molim Vas, dajte fullname." apps/frappe/frappe/model/document.py +904,Beginning with,počinju s apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Uvoz podataka Template apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Roditelj DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ako je omogućeno, jačina lozinka će biti izvršena na osnovu minimalne lozinke Score vrijednosti. Vrijednost 2, koji je srednje jak i 4 biti vrlo jaka." DocType: About Us Settings,"""Team Members"" or ""Management""","""Članovi tima"" ili ""menadzment""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Uobičajeno za 'Check' tip polje mora biti ili '0' ili '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Uobičajeno za 'Check' tip polje mora biti ili '0' ili '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Jučer DocType: Contact,Designation,Oznaka DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Je objavljen Field DocType: Email Group,Email Group,E-mail Group DocType: Note,Seen By,Viđeno od strane apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,dodavanje više -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ne kao +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ne kao apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Postavite ekran oznaku za oblast apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Svojstva Promjena polje (skrivanje , samo za čitanje , dozvola i sl. )" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Podešava apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator prijavljeni DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput "Sales Query, Podrška upit" itd jedni na novoj liniji ili odvojene zarezima." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Preuzimanje -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Odaberite {0} DocType: Print Settings,Classic,Klasik DocType: Desktop Icon,Color,Boja @@ -121,7 +121,7 @@ DocType: Translation,Translation,prijevod apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalirati apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,G-din DocType: Custom Script,Client,Klijent -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Ovaj oblik je promijenjen nakon što ste ga pre +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Ovaj oblik je promijenjen nakon što ste ga pre DocType: User Permission for Page and Report,User Permission for Page and Report,Korisnik Dozvola za Page i Izvještaj DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ako nije postavljena, valuta preciznost zavisi od broja formata" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Razlog apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Navedite korisnika DocType: Email Unsubscribe,Email Unsubscribe,E-mail Odjava DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Odaberite sliku od cca 150px širine s transparentnom pozadinom za najbolje rezultate. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (to možete promijeniti kasnije). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (to možete promijeniti kasnije). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,krug sa strelicom prema gore apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Prijenos ... DocType: Email Domain,Email Domain,E-mail Domain DocType: Workflow State,italic,kurziva apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Za svakoga -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Ne može se uvoz bez Stvoriti +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Ne može se uvoz bez Stvoriti apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Dogadjaj i ostali kalendari. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Sva polja je potrebno dostaviti komentar. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Povucite kako biste sortirali kolone @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Ne možete izbrisati Home i prilozi mape apps/frappe/frappe/config/desk.py +19,Files,Files apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Prava se primjenjuju na korisnike na temelju onoga što Uloge su dodijeljeni . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Ne smiju slati e-mailove u vezi s ovim dokumentom -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Molimo odaberite atleast 1 kolonu od {0} za sortiranje / grupa +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Ne smiju slati e-mailove u vezi s ovim dokumentom +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Molimo odaberite atleast 1 kolonu od {0} za sortiranje / grupa DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Provjerite ovo ako se testiraju uplatu pomoću API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Vam nije dozvoljeno da obrišete standardni Web Theme DocType: Feedback Trigger,Example,Primjer @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Ukupno Pretplatnici apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","AkoUloga nema pristup na razini 0 , onda je viša razina su besmislene ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save As DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Pokaži više detalja +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Pokaži više detalja DocType: System Settings,Run scheduled jobs only if checked,Trčanje rasporedu radnih mjesta samo ako provjeriti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Će biti prikazan samo ako su odjeljku naslova omogućeno apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiva @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Prikaži grafiko apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Valjana email i ime potrebna DocType: DocType,Hide Heading,Sakrij naslov DocType: Address,Current,struja -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Dokumenti sa sličnom temom apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupe Doctype DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,uklanjanje-krug @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Naziv Polja {0} ne može imati posebne znakove kao {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Update mnoge vrijednosti u jednom trenutku. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Pogreška: Dokument je promijenjen nakon što ste ga otvorili -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Default Adresa Template pronađeno. Molimo vas da se stvori novi iz Setup> Printing i brendiranje> Adresa Obrazac. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} prijavljeni od: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtriran "{0}" DocType: Salutation,Administrator,Administrator @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Naslov bloga apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard uloga ne može biti onemogućena DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ne mogu koristiti pod-upita kako bi po +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ne mogu koristiti pod-upita kako bi po DocType: Web Form,Button Help,Button Pomoć DocType: Kanban Board Column,purple,purple DocType: About Us Settings,Team Members,Članovi tima @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Uzmite globa apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaša pretplata istekla na {0}. Da biste obnovili, {1}." DocType: Workflow State,plus-sign,plus-potpisati apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup već potpuna -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nije instaliran +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nije instaliran DocType: Workflow State,Refresh,Osvježi DocType: Event,Public,Javni apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nema podataka za prikaz @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Vole apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail podrška DocType: DocField,Print Hide If No Value,Ispis Sakrij Ako No Value DocType: Event,yellow,žut -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Objavljen je na terenu mora biti važeća Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Objavljen je na terenu mora biti važeća Naziv Polja apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Prenesi Prilog DocType: Block Module,Block Module,Blok modula apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Izvoz Template @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Novi korisnički račun je stvoren za vas na {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,instrukcije Email-ovani -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Unesite E-mail Primalac (e) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Unesite E-mail Primalac (e) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Ne može identificirati otvoreno {0}. Pokušajte nešto drugo. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,poruka ID DocType: Property Setter,Field Name,Naziv polja apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nije konfiguriran. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ili -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Naziv modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Nastaviti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Naziv modula ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Nastaviti DocType: Custom Field,Fieldname,"Podataka, Naziv Polja" DocType: Workflow State,certificate,certifikat DocType: User,Tile,Pločica @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Prikaži sve verzije DocType: Workflow State,Print,Stampaj DocType: User,Restrict IP,Zabraniti IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,komandna tabla apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Traži ili upišite komandu DocType: Communication,Timeline Name,Timeline ime @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Sales Manager Master apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Naziv vrste dokumenta (DOCTYPE) želite li da to polje bude povezano na naprimjer kupca DocType: User,Roles Assigned,Uloge Dodijeljeni -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Pretraga Pomoć +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Pretraga Pomoć DocType: Top Bar Item,Parent Label,Roditelj Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaš upit je dobio. Odgovorit ćemo brzo vratiti. Ako imate bilo kakve dodatne informacije, molimo Vas da odgovorite na ovaj e-mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Dozvole automatski se prevode na standardnih izvješća i pretraživanja . @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Heading DocType: File,File URL,URL datoteke DocType: Version,Table HTML,Tabela HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

nađeni za 'Nema rezultata

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj Pretplatnici apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Buduća događanja za danas DocType: Email Alert Recipient,Email By Document Field,E-mail dokumentom Field @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Iznos po osnovu Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Korisnik je obavezna za Share DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dozvolite Nepotpune Obrasci -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} mora biti postavljen prvi +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} mora biti postavljen prvi apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Koristite nekoliko riječi, izbjeći uobičajene fraze." DocType: Workflow State,plane,avion -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Vaša uplata nije uspio. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako upload nove rekorde, ""Imenovanje Serija"" postaje obavezna, ako je prisutan." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Dobij upozorenja za Danas +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Dobij upozorenja za Danas apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,Vrstu dokumenta moze preimenovati samo Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},promijenjenih vrijednosti od {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Molimo provjerite svoj e-mail za verifikaciju -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold ne može biti na kraju obrasca DocType: Communication,Bounced,Odbijeno DocType: Deleted Document,Deleted Name,Deleted ime apps/frappe/frappe/config/setup.py +14,System and Website Users,Korisnici sustava i web stranice @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument redu za slan DocType: GSuite Templates,Destination ID,Destinacija ID DocType: Desktop Icon,List,popis DocType: Communication,Link Name,link ime -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu DocType: System Settings,mm/dd/yyyy,dd / mm / gggg apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nevažeći Lozinka: DocType: Print Settings,Send document web view link in email,Pošalji dokument web pogled link u e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše povratne informacije za dokument {0} je uspješno sačuvan apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,prijašnji -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} redova za {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Za npr. "centi" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Odaberite dodate datoteke @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Poveznica apps/frappe/frappe/utils/file_manager.py +96,No file attached,No file u prilogu DocType: Version,Version,verzija DocType: User,Fill Screen,Ispunite zaslon -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","U nemogućnosti da se ovaj izvještaj drvo, zbog podataka koji nedostaju. Najvjerojatnije, to se filtrira zbog dozvole." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Molimo vas default postavljanje e-pošte iz Setup> E-mail> e-pošte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","U nemogućnosti da se ovaj izvještaj drvo, zbog podataka koji nedostaju. Najvjerojatnije, to se filtrira zbog dozvole." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Odaberite File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit preko Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Vrsta dokumenta ..., npr kupca" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Vrsta dokumenta ..., npr kupca" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Uvjet '{0}' je nevažeća DocType: Workflow State,barcode,barkod apps/frappe/frappe/config/setup.py +232,Add your own translations,Dodajte svoj prevodi @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Srijeda apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Osim prava pristupa koja su prethodno definisana rolama, možemo dodijeliti prava pristupa na nivou vrste dokumenta." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ta prava će se primjenjivati za sve transakcije u kojima je dozvoljeni zapis povezan. Npr. Ako je firmi C dodat korisnik x sa njegovim pravom pristupa, taj korisnik ce samo moci da gleda transakcije koje je izvrsila firma C" -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,polje Slika mora biti valjan Naziv Polja DocType: OAuth Client,Token,žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ime) subjekta čiji je objekt se postaviti apps/frappe/frappe/limits.py +82,"To renew, {0}.","Da biste obnovili, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Bočna Stavke apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} već instaliran DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Pokaži Dozvole -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti Link ili Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datum Range apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} od {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Uvesti apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Enkripcija ključ je nevažeća, Molimo provjerite site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,u DocType: Kanban Board Column,darkgrey,tamno siva -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Uspješna: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Uspješna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Ne može promijeniti podaci o korisniku u demo. Molimo vas da registracija za novi račun u https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Molimo Vas da duplikat to napraviti promjene apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF generacije nije uspio zbog slomljena slike linkovi @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Sklopivi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Sačuvane apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Šta ti je potrebna pomoć? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcije za odabrane. Svaka opcija na novoj liniji. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Trajno Odustani {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Trajno Odustani {0} ? DocType: Workflow State,music,muzika DocType: Web Page,Settings,Podešavanja apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Navedite vrstu dokumenata DocType: Print Format,Style Settings,Stil Postavke -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjan Naziv Polja apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Više DocType: Contact,Sales Manager,Sales Manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,preimenovati DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Kao +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Kao DocType: Customize Form Field,Customize Form Field,Prilagodba polja obrasca apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Dopusti korisnika DocType: OAuth Client,Grant Type,Grant Tip apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Provjerite koji dokumenti su čitljivi od strane Korisnika apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Broj aplikacija nije dozvoljeno -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,koristiti% kao zamjenski -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail domena nije konfigurirana za ovaj nalog, Napravi jedan?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,koristiti% kao zamjenski +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domena nije konfigurirana za ovaj nalog, Napravi jedan?" DocType: User,Reset Password Key,Reset Password ključ DocType: Email Account,Enable Auto Reply,Enable Auto Odgovor apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nisam vidio @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Postaviti samo jednom DocType: Email Queue Recipient,Email Queue Recipient,E-mail Queue Primalac DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Korisničko {0} već postoji -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Ne može se uvesti kao {1} nije za uvoz apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Postoji greška u vašem Adresa Template {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Od Ime i prezime apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nemate pristup Izvjestaju: {0} DocType: User,Send Welcome Email,Pošalji Dobrodošli Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Pošalji CSV datoteku koja sadrži sve korisničke dozvole u istom obliku kao preuzimanje. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Ukloni filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Ukloni filter DocType: Address,Daman and Diu,Daman and Diu DocType: Address,Personal,Osobno apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType ne mogu imati zadani format za ispis, koristite Customize obrazac" DocType: Report,Query,Upit DocType: DocType,Sort Order,Poredak sortiranja -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"' Prikaz liste "" nije dozvoljen za vrstu {0} u redu {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Odaberite oznaku nakon što želite umetnuti novo polje. ,Document Share Report,Izvještaj o dijeljenu dokumenata DocType: User,Last Login,Zadnja prijava -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeno polje u vrstu dokumenta DocType: File,Is Home Folder,Je dom Folder @@ -583,7 +583,7 @@ DocType: File,Folder,Fascikla DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Menadžer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcija 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,sve Poruke +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} do {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prijavite greške prilikom zahtjeva. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} je uspješno dodan na mail Grupe. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,pokazatelj DocType: DocShare,Everyone,Svi DocType: Workflow State,backward,Nazad -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo jedno pravilo je dozvoljeno u jednoj roli, nivo i {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj link za odjavu apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Još nema komentara. Započnite novu raspravu. DocType: Workflow State,share,udio @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nije d apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Pogledaj Pretplatnici apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,G-đa DocType: Website Theme,Background Color,Boja pozadine -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . DocType: Portal Settings,Portal Settings,portal Postavke DocType: Web Page,0 is highest,0 je najviši apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Jeste li sigurni da želite da se prespoje ove komunikacije na {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Kontaktirajte nas Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Tražim ... DocType: Workflow State,text-width,tekst širine -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimalni Prilog Limit za ovaj rekord postignut. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimalni Prilog Limit za ovaj rekord postignut. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Sljedeći obavezna polja moraju biti popunjena:
DocType: Email Alert,View Properties (via Customize Form),Pogledajte nekretnine (preko Prilagodi obrazac) DocType: Note Seen By,Note Seen By,Napomena vidi @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Molimo Vas da provjerite e-mail adresa apps/frappe/frappe/model/document.py +903,none of,nitko od -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Pošalji kopiju meni +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Pošalji kopiju meni apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Unos korisnika Dozvole DocType: Dropbox Settings,App Secret Key,App tajni ključ apps/frappe/frappe/config/website.py +7,Web Site,Web stranice apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Označene stavke će biti prikazan na radnoj površini -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} se ne može postaviti za jedinicne vrste apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} trenutno gledate ovaj dokument DocType: ToDo,Assigned By Full Name,Dodijeljen od strane Ime i prezime apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ažurirana -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Izvještaj se ne može postaviti za vrste apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dana DocType: Email Account,Awaiting Password,čeka lozinke DocType: Address,Address Line 1,Adresa - linija 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." DocType: Print Settings,Allow Print for Draft,Dozvolite Ispis za Nacrt apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Količina -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Dostavi taj dokument da potvrdi +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Dostavi taj dokument da potvrdi DocType: Contact,Unsubscribed,Pretplatu apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Postaviti prilagođene uloge za stranicu i izvještaj apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Ocjena: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Alat za uvoz podataka DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Upload datoteke pričekajte nekoliko sekundi. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Priložite svoju sliku +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Priložite svoju sliku apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Promena vrednosti DocType: Workflow State,Stop,zaustaviti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da to grupu roditelja. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Poravnajte oznake na Left DocType: Help Article,Expert,stručnjak DocType: Workflow State,circle-arrow-right,krug sa strelicom desno DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Ne možete otvoriti primjer kada je {0} je otvoren +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Ne možete otvoriti primjer kada je {0} je otvoren apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Čekanju za instalaciju DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošalji link za odjavu @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} uklonjen DocType: Custom DocPerm,Apply User Permissions,Primjeni dozvole korisnika DocType: User,Modules HTML,Moduli HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Dozvole Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Nedostaje vrijednosti potrebne DocType: DocType,Other Settings,Ostale postavke DocType: Social Login Keys,Frappe,frape @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nosilac Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,No dokument odabranih apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Doktor DocType: Event,Event,Događaj -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Na {0}, {1} napisao:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Na {0}, {1} napisao:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete sakriti ako želite DocType: Top Bar Item,For top bar,Na gornjoj traci apps/frappe/frappe/utils/bot.py +148,Could not identify {0},nije mogao da identifikuje {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Pogreška poslužitelja : Provjerite svoje logove poslužitelja ili kontaktirajte tehničku podršku. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,E-mail dobrodošlice -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Idemo pripremiti sustav za prve upotrebe. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Idemo pripremiti sustav za prve upotrebe. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Istaknuto apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Već registracije DocType: System Settings,Float Precision,Float Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Dozvolite Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No Apps Instalirani apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označite polje kao obavezni DocType: Communication,Clicked,Kliknuli -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} DocType: User,Google User ID,Google korisnički ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Zakazan za slanje DocType: DocType,Track Seen,Seen Track @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Simultano Sessions DocType: OAuth Client,Client Credentials,akreditiva klijent -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Otvorite modul ili alat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Otvorite modul ili alat DocType: Communication,Delivery Status,Status isporuke DocType: Module Def,App Name,App Naziv apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksimalna veličina datoteke dozvoljena je {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,referentni Komunikacija DocType: Email Queue,Unsubscribe Method,Odjava Način DocType: GSuite Templates,Related DocType,Povezani DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredi za dodavanje sadržaja -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Izaberite jezike -apps/frappe/frappe/__init__.py +510,No permission for {0},Bez dozvole za {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Izaberite jezike +apps/frappe/frappe/__init__.py +509,No permission for {0},Bez dozvole za {0} DocType: DocType,Advanced,Napredan apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Izgleda API ključ ili API Tajna je u pravu !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},{0} {1}: Reference @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nema zapisa tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,uklonite Field DocType: User,Send Password Update Notification,Pošalji lozinku Update Notification -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Prilagođeni formati za tapete, E-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Ažurirani u New Version DocType: Custom Field,Depends On,Zavisi od @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Jedan od apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Molimo odaberite datoteku za kopiranje apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Prikazi tagove +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ako Nanesite Strogi korisnika Dozvola se provjerava i korisnika dozvola je definisana za DocType za korisnika, onda svi dokumenti u kojima je prazna vrijednost linka, neće biti prikazana na to User" DocType: Address,Billing,Naplata DocType: Email Queue,Not Sent,Nije poslato DocType: Web Form,Actions,Akcije @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasan apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Svaki dan događaja treba završiti na isti dan. DocType: Communication,User Tags,Korisnicki tagovi apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Fetching Slike .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Preuzimanje App {0} DocType: Communication,Feedback Request,povratne informacije Upit @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Rezervne kopije apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Dodaj kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcionalno: Uvijek poslati te IDS. Svaka e-mail adresa na novi red -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Sakrij detalje +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Sakrij detalje DocType: Workflow State,Tasks,zadataka DocType: Event,Tuesday,Utorak DocType: Blog Settings,Blog Settings,Blog podešavanja @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Napišite Python datoteku u istu mapu gdje je spremljena i povratka stupcu i rezultat. DocType: DocType,Sort Field,Sortiraj polje DocType: Razorpay Settings,Razorpay Settings,Razorpay Postavke -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","npr. Ako Nanesite korisnika Dozvole se provjerava za Izvještaj DocType ali nema korisnika Dozvole su definirane za Izvještaj za korisnika, onda svi izvještaji su pokazali da to korisnika" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Dodaj još apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,sakrij grafikon DocType: System Settings,Session Expiry Mobile,Session Istek Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Odgođen apps/frappe/frappe/config/setup.py +128,List of backups available for download,Popis backup dostupan za preuzimanje apps/frappe/frappe/www/login.html +89,Sign up,Prijaviti se DocType: Test Runner,Output,izlaz +DocType: Email Alert,Set Property After Alert,Set imovine nakon Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Dodaj polja na obrasce. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu sa PayPal konfiguraciji ovog sajta. DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,E-mail ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ako Nanesite korisnika Dozvole se pregledava za Izvještaj DocType ali ne korisnika Dozvole su definirane za Izvještaj za korisnika, onda svi Izvještaji su prikazani na to User" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Lista resursa koji će klijent aplikacija ima pristup nakon što korisnik dozvoljava.
npr projekta DocType: Translation,Translated Text,prevedeni tekst DocType: Contact Us Settings,Query Options,Opcije upita @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Podešavanje je okončano apps/frappe/frappe/config/setup.py +66,Report of all document shares,Izvještaj svih dijeljenih dokumenata apps/frappe/frappe/www/update-password.html +18,New Password,Nova lozinka -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} nedostaje +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} nedostaje apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generišu komentare DocType: Website Theme,Style using CSS,Stil pomoću CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referentna DOCTYPEhtml @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Blok Moduli apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćanje dužina na {0} za '{1}' u '{2}'; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka. DocType: Print Format,Custom CSS,Prilagođeni CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorisani: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorisani: {0} do {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Prijavite se pogreške na automatiziranim događaja ( programer) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Nevrijedi vrijednosti odvojene zarezima ( CSV datoteke ) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Uobičajeno Incoming DocType: Workflow State,repeat,ponoviti DocType: Website Settings,Banner,Baner DocType: Role,"If disabled, this role will be removed from all users.","Ako onemogućeno, ova uloga će biti uklonjena iz svih korisnika." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pomoć u pretraživanju +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoć u pretraživanju apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrovan ali sa invaliditetom DocType: DocType,Hide Copy,Sakrij kopiju apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Poništi sve uloge @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Zemlja apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adrese DocType: Communication,Shared,Zajednička -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Priložiti ispis dokumenta +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Priložiti ispis dokumenta DocType: Bulk Update,Field,polje DocType: Communication,Received,primljen DocType: Social Login Keys,Google Client ID,Google klient ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Izvjetaj upitom DocType: User,Set New Password,Postavite novu lozinku DocType: User,Github User ID,GitHub korisnički ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ako Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne možete izbrisati ili otkazati jer {0} {1} je povezan s {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne možete izbrisati ili otkazati jer {0} {1} je povezan s {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Nepoznata aplikacija {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nije važeći izvještaj formatu. Izvještaj format treba \ jedan od sledećih% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} od {1} na {2} u nizu # {3} DocType: Communication,Expired,Istekla DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Broj kolona za polje u Grid (Ukupno kolone u mrežu treba biti manji od 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Imate račun? Prija apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nepoznato Ispis Format: {0} DocType: Workflow State,arrow-down,Strelica prema dole apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,kolaps -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Zadnji put osvježen DocType: Help Article,Likes,Like DocType: Website Settings,Top Bar,Najbolje Bar DocType: GSuite Settings,Script Code,Script koda apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Stvoriti korisnika E-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,No Dozvole navedeno +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,No Dozvole navedeno apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globalne postavke: Korisnici će biti u mogućnosti da biraju pregledava ikone apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nije pronađen DocType: Custom Role,Custom Role,Custom Uloga apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Početna / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Zanemari korisnika Dozvole Ako nestale -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Sačuvajte dokument upload. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Sačuvajte dokument upload. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Unesite lozinku DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodali još jedan komentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Uredi DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odjavljeni iz Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Fold mora doći pred Odjelom Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold mora doći pred Odjelom Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zadnja izmjena Do DocType: Workflow State,hand-down,ruka-dole DocType: Address,GST State,PDV država -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Ne mozemo Odustati prije nego potvrdimo +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Ne mozemo Odustati prije nego potvrdimo DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Bilo je grešaka . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmjeriti URI Bound To Auth kod @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moja DocType: Website Theme,Text Color,Tekst u boji DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Invalid Upit -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ovaj oblik nema nikakve unos +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ovaj oblik nema nikakve unos apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sjednica isteka mora biti u obliku {0} DocType: Website Sidebar Item,Group,Grupa DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = "" _blank "" za otvaranje u novoj stranici." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Zanemari kodiranja greške. DocType: Workflow State,wrench,Ključ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ne Set -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Ugasiti prijave apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Sjedi čvrsto , dok je vaš sustav se postava . To može potrajati nekoliko trenutaka ." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Dodaj komentar DocType: DocField,Mandatory,Obavezan apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul za izvoz -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : nisu podesena osnovna prava pristupa +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : nisu podesena osnovna prava pristupa apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Vaša pretplata ističe na {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Preuzmite link za backup će biti poslana na sljedeće e-mail adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Značenje Podnijeti, Odustani, Izmijeniti" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,upit-izvještaj apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Dodijeljeno {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filteri spasio DocType: DocField,Percent,Postotak -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Molimo postavite filtere +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Molimo postavite filtere apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Povezan s DocType: Workflow State,book,knjiga DocType: Website Settings,Landing Page,Odredišna stranica -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Greška u Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Greška u Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Ime apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Uvoz Zahtjev redu za slanje. To može potrajati nekoliko trenutaka, budite strpljivi." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nema dozvole postavljen za ove kriterije. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Dozvolite Prijava koris apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemate dovoljno dozvolu da pristupite ovoj resurs. Molimo Vas da kontaktirate svog menadžera da biste dobili pristup. DocType: Custom Field,Custom,Običaj apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Postavljanje Email obavještenja uzavisnosti od različitih uslova -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Poruke podneseno je pod {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Poruke podneseno je pod {0} DocType: Email Alert,Send alert if date matches this field's value,Pošalji upozorenje ako datum odgovara vrijednost ovom području je DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Uklonite {0} i izbrisati sve podatke? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Prijavite Nakon DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Štampanje DocType: Workflow State,thumbs-up,palac gore -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail Account not setup. Molimo vas da se stvori novi e-pošte iz Setup> E-mail> e-pošte DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision treba biti između 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision treba biti između 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,i DocType: Error Snapshot,Frames,Okviri @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Link slike DocType: Auto Email Report,Report Filters,izvještaj Filteri apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,sad DocType: Workflow State,step-backward,korak unatrag -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ Naslov_aplikacije } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ Naslov_aplikacije } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ovaj rekord kako bi se omogućilo slanje na ovu e-mail adresu apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Samo obavezna polja su neophodni za nove rekorde. Možete izbrisati neobavezne kolone ako želite. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Prilozi je Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Raširi sve apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Uredan Prijava id potrebna. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Ponovno otvorena -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Vi ste otkazali plaćanje -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Odaberite valjanu CSV datoteku s podacima +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Odaberite valjanu CSV datoteku s podacima apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ne dijeli ovaj dokument sa {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Tranzicija statusa dokumenta iz {0} u {1} nije dopuštena DocType: DocType,"Make ""name"" searchable in Global Search",Marka "ime" pretraživati u Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Pomoć Kategorija apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Korisnik {0} je onemogućen apps/frappe/frappe/www/404.html +8,Page missing or moved,Page nedostaju ili preselili -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Uredi {0} svojstva DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay postavke Payment Gateway DocType: DocField,Name,Ime apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Premašili ste maksimalan prostor od {0} za svoj plan. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pretražite docs DocType: OAuth Authorization Code,Valid,Validan -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tvoj jezik +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jezik apps/frappe/frappe/desk/form/load.py +46,Did not load,Nije učitano apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj Row DocType: Tag Category,Doctypes,Doctype @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Povratna zaht DocType: Address,Lakshadweep Islands,Lakshadweep otoci apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Mogu pisati apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Određeni dokumenti , poput fakturu , ne treba mijenjati jednom finalu . Konačno stanje za takve dokumente se zove Postavio . Možete ograničiti koje uloge mogu podnijeti ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovaj izvještaj +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovaj izvještaj apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 stavka odabrana DocType: Newsletter,Test Email Address,Test-mail adresa DocType: ToDo,Sender,Pošiljaoc @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,uvoz .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument ID DocType: Print Settings,Letter,Pismo -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,polje Slika mora biti tipa Priloži sliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,polje Slika mora biti tipa Priloži sliku DocType: DocField,Columns,kolumne DocType: Async Task,Succeeded,Slijedi apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Obavezna polja potrebni u {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Tekst Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Podešavanja za O nama stranicu. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Greška Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,U +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,U DocType: Email Alert,Value Change,Vrijednost Promjena DocType: Standard Reply,Standard Reply,Standardna Odgovor apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Širina okvir za unos @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Koristite ovaj Naziv Polja za generiranje naslov apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Uvoz e-mail od apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Pozovi kao korisnika -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Odaberite priloge +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Odaberite priloge apps/frappe/frappe/model/naming.py +94, for {0},za {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Bilo je grešaka. Molimo prijavite ovo. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Molimo podesite filteri vrijednost u Izvještaju Filter tabeli. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Učitavanje izvješće +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Učitavanje izvješće apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaša pretplata ističe danas. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priloži datoteke @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionalni Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Ostavite ovaj razgovor -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opcije nije postavljen za link polju {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcije nije postavljen za link polju {0} DocType: Customize Form,"Must be of type ""Attach Image""",Mora biti tipa "Attach Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Odznačite sve apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Ne možete nevezanog "Samo za čitanje" za oblast {0} @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Biljeske apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Greška Report apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Povratne informacije uslovi ne odgovaraju -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline polje mora biti valjan Naziv Polja +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline polje mora biti valjan Naziv Polja DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nova lozinka je poslana mailom apps/frappe/frappe/auth.py +245,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Email Account,Email Sync Option,E-mail Sync Opcija @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardni odgovori na uobičajene upite. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Uobičajeno Slanje DocType: Workflow State,volume-off,volumen-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Vole {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Vole {0} DocType: Footer Item,Footer Item,footer Stavka ,Download Backups,Download Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Početna / Test Mapa1 @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Tekst Poravnajte apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0} DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Pokaži sve podatke -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" apps/frappe/frappe/config/core.py +7,Documents,Dokumenti DocType: Email Flag Queue,Is Completed,je završen apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ovo polje će se pojaviti samo ako Naziv Polja ovdje definiran ima vrednost ili pravila su istinite (primjeri): myfield EVAL: doc.myfield == 'Moja Vrijednost' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,danas +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,danas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste postavili to, korisnici će biti samo u mogućnosti pristupa dokumentima ( npr. blog post ) gdje jeveza postoji ( npr. Blogger ) ." DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Errors DocType: User,Bio,Bio @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 zvijezda kao najniža i 5 zvezdica što najviše ocjene DocType: Event,Ref Name,Ref. Ime DocType: Web Page,Center,Centar +DocType: Email Alert,Value To Be Set,Vrijednosti za podešavanje apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Prvog nivoa DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Predstavlja državama dozvoljeno u jednom dokumentu i uloga dodijeljena za promjenu stanja. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Refresh obrazac @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Ima Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ime DocType treba počinjati slovom i može se sastojati samo od slova, brojeva, prostora i donje crte" DocType: Communication,Spam,Neželjena pošta DocType: Integration Request,Integration Request,integracija Upit -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Poštovani +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Poštovani DocType: Address,Maharashtra,maharashtra DocType: Address,Accounts User,Računi korisnika DocType: Web Page,HTML for header section. Optional,HTML za sekcije zaglavlja. Opcija apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ova funkcija je potpuno nov i još uvijek eksperimentalna -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimalne {0} redovi dopušteno +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimalne {0} redovi dopušteno DocType: Email Unsubscribe,Global Unsubscribe,Global Odjava apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ovo je vrlo čest lozinku. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Pogled DocType: Communication,Assigned,Dodijeljeno DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Odaberite format ispisa +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Odaberite format ispisa apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,obrasci Kratki tastatura je lako pogoditi DocType: Portal Settings,Portal Menu,portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Dužina {0} treba biti između 1 i 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Korisnik ne može tražiti apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Invalid Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,Nanesite ovo pravilo ako je Korisnik je vlasnik -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Će biti vaš ID za prijavljivanje +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Će biti vaš ID za prijavljivanje apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Izrada izvještaja DocType: Note,Notify users with a popup when they log in,Obavijesti korisnicima popup kada se prijavite apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novu metu za spajanje" @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,uloge Dopuštenje apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ažurirati DocType: Error Snapshot,Snapshot View,Snapshot Pogledaj apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,pre> {0} godina (e) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Uredi osobine DocType: Patch Log,List of patches executed,Lista zakrpa pogubljeni apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} već odjavljeni -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Srednja komunikacija +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Srednja komunikacija DocType: Website Settings,Banner HTML,HTML baner apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Odaberite drugi način plaćanja. Razorpay ne podržava transakcije u valuti '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Čekanju za backup. To može potrajati nekoliko minuta do sat vremena. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registracija OAuth Klijent App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} {1} ili apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Prikaz ili Sakrij Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Password Update @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Pokaži Line Breaks nakon Sekcije DocType: Blogger,Short Name,Kratki naziv apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Strana {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Birate Sync opciju kao svega, to će resync sve \ čitati kao i nepročitane poruke sa servera. To može dovesti do dupliranja \ komunikacije (e-pošte)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Files Size @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,Kupovina Manager DocType: Custom Script,Sample,Uzorak apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizirani Tagovi DocType: Event,Every Week,Svaki tjedan +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail Account not setup. Molimo vas da se stvori novi e-pošte iz Setup> E-mail> e-pošte apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliknite ovdje za provjeru upotrebe ili nadograditi na viši plan DocType: Custom Field,Is Mandatory Field,Je obvezno polje DocType: User,Website User,Web User @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,Olovka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat poruke i druga obavjestenja. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Ubacite Nakon ne može se postaviti kao {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Ubacite Nakon ne može se postaviti kao {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podijelio {0} sa apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-mail postavljanje računa molimo unesite lozinku za: DocType: Workflow State,hand-up,ruka-gore DocType: Blog Settings,Writers Introduction,Pisci Uvod DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Greška pri evaluaciji e-mail upozorenja {0}. Molimo vas da popravite svoj predložak. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Greška pri evaluaciji e-mail upozorenja {0}. Molimo vas da popravite svoj predložak. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Odaberite tip dokumenta ili ulogu za početak. DocType: Contact,Passive,Pasiva DocType: Contact,Accounts Manager,Računi Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Vaša uplata je otkazan. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Select File Type DocType: Help Article,Knowledge Base Editor,Baza znanja Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stranica nije pronađena @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Vrsta nekretnine DocType: Workflow State,screenshot,slika ekrana apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Samo administrator može uštedjeti standardne izvješće. Molimo preimenovati i spasiti. DocType: System Settings,Background Workers,Pozadina Radnici +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} u sukobu sa meta objekta DocType: Deleted Document,Data,Podaci apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Napravili ste {0} od {1} @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Show Dozvole korisnika apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i imati sustav Manager ulogu da bi mogli pristupiti sigurnosne kopije . apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ostali -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Sačuvajte prije pričvršćivanja. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Sačuvajte prije pričvršćivanja. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Uobičajeno tema je postavljena u {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ne mogu se mijenjati iz {0} u {1} u redu {2} @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Postavke sustava apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start nije uspjelo apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ova e-mail je poslan {0} i kopirati u {1} DocType: Workflow State,th,og -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Molimo vas default postavljanje e-pošte iz Setup> E-mail> e-pošte -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Stvaranje nove {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Stvaranje nove {0} DocType: Email Rule,Is Spam,je spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Izvještaj {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Otvorena {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otvorena {0} DocType: OAuth Client,Default Redirect URI,Uobičajeno Redirect URI DocType: Email Alert,Recipients,Primatelji DocType: Workflow State,ok-sign,ok-prijava @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Članci pomoći ,Modules Setup,Podešavanja modula apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tip: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Vaša uplata nije uspjela. DocType: Communication,Unshared,nedjeljiv DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nije pronađen @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,imidž brenda DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavljanje gornjoj navigacijskoj traci, podnožje i logo." DocType: Web Form Field,Max Value,Max vrijednost -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} DocType: Contact,All,Sve DocType: Email Queue,Recipient,Primalac DocType: Communication,Has Attachment,ima Prilog @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,poravnanje-desno DocType: Auto Email Report,Email To,E-mail Da apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} nije prazna DocType: Page,Roles,Uloge -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Polje {0} se ne može odabrati . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Greška: Vrijednost nedostaje za {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Polje {0} se ne može odabrati . DocType: System Settings,Session Expiry,Sjednica isteka DocType: Workflow State,ban-circle,zabrana-krug DocType: Email Flag Queue,Unread,nepročitanu @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Profil Zadano apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Stvori novo DocType: Workflow State,chevron-down,Chevron-dolje -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail ne šalju {0} (odjavljeni / invaliditetom) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail ne šalju {0} (odjavljeni / invaliditetom) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmanja Valuta Frakcija Vrijednost apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Dodijeliti @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Od DocType: Website Theme,Google Font (Heading),Google Font (tarifni) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Odaberite grupu čvora prvi. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Nađi {0} u {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Nađi {0} u {1} DocType: OAuth Client,Implicit,implicitan DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Dodavanje komunikacije protiv ovog DOCTYPE (mora imati polja, ""Status"", ""Subject"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI za prijem kod autorizacije jednom korisniku omogućava pristup, kao i odgovore neuspjeh. Obično je REST Endpoint izloženi od strane Klijenta App.
npr http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon dostavljanja +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon dostavljanja DocType: Communication,Comment Type,Komentar Type DocType: OAuth Client,OAuth Client,OAuth Klijent apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Korisnici @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nije moguće čitati format za {0} DocType: Auto Email Report,Filter Data,filter podataka apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodavanje tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Molimo priložite datoteku prva. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Molimo priložite datoteku prva. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dolazne e-pošte računa nije ispravan apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,E-mail poslan DocType: DocField,Ignore XSS Filter,Zanemari XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,udaljen apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,postavke Dropbox backup -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Pošalji kao email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Pošalji kao email DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Korisnik {0} se ne može isključiti apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Dragi System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tvoja država +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tvoja država DocType: Event,Sunday,Nedjelja apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,U Grid View DocType: Address Template,Template,Predložak @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP Postavke apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Izmenama apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal postavke payment gateway -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) će dobiti skraćeni, kao i maksimalno dozvoljenih znakova je {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) će dobiti skraćeni, kao i maksimalno dozvoljenih znakova je {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resource Vlasnik Password akreditiva DocType: OAuth Client,Response Type,Tip odgovor apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Korisnici @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Stol DocType: File,File Size,Veličina apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Morate prijaviti da podnesu ovaj obrazac DocType: User,Background Image,Pozadinska slika -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Izaberite svoju zemlju, vremensku zonu i valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,između DocType: Async Task,Queued,Na čekanju @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Stvoriti apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nevažeći filter: {0} DocType: Email Account,no failed attempts,no neuspjelih pokušaja +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Default Adresa Template pronađeno. Molimo vas da se stvori novi iz Setup> Printing i brendiranje> Adresa Obrazac. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Access Token @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub korisničko ime DocType: DocType,Image View,Prikaz slike apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Izgleda kao da je nešto pošlo po zlu u transakciju. Pošto nismo potvrdili plaćanje, PayPal automatski će vam vratiti taj iznos. Ako se to ne desi, pošaljite nam e-mail, a spomenuti korelacije ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Uključuju simbole, brojeve i slova u lozinku" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Ubacite Nakon polje '{0}' navedenih u Custom Field '{1}', s etiketom '{2}', ne postoji" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Uključuju simbole, brojeve i slova u lozinku" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Ubacite Nakon polje '{0}' navedenih u Custom Field '{1}', s etiketom '{2}', ne postoji" DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Pokaži Ispis Prvo apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter da biste odgovorili @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Datoteka '{0}' nije pronađena apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Uklonite točki DocType: User,Change Password,Promjena lozinke -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Nevažeći email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Zdravo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Nevažeći email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Zdravo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Kraj događaj mora biti nakon početka apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nemate dozvolu da dobijete izvještaj na: {0} +DocType: System Settings,Apply Strict User Permissions,Nanesite Strogi Dozvole korisnika DocType: DocField,Allow Bulk Edit,Dozvolite Bulk Uredi DocType: Blog Post,Blog Post,Blog članak -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Napredna pretraga +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Napredna pretraga apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Password Reset upute su poslani na e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivo 0 je za dozvole nivou dokumenta, \ višim nivoima za dozvole na terenu." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,Ukinuto DocType: Web Page,Sidebar and Comments,Sidebar i Komentari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kada Izmijeniti dokument nakon Odustani i spasiti ga , on će dobiti novi broj koji jeverzija starog broja ." DocType: Stripe Settings,Publishable Key,objaviti Key -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,pre> {0} godina (e) DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache poslužitelj nije pokrenut. Molimo kontaktirajte Administrator / Tech podršku apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party ime -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Napravite novi zapis +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Napravite novi zapis apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pretraživanje DocType: Currency,Fraction,Frakcija DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Izaberite neku od postojećih priloge +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Izaberite neku od postojećih priloge DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail Inbox @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Dopuštenje Razina DocType: User,Send Notifications for Transactions I Follow,Slanje obavijesti za transakcije pratim -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne mogu postaviti Podnijeti , Odustani , Izmijeniti bez zapisivanja" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati prilog? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne možete izbrisati ili otkazati jer {0} {1} je povezan s {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

nađeni za 'Nema rezultata

-apps/frappe/frappe/__init__.py +1063,Thank you,Hvala +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne možete izbrisati ili otkazati jer {0} {1} je povezan s {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Hvala apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Snimanje DocType: Print Settings,Print Style Preview,Prikaz stila ispisa apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,U prikazu popisa DocType: Email Account,Use TLS,Koristi TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neispravno korisničko ime ili lozinka apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj sopstveni JavaScript na obrasce. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No ,Role Permissions Manager,Menadzer prava pristupa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,jasno Prilog +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,jasno Prilog apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obavezno: ,User Permissions Manager,Upravljanje pravima pristupa DocType: Property Setter,New value to be set,Nova vrijednost treba postaviti @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Prije apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu. DocType: Workflow State,Time,Vrijeme DocType: DocField,Attach,Priložiti -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći Naziv Polja. To bi trebalo da bude {{}} field_name. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Pošalji povratne informacije Zahtjev samo ako postoji barem jedan komunikacija je na raspolaganju za taj dokument. DocType: Custom Role,Permission Rules,Dopuštenje Pravila DocType: GSuite Settings,GSuite Settings,GSuite Postavke DocType: Address,Links,Linkovi -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vrijednost nestao +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vrijednost nestao apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Dodaj podređenu stavku -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sacuvani zapis se ne može se izbrisati. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Veličina DocType: GSuite Templates,Template Name,template Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,novi tip dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,novi tip dokumenta DocType: Custom DocPerm,Read,Čitati DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Dozvola za Page i Izvještaj apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost apps/frappe/frappe/www/update-password.html +14,Old Password,Old Password -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Postova od {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Postova od {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Za formatiranje stupaca, daju natpise stupaca u upitu." DocType: Has Domain,Has Domain,ima Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nemate korisnički račun? Prijaviti se -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Izmijeni prava pristupa DocType: Communication,Link DocType,link DocType @@ -2336,7 +2340,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Pobrinite se da vaš profil ima e-mail adresu apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Vi niste spremili promjene u ovom obliku . DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Uobičajeno za {0} mora biti opcija DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija DocType: User,User Image,Upute slike apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailovi su prigušeni @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Sljedeće DocType: Workflow State,ok,u redu DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ove vrijednosti će se automatski ažuriraju u prometu, te će također biti korisno ograničiti dozvole za ovog korisnika o transakcijama koje sadrže te vrijednosti." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Izdavač -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Neuspjesno:{0} na:{1} : {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Neuspjesno:{0} na:{1} : {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Odaberite Obavezno apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Izaberi apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,poslani e-mailovi @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Molimo nadogradite da dodate više od {0} pretplatnika DocType: Workflow State,hand-left,ruka-lijeva -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Tip Polja {0} {1} za ne može biti jedinstvena DocType: Email Account,Use SSL,Koristite SSL DocType: Workflow State,play-circle,play-krug apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Odaberite Format Edit @@ -2436,7 +2440,7 @@ DocType: DocField,No Copy,Ne Kopirajte DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Prijavite se LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ako Vlasnik +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ako Vlasnik DocType: OAuth Authorization Code,Expiration time,vrijeme isteka DocType: Web Page,Website Sidebar,Sajt Sidebar DocType: Web Form,Show Sidebar,Pokaži Sidebar @@ -2456,7 +2460,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},nisu mogli naći apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Imena i prezimena sami lako pogoditi. apps/frappe/frappe/config/website.py +93,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,aktovka -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} DocType: Feedback Request,Is Manual,je ručna DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil predstavlja boju gumba: Uspjeh - zelena, opasnosti - Crvena, Inverzni - crna, Primarni - tamnoplava, info - svjetlo plava, upozorenje - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ne Izvješće Loaded. Molimo koristite upita izvješće / [Prijavi Ime] pokrenuti izvješće. @@ -2533,7 +2537,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,napredak apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,prema ulozi apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Polja koja nedostaju apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Nevažeći Naziv Polja '{0}' u autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Traži u vrsti dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Traži u vrsti dokumenta apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Dopustite da ostanu na terenu uređivati čak i nakon podnošenja DocType: Custom DocPerm,Role and Level,Uloga i Level DocType: File,Thumbnail URL,Thumbnail URL @@ -2550,18 +2554,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Više informacija DocType: Desktop Icon,Desktop Icon,desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Vaša uplata je uspješno prihvaćen +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Vaša uplata je uspješno prihvaćen apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Žao mi je! Nemate prava za pregled ove stranice. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Savjet: Dvaput kliknite ćeliju za uređivanje DocType: Workflow State,bell,zvono apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Greška u e-mail upozorenja apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dijele ovaj dokument +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Dozvole Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} Ne može biti čvor nultog stupnja , kad ima djecu" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Dodaj Prilog +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodaj Prilog DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Hvala vam za vašu poruku -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Pošalji Pročitajte Prijem +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Pošalji Pročitajte Prijem DocType: Stripe Settings,Stripe Settings,Stripe Postavke DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup preko stranice Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Invalid Token Prijava @@ -2638,6 +2643,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Upozorenje: Ovaj format ispisa u starom stilu i ne može biti generiran preko API-ja. DocType: DocField,Print Width,Širina ispisa ,Setup Wizard,Čarobnjak za postavljanje +DocType: Address,GST State Number,PDV država Broj DocType: User,Allow user to login only before this hour (0-24),Dopustite korisniku da se prijaviti samo prije ovoliko sati (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder je obavezno apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2663,7 +2669,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Mali Tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} preko IP adresa {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,jednak -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml' DocType: About Us Settings,Team Members Heading,Članovi tima Naslov apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Invalid CSV format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Broj Backup @@ -2674,7 +2680,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Autentičnosti treće strane DocType: Website Settings,Banner is above the Top Menu Bar.,Baner je iznad gornjeg menija. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Izvoz Izvještaj: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Izvoz Izvještaj: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ne postoji DocType: Email Account,Port,luka DocType: Print Format,Arial,Arial @@ -2697,7 +2703,7 @@ DocType: Kanban Board Column,Column Name,Kolona Ime DocType: Language,Based On,Na osnovu apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Make Uobičajeno apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Provjerite Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Tip Polja {0} {1} za ne mogu biti indeksirane DocType: Communication,Email Account,Email nalog DocType: Workflow State,Download,Preuzimanje DocType: Blog Post,Blog Intro,Blog intro @@ -2708,7 +2714,7 @@ DocType: Web Page,Insert Code,Umetnite kod DocType: ToDo,Low,Nizak apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Možete dodati dinamičke osobine iz dokumenta pomoću Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nevažeći limit {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Popis vrstu dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis vrstu dokumenta DocType: Event,Ref Type,Ref. Tip apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako upload nove rekorde, napustiti ""ime"" (ID) kolonu prazan." DocType: Address,Chattisgarh,Chattisgarh @@ -2730,25 +2736,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF DocType: Web Form,Amount,Iznos DocType: Workflow Transition,Allowed,Dopušteno -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Ne može pisati format za {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Vraćanje na standardne postavke? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nevažeća naslovnica apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Neuspješno logovanje. Pokušaj ponovo. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opcije potrebne za Link ili tip Tabela polje {0} u redu {1} DocType: Auto Email Report,Send only if there is any data,Pošalji samo ako postoji bilo koji podatak apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset Filteri -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija na nivou 0 mora biti postavljena prije vecih nivoa autorizacije +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : Autorizacija na nivou 0 mora biti postavljena prije vecih nivoa autorizacije apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zadatak zatvorio / la {0} DocType: Integration Request,Remote,daljinski -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Izračunaj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Molimo najprije odaberite DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdi Vaš e-mail apps/frappe/frappe/www/login.html +42,Or login with,Ili se prijavite sa DocType: Error Snapshot,Locals,Mještani apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Komunicirali preko {0} na {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} vas je spomenuo komentaru {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} je potrebno DocType: Integration Request,Integration Type,integracija Tip DocType: Newsletter,Send Attachements,Pošalji Attachements @@ -2758,14 +2764,14 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Događanja u današnjem kalendaru DocType: Web Page,Web Page,Web stranica DocType: Blog Category,Blogger,Bloger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Global Search "nije dozvoljeno tipa {0} u redu {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Prikaz liste -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum mora biti u formatu: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum mora biti u formatu: {0} DocType: Workflow,Don't Override Status,Ne zamenjuju Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Molim Vas, dajte ocjenu." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Upit apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,pojam za pretragu -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Prvo Korisnik : Vi +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Prvo Korisnik : Vi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Select Columns DocType: Translation,Source Text,izvorni tekst apps/frappe/frappe/www/login.py +55,Missing parameters for login,Nedostaje parametri za prijavu @@ -2787,7 +2793,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Uvoz DocType: ToDo,Assigned By,Dodijeljen od strane apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Možete koristiti Prilagodi obrazac za postavljanje razine na poljima . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Izaberite svoj region +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Izaberite svoj region DocType: Custom DocPerm,Level,Nivo DocType: Custom DocPerm,Report,Izvjestaj apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0. @@ -2807,7 +2813,7 @@ DocType: Website Theme,Background,Pozadina DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lista DocTypes koristi za primjenu korisnika Dozvole. Ako prazan, svi povezani DocTypes će se koristiti da se prijave korisnika Dozvole." DocType: Report,Ref DocType,Ref. DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Molimo dodajte ocjenu -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Je Dijete Tablica apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} mora biti jedan od {1} @@ -2822,7 +2828,7 @@ DocType: Website Slideshow,This goes above the slideshow.,To ide iznad slideshow apps/frappe/frappe/config/setup.py +260,Install Applications.,Instaliranje programa . DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nema upozorenja za danas +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nema upozorenja za danas DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Pošalji E-mail Ispis privitaka u PDF (preporučeno) DocType: Web Page,Left,Lijevo DocType: Event,All Day,Cijeli dan @@ -2836,7 +2842,7 @@ DocType: Event,Send an email reminder in the morning,Pošaljite email podsjetnik DocType: Blog Post,Published On,Objavljeno Dana DocType: Contact,Gender,Rod apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obavezna nedostaju informacije: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Samo 200 umetke dozvoljeno u jednom zahtjevu DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referentna Tip @@ -2849,7 +2855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Znak upozorenja DocType: Workflow State,User,Korisnik DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Pokaži naslov u prozoru preglednika kao "prefiks - naslovom" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,teksta u tipa dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teksta u tipa dokumenta apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Run Testovi apps/frappe/frappe/handler.py +91,Logged Out,odjavio apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Više ... @@ -2874,13 +2880,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Trenutno Pregled DocType: DocField,Default,Podrazumjevano apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} je dodao -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Pretraži stranice za '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Pretraži stranice za '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Molimo da najprije spasiti izvještaj apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} pretplatnika dodano apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne nalazi se u DocType: Workflow State,star,zvijezda -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Vrijednosti razdvojene zarezom -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Vrijednosti razdvojene zarezom +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max širina vrste valute je 100px u redu {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Molimo vas da podijelite svoje povratne informacije za {0} apps/frappe/frappe/config/website.py +13,Content web page.,Sadržaj web stranice. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj novu ulogu @@ -2898,7 +2904,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nije važeći LDAP korisnik apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nije validan uslov apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Odaberite drugi način plaćanja. PayPal ne podržava transakcije u valuti '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Polje za pretragu {0} nije važeća +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Polje za pretragu {0} nije važeća DocType: Workflow State,ok-circle,ok-krug apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Možete naći stvari tražeći 'Pronađite narančaste kupce' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Žao mi je! Korisnik treba imati potpuni pristup na svoje rekord. @@ -2958,7 +2964,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst koji će biti prikazani na Link na web stranicu ako se ovaj oblik ima web stranice. Link ruta će biti automatski na osnovu `` page_name` i parent_website_route` DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Molimo postavite {0} Prvi +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Molimo postavite {0} Prvi DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Zakrpa DocType: Async Task,Failed,Nije uspio diff --git a/frappe/translations/ca.csv b/frappe/translations/ca.csv index 71fe3a6ab8..aa21243170 100644 --- a/frappe/translations/ca.csv +++ b/frappe/translations/ca.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Username DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: No es permeten diverses sessions en el cas dels dispositius mòbils apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},bústia de correu electrònic habilitat per a l'usuari {usuaris} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No es pot enviar aquest correu electrònic. Vostè ha creuat el límit d'enviament de missatges de correu electrònic {0} per a aquest mes. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Presentar permanentment {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Presentar permanentment {0}? DocType: Address,County,comtat DocType: Workflow,If Checked workflow status will not override status in list view,Si l'estat de flux de treball facturat no anul·larà l'estat a la vista de llista apps/frappe/frappe/client.py +280,Invalid file path: {0},Ruta no vàlida fitxer: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Selecci apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Arbre DocType: User,User Emails,Els correus electrònics d'usuaris DocType: User,Username,Nom d'usuari -apps/frappe/frappe/model/base_document.py +581,Value too big,Valors molt alts +apps/frappe/frappe/model/base_document.py +580,Value too big,Valors molt alts DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Prova d'execució de seqüència DocType: Contact,Department,Departament @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Registres DocType: Custom DocPerm,This role update User Permissions for a user,Aquesta actualització de rol canvia permisos d'usuari per a un usuari apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Canviar el nom {0} DocType: Workflow State,zoom-out,menys-zoom -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,No es pot obrir {0} quan la instància està oberta +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,No es pot obrir {0} quan la instància està oberta apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Taula {0} no pot estar buit apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,With Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,imatges DocType: Communication,Reference Owner,referència propietari DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Unitat més petita fracció de circulació (moneda). Per exemple, 1 cèntim per USD i ha de ser ingressat com 0.01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Fila" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Fila" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Si us plau, donar-li un nom complet." apps/frappe/frappe/model/document.py +904,Beginning with,a partir de apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Plantilla d'importació de dades apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Pare DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Si està activat, la fortalesa de la contrasenya s'aplicarà en funció del valor mínim contrasenya Score. Un valor de 2 sent mig fort i 4 sent molt fort." DocType: About Us Settings,"""Team Members"" or ""Management""","""Membres de l'equip"" o ""Gestió""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Valor predeterminat pels tipus ""Check"" ha de ser '0' o '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Valor predeterminat pels tipus ""Check"" ha de ser '0' o '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Ahir DocType: Contact,Designation,Designació DocType: Test Runner,Test Runner,Prova Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Es publica Camp DocType: Email Group,Email Group,Grup correu electrònic DocType: Note,Seen By,Vist per apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Afegir múltiple -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Not Com +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Not Com apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Defineix l'etiqueta de visualització per al camp apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valor incorrecte: {0} ha de ser {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Canviar les propietats de camp (amagar, de només lectura, el permís etc.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Configura apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador de sessió DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opcions de contacte, com ""Consulta comercial, Suport"" etc cadascun en una nova línia o separades per comes." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Descarregar -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insereix +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insereix apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccioneu {0} DocType: Print Settings,Classic,Clàssic DocType: Desktop Icon,Color,Color @@ -121,7 +121,7 @@ DocType: Translation,Translation,traducció apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instal·lar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Sr DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Aquesta forma s'ha modificat després d'haver carregat +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Aquesta forma s'ha modificat després d'haver carregat DocType: User Permission for Page and Report,User Permission for Page and Report,El permís d'usuari per Pàgina i Informe DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format",Si no s'estableix la precisió de divises dependrà de format de nombre @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Raó apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Si us plau, especifiqui l'usuari" DocType: Email Unsubscribe,Email Unsubscribe,Cancel·la la subscripció de correu electrònic DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccioneu una imatge d'ample aprox 150px amb fons transparent per obtenir millors resultats. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,El primer usuari es convertirà en l'Administrador del sistema (que pot canviar això més endavant). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,El primer usuari es convertirà en l'Administrador del sistema (que pot canviar això més endavant). ,App Installer,Aplicació Instal·lador DocType: Workflow State,circle-arrow-up,cercle de fletxa amunt apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Pujant ... DocType: Email Domain,Email Domain,domini de correu electrònic DocType: Workflow State,italic,itàlic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Per a tothom -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: No es pot establir d'importació sense Crea +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: No es pot establir d'importació sense Crea apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Esdeveniments i altres calendaris. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Tots els camps són necessaris per enviar el comentari. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Arrossega per ordenar les columnes @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Menú Barra Lateral Estàndard apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,No es pot eliminar d'Interior i Adjunts carpetes apps/frappe/frappe/config/desk.py +19,Files,Arxius apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Permisos d'aconseguir aplicar en usuaris amb base en el rols que se'ls assigna. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,No et permet enviar missatges de correu electrònic relacionats amb aquest document -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Seleccioneu almenys 1 columna d'{0} per ordenar / grup +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,No et permet enviar missatges de correu electrònic relacionats amb aquest document +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Seleccioneu almenys 1 columna d'{0} per ordenar / grup DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Comprovar això si està provant el pagament mitjançant l'API de Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,No se li permet eliminar un tema web estàndar DocType: Feedback Trigger,Example,Exemple @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Els subscriptors totals apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un paper no té accés al nivell 0, els nivells més alts llavors no tenen sentit." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Guardar com DocType: Communication,Seen,Vist -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Mostra més detalls +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Mostra més detalls DocType: System Settings,Run scheduled jobs only if checked,Executar els treballs programats només si s'activa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,només es mostrarà si s'habiliten els títols de secció apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arxiu @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Mostra gràfic apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Es requereix un nom i correu electrònic vàlid DocType: DocType,Hide Heading,Amaga Rubro DocType: Address,Current,actual -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,documents relacionats apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grups de doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-circle @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filtre apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} no pot tenir caràcters especials com {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Actualitzar molts valors al mateix temps. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Error: Document ha estat modificat després de que l'hagis obert -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"No s'ha trobat la plantilla d'adreces per defecte. Si us plau, crear una nova des Configuració> Premsa i Branding> plantilla de direcció." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} desconnectat: {1} DocType: Address,West Bengal,Bengala Occidental -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assignar Enviar si no submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: No es pot establir Assignar Enviar si no submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrat per "{0}" DocType: Salutation,Administrator,Administrador @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Títol del blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,funcions estàndard no es poden desactivar DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,No es pot utilitzar sub-consulta per tal de +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,No es pot utilitzar sub-consulta per tal de DocType: Web Form,Button Help,El botó d'ajuda DocType: Kanban Board Column,purple,porpra DocType: About Us Settings,Team Members,Membres de l'equip @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Aconsegueix apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","La seva subscripció expira el {0}. Per renovar, {1}." DocType: Workflow State,plus-sign,signe més apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuració ja completa -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} no està instal·lat +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} no està instal·lat DocType: Workflow State,Refresh,Refrescar DocType: Event,Public,Públic apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,No hi ha res a mostrar @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Em va agradar Pe apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Suport per correu electrònic DocType: DocField,Print Hide If No Value,Imprimir amaga Si No Valor DocType: Event,yellow,groc -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Es publica camp ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Es publica camp ha de ser un nom de camp vàlid apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Carregar document adjunt DocType: Block Module,Block Module,Mòdul de bloc apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Exportar plantilla @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Cerc DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Una nova compte ha estat creat per a vostè en {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Les instruccions enviades per correu electrònic -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Introduïu correu electrònic del destinatari (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Introduïu correu electrònic del destinatari (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Bandera de correu electrònic de la cua apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,No pot identificar obert {0}. Intentar una altra cosa. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,ID de missatge DocType: Property Setter,Field Name,Nom del camp apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite no està configurat. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,o -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nom del mòdul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continuar +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nom del mòdul ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuar DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,certificat DocType: User,Tile,Rajola @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostra totes les versions DocType: Workflow State,Print,Impressió DocType: User,Restrict IP,Restringir IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,panell apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,No es poden enviar missatges de correu electrònic en aquest moment apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Busca o escriu una ordre DocType: Communication,Timeline Name,Nom de la línia de temps @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Gerent de vendes apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Un últim pas apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Nom del tipus de document (DOCTYPE) que vols vincular a aquest camp,per exemple al Client" DocType: User,Roles Assigned,Funcions assignades -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Cerca Ajuda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Cerca Ajuda DocType: Top Bar Item,Parent Label,Etiqueta de Pares apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","La seva petició ha estat rebuda. Li contestarem en breu. Si vostè té alguna informació addicional, si us plau respongui a aquest correu." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Els permisos es tradueixen automàticament als informes estàndard i recerques. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edita Capçalera DocType: File,File URL,URL del fitxer DocType: Version,Table HTML,taula HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No hi ha resultats per a 'resultats

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Afegir Subscriptors apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Pròxims esdeveniments per avui DocType: Email Alert Recipient,Email By Document Field,Email per camp del document @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Quantitat basada en el Camp apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,L'usuari és obligatori per Compartir DocType: DocField,Hidden,Ocult DocType: Web Form,Allow Incomplete Forms,Permetre formes incompletes -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} s'ha d'establir primer +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} s'ha d'establir primer apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Utilitzar algunes paraules, evitar frases comuns." DocType: Workflow State,plane,avió -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Vaya. El seu pagament ha fallat. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Siestàs carregant nous registres, ""Naming Series"" és obligatori, si està present." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Rep alertes Avui +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Rep alertes Avui apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE només es pot canviar el nom per Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},canvi de valor de {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Si us plau, consultar el seu correu electrònic per a la verificació" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,La carpeta no pot estar en l'extrem del formulari DocType: Communication,Bounced,Rebotats DocType: Deleted Document,Deleted Name,nom esborrat apps/frappe/frappe/config/setup.py +14,System and Website Users,Usuaris de sistema i lloc web @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,document en cua DocType: GSuite Templates,Destination ID,ID de destinació DocType: Desktop Icon,List,Llista DocType: Communication,Link Name,Nom de l'enllaç -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,El camp {0} a la fila {1} no pot ser ocultat i obligatori sense valor predeterminat DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Contrasenya invàlida: DocType: Print Settings,Send document web view link in email,Enviar document internacionalització del link a l'email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,La seva opinió de document {0} es guarda correctament apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Anterior -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} files de {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Parts de moneda. Per exemple ""Cèntims""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Seleccioneu el fitxer pujat @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Enllaç apps/frappe/frappe/utils/file_manager.py +96,No file attached,No hi ha cap arxiu adjunt DocType: Version,Version,Versió DocType: User,Fill Screen,Omplir pantalla -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No es pot mostrar aquest informe d'arbre, a causa de dades que insuficients El més probable és que queden filtrats pels permisos." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Si us plau, compte de correu electrònic per defecte la configuració de configuració> Correu electrònic> compte de correu electrònic" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No es pot mostrar aquest informe d'arbre, a causa de dades que insuficients El més probable és que queden filtrats pels permisos." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleccioneu Arxiu apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edita a través Pujar -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Tipus de document ..., per exemple, al client" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipus de document ..., per exemple, al client" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La condició '{0}' no és vàlida DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Afegir les seves pròpies traduccions @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Dimecres apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","A part de regles de permisos basats en funcions, pot aplicar permisos d'usuari basat en doctypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Aquests permisos s'aplicaran a totes les transaccions en què es vincula el registre permès. Per exemple, si la Companyia C s'afegeix als permisos d'usuari d'usuari X, l'usuari X només serà capaç de veure les transaccions que té l'empresa C com un valor vinculat." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Camp d'imatge ha de ser un nom de camp vàlid DocType: OAuth Client,Token,simbòlic DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (name) of the entity whose property is to be set apps/frappe/frappe/limits.py +82,"To renew, {0}.","Per renovar, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Sidebar Items apps/frappe/frappe/installer.py +125,App {0} already installed,Aplicació {0} ja instal·lat DocType: Workflow State,exclamation-sign,Signe d'exclamació apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostra Permisos -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,camp de línia de temps ha de ser un vincle o enllaç dinàmic apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rang de dates apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Pàgina {0} de {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Presen apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","clau de xifrat no és vàlid, Si us plau, comproveu site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,A DocType: Kanban Board Column,darkgrey,gris fosc -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Exitosa: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Exitosa: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"No es poden canviar els detalls de l'usuari en demostració. Si us plau, registrar-se per un nou compte a https://erpnext.com" apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Si us plau, duplicar aquesta per fer canvis" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generació de PDF fracassar a causa dels vincles d'imatge trencats @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Plegable apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saved apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,En què necessites ajuda? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcions per seleccioni. Cada opció en una nova línia. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Cancel·lar Permanentment {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Cancel·lar Permanentment {0}? DocType: Workflow State,music,Música DocType: Web Page,Settings,Ajustos apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Si us plau, especifiqui tipus de document" DocType: Print Format,Style Settings,Ajustos -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Ordenar camp {0} ha de ser un nom de camp vàlid apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Més DocType: Contact,Sales Manager,Gerent De Vendes apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Canviar el nom DocType: Print Format,Format Data,Format de dades -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Com +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Com DocType: Customize Form Field,Customize Form Field,Personalitzar camps de formulari apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Permetre a l'usuari DocType: OAuth Client,Grant Type,Tipus de subvenció apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Comproveu que els documents són llegibles per un usuari apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Llistat d'aplicació no permès -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Utilitza % com a comodí -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domini de correu electrònic no està configurat per a aquest compte, crear-ne un?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Utilitza % com a comodí +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domini de correu electrònic no està configurat per a aquest compte, crear-ne un?" DocType: User,Reset Password Key,Restabliment de contrasenya DocType: Email Account,Enable Auto Reply,Habilita resposta automàtica apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,No Vist @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Ajusta només una vegada DocType: Email Queue Recipient,Email Queue Recipient,Cua de correu electrònic de destinataris DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nom d'usuari {0} ja existeix -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: no es pot establir d'importació com {1} no és importable apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Hi ha un error en la seva plantilla de direcció {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,De Nom complet apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},No tens accés a l'informe: {0} DocType: User,Send Welcome Email,Enviar Benvingut email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Carrega CSV que conté tots els permisos d'usuari en el mateix format que a Baixa. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Treure filtre +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Treure filtre DocType: Address,Daman and Diu,Daman i Diu DocType: Address,Personal,Personal apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Estàndard DOCTYPE no pot tenir format d'impressió per defecte, utilitzeu Personalitzar formulari" DocType: Report,Query,Query DocType: DocType,Sort Order,Ordre de Classificació -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'A Vista de llista' no permès per al tipus {0} a la fila {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selecciona l'etiqueta després de la qual vols inserir el nou camp. ,Document Share Report,Document Compartir Reportar DocType: User,Last Login,Últim ingrés -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME es requereix a la fila {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna DocType: Custom Field,Adds a custom field to a DocType,Afegeix un camp personalitzat a un DocType DocType: File,Is Home Folder,És Carpeta @@ -583,7 +583,7 @@ DocType: File,Folder,Carpeta DocType: DocField,Index,Índex DocType: Email Group,Newsletter Manager,Butlletí Administrador apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opció 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,tots els missatges +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Entrada d'error durant peticions. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ha estat afegit al grup de correu electrònic. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicador DocType: DocShare,Everyone,Tothom DocType: Workflow State,backward,cap enrere -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Només una regla permès amb el mateix paper, Nivell i {1}" DocType: Email Queue,Add Unsubscribe Link,Afegir Enllaç Donar-se de baixa apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Cap comentari. Iniciar una nova discussió. DocType: Workflow State,share,Quota @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,no est apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Veure Subscriptors apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sra DocType: Website Theme,Background Color,Color de fons -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Hi ha hagut errors a l'enviar el correu electrònic. Si us plau, torna a intentar-ho." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Hi ha hagut errors a l'enviar el correu electrònic. Si us plau, torna a intentar-ho." DocType: Portal Settings,Portal Settings,Característiques del portal DocType: Web Page,0 is highest,0 és el més alt apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,¿Segur que desitja tornar a vincular aquesta comunicació a {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Ajustaments del Contacti'ns apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Buscant ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maximum Attachment Limit for this record reached. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maximum Attachment Limit for this record reached. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Els següents camps obligatoris han de ser omplerts:
DocType: Email Alert,View Properties (via Customize Form),Veure propietats (via Personalitzar Formulari) DocType: Note Seen By,Note Seen By,Nota vist per @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Informes de Report Builder són gestionats directament pel generador d'informes. Res a fer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Si us plau, comproveu la vostra adreça de correu electrònic" apps/frappe/frappe/model/document.py +903,none of,cap de -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Enviar-me una còpia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Enviar-me una còpia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Puja Permisos d'usuari DocType: Dropbox Settings,App Secret Key,App clau secreta apps/frappe/frappe/config/website.py +7,Web Site,lloc web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Els elements marcats es mostraran a l'escriptori -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} no es pot establir per als tipus individuals apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Junta Kanban {0} no existeix. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} està veient aquest document DocType: ToDo,Assigned By Full Name,Assignat pel nom complet apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} actualitzat -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Informe no es pot ajustar per als tipus individuals apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Fa {0} dies DocType: Email Account,Awaiting Password,Tot esperant la contrasenya DocType: Address,Address Line 1,Adreça Línia 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Estats de flux de treball (per exemple, Projecte, Aprovat, cancel·lat)." DocType: Print Settings,Allow Print for Draft,Permetre impressió per al projecte apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Establir Quantitat -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Presentar aquest document per confirmar +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Presentar aquest document per confirmar DocType: Contact,Unsubscribed,No subscriure apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,funcions personalitzades per a les pàgines i l'informe apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,classificació: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Eina d'importació de dades DocType: Address,Dadra and Nagar Haveli,Dadra i Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Càrrega de fitxers si us plau esperi durant uns segons. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Adjunta la teva imatge +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Adjunta la teva imatge apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valors fila modificada DocType: Workflow State,Stop,Aturi DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enllaç a la pàgina que voleu obrir. Deixar en blanc si voleu que sigui un pare grup. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Alinear etiquetes a l'esquerr DocType: Help Article,Expert,expert DocType: Workflow State,circle-arrow-right,circle-arrow-right DocType: LDAP Settings,LDAP Server Url,Url del servidor LDAP -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,No es pot obrir instància quan el seu {0} és obert +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,No es pot obrir instància quan el seu {0} és obert apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,En cua per instal·lar DocType: Custom DocPerm,Custom DocPerm,DocPerm personalitzada DocType: Newsletter,Send Unsubscribe Link,Enviar Anul·lar Enllaç @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Aplicació {0} retira DocType: Custom DocPerm,Apply User Permissions,Aplicar permisos d'usuari DocType: User,Modules HTML,Mòduls HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuració> Permisos d'usuari Administrador apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Camps Obligatoris DocType: DocType,Other Settings,altres ajustos DocType: Social Login Keys,Frappe,Frape @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Portador d'emergència apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Cap document seleccionat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Esdeveniment -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","En {0}, {1} va escriure:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","En {0}, {1} va escriure:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,No es pot eliminar de camp estàndard. Podeu ocultar la pena si vols DocType: Top Bar Item,For top bar,Per a la barra superior apps/frappe/frappe/utils/bot.py +148,Could not identify {0},No s'ha pogut identificar {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,departament d'accessibilitat DocType: Workflow State,minus,menys apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Error de servidor: Es recomana consultar els registres del servidor o contactar amb Suport Tècnic. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Correu electrònic de benvinguda enviat -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Anem a preparar el sistema per al primer ús. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Anem a preparar el sistema per al primer ús. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Destacat apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Ja està registrat DocType: System Settings,Float Precision,Precisió Float @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,permetre Imprimir apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No hi ha aplicacions instal·lades apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marqueu el camp com obligatori DocType: Communication,Clicked,Seguit -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},No té permís per '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},No té permís per '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programat per enviar DocType: DocType,Track Seen,Vist a la pista @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,sessions simultànies DocType: OAuth Client,Client Credentials,credencials del client -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Obre un mòdul o eina +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Obre un mòdul o eina DocType: Communication,Delivery Status,Estat de l'enviament DocType: Module Def,App Name,Nom App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Mida de fitxer permès és {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Comunicació de referència DocType: Email Queue,Unsubscribe Method,Mètode per donar-se de baixa DocType: GSuite Templates,Related DocType,doctype relacionada apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edita per afegir contingut -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Seleccioneu Idiomes -apps/frappe/frappe/__init__.py +510,No permission for {0},Sense permís per {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Seleccioneu Idiomes +apps/frappe/frappe/__init__.py +509,No permission for {0},Sense permís per {0} DocType: DocType,Advanced,Avançat apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Sembla clau d'API o API secret està malament !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referència: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Introduïu el tipus de formulari apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No hi ha registres etiquetats. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,treure camp DocType: User,Send Password Update Notification,Enviar contrasenya Notificació d'actualització -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Permetre DOCTYPE, DOCTYPE. Vés amb compte!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permetre DOCTYPE, DOCTYPE. Vés amb compte!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formats personalitzats per a impressió, correu electrònic" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Actualitzat Per Nova Versió DocType: Custom Field,Depends On,Depèn de @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,un apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Si us plau, seleccioneu el fitxer a copiar" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Comprovació d'un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Mostrar Etiquetes +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Si Aplicar estricte de permisos d'usuari es comprova i permisos d'usuari es defineix per a un tipus de document per a un usuari, llavors tots els documents en què el valor de la relació està en blanc, no es mostraran a l'usuari que" DocType: Address,Billing,Facturació DocType: Email Queue,Not Sent,No Enviat DocType: Web Form,Actions,Accions @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,clar apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Cada dia els esdeveniments han d'acabar en el mateix dia. DocType: Communication,User Tags,User Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Imatges d'anar a buscar .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuració> Usuari DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},La descàrrega de l'aplicació {0} DocType: Communication,Feedback Request,Sol·licitud de retroalimentació @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Les còpies de seguretat apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,afegir contacte DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Enviar sempre a aquests identificadors. Cada adreça de correu electrònic en una nova fila -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ocultar detalls +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ocultar detalls DocType: Workflow State,Tasks,Tasques DocType: Event,Tuesday,Dimarts DocType: Blog Settings,Blog Settings,Ajustaments de blog @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Write a Python file in the same folder where this is saved and return column and result. DocType: DocType,Sort Field,Ordenar Camp DocType: Razorpay Settings,Razorpay Settings,ajustos Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Editar el filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","per exemple. Si Aplicar permisos d'usuari es comproven per a l'Informe doctype però no hi ha permisos d'usuari es defineixen per l'Informe per a un usuari, llavors tots els informes es mostren a aquest usuari" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Editar el filtre +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,El camp {0} de tipus {1} no pot ser obligatori apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Afegir més apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Amaga Gràfic DocType: System Settings,Session Expiry Mobile,Sessió de caducitat mòbil @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Retard apps/frappe/frappe/config/setup.py +128,List of backups available for download,Llista de les còpies de seguretat disponibles per a baixar apps/frappe/frappe/www/login.html +89,Sign up,Registra't DocType: Test Runner,Output,sortida +DocType: Email Alert,Set Property After Alert,Després d'establir la propietat Alerta apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Afegir camps als formularis. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Sembla que alguna cosa està malament amb la configuració de Paypal d'aquest lloc. DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,full DocType: Portal Menu Item,Portal Menu Item,Portal de l'Menú DocType: User Email,Email ID,Identificació de l'email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Si aplicar permisos d'usuari es comproven per a Informe DOCTYPE però no hi ha permisos d'usuari es defineixen per a l'Informe per a un usuari, llavors tots els informes es mostren a aquest usuari" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Una llista dels recursos que el client d'aplicació tindrà accés a la vegada que l'usuari ho permet.
per exemple, el projecte" DocType: Translation,Translated Text,El text traduït DocType: Contact Us Settings,Query Options,Opcions de consulta @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Contactes DocType: System Settings,Setup Complete,Instal·lació completa apps/frappe/frappe/config/setup.py +66,Report of all document shares,Informe de totes les accions de documents apps/frappe/frappe/www/update-password.html +18,New Password,Nova Contrasenya -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtre {0} que falta +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtre {0} que falta apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Ho sento! No es poden eliminar els comentaris generats automàticament DocType: Website Theme,Style using CSS,Estil amb CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Reference DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Mòduls de Bloc apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tornant longitud a {0} per '{1}' a '{2}'; Ajustament de la longitud que {3} farà que el truncament de dades. DocType: Print Format,Custom CSS,CSS personalitzat apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Afegir un comentari -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorat: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorat: {0} a {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Registre d'errors d'esdeveniments automatitzats (Scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),No és un fitxer de valors separats per comes vàlid (fitxer CSV) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Per defecte entrant DocType: Workflow State,repeat,repetició DocType: Website Settings,Banner,Bandera DocType: Role,"If disabled, this role will be removed from all users.","Si està desactivat, aquest paper serà eliminat de tots els usuaris." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Ajuda i Recerca +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ajuda i Recerca apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrat però discapacitats DocType: DocType,Hide Copy,Amaga Copiar apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Desactiveu totes les funcions @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,País apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Direccions DocType: Communication,Shared,compartit -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Attach Document Print +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Attach Document Print DocType: Bulk Update,Field,camp DocType: Communication,Received,Rebut DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Query Report DocType: User,Set New Password,Establir una contrasenya DocType: User,Github User ID,ID d'usuari a Github apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Si el Tipus de Document -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","No es pot eliminar o cancel·lar a causa de {0} {1} està vinculada amb {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","No es pot eliminar o cancel·lar a causa de {0} {1} està vinculada amb {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Aplicació Desconegut {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S no és un format d'informe vàlid. Format de l'informe ha \ un dels següents% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},El camp {0} apareix diverses vegades en les files {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},El camp {0} apareix diverses vegades en les files {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} de {1} a {2} en fila # {3} DocType: Communication,Expired,Caducat DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Nombre de columnes per a un camp en una quadrícula (Total de columnes en una quadrícula ha de ser inferior a 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Tens un compte? ini apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Desconegut d'impressió: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Col·lapsa -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Usuari no està permès eliminar {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Usuari no està permès eliminar {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Darrera actualització DocType: Help Article,Likes,Gustos DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,codi guió apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Crear usuari de correu electrònic -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,No hi ha permisos especificats +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,No hi ha permisos especificats apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Configuració global: Els usuaris només podran escollir les icones controlades apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} no trobat DocType: Custom Role,Custom Role,El paper d'encàrrec apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Inici / Test Carpeta 2 DocType: System Settings,Ignore User Permissions If Missing,No feu cas dels permisos d'usuari Si Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Si us plau, guardi el document abans de carregar." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Si us plau, guardi el document abans de carregar." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Introduïu la contrasenya DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Afegir un altre comentari apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edita Tipus Document apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Cancel·lat la subscripció a Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Doblar ha de venir abans d'un salt de secció +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Doblar ha de venir abans d'un salt de secció apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Darrera modificació per DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,estat GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: No es pot establir sense Cancel Enviar +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: No es pot establir sense Cancel Enviar DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Hi han hagut errors. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redireccionament obligat a Auth Code @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,La me DocType: Website Theme,Text Color,Color del text DocType: Desktop Icon,Force Show,força Mostra apps/frappe/frappe/auth.py +78,Invalid Request,La sol·licitud no és vàlida -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Aquesta formulari no té cap entrada +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Aquesta formulari no té cap entrada apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sessió de caducitat ha d'estar en format {0} DocType: Website Sidebar Item,Group,Grup DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = ""_blank"" per obrir una nova pàgina." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,No feu cas de la codificació errors. DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,No Configurat -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuració> Usuari DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,Desactivar Inscripció apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Si us plau, espera mentre el sistema està essent configurat. Aquest procés pot trigar una estona." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Afegir comentari DocType: DocField,Mandatory,Obligatori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Mòdul per exportar -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: No s'ha establert cap conjunt permisos bàsic +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: No s'ha establert cap conjunt permisos bàsic apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,La seva subscripció expirarà en {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},L'enllaç de descàrrega per a la còpia de seguretat serà enviat per correu electrònic a l'adreça electrònica següent: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significat de Presentar, anul·lar, modificar" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,consulta d'informe apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Assignat a {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtres guarden DocType: DocField,Percent,Per cent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Si us plau, estableix els filtres" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Si us plau, estableix els filtres" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Vinculat Amb DocType: Workflow State,book,llibre DocType: Website Settings,Landing Page,La pàgina de destinació -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Error en la seqüència de personalització +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Error en la seqüència de personalització apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nom apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Sol·licitud d'importació en cua. Aquest procés pot trigar uns instants, si us plau, sigui pacient." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,No hi ha permisos establerts per a aquest criteri. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Permetre que inicia ses apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Vostè no té permisos suficients per accedir a aquest apartat. Si us plau, poseu-vos en contacte amb l'administrador per obtenir accés." DocType: Custom Field,Custom,A mida apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Alerta de configuració de correu electrònic basat en diversos criteris. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Les entrades sota {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Les entrades sota {0} DocType: Email Alert,Send alert if date matches this field's value,Enviar alerta si la data coincideix amb el valor d'aquest camp DocType: Workflow,Transitions,Transicions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Traieu {0} i esborrar totes les dades? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Entrada Després DocType: Print Format,Monospace,Monoespaiat DocType: Letter Head,Printing,Impressió DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"No compte de correu electrònic de configuració. Si us plau, creu un nou compte de correu electrònic des de la Configuració> Correu electrònic> compte de correu electrònic" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precisió ha d'estar entre 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precisió ha d'estar entre 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,i DocType: Error Snapshot,Frames,Marc @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Enllaç a la imatge DocType: Auto Email Report,Report Filters,Filtres d'informe apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ara DocType: Workflow State,step-backward,pas enrere -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Please set Dropbox access keys in your site config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar aquest registre per permetre l'enviament a aquesta adreça de correu electrònic apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Només els camps obligatoris són necessaris per als nous registres. Pots eliminar columnes de caràcter no obligatori, si ho desitges." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,És carpeta Arxius adjunts apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,expandir tots apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Es requereix un nom d'usuari vàlid apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Torna a obrir -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ha cancel·lat el pagament -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Seleccioneu un arxiu csv vàlids amb dades +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Seleccioneu un arxiu csv vàlids amb dades apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} no-compartit aquest document {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Transició estat del document de {0} a {1} no està permès DocType: DocType,"Make ""name"" searchable in Global Search",Fer "nom" de recerca en la recerca global @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,val DocType: Help Category,Help Category,ajuda Categoria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,L'usuari {0} està deshabilitat apps/frappe/frappe/www/404.html +8,Page missing or moved,Pàgina falta o traslladat -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Edita {0} propietats DocType: DocType,Route,ruta apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,configuració de la passarel·la de pagament Razorpay DocType: DocField,Name,Nom apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,S'ha superat l'espai màxim de {0} per al seu pla. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cerca en els documents DocType: OAuth Authorization Code,Valid,vàlid -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Obre l'enllaç -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,El teu idioma +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Obre l'enllaç +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,El teu idioma apps/frappe/frappe/desk/form/load.py +46,Did not load,No carregar apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Afegir fila DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Es sol·licit DocType: Address,Lakshadweep Islands,Illes Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Pot escriure apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alguns documents, com una factura, no haurien de canviar un cop final. L'estat final d'aquests documents es diu Enviat. Podeu restringir quins rols poden Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,No està autoritzat a exportar aquest informe +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,No està autoritzat a exportar aquest informe apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element seleccionat DocType: Newsletter,Test Email Address,Adreça de correu electrònic de prova DocType: ToDo,Sender,Remitent @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,.zip importació apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,document d'identitat DocType: Print Settings,Letter,Carta -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Camp d'imatge ha de ser de tipus Adjuntar imatge +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Camp d'imatge ha de ser de tipus Adjuntar imatge DocType: DocField,Columns,columnes DocType: Async Task,Succeeded,Succeït apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Camps obligatoris requerits a {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Editor de text apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Configuració de pàgina sobre nosaltres. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edició de HTML personalitzat DocType: Error Snapshot,Error Snapshot,Instantània d'error -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,En +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,En DocType: Email Alert,Value Change,Canvi de valor DocType: Standard Reply,Standard Reply,Resposta predefinida apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ample de la caixa d'entrada @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilitzeu aquest nom de camp per generar títol apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importació de correu electrònic De apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Convida com usuari -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Seleccionar adjunts +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Seleccionar adjunts apps/frappe/frappe/model/naming.py +94, for {0},per {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Hi va haver errors. Si us plau, informe d'això." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,No està permès imprimir aquest document +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,No està permès imprimir aquest document apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Si us plau, estableix el valor en la taula de filtres Filtre d'informe." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Carregant Informe +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Carregant Informe apps/frappe/frappe/limits.py +72,Your subscription will expire today.,La seva subscripció expira avui. DocType: Page,Standard,Estàndard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Adjuntar Arxiu @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensions Regionals DocType: LDAP Settings,Base Distinguished Name (DN),Nom distingit base (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Deixa aquesta conversa -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcions no establertes per a camp d'enllaç {0} DocType: Customize Form,"Must be of type ""Attach Image""",Ha de ser del tipus "Adjunta imatge" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Cancel totes les seleccions apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},No es pot desarmar 'només lectura' per al camp {0} @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Nota apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Informa d'un problema apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,condicions de retroalimentació no coincideixen -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,camp de línia de temps ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,camp de línia de temps ha de ser un nom de camp vàlid DocType: Currency,Symbol,Símbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Fila # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Fila # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,S'ha enviat una nova contrassenya per correu electrònic apps/frappe/frappe/auth.py +245,Login not allowed at this time,Login no permès en aquest moment DocType: Email Account,Email Sync Option,Sincronitzar correu Opció @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard respon a les preguntes comuns. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Enviament per defecte DocType: Workflow State,volume-off,volum-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Ha agradat a {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Ha agradat a {0} DocType: Footer Item,Footer Item,Peu de pàgina de l'article ,Download Backups,Descàrrega Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Inici / Carpeta Prova 1 @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Text Alinear apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},El nom no pot tenir caràcters especials com {0} DocType: Contact Us Settings,Forward To Email Address,Reenviar al Correu Electrònic apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostra totes les dades -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,El Camp Títol ha de ser un nom de camp vàlid apps/frappe/frappe/config/core.py +7,Documents,Documents DocType: Email Flag Queue,Is Completed,es completa apps/frappe/frappe/www/me.html +22,Edit Profile,Edita el perfil @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",apareixerà aquest camp només si el nom del camp definit aquí té valor o les regles són veritables (exemples): eval myfield: doc.myfield == 'La meva Valor' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,avui +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,avui apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Un cop establert, els usuaris només tindran accés als documents (per exemple. Blog) on hi hagil'enllaç (per exemple. Blogger)." DocType: Error Log,Log of Scheduler Errors,Registre d'errors de planificació DocType: User,Bio,Bio @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 estrella és més baix i 5 estrelles sent la més alta qualificació DocType: Event,Ref Name,Nom Ref DocType: Web Page,Center,Centre +DocType: Email Alert,Value To Be Set,Valor d'ajust apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primer Nivell DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representa els estats permesos en un sol document i el rol assignat a canviar l'estat. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Formulari d'actualització @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Té Web apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nom del tipus de document ha de començar amb una lletra i només pot consistir en lletres, nombres, espais i guions baixos" DocType: Communication,Spam,Correu brossa DocType: Integration Request,Integration Request,Sol·licitud d'integració -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Estimat +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Estimat DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Comptes d'usuari DocType: Web Page,HTML for header section. Optional,HTML for header section. Opcional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Aquesta característica és nou i encara experimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Màxim {0} files permeses +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Màxim {0} files permeses DocType: Email Unsubscribe,Global Unsubscribe,Global Donar-se de baixa apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Aquesta és una contrasenya molt comú. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Veure DocType: Communication,Assigned,Assignat DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Seleccionar el format d'impressió +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Seleccionar el format d'impressió apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,patrons de teclat curts són fàcils d'endevinar DocType: Portal Settings,Portal Menu,menú portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longitud de {0} ha d'estar entre 1 i 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,L'usuari no pot Cercar apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format de sortida no vàlid DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Aplicar aquesta regla, si l'usuari és el propietari" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Serà la seva ID d'inici de sessió +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Serà la seva ID d'inici de sessió apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Redactar Informe DocType: Note,Notify users with a popup when they log in,Notificar als usuaris amb un missatge emergent quan es connecten apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} no existeix, seleccioneu un nou objectiu per unir" @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,funcions de permis apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Actualització DocType: Error Snapshot,Snapshot View,Instantània de vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Si us plau, guardi el butlletí abans d'enviar-" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Les opcions han de ser un tipus de document vàlid per al camp {0} a la fila {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,Fa> {0} any (s) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Les opcions han de ser un tipus de document vàlid per al camp {0} a la fila {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edita les propietats DocType: Patch Log,List of patches executed,Llista de pegats executat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ja donat de baixa -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Mitjà Comunicació +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Mitjà Comunicació DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Si us plau seleccioneu un altre mètode de pagament. Razorpay no admet transaccions en moneda '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,En cua per còpia de seguretat. Es pot prendre un parell de minuts a una hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Register OAuth client d'aplicació -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no pot ser ""{2}"". Ha de ser un de ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no pot ser ""{2}"". Ha de ser un de ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} o {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Mostra o oculta les icones de l'escriptori apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Actualitzar Contrasenya @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Mostra salts de línia després de les Seccions DocType: Blogger,Short Name,Nom curt apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Pàgina {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Que està seleccionant l'opció de sincronització com tot, es torna a sincronitzar tots els \ llegir, així com els missatges no llegits des del servidor. Això també pot causar la duplicació \ de comunicació (e-mails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Mida d'arxius @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,Gerent de Compres DocType: Custom Script,Sample,Mostra apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,sense categoria Etiquetes DocType: Event,Every Week,Cada setmana +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"No compte de correu electrònic de configuració. Si us plau, creu un nou compte de correu electrònic des de la Configuració> Correu electrònic> compte de correu electrònic" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Feu clic aquí per verificar el seu ús o actualitzar a un pla superior DocType: Custom Field,Is Mandatory Field,És un camp obligatori DocType: User,Website User,Lloc web de l'usuari @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Menú d'encàrrec de la barra lateral DocType: Workflow State,pencil,llapis apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Missatges de xat i altres notificacions. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Insereix després no es pot establir com {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Insereix després no es pot establir com {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Compartir {0} amb apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Configuració de comptes de correu electrònic si us plau, introdueixi la contrasenya per a:" DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Escriptors Introducció DocType: Address,Phone,Telèfon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,"Error en avaluar Alerta {0}. Si us plau, corregeixi la seva plantilla." +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,"Error en avaluar Alerta {0}. Si us plau, corregeixi la seva plantilla." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Seleccionar el tipus de document o paper per començar. DocType: Contact,Passive,Passiu DocType: Contact,Accounts Manager,Gerent de Comptes +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,El seu pagament es cancel·la. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Seleccioneu el tipus de fitxer DocType: Help Article,Knowledge Base Editor,Coneixement Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pàgina no trobada @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Tipus de propietat DocType: Workflow State,screenshot,captura de pantalla apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Només l'administrador pot guardar un informe estàndard. Si us plau, canvia-li el nom i desa'l" DocType: System Settings,Background Workers,Treballadors de fons +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nom de camp {0} en conflicte a fi meta DocType: Deleted Document,Data,Dades apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Estat del document apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vostè ha fet {0} de {1} @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Mostrar permisos d'usuari apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Has d'estar connectat i tenir l'Administrador del sistema de funcions per poder accedir a les còpies de seguretat. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,restant -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Si us plau, guardi abans de connectar." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Si us plau, guardi abans de connectar." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Afegit {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema per defecte es troba en {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType no es pot canviar de {0} a {1} a la fila {2} @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Configuració del sistema apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Inici de Sessió Error apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Aquest correu electrònic va ser enviat a {0} i copiat a {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Si us plau, compte de correu electrònic per defecte la configuració de configuració> Correu electrònic> compte de correu electrònic" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Crear un nou {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Crear un nou {0} DocType: Email Rule,Is Spam,és spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Informe {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Obrir {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Obrir {0} DocType: OAuth Client,Default Redirect URI,Defecte URI de redireccionament DocType: Email Alert,Recipients,Destinataris DocType: Workflow State,ok-sign,ok-sign @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Ajuda a les persones ,Modules Setup,Mòduls d'instal·lació apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipus: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,El seu pagament ha fallat. DocType: Communication,Unshared,incompartible DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Mòdul no trobat @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,Imatge de marca DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuració de barra de navegació superior, peu de pàgina i el logo." DocType: Web Form Field,Max Value,valor màxim -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Per {0} a nivell {1} a {2} en fila {3} DocType: Contact,All,Tots DocType: Email Queue,Recipient,Receptor DocType: Communication,Has Attachment,té fitxers adjunts @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,alinear a la dreta DocType: Auto Email Report,Email To,Destinatari apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Carpeta {0} no està buit DocType: Page,Roles,Rols -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,El camp {0} no es pot seleccionar. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Error: valor perdut per {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,El camp {0} no es pot seleccionar. DocType: System Settings,Session Expiry,Caducitat Sessió DocType: Workflow State,ban-circle,ban-cercle DocType: Email Flag Queue,Unread,no llegit @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,La configuració d'usuari apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Crear nou DocType: Workflow State,chevron-down,Chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),El correu electrònic no enviat a {0} (donat de baixa / desactivat) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),El correu electrònic no enviat a {0} (donat de baixa / desactivat) DocType: Async Task,Traceback,Rastrejar DocType: Currency,Smallest Currency Fraction Value,Més petita moneda Valor Fracció apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Assignar a @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Des DocType: Website Theme,Google Font (Heading),Google Font (Títol) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Seleccioneu un node de grup primer. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Troba {0} a {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Troba {0} a {1} DocType: OAuth Client,Implicit,implícit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Annexar com la comunicació en contra d'aquest tipus de document (ha de tenir camps, ""Estat"", ""Assumpte"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI per a la recepció de codi d'autorització una vegada que l'usuari permet l'accés, així com les respostes de fallada. Normalment, un extrem REST exposat pel client de l'aplicació.
per exemple, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,No es pot canviar {0} després de ser presentat +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,No es pot canviar {0} després de ser presentat DocType: Communication,Comment Type,Tipus Comentari DocType: OAuth Client,OAuth Client,client OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Usuaris @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},No es pot llegir el format d'arxiu per a {0} DocType: Auto Email Report,Filter Data,Filtrar dades apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Afegir una etiqueta -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Si us plau adjuntar un arxiu primer. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Si us plau adjuntar un arxiu primer. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Hi havia alguns errors de configuració del nom, si us plau poseu-vos en contacte amb l'administrador" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Entrant compte de correu electrònic no és correcta apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,Correu electrònic enviat DocType: DocField,Ignore XSS Filter,Ignorar filtre XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,eliminat apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,la configuració de còpia de seguretat de Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Enviar com a correu electrònic +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Enviar com a correu electrònic DocType: Website Theme,Link Color,Enllaç color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,L'usuari {0} no es pot desactivar apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Benvolgut Administrador del sistema," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,El teu país +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,El teu país DocType: Event,Sunday,Diumenge apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Atesa la quadrícula DocType: Address Template,Template,Plantilla @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Configuració d'LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Rectificativo apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,configuració de la passarel·la de pagament de PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultaran truncades, com caràcters màxim permès és {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultaran truncades, com caràcters màxim permès és {2}" DocType: OAuth Client,Resource Owner Password Credentials,Credencials de recursos contrasenya de propietari DocType: OAuth Client,Response Type,Tipus de resposta apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Els usuaris Max @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Taula DocType: File,File Size,Mida del fitxer apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Has d'iniciar sessió per presentar aquest formulari DocType: User,Background Image,Imatge de fons -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Seleccioni el seu País, Zona horària i moneda" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Seleccioni el seu País, Zona horària i moneda" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,entre DocType: Async Task,Queued,En cua @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Crear apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtre no vàlid: {0} DocType: Email Account,no failed attempts,intents fallits sense +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"No s'ha trobat la plantilla d'adreces per defecte. Si us plau, crear una nova des Configuració> Premsa i Branding> plantilla de direcció." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Aplicació Clau d'Accés DocType: OAuth Bearer Token,Access Token,Token d'accés @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Username DocType: DocType,Image View,Veure imatges apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Sembla que alguna cosa ha anat malament durant la transacció. Ja que no hem confirmat el pagament, PayPal li reemborsarà automàticament aquesta quantitat. Si no és així, si us plau, envieu-nos un correu electrònic i esmentar la identificació de correlació: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Incloure símbols, números i lletres majúscules en la contrasenya" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Després d'inserir camp '{0}' esmentat en el camp personalitzat '{1}', amb l'etiqueta '{2}', no hi" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Incloure símbols, números i lletres majúscules en la contrasenya" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Després d'inserir camp '{0}' esmentat en el camp personalitzat '{1}', amb l'etiqueta '{2}', no hi" DocType: Workflow State,signal,senyal DocType: DocType,Show Print First,Show Print First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Retorn per publicar @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Arxiu '{0}' no trobat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Traieu la Secció DocType: User,Change Password,Canvia la contrasenya -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Emails: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hola! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Emails: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hola! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Finalització de l'esdeveniment ha de ser després de la posta apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},No té permís per obtenir un informe sobre: {0} +DocType: System Settings,Apply Strict User Permissions,Aplicar permisos d'usuari estrictes DocType: DocField,Allow Bulk Edit,Permetre Edició massiva DocType: Blog Post,Blog Post,Post Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Cerca avançada +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Cerca avançada apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Les Instruccions de restabliment de contrasenya han estat enviades al seu correu electrònic apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","El nivell 0 és per als permisos de nivell de document, \ nivells més alts per als permisos de nivell de camp." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,revocat DocType: Web Page,Sidebar and Comments,Barra lateral i Comentaris apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quan es modifiqui un document després de cancelar-lo i guardar-lo, tindrà un nou número que és una versió de l'antic nombre." DocType: Stripe Settings,Publishable Key,clau publicable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,Fa> {0} any (s) DocType: Workflow State,circle-arrow-left,circle-arrow-left apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Servidor de memòria cau Redis parat. Si us plau, poseu-vos en contacte amb l'Administrador / Suport tècnic" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nom del partit -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Fer un nou registre +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Fer un nou registre apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,recerca DocType: Currency,Fraction,Fracció DocType: LDAP Settings,LDAP First Name Field,LDAP camp de nom -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Seleccioneu d'arxius adjunts existents +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccioneu d'arxius adjunts existents DocType: Custom Field,Field Description,Descripció del camp apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nom no establert a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Safata d'entrada de correu electrònic @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Nivell de permís DocType: User,Send Notifications for Transactions I Follow,Enviar notificacions de transaccions que segueixo -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: No es pot establir a Presentat, Anul·lat, Modificat sense escriptura" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Segur que vols eliminar l'adjunt? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","No es pot eliminar o cancel·lar a causa de {0} {1} està vinculada amb {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No hi ha resultats per a 'resultats

-apps/frappe/frappe/__init__.py +1063,Thank you,Gràcies +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","No es pot eliminar o cancel·lar a causa de {0} {1} està vinculada amb {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Gràcies apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Estalvi DocType: Print Settings,Print Style Preview,Vista prèvia de l'estil d'impressió apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,Vista de llista DocType: Email Account,Use TLS,Utilitza TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Usuari o contrasenya no vàlids apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Add custom javascript to forms. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Número de sèrie +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Número de sèrie ,Role Permissions Manager,Administrador de Permisos de rols apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom del nou format d'impressió -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,clar Accessori +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,clar Accessori apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatori: ,User Permissions Manager,Administrador de Permisos d'usuari DocType: Property Setter,New value to be set,Nou valor a configurar @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Fa 2 d apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Classificar les entrades del blog. DocType: Workflow State,Time,temps DocType: DocField,Attach,Adjuntar -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no és un patró de nom de camp vàlid. Ha de ser {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Comentaris del Sol·licitud només si hi ha almenys una comunicació està disponible per al document. DocType: Custom Role,Permission Rules,Regles de permisos DocType: GSuite Settings,GSuite Settings,ajustaments GSuite DocType: Address,Links,Enllaços -apps/frappe/frappe/model/base_document.py +428,Value missing for,Falta a +apps/frappe/frappe/model/base_document.py +427,Value missing for,Falta a apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Afegir Nen -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,"{0} {1}: Registre Presentat, no es pot eliminar." +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,"{0} {1}: Registre Presentat, no es pot eliminar." apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Mida de còpia de seguretat DocType: GSuite Templates,Template Name,Nom de la plantilla -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nou tipus de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nou tipus de document DocType: Custom DocPerm,Read,Llegir DocType: Role Permission for Page and Report,Role Permission for Page and Report,El permís per a la funció Pàgina i Informe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,alinear Valor apps/frappe/frappe/www/update-password.html +14,Old Password,Contrasenya Anterior -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Missatges de {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Missatges de {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Per formatar columnes, donar títols de les columnes a la consulta." DocType: Has Domain,Has Domain,té domini apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,No tens un compte? Registra't -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: No es pot establir Assignar esmenar si no submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edita permisos de rol DocType: Communication,Link DocType,enllaç dOCTYPE @@ -2336,7 +2340,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Si us plau, assegureu-vos que el seu perfil té una adreça de correu electrònic" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Hi ha canvis sense desar en aquest formulari. Si us plau, guarda abans de continuar." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Defecte per {0} ha de ser una opció +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Defecte per {0} ha de ser una opció DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria DocType: User,User Image,Imatge d'Usuari apps/frappe/frappe/email/queue.py +289,Emails are muted,Els correus electrònics es silencien @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Properes a DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Aquests valors s'actualitzaran automàticament en les transaccions i també podrà ser útil restringir els permisos per a aquest usuari en transaccions que contenen aquests valors. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Editor -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Error: {0} a {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Error: {0} a {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Seleccioneu Obligatori apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Explorar apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Correus electrònics enviats @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,Córrer apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Restablir contrasenya apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Si us plau, actualitzi Per afegir més d'{0} subscriptors" DocType: Workflow State,hand-left,hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} de {1} no pot ser únic DocType: Email Account,Use SSL,Utilitza SSL DocType: Workflow State,play-circle,joc de cercle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Seleccioneu Format d'impressió a Edita @@ -2436,7 +2440,7 @@ DocType: DocField,No Copy,No Copy DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Entrada amb LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Si Propietari +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Si Propietari DocType: OAuth Authorization Code,Expiration time,temps de termini DocType: Web Page,Website Sidebar,Barra Lateral pàgina web DocType: Web Form,Show Sidebar,Mostra la barra lateral @@ -2456,7 +2460,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},No s'ha pogut apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Els noms i cognoms que per si mateixos són fàcils d'endevinar. apps/frappe/frappe/config/website.py +93,Knowledge Base,Base de coneixements DocType: Workflow State,briefcase,briefcase -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},El valor no pot ser canviat per {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},El valor no pot ser canviat per {0} DocType: Feedback Request,Is Manual,és Instruccions DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estil representa el color del botó: Èxit - Verd, Perill - vermell, Inverse - Negre, Primària - Blau Fosc, Informació - blau clar, Advertència - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,No Informe Loaded. Empreu consulta d'informe / [Nom de l'informe] per executar un informe. @@ -2533,7 +2537,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progrés apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,per rol apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Els camps que falten apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,nom de camp no vàlid '{0}' a AutoName -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Cercar en un tipus de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cercar en un tipus de document apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Permetre al camp ser editable fins i tot després de la presentació DocType: Custom DocPerm,Role and Level,Rols i Nivell DocType: File,Thumbnail URL,URL en miniatura @@ -2550,18 +2554,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Més informació DocType: Desktop Icon,Desktop Icon,Icona d'escriptori -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,El seu pagament va ser acceptat amb èxit +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,El seu pagament va ser acceptat amb èxit apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Ho sento! No està autoritzat a veure aquesta pàgina. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Consell: Doble clic per editar cel·lular DocType: Workflow State,bell,campana apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error en el correu electrònic d'alerta apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Comparteix aquest document +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuració> Permisos d'usuari Administrador apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} no pot ser un node fulla perquè té descendents DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,arxiu adjunt +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,arxiu adjunt DocType: Communication,Email,Correu electrònic apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Gràcies pel seu missatge -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Enviar confirmació de lectura +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Enviar confirmació de lectura DocType: Stripe Settings,Stripe Settings,Ajustaments de la ratlla DocType: Dropbox Settings,Dropbox Setup via Site Config,Configuració de Dropbox a través del Lloc Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Invalid Login Token @@ -2638,6 +2643,7 @@ DocType: DocType,Web View,vista web apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Advertència: Aquest format d'impressió és d'estil antic i no es pot generar a través de l'API. DocType: DocField,Print Width,Ample d'impressió ,Setup Wizard,Assistent de configuració +DocType: Address,GST State Number,Nombre Estat GST DocType: User,Allow user to login only before this hour (0-24),Permetre a l'usuari per iniciar sessió només abans d'aquesta hora (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder és obligatori apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2663,7 +2669,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Text petit apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrador accedeix {0} el {1} a través de l'adreça IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Equival -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType' DocType: About Us Settings,Team Members Heading,Team Members Heading apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Format CSV no vàlid apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Establir el nombre de còpies de seguretat @@ -2674,7 +2680,7 @@ DocType: Contact,Contact,Contacte DocType: User,Third Party Authentication,Third Party Authentication DocType: Website Settings,Banner is above the Top Menu Bar.,Banner està per sobre de la barra de menú superior. DocType: Razorpay Settings,API Secret,API secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Exporta informe: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Exporta informe: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} no existeix DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2697,7 +2703,7 @@ DocType: Kanban Board Column,Column Name,Nom de la columna DocType: Language,Based On,Basat en apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Estableix com a predeterminat apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Comproveu l'URL del servidor Frappe -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} de {1} no poden ser indexats DocType: Communication,Email Account,Compte de correu electrònic DocType: Workflow State,Download,Descarregar DocType: Blog Post,Blog Intro,Bloc Intro @@ -2708,7 +2714,7 @@ DocType: Web Page,Insert Code,Insereix Codi DocType: ToDo,Low,Sota apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Pot afegir propietats dinàmiques del document mitjançant l'ús de plantilles Jinja. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},límit no vàlid {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Llista un tipus de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Llista un tipus de document DocType: Event,Ref Type,Tipus Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si has de carregar nous registres, deixa en blanc la columna ""name"" (ID)" DocType: Address,Chattisgarh,Chattisgarh @@ -2730,25 +2736,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Envia la impressió com a PDF DocType: Web Form,Amount,Quantitat DocType: Workflow Transition,Allowed,Mascotes -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Només hi pot haver un plec en el formulari +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Només hi pot haver un plec en el formulari apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},No es pot escriure el format d'arxiu per a {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restaurar a la configuració per defecte? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Home Page no vàlida apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Accés incorrecte. Intenteu-ho de nou. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opcions necessàries per Link o camp de tipus de taula {0} a la fila {1} DocType: Auto Email Report,Send only if there is any data,Enviar només si hi ha qualsevol dada apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reiniciar els filtres -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: El permís al nivell 0 s'ha d'establir abans de fixar nivells més alts apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assignació tancat per {0} DocType: Integration Request,Remote,remot -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calcular +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Seleccioneu doctype primer apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirma teu email apps/frappe/frappe/www/login.html +42,Or login with,O ingressar amb DocType: Error Snapshot,Locals,Els locals apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicada a través d'{0} el {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} t'ha mencionat en un comentari en {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,per exemple (55 + 434) / 4 o = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,per exemple (55 + 434) / 4 o = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} és necessari DocType: Integration Request,Integration Type,Tipus d'Integració DocType: Newsletter,Send Attachements,Enviar Attachements @@ -2758,14 +2764,14 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Esdeveniments A l'Agenda d'avui DocType: Web Page,Web Page,Pàgina Web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'A la recerca global' no permès per al tipus {0} a la fila {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,veure Llista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},La data ha de tenir el format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La data ha de tenir el format: {0} DocType: Workflow,Don't Override Status,No correcció d'estat apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Si us plau, donar una qualificació." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentaris Sol·licitud apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,El terme de cerca -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,La Primera Usuari: +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,La Primera Usuari: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Seleccionar columnes DocType: Translation,Source Text,font del text apps/frappe/frappe/www/login.py +55,Missing parameters for login,Paràmetres que falten per a l'inici de sessió @@ -2787,7 +2793,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importació DocType: ToDo,Assigned By,assignat per apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Podeu utilitzar Personalitzar Formulari per establir els nivells dels camps. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Seleccioni el seu Regió +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Seleccioni el seu Regió DocType: Custom DocPerm,Level,Nivell DocType: Custom DocPerm,Report,Informe apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La quantitat ha de ser més gran que 0. @@ -2807,7 +2813,7 @@ DocType: Website Theme,Background,Fons DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Si us plau, afegir una qualificació" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: No es pot establir a Corregir sense Cancel·lar abans apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Pàgina plena DocType: DocType,Is Child Table,És Taula fill apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ha de ser una de {1} @@ -2822,7 +2828,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Això va per sobre de apps/frappe/frappe/config/setup.py +260,Install Applications.,Instal·lació d'aplicacions. DocType: Contact,Last Name,Cognoms DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,No hi ha alertes per avui +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,No hi ha alertes per avui DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar els arxius adjunts deels correus electrònics com a PDF (Recomanat) DocType: Web Page,Left,Esquerra DocType: Event,All Day,Tot el dia @@ -2836,7 +2842,7 @@ DocType: Event,Send an email reminder in the morning,Enviar un recordatori per c DocType: Blog Post,Published On,Publicat a DocType: Contact,Gender,Gènere apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informació obligatòria que falta: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,El camp '{0}' no es pot establir com a únic ja que té valors no únics apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Només 200 insercions permesos en una petició DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Tipus de referència @@ -2849,7 +2855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Usuari DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostrar títol a la finestra del navegador com "Prefix - títol" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text en el tipus de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text en el tipus de document apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,executar proves apps/frappe/frappe/handler.py +91,Logged Out,tancat la sessió apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Més ... @@ -2874,13 +2880,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visualitzant DocType: DocField,Default,Defecte apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} afegits -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Cerca '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Si us plau, guardi l'informe primer" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonats afegir apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,No En DocType: Workflow State,star,estrella -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valors separats per comes -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Ample màxim per al tipus de moneda és 100px a la fila {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valors separats per comes +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Ample màxim per al tipus de moneda és 100px a la fila {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Si us plau, comparteixi els seus comentaris per {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Contingut de la pàgina web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Afegeix un nou paper @@ -2898,7 +2904,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,No és un usuari vàlid LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} no és un Estat vàlida apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Si us plau seleccioneu un altre mètode de pagament. PayPal no admet transaccions en moneda '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,camp de cerca {0} no és vàlid +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,camp de cerca {0} no és vàlid DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Es poden trobar coses preguntant "trobar taronja en els clients ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Ho sento! L'usuari ha de tenir accés complet al seu propi rècord. @@ -2958,7 +2964,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,filtre Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El text que es mostra per enllaçar a la pàgina web si aquest formulari disposa d'una pàgina web. Ruta Enllaç automàticament es genera sobre la base de `page_name` i ` parent_website_route` DocType: Feedback Request,Feedback Trigger,retroalimentació del disparador -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Si us plau, estableix {0} primer" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Si us plau, estableix {0} primer" DocType: Unhandled Email,Message-id,Missatge-id DocType: Patch Log,Patch,Pedàs DocType: Async Task,Failed,Fracassat diff --git a/frappe/translations/cs.csv b/frappe/translations/cs.csv index 1f2a70b303..081eb8edf1 100644 --- a/frappe/translations/cs.csv +++ b/frappe/translations/cs.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook uživatelské jméno DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Poznámka: Více relací budou moci v případě mobilního zařízení apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Povoleno e-mailová schránka pro uživatele {Uživatelé} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nelze odeslat e-mail. Jste překročili odesílající limit {0} e-mailů pro tento měsíc. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Vložit na trvalo: {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Vložit na trvalo: {0}? DocType: Address,County,Hrabství DocType: Workflow,If Checked workflow status will not override status in list view,Je-li zaškrtnuto stav pracovního postupu nebude přepsat stav v zobrazení seznamu apps/frappe/frappe/client.py +280,Invalid file path: {0},Neplatná cesta k souboru: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Prosím apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Strom DocType: User,User Emails,uživatel E-maily DocType: User,Username,Uživatelské jméno -apps/frappe/frappe/model/base_document.py +581,Value too big,Hodnota příliš velká +apps/frappe/frappe/model/base_document.py +580,Value too big,Hodnota příliš velká DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Spustit test skriptu DocType: Contact,Department,Oddělení @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Záznamy DocType: Custom DocPerm,This role update User Permissions for a user,Tato role aktualizuje uživatelská oprávnění pro uživatele apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Přejmenovat {0} DocType: Workflow State,zoom-out,Zmenšit -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Nemůžete otevřít: {0} když je otevřena instance +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Nemůžete otevřít: {0} když je otevřena instance apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabulka: {0} nemůže být prázdná apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,S deníky apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,snímky DocType: Communication,Reference Owner,referenční Vlastník DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Nejmenší cirkulující frakce jednotka (mince). Pro například 1 cent za USD, a to by mělo být vstoupila jako 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Uveďte celé jméno. apps/frappe/frappe/model/document.py +904,Beginning with,počínaje apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Šablona importu dat apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Nadřazeno DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Pokud je povoleno, síla hesla bude vynucena na základě hodnoty minimálního skóre hesla. Hodnota 2 je středně silná a 4 je velmi silná." DocType: About Us Settings,"""Team Members"" or ""Management""","""Členové týmu"" nebo ""Vedení""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro 'zaškrtávací' pole musí být '0' nebo '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro 'zaškrtávací' pole musí být '0' nebo '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Včera DocType: Contact,Designation,Označení DocType: Test Runner,Test Runner,Testovací Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Je publikován Field DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,Viděn apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Přidat více -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ne jako +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ne jako apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Nastavit zobrazované označení pole apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nastaven apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Přihlášen Administrátor DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, např.: ""Dotaz prodeje, dotaz podpory"" atd., každý na novém řádku nebo oddělené čárkami." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Vložit +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Vložit apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vyberte {0} DocType: Print Settings,Classic,Klasické DocType: Desktop Icon,Color,Barva @@ -121,7 +121,7 @@ DocType: Translation,Translation,Překlad apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalovat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Pan DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Tento formulář byl změněn poté, co jste naložil" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Tento formulář byl změněn poté, co jste naložil" DocType: User Permission for Page and Report,User Permission for Page and Report,Uživatel Oprávnění pro stránky a zpráva DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Není-li nastaven, přesnost měny bude záviset na formátu čísla" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Důvod apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Prosím specifikujte uživatele DocType: Email Unsubscribe,Email Unsubscribe,Email Odhlásit DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Zvolte obrázek s šířkou okolo 150px a s transparentním pozadím pro nejlepší výsledek. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,První uživatel bude System Manager (lze později změnit). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,První uživatel bude System Manager (lze později změnit). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,circle-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Nahrávám... DocType: Email Domain,Email Domain,Email Domain DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Pro každého -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Nelze nastavit Import bez Vytvoření +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Nelze nastavit Import bez Vytvoření apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event a jiné kalendáře. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Všechna pole jsou nezbytná pro odeslání komentáře. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Přetáhnutím třídit sloupce @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standardní Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nelze odstranit Domů a přílohy složky apps/frappe/frappe/config/desk.py +19,Files,soubory apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Práva se aplikují na uživatele na základě přiřazené role. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Prosím zvolte aspoň 1 sloupec z {0} třídit / skupina +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Prosím zvolte aspoň 1 sloupec z {0} třídit / skupina DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Zaškrtněte, pokud se testuje platby pomocí API Sandbox" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nejste oprávněn odstranit standardní motiv webové stránky. DocType: Feedback Trigger,Example,Příklad @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Celkem Odběratelé apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Pakliže role nemá přístup na úrovni 0, pak vyšší úrovně nemají efekt." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Uložit jako DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Zobrazit více podrobností +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Zobrazit více podrobností DocType: System Settings,Run scheduled jobs only if checked,Spouštět plánované operace pouze když je zaškrtnuto apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Se zobrazí pouze tehdy, pokud jsou povoleny sekce nadpisy" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archiv @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Show Chart apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Je vyžadován platný email a jméno DocType: DocType,Hide Heading,Skrýt záhlaví DocType: Address,Current,Aktuální -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Související dokumenty apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Skupiny DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-circle @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filtr apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FieldName {0} nemůže mít speciální znaky jako {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualizujte mnoho hodnot najednou. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Chyba: Dokument byl upraven poté, co jste ho otevřeli" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odhlášen: {1} DocType: Address,West Bengal,Západní Bengálsko -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Nelze nastavit Odeslat když není Odeslatelné +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Nelze nastavit Odeslat když není Odeslatelné DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","Filtrováno dle ""{0}""" DocType: Salutation,Administrator,Správce @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Titulek blogu apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standardní role nemůže být zakázán DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Nelze použít sub-query v pořadí +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Nelze použít sub-query v pořadí DocType: Web Form,Button Help,tlačítko Nápověda DocType: Kanban Board Column,purple,nachový DocType: About Us Settings,Team Members,Členové týmu @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Pořiďte si apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaše předplatné vypršelo na {0}. Chcete-li obnovit, {1}." DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Instalační program již dokončena -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} není nainstalován +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} není nainstalován DocType: Workflow State,Refresh,Obnovit DocType: Event,Public,Veřejné apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Není co zobrazit @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Oblíbená apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mailová podpora DocType: DocField,Print Hide If No Value,Tisk Hide-li Ne Hodnota DocType: Event,yellow,žlutý -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Je publikován pole musí být platná fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Je publikován pole musí být platná fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Nahrát přílohu DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Šablona exportu @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Nový účet byl vytvořen pro vás v {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Pokyny zasláno e-mailem -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Zadejte e-mail příjemce (ů) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Zadejte e-mail příjemce (ů) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag fronty apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nelze určit otevřené {0}. Zkuste něco jiného. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,ID zprávy DocType: Property Setter,Field Name,Název pole apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite není nakonfigurován. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,nebo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,název modulu ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Pokračovat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,název modulu ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Pokračovat DocType: Custom Field,Fieldname,Název pole DocType: Workflow State,certificate,certifikát DocType: User,Tile,Dlaždice @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Zobrazit všechny verze DocType: Workflow State,Print,Tisk DocType: User,Restrict IP,Omezit IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Přístrojová deska apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Vyhledávání nebo zadejte příkaz DocType: Communication,Timeline Name,Časová osa Name @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Sales manažer ve skupině Master apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Jeden Poslední krok apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Název dokumentu typu (DocType) se kterým chcete provázat toto pole. Např.: Zákazník DocType: User,Roles Assigned,Přiřazení rolí -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Nápověda pro vyhledávání +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Nápověda pro vyhledávání DocType: Top Bar Item,Parent Label,nadřazený popisek apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Váš dotaz byl přijat. Odpovíme Vám brzy zpět. Máte-li jakékoliv další informace, prosím, odpovězte na tento mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Oprávnění jsou automaticky překládána ve standardních výpisech a vyhledávačích. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Upravit záhlaví DocType: File,File URL,Adresa URL souboru DocType: Version,Table HTML,Tabulka HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nebyly nalezeny žádné výsledky pro '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Přidat předplatitelé apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Nadcházející události pro dnešek DocType: Email Alert Recipient,Email By Document Field,Email od pole dokumentu @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Částka z terénního apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Uživatel je povinný pro Share DocType: DocField,Hidden,skrytý DocType: Web Form,Allow Incomplete Forms,Umožnit Neúplné formuláře -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0}: musí být nastaveno první +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0}: musí být nastaveno první apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Použijte pár slov, vyhnout obvyklým fráze." DocType: Workflow State,plane,letadlo -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Jejda. Vaše platba se nezdařila. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, ""číselníky"" se stanou povinnými, pakliže jsou zvoleny." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Získejte upozornění pro dnešní den +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Získejte upozornění pro dnešní den apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE lze přejmenovat pouze uživatel Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Změněná hodnota {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Zkontrolujte svůj e-mail pro ověření -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold nemůže být na konci formuláře +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odražené DocType: Deleted Document,Deleted Name,vypouští Name apps/frappe/frappe/config/setup.py +14,System and Website Users,Systémový a veřejní uživatelé @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument ve frontě DocType: GSuite Templates,Destination ID,ID místa určení DocType: Desktop Icon,List,Seznam DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Neplatné heslo: DocType: Print Settings,Send document web view link in email,Odeslat dokument odkaz web zobrazit v e-mailu apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše připomínky ke dokumentu {0} úspěšně uložen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Předchozí -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} řádky pro {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-měna. Pro např ""Cent """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vyberte uploadovaný soubor @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Odkaz apps/frappe/frappe/utils/file_manager.py +96,No file attached,Žádný soubor nepřiložen DocType: Version,Version,Verze DocType: User,Fill Screen,Vyplnit obrazovku -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Prosím, nastavte výchozí E-mailový účet z Nastavení> E-mail> E-mailový účet" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vyberte Soubor apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Upravit pomocí Vkládání -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","typ dokumentu ..., např zákazník" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","typ dokumentu ..., např zákazník" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Stavem '{0}' je neplatná DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Přidejte svůj vlastní překlady @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Středa apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Kromě pravidel oprávnění založených na rolích, můžete aplikovat uživatelská oprávnění založená na DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Pole Obrázek musí být platný fieldname DocType: OAuth Client,Token,Žeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (název) entity jejíž vlastnost bude nastavena apps/frappe/frappe/limits.py +82,"To renew, {0}.","Chcete-li obnovit, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Položky postranního panelu apps/frappe/frappe/installer.py +125,App {0} already installed,Aplikace {0} již byla nainstalována DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Ukázat Oprávnění -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Časová osa pole musí být Link nebo Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Časové období apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strana {0} z {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Předs apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",Šifrovací klíč je neplatný. Zkontrolujte prosím site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,na DocType: Kanban Board Column,darkgrey,tmavošedý -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Úspěšný: {0} až {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Úspěšný: {0} až {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,V demo nelze změnit uživatelské detaily. Přihlaste se k novému účtu na adrese https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Prosím, kopírovat to, aby se změny" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"Generování PDF se nezdařilo, protože zlomených obrázkové odkazy" @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Skládací apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Uloženo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,S čím potřebuješ pomoci? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Volby pro vybrané. Každá volba na nový řádek. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Zrušit na trvalo: {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Zrušit na trvalo: {0}? DocType: Workflow State,music,Hudba DocType: Web Page,Settings,Nastavení apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Prosím specifikujte doctype DocType: Print Format,Style Settings,Nastavení stylu -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Uspořádat pole {0} musí být platné fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Více DocType: Contact,Sales Manager,Manažer prodeje apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Přejmenovat DocType: Print Format,Format Data,Formát dat -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Jako +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Jako DocType: Customize Form Field,Customize Form Field,Přizpůsobit formulářové pole apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Umožňuje uživateli DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Aplikace s výpisem není povolena -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,použijete % jako zástupný znak -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail domény není nakonfigurován pro tento účet, vytvořit jeden?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,použijete % jako zástupný znak +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domény není nakonfigurován pro tento účet, vytvořit jeden?" DocType: User,Reset Password Key,Obnovit heslo klíče DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ne Seen @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Nastavit pouze jednou DocType: Email Queue Recipient,Email Queue Recipient,Email Fronta Příjemce DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Uživatelské jméno {0} již existuje -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Nelze nastavit import, protože {1} není importovatelné" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Tam je chyba v adrese šabloně {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Od Celé jméno apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nemáte přístup k Reportu: {0} DocType: User,Send Welcome Email,Odeslat uvítací e-mail apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Nahrát (upload) soubor CSV obsahující všechna uživatelská oprávnění ve stejném formatu, v jakém jste je stáhli." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Odebrat filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Odebrat filtr DocType: Address,Daman and Diu,Daman a Diu DocType: Address,Personal,Osobní apps/frappe/frappe/config/setup.py +113,Bulk Rename,Hromadné přejmenování @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standardní typ DocType nemůže mít výchozí formát tisku, použijte možnost Přizpůsobit formulář" DocType: Report,Query,Dotaz DocType: DocType,Sort Order,Pořadí řazení -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'V seznamu' není povoleno pro typ {0} na řádku {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Zvolte popisek, za kterým chcete vložit nové pole." ,Document Share Report,Dokument Share Report DocType: User,Last Login,Poslední přihlášení -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sloupec DocType: Custom Field,Adds a custom field to a DocType,Přidá přizpůsobené pole do DocType DocType: File,Is Home Folder,Je Domovská složka @@ -583,7 +583,7 @@ DocType: File,Folder,Složka DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Manažer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Možnost 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Všechny příspěvky +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} až {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Přihlásit se chyby během požadavků. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} byl úspěšně přidán do e-mailové skupiny. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikátor DocType: DocShare,Everyone,Všichni DocType: Workflow State,backward,pozpátku -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: jedno pravidlo pouze dovoleno se stejnou roli, Level a {1}" DocType: Email Queue,Add Unsubscribe Link,Přidat odkaz pro odhlášení apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Zatím žádné komentáře. Začít novou diskuzi. DocType: Workflow State,share,Podíl @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,není apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Zobrazit Odběratelé apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Paní DocType: Website Theme,Background Color,Barva pozadí -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. DocType: Portal Settings,Portal Settings,Portál Nastavení DocType: Web Page,0 is highest,0 je nejvyšší apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Jste si jisti, že chcete znovu sestavit toto sdělení {0}?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Nastavení - Kontaktujte nás apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Hledání ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Následující povinné údaje musí být vyplněny:
DocType: Email Alert,View Properties (via Customize Form),Zobrazení vlastností (přes Vlastní forma) DocType: Note Seen By,Note Seen By,Poznámka viděn @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Výpisy konfigurátoru výpisů jsou spravovány přímo konfigurátorem výpisů. Nelze provést žádnou akci. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Je třeba ověřit svou emailovou adresu apps/frappe/frappe/model/document.py +903,none of,žádný z -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Odeslat si kopii +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Odeslat si kopii apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Nahrát (upload) uživatelská oprávnění DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Webová stránka apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Zaškrtnuté položky se zobrazí na ploše -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nelze nastavit pro Single types +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nelze nastavit pro Single types apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} neexistuje. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} právě prohlížejí tento dokument DocType: ToDo,Assigned By Full Name,Přidělené Celé jméno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0}: aktualizováno -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dny DocType: Email Account,Awaiting Password,Čeká Password DocType: Address,Address Line 1,Adresní řádek 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." DocType: Print Settings,Allow Print for Draft,Umožňují tisk pro Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Nastavit Množství -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Předloží tento dokument potvrdit +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Předloží tento dokument potvrdit DocType: Contact,Unsubscribed,Odhlášen z odběru apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Nastavit vlastní role pro stránky a zprávy apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Hodnocení: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Nástroj importování dat DocType: Address,Dadra and Nagar Haveli,Dádra a Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Nahrávání souborů, prosím vyčkejte několik vteřin." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Připojit svůj obrázek +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Připojit svůj obrázek apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Hodnoty Změnil DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Odkaz na stránku, kterou chcete otevřít. Ponechte prázdné, pokud chcete, aby to skupina rodič." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Srovnejte štítky k levému DocType: Help Article,Expert,Expert DocType: Workflow State,circle-arrow-right,circle-arrow-right DocType: LDAP Settings,LDAP Server Url,URL Serveru LDAP -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Nelze otevřít instanci když je otevřeno: {0} +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Nelze otevřít instanci když je otevřeno: {0} apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Ve frontě pro instalaci DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Poslat odkaz pro odhlášení @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} odstraněno DocType: Custom DocPerm,Apply User Permissions,Použít oprávnění DocType: User,Modules HTML,Moduly HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavení> Správce oprávnění uživatelů apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Chybějící hodnoty vyžadovány DocType: DocType,Other Settings,další nastavení DocType: Social Login Keys,Frappe,Frapé @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nositel Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Vybrán žádný dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Událost -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nelze smazat standardní pole. Můžete ji skrýt, pokud chcete" DocType: Top Bar Item,For top bar,Pro horní panel apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nebyli schopni určit {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Bezbariérový přístup DocType: Workflow State,minus,mínus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Serverová chyba: Prosím zkontrolujte serverové logy nebo kontaktujte technickou podporu. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Uvítací email odeslán -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Pojďme připravit systém pro první použití. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Pojďme připravit systém pro první použití. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Doporučené apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Již registrováno DocType: System Settings,Float Precision,Počet desetinných míst @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,umožňují tisk apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Žádné Apps Instalovaný apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označit pole jako povinné DocType: Communication,Clicked,Clicked -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} DocType: User,Google User ID,Google ID uživatele apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Naplánováno odesílat DocType: DocType,Track Seen,Track Viděno @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,souběžných relací DocType: OAuth Client,Client Credentials,klientské pověření -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Otevřít modul nebo nástroj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Otevřít modul nebo nástroj DocType: Communication,Delivery Status,Delivery Status DocType: Module Def,App Name,Název aplikace apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maximální velikost souboru je dovoleno {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,referenční Komunikace DocType: Email Queue,Unsubscribe Method,Metoda aktuality DocType: GSuite Templates,Related DocType,Související DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Upravit pro přidání obsahu -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Zvolte jazyky -apps/frappe/frappe/__init__.py +510,No permission for {0},Nemáte oprávnění pro {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Zvolte jazyky +apps/frappe/frappe/__init__.py +509,No permission for {0},Nemáte oprávnění pro {0} DocType: DocType,Advanced,Pokročilé apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Zdá se, že klíč API nebo API Secret je špatně !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Vložte typ formuláře apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Není oštítkován žádný záznam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Odebrat pole DocType: User,Send Password Update Notification,Poslat heslo Aktualizovat oznámení -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Upravené formáty pro tisk, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Aktualizováno na novou verzi DocType: Custom Field,Depends On,Závisí na @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,jeden z apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Vyberte soubor, který chcete zkopírovat" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrola jeden okamžik apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Zobrazit štítky +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Pokud je zaškrtnuto políčko Použít oprávnění pro přísné uživatele a uživatelské oprávnění je definováno pro uživatele typu DocType, všechny dokumenty, u nichž je hodnota odkazu prázdné, se tomuto uživateli nezobrazí" DocType: Address,Billing,Fakturace DocType: Email Queue,Not Sent,Neodesláno DocType: Web Form,Actions,Akce @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasný apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Denní události by měly skončit ve stejný den. DocType: Communication,User Tags,Uživatelské štítky apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Načítání obrázků .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavení> Uživatel DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Stažení aplikace {0} DocType: Communication,Feedback Request,Zpětná vazba Poptávka @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,zálohy apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Přidat kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Volitelné: Vždy posílat tyto identifikátory. Každá e-mailová adresa na nový řádek -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Skrýt podrobnosti +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Skrýt podrobnosti DocType: Workflow State,Tasks,úkoly DocType: Event,Tuesday,Úterý DocType: Blog Settings,Blog Settings,Nastavení blogu @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Zapíše soubor Pythonu ve stejném adresáři kde je toto uloženo a vrátí sloupec a výsledek. DocType: DocType,Sort Field,Pole řadit dle DocType: Razorpay Settings,Razorpay Settings,Nastavení Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Upravit filtr -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","např. Pokud Použít uživatelských oprávnění je kontrolována Report DOCTYPE, ale žádný uživatel Oprávnění jsou definovány pro zprávy za Uživatele, pak všechny zprávy jsou zobrazeny tomuto uživateli" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Upravit filtr +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Přidej víc apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,skrýt graf DocType: System Settings,Session Expiry Mobile,Session Zánik Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Zpožděné apps/frappe/frappe/config/setup.py +128,List of backups available for download,Seznam záloh k dispozici ke stažení apps/frappe/frappe/www/login.html +89,Sign up,Přihlásit se DocType: Test Runner,Output,Výstup +DocType: Email Alert,Set Property After Alert,Nastavit vlastnost po upozornění apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Přidat pole do formulářů. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Zdá se, že se něco děje s konfigurací Paypal této stránky." DocType: File,rgt,Rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portál Položka DocType: User Email,Email ID,Email Id +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Pokud je pro aplikaci Report DocType zaškrtnuto políčko Použít oprávnění uživatele, ale žádné uživatelské oprávnění nejsou definovány pro hlášení pro uživatele, zobrazí se všechny zprávy tomuto uživateli" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Seznam zdrojů, které Klient App bude mít přístup k poté, co ho uživatel dovolí.
například projekt" DocType: Translation,Translated Text,Přeložený text DocType: Contact Us Settings,Query Options,Možnosti dotazu @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Zpráva ze všech akcií dokumentů apps/frappe/frappe/www/update-password.html +18,New Password,Nové heslo -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtr {0} chybí +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtr {0} chybí apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Promiňte! Nelze odstranit automaticky generovaná komentáře DocType: Website Theme,Style using CSS,Styl pomocí CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Reference DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Blokované moduly apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Návrat délku {0} pro '{1}' do '{2}'; Nastavení délky jako {3} způsobí zkrácení dat. DocType: Print Format,Custom CSS,Přizpůsobené CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Přidat komentář -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorovat: {0} až {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorovat: {0} až {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log chyb automatických událostí (plánovač). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Není validní CSV soubor (hodnoty oddělené čárkami) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,opakovat DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Pokud je vypnuta, tato role bude odstraněn ze všech uživatelů." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Nápověda k vyhledávání +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Nápověda k vyhledávání apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Registrovaný uživatel, ale tělesně postižené" DocType: DocType,Hide Copy,Skrýt kopii apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Odebrat všechny role @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Země apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresy DocType: Communication,Shared,Společná -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Přiložit tisku dokumentu +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Přiložit tisku dokumentu DocType: Bulk Update,Field,Pole DocType: Communication,Received,Přijato DocType: Social Login Keys,Google Client ID,Google ID klienta @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Report dotazu DocType: User,Set New Password,Nastavit nové heslo DocType: User,Github User ID,Github ID uživatele apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Pokud Typ dokumentu -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nelze smazat nebo zrušit, protože {0} {1} je spojeno s {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nelze smazat nebo zrušit, protože {0} {1} je spojeno s {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Neznámá aplikace {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S není platný formát zprávy. Zpráva formát by měl \ jednu z následujících možností% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} z {1} až {2} v řadě # {3} DocType: Communication,Expired,Vypršela DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Počet sloupců pro pole v mřížce (Celkový počet sloupců v mřížce by měla být menší než 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Mít účet? Přihl apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Print Format: {0} DocType: Workflow State,arrow-down,šipka-dolů apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Sbalit -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Naposledy Aktualizováno (kdy) DocType: Help Article,Likes,Záliby DocType: Website Settings,Top Bar,Horní panel DocType: GSuite Settings,Script Code,Kód skriptu apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Vytvořit e-mail uživatele -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Žádné povolené oprávnění +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Žádné povolené oprávnění apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globální nastavení: Uživatelé budou moci vybrat kontrolovat ikon apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nebyl nalezen DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorují uživatelského oprávnění Pokud chybějící -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Před nahráním prosím uložení dokumentu. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Před nahráním prosím uložení dokumentu. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Zadejte heslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Přidat další komentář apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,editovat DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odhlášen z Zpravodaje -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Složit musí přijít před konec oddílu +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Složit musí přijít před konec oddílu apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Poslední změna od DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,Stát GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Nelze nastavit Zrušit bez Odeslání +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Nelze nastavit Zrušit bez Odeslání DocType: Website Theme,Theme,Téma apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Byly tam chyby. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Přesměrování URI Bound auth zákoníku @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mé n DocType: Website Theme,Text Color,Barva textu DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Neplatný požadavek -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Tento formulář nemá žádný vstup +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Tento formulář nemá žádný vstup apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Vypršení platnosti relace musí být ve formátu {0} DocType: Website Sidebar Item,Group,Skupina DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Zvolte cíl (target) = ""_blank"" pro otevření na nové stránce." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorovat kódování chyby. DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Není nastaveno -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavení> Uživatel DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Vypnout registrování apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Drž se, když váš systém je nastavení. To může trvat několik okamžiků." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Přidat komentář DocType: DocField,Mandatory,Povinné apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul pro export -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nejsou nastavena základní práva +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nejsou nastavena základní práva apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Váš odběr vyprší {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link pro zálohování bude zasláno na e-mailovou adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Význam pojmů Vložit, Zrušit, Změnit" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-report apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Zadal {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtry uloženy DocType: DocField,Percent,Procento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Prosím nastavte filtry +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Prosím nastavte filtry apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Provázáno s DocType: Workflow State,book,kniha DocType: Website Settings,Landing Page,Landing stránka -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Chyba ve vlastní skript +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Chyba ve vlastní skript apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Dovoz Request ve frontě. To může trvat několik okamžiků, prosím, buďte trpěliví." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Žádná oprávnění nastavena pro toto kritérium. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Povolit přihlášení apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemáte dostatečná oprávnění pro přístup k tomuto prostředku. Obraťte se na správce získat přístup. DocType: Custom Field,Custom,Zvyk apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Nastavit emailová upozornění za základě různých kritérií. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Příspěvky podané v rámci {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Příspěvky podané v rámci {0} DocType: Email Alert,Send alert if date matches this field's value,Odeslat upozornění pokud datum souhlasí s hodnotou tohoto pole DocType: Workflow,Transitions,Přechody apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Odstraňte {0} a odstranit všechna data? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Přihlášení po DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tisk DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> Email> E-mailový účet DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,a DocType: Error Snapshot,Frames,Rámy @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Odkaz na obrázek DocType: Auto Email Report,Report Filters,zpráva Filtry apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,teď DocType: Workflow State,step-backward,step-backward -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Smazat tento záznam povolit odesílání na tuto e-mailovou adresu apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Je Přílohy Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Rozšířit vše apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Validní přihlašovací id je vyžadováno. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Znovu otevřít -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Zrušili jste platbu -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vyberte prosím platný CSV soubor s daty +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vyberte prosím platný CSV soubor s daty apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} již nesdílí tento dokument s {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Stav dokumentu přechod z {0} na {1} není povolen DocType: DocType,"Make ""name"" searchable in Global Search",Udělat "name" vyhledávat v Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,pů DocType: Help Category,Help Category,Kategorie nápovědy apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Uživatel {0} je zakázána apps/frappe/frappe/www/404.html +8,Page missing or moved,Stránka chybí nebo byla přesunuta -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Upravit {0} vlastnosti DocType: DocType,Route,Trasa apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay nastavení platební brána DocType: DocField,Name,Jméno apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Překročili jste maximální prostor {0} pro svůj plán. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Hledat v dokumentech DocType: OAuth Authorization Code,Valid,Platný -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Otevrít odkaz -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Váš jazyk +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otevrít odkaz +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Váš jazyk apps/frappe/frappe/desk/form/load.py +46,Did not load,Nebylo nahráno apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Přidat řádek DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Požadavek Fe DocType: Address,Lakshadweep Islands,Ostrovy Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Může psát apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Některé dokumenty, například faktura, nemůže být změněna pokud je dokončena. Finální stav pro takové dokumenty se nazývá Vloženo. Můžete omezit, které role mohou vkládat." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nemáte povoleno exportovat tento Report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nemáte povoleno exportovat tento Report apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 vybraná položka DocType: Newsletter,Test Email Address,Test E-mailová adresa DocType: ToDo,Sender,Odesilatel @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID dokument DocType: Print Settings,Letter,Dopis -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Pole Obraz musí být typu Připojit obrázek +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Pole Obraz musí být typu Připojit obrázek DocType: DocField,Columns,sloupce DocType: Async Task,Succeeded,Uspěl apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Povinné pole vyžadována pro {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Editor textu apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Nastavení pro stránku O nás. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Upravit vlastní HTML DocType: Error Snapshot,Error Snapshot,Chyba Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,V +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,V DocType: Email Alert,Value Change,Změnit hodnotu DocType: Standard Reply,Standard Reply,Standardní odpověď apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Šířka vstupního pole @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Pomocí tohoto FieldName ke generování názvu apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importovat e-maily z apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Pozvat jako Uživatel -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Vyberte přílohy +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Vyberte přílohy apps/frappe/frappe/model/naming.py +94, for {0},pro {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Došlo k chybám. Ohlaste to. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nemáte povoleno tisknout tento dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nemáte povoleno tisknout tento dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Prosím nastavit filtry hodnotu v Report Filtr tabulce. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Nahrávám Report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Nahrávám Report apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaše předplatné vyprší dnes. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Přiložit Soubor @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionální Rozšíření DocType: LDAP Settings,Base Distinguished Name (DN),Základna Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Opustit tuto konverzaci -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} DocType: Customize Form,"Must be of type ""Attach Image""",Musí být typu "Připojit Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Odznačit vše apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nemůžete odstavení "pouze pro čtení" pro pole {0} @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Poznámka apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Podmínky zpětné vazby neodpovídají -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Časová osa pole musí být platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Časová osa pole musí být platný fieldname DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Řádek č.{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Řádek č.{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nové heslo zasláno emailem apps/frappe/frappe/auth.py +245,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Email Account,Email Sync Option,E-mail Sync Option @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardní odpovědi na běžné dotazy. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Výchozí Odeslání DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Líbilo se {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Líbilo se {0} DocType: Footer Item,Footer Item,zápatí Item ,Download Backups,Ke stažení Zálohy apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Zarovnání textu apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Název nemůže obsahovat speciální znaky jako {0} DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Zobrazit všechny údaje -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Titulek musí být validní název pole +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titulek musí být validní název pole apps/frappe/frappe/config/core.py +7,Documents,Dokumenty DocType: Email Flag Queue,Is Completed,je dokončeno apps/frappe/frappe/www/me.html +22,Edit Profile,Editovat profil @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Toto pole se objeví pouze v případě, že fieldname zde definovány má hodnotu OR pravidla jsou pravými (příklady): myfield eval: doc.myfield == "Můj Value 'eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Dnes +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Dnes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pakliže toto nastavíte, uživatelé budou moci přistoupit pouze na dokumenty (např.: příspěvky blogu), kam existují odkazy (např.: blogger)." DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 hvězdička je nejnižší a 5 hvězdiček je nejvyšší hodnocení DocType: Event,Ref Name,Název reference DocType: Web Page,Center,Střed +DocType: Email Alert,Value To Be Set,"Hodnota, kterou chcete nastavit" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,První úroveň DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezentuje stavy povolené v jednom dokumentu a přiřazené role pro změnu stavu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Obnovit formulář @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Má zobrazování z Webu apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Název DOCTYPE by měla začínat písmenem a může sestávat pouze z písmen, číslic, mezer a podtržítek" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Žádost o integraci -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Vážený (á) +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Vážený (á) DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Uživatel Účtů DocType: Web Page,HTML for header section. Optional,HTML kód pro záhlaví. Volitelné apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Tato funkce je zcela nový a dosud experimentální -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximálně {0} řádků povoleno +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximálně {0} řádků povoleno DocType: Email Unsubscribe,Global Unsubscribe,Globální aktuality apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Jedná se o velmi časté hesla. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Pohled DocType: Communication,Assigned,přidělen DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Vybrat formát tisku +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Vybrat formát tisku apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Krátké vzory klávesnice lze snadno uhodnout DocType: Portal Settings,Portal Menu,portál Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Délka {0} by měla být mezi 1 a 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Uživatel nemůže vyhledávat apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Neplatný Výstupní formát DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použít toto pravidlo v případě, že uživatel je vlastníkem" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Bude to vaše přihlašovací ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bude to vaše přihlašovací ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Sestav Report DocType: Note,Notify users with a popup when they log in,"Informovat uživatele s pop-up, když se přihlásí" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, zvolte nový cíl pro sloučení" @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,role Oprávnění apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualizovat DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Uložte Newsletter před odesláním -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok (y) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Upravit vlastnosti DocType: Patch Log,List of patches executed,Seznam provedených záplat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} se již odhlásil -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikační médium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikační médium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Prosím, vyberte jiný způsob platby. Razorpay nepodporuje transakcí s oběživem ‚{0}‘" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Ve frontě pro zálohování. To může trvat několik minut až hodinu. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrovat OAuth klienta App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemůže být ""{2}"". Mělo by být jedno ze ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemůže být ""{2}"". Mělo by být jedno ze ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} nebo {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Ukázat nebo skrýt ikony na ploše apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Aktualizovat heslo @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Show konce řádků po oddílech DocType: Blogger,Short Name,Zkrácené jméno apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Stránka {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Volíte Sync Option jako ALL, bude to znovu synchronizovat všechny \ číst stejně jako nepřečtenou zprávu ze serveru. To může také způsobit duplikace \ komunikace (e-mailů)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,soubory Velikost @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,Vedoucí nákupu DocType: Custom Script,Sample,Vzorek apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizovaný Tags DocType: Event,Every Week,Týdně +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet není nastaven. Vytvořte nový e-mailový účet z nabídky Nastavení> Email> E-mailový účet apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klikněte zde pro kontrolu využití nebo upgrade na vyšší plán DocType: Custom Field,Is Mandatory Field,Je Povinné Pole DocType: User,Website User,Uživatel webu @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,tužka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat zprávy a další oznámení. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},"Vložit Poté, co nelze nastavit jako {0}" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},"Vložit Poté, co nelze nastavit jako {0}" apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podíl {0} s apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Nastavení e-mailový účet, zadejte své heslo pro:" DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Představení přispěvovatelů DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Chyba při vyhodnocování upozornění e-mailem {0}. Opravte šablonu. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Chyba při vyhodnocování upozornění e-mailem {0}. Opravte šablonu. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Zvolte DocType nebo roli pro zahájení DocType: Contact,Passive,Pasivní DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Platba je zrušena. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Vyberte typ souboru DocType: Help Article,Knowledge Base Editor,Editor Znalostní Báze apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stránka nenalezena @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Typ vlastnosti DocType: Workflow State,screenshot,snímek obrazovky apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Pouze administrátor může uložit standardní výpis. Prosím přejmenujte a uložte. DocType: System Settings,Background Workers,Pracovníci pozadí +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,"Název pole {0}, který je v konfliktu s objektem meta" DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stav dokumentu apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Provedli jste {0} z {1} @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Zobrazit práva uživatele apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Musíte být přihlášen a mít roli systémového správce, pro přístup k zálohám." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Zbývající -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Přidáno: {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Přednastavené téma je zasazen do {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Typ pole nemůže být změněn z {0} na {1} na řádku {2} @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Nastavení systému apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Zastavení relace se nezdařilo apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Tento e-mail byl odeslán na adresu {0} a zkopírovat do {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Prosím, nastavte výchozí E-mailový účet z Nastavení> E-mail> E-mailový účet" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Nově Vytvořit: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Nově Vytvořit: {0} DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Otevřít {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otevřít {0} DocType: OAuth Client,Default Redirect URI,Výchozí Přesměrování URI DocType: Email Alert,Recipients,Příjemci DocType: Workflow State,ok-sign,ok-sign @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Články nápovědy ,Modules Setup,Nastavení modulů apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typu: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Platba se nezdařila. DocType: Communication,Unshared,nerozdělený DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nenalezen @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,Značka Obrázek DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Nastavení horního navigačního panelu, zápatí a loga." DocType: Web Form Field,Max Value,Max Hodnota -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} DocType: Contact,All,Vše DocType: Email Queue,Recipient,Příjemce DocType: Communication,Has Attachment,má přílohu @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,zarovnat-vpravo DocType: Auto Email Report,Email To,E-mail na apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Složka {0} není prázdná DocType: Page,Roles,Role -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Pole {0} nemůžete zvolit. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Chyba: hodnota chybí pro {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Pole {0} nemůžete zvolit. DocType: System Settings,Session Expiry,Platnost relace DocType: Workflow State,ban-circle,ban-circle DocType: Email Flag Queue,Unread,Nepřečtený @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Výchozí nastavení uživatele apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Vytvořit nový DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email není poslán do {0} (odhlásili / vypnuto) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email není poslán do {0} (odhlásili / vypnuto) DocType: Async Task,Traceback,Vystopovat DocType: Currency,Smallest Currency Fraction Value,Nejmenší Měna Frakce Hodnota apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Přiřadit (komu) @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Od DocType: Website Theme,Google Font (Heading),Google Font (okruh) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Vyberte první uzel skupinu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Hledej: {0} v: {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Hledej: {0} v: {1} DocType: OAuth Client,Implicit,Implicitní DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Připojit jako komunikace se proti tomuto DOCTYPE (musí mít pole, ""Status"", ""Předmět"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI pro příjem autorizační kód, jakmile uživatel umožňuje přístup, stejně jako odpovědi selhání. Typicky REST koncový bod vystavena Klientem App.
např http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení DocType: Communication,Comment Type,Typ komentáře DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Uživatelé @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nelze číst formát souboru pro {0} DocType: Auto Email Report,Filter Data,Filtrování dat apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Přidat značku -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Prosím nejdříve přiložte soubor. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Prosím nejdříve přiložte soubor. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Narazili jsme na problémy při nastavování jména, prosím kontaktujte administrátora" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Příchozí e-mailový účet není správný apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,Email odeslán DocType: DocField,Ignore XSS Filter,Ignorovat XSS filtr apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,odstraněno apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Nastavení zálohování Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Odeslat jako email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Odeslat jako email DocType: Website Theme,Link Color,Barva odkazu apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Uživatel: {0} nemůže být vypnut apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Vážení System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Vaše země +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Vaše země DocType: Event,Sunday,Neděle apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,V zobrazení mřížky DocType: Address Template,Template,Šablona @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Dillí apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Nastavení LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Kterým se mění apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal nastavení platební brána -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane zkrácen, protože max povolené znaky je {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane zkrácen, protože max povolené znaky je {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resource hesla vlastníka pověření DocType: OAuth Client,Response Type,Typ Response apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maximální počet uživatelů @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Tabulka DocType: File,File Size,Velikost souboru apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Musíte se přihlásit pro odeslání tohoto formuláře DocType: User,Background Image,Obrázek na pozadí -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Vyberte svou zemi, časové pásmo a měnu" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mezi DocType: Async Task,Queued,Ve frontě @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Vytvořit apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Neplatný filtr: {0} DocType: Email Account,no failed attempts,no neúspěšných pokusů +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nebyla nalezena žádná výchozí šablona adresy. Vytvořte prosím nový z nabídky Nastavení> Tisk a branding> Šablona adresy. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,Access Key App DocType: OAuth Bearer Token,Access Token,Přístupový Token @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github - uživatelské jméno DocType: DocType,Image View,Image View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Vypadá to, že se něco během transakce špatně. Protože jsme nepotvrdily platbu Paypal bude vám automaticky tuto částku. Pokud se tak nestane, zašlete nám e-mail a uveďte ID korelace: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Do hesla vložte symboly, čísla a velká písmena" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vložte Po pole '{0}' uvedenou ve vlastním poli '{1}', se štítkem '{2}' neexistuje" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Do hesla vložte symboly, čísla a velká písmena" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vložte Po pole '{0}' uvedenou ve vlastním poli '{1}', se štítkem '{2}' neexistuje" DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Zobrazit nejdříve tisk apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, abyste mohl psát" @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Soubor '{0}' nebyl nalezen apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Odstranit oddíl DocType: User,Change Password,Změnit heslo -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Neplatný email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Ahoj! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Neplatný email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Ahoj! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Konec události musí být po začátku události apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nemáte práva přistoupit k výpisu: {0} +DocType: System Settings,Apply Strict User Permissions,Použijte oprávnění pro přísná uživatele DocType: DocField,Allow Bulk Edit,Povolit hromadné úpravy DocType: Blog Post,Blog Post,Příspěvek blogu -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Pokročilé vyhledávání +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Pokročilé vyhledávání apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Úroveň 0 je pro oprávnění na úrovni dokumentu, \ vyšší úrovně oprávnění na úrovni pole." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,zrušena DocType: Web Page,Sidebar and Comments,Postranní panel a Komentáře apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Pokud změníte dokument po jeho zrušení a uložíte ho, dostane přiřazeno nové číslo. Toto je verze starého čísla." DocType: Stripe Settings,Publishable Key,Klíč pro publikování -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok (y) DocType: Workflow State,circle-arrow-left,circle-arrow-left apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Redis vyrovnávací server neběží. Prosím, obraťte se na správce / technickou podporu" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Jméno Party -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Nově Vytvořit záznam +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Nově Vytvořit záznam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Vyhledávání DocType: Currency,Fraction,Zlomek DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Vyberte ze stávajících příloh +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vyberte ze stávajících příloh DocType: Custom Field,Field Description,Popis pole apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-mailové schránky @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Informace: DocType: Custom Field,Permission Level,úroveň oprávnění DocType: User,Send Notifications for Transactions I Follow,Posílat oznámení pro transakce sleduji -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nelze nastavit Odeslat, Zrušit, Změnit bez zapsání" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nelze smazat nebo zrušit, protože {0} {1} je spojeno s {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nebyly nalezeny žádné výsledky pro '

-apps/frappe/frappe/__init__.py +1063,Thank you,Děkujeme Vám +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nelze smazat nebo zrušit, protože {0} {1} je spojeno s {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Děkujeme Vám apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Ukládám DocType: Print Settings,Print Style Preview,Náhled stylu tisku apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,V seznamu DocType: Email Account,Use TLS,Použít TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neplatné heslo či uživatelské jméno apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Pořadové číslo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Pořadové číslo ,Role Permissions Manager,Správce rolí a oprávnění apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Jméno nového Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Povinné: ,User Permissions Manager,Správce oprávnění DocType: Property Setter,New value to be set,Nová hodnota k nastavení @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Před apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizujte příspěvky blogu. DocType: Workflow State,Time,Čas DocType: DocField,Attach,Přiložit -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} není platný vzor pole. To by mělo být {{název_pole}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Poslat zpětnou vazbu požadavek pouze tehdy, pokud existuje alespoň jeden komunikační je k dispozici pro dokument." DocType: Custom Role,Permission Rules,Pravidla oprávnění DocType: GSuite Settings,GSuite Settings,Nastavení GSuite DocType: Address,Links,Odkazy -apps/frappe/frappe/model/base_document.py +428,Value missing for,Chybí hodnota pro +apps/frappe/frappe/model/base_document.py +427,Value missing for,Chybí hodnota pro apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Přidat dítě -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odeslaný záznam nemůže být smazán. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Size DocType: GSuite Templates,Template Name,Název šablony -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Nový typ dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nový typ dokumentu DocType: Custom DocPerm,Read,Číst DocType: Role Permission for Page and Report,Role Permission for Page and Report,Oprávnění role Page a zpráva apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Srovnejte hodnotu apps/frappe/frappe/www/update-password.html +14,Old Password,Staré heslo -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Příspěvky od {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Příspěvky od {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Pro formátování sloupců, zadejte označení sloupců v dotazu." DocType: Has Domain,Has Domain,Má doménu apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Ještě nemáte svůj účet? Přihlásit se -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Upravit oprávnění rolí DocType: Communication,Link DocType,Link DocType @@ -2336,7 +2340,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Ujistěte se, že váš profil má e-mailovou adresu" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Prosím, uložte změny než budete pokračovat." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Výchozí pro {0} musí být možnost +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Výchozí pro {0} musí být možnost DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: User,User Image,Obrázek uživatele (avatar) apps/frappe/frappe/email/queue.py +289,Emails are muted,Emaily jsou potlačené (muted) @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Příští DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Tyto hodnoty budou automaticky aktualizovány v transakcích a rovněž bude užitečné omezit oprávnění pro tohoto uživatele v transakcích obsahujících tyto hodnoty. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Vydavatel -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Selhalo: {0} až {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Selhalo: {0} až {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,vyberte Povinné apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Prohlížet apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-maily odeslané @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,Běh apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Obnovit heslo apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Prosím upgrade přidat více než {0} předplatitelů DocType: Workflow State,hand-left,hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemůže být jedinečné DocType: Email Account,Use SSL,Použít SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zvolte formát tisku upravit @@ -2436,7 +2440,7 @@ DocType: DocField,No Copy,Žádná kopie DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Přihlášení s LDAP DocType: Web Form,Breadcrumbs,Drobečková navigace (Breadcrumbs) -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Pokud majitelem +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Pokud majitelem DocType: OAuth Authorization Code,Expiration time,doba expirace DocType: Web Page,Website Sidebar,Webové stránky Sidebar DocType: Web Form,Show Sidebar,Show Sidebar @@ -2456,7 +2460,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nelze najít {0} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Jména a příjmení samy o sobě jsou snadno uhodnout. apps/frappe/frappe/config/website.py +93,Knowledge Base,Znalostní báze DocType: Workflow State,briefcase,kufřík -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} DocType: Feedback Request,Is Manual,je Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styly reprezentující barvy tlačítek: Úspěch - zelená, Nebezpečí - Červená, Inverze - černá, Hlavní – tmavě modrá, Info – světle modrá, Upozornění – oranžová" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Žádný Report nenalezen. Prosím použijte query-report/[název výpisu] pro spuštění výpisu. @@ -2533,7 +2537,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Pokrok apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,podle role apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,chybějící Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Neplatný fieldname '{0}' v autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Hledat v typu dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Hledat v typu dokumentu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Povolit aby pole zůstalo upravovatelné i po vložení DocType: Custom DocPerm,Role and Level,Role a úroveň DocType: File,Thumbnail URL,Thumbnail URL @@ -2550,18 +2554,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Víc informací DocType: Desktop Icon,Desktop Icon,Ikona Desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Vaše platba byla úspěšně přijat +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Vaše platba byla úspěšně přijat apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Je nám líto! Nemáte povoleno zobrazení této stránky. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: Poklepáním buňka editovat DocType: Workflow State,bell,zvon apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Chyba v upozornění e-mailu apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Sdílejte tento dokument s +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavení> Správce oprávnění uživatelů apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} nemůže být uzel koncový uzel jelikož má podřízené uzly DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Přidat přílohu +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Přidat přílohu DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Děkujeme Vám za zprávu -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Poslat přečtení +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Poslat přečtení DocType: Stripe Settings,Stripe Settings,Stripe Nastavení DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup přes Site Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Neplatný Přihlášení Token @@ -2638,6 +2643,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Upozornění: tento tiskový formát je ve starém stylu a nemůže být generován skrze API. DocType: DocField,Print Width,šířka tisku ,Setup Wizard,Průvodce nastavením +DocType: Address,GST State Number,Stavové číslo GST DocType: User,Allow user to login only before this hour (0-24),Povolit uživatelům přihlásit pouze před tuto hodinu (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Složka je povinná apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2663,7 +2669,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Krátký text apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Správce přístupné {0} na {1} pomocí IP adresy {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Je rovno -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType' DocType: About Us Settings,Team Members Heading,Záhlaví členů týmu apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Neplatný formátu CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Nastavit počet záloh @@ -2674,7 +2680,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Ověření třetí stranou DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad horní lištou menu. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Export Report: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Export Report: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} neexistuje DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2697,7 +2703,7 @@ DocType: Kanban Board Column,Column Name,Název sloupce DocType: Language,Based On,Založeno na apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Nastavit jako výchozí apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,"Zkontrolujte, zda URL Frappe Server" -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nelze indexovat DocType: Communication,Email Account,E-mailový účet DocType: Workflow State,Download,Stáhnout DocType: Blog Post,Blog Intro,Úvod blogu @@ -2708,7 +2714,7 @@ DocType: Web Page,Insert Code,Vložit kód DocType: ToDo,Low,Nízké apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Můžete přidat dynamické vlastnosti z dokumentu pomocí Jinja šablonovacího. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Neplatný limit {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Seznam typů dokumentů +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Seznam typů dokumentů DocType: Event,Ref Type,Typ reference apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný." DocType: Address,Chattisgarh,Chattisgarh @@ -2730,25 +2736,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Odeslat tisk jako PDF DocType: Web Form,Amount,Částka DocType: Workflow Transition,Allowed,Povoleno -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nelze zapsat formát souboru pro {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Obnovit výchozí nastavení? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neplatná domovská stránka apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Neplatné přihlášení. Zkus to znovu. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Možnosti požadované pro pole Odkaz nebo Tabulka typu {0} v řádku {1} DocType: Auto Email Report,Send only if there is any data,"Zaslat pouze tehdy, pokud existuje údaje" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Obnovit filtry -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnění na úrovni 0 musí být nastaveno před nastavením vyšších úrovní apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Úkol uzavřen {0} DocType: Integration Request,Remote,Dálkový -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Vypočítat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Vypočítat apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Prosím, vyberte první DocType" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdit Váš e-mail apps/frappe/frappe/www/login.html +42,Or login with,Nebo se přihlašte DocType: Error Snapshot,Locals,Místní obyvatelé apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Předávány prostřednictvím {0} z {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} se o vás zmínil v komentáři v {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,například (55 + 434) / 4 nebo = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,například (55 + 434) / 4 nebo = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} je vyžadováno DocType: Integration Request,Integration Type,integrace Type DocType: Newsletter,Send Attachements,odeslat přílohy @@ -2758,14 +2764,14 @@ DocType: DocField,Perm Level,úroveň oprávnění apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Dnešní události v kalendáři DocType: Web Page,Web Page,Www stránky DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'V globálním vyhledávání' není povolen typ {0} v řádku {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Zobrazit seznam -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum musí být ve formátu: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum musí být ve formátu: {0} DocType: Workflow,Don't Override Status,Nepotlačí Stav apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Uveďte prosím hodnocení. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Poptávka apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Hledaný výraz -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,První Uživatel: Vy +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,První Uživatel: Vy apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Vyberte sloupce DocType: Translation,Source Text,Zdroj Text apps/frappe/frappe/www/login.py +55,Missing parameters for login,Chybějící parametry pro přihlášení @@ -2787,7 +2793,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Import DocType: ToDo,Assigned By,přidělené apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Můžete použít Formulář Přizpůsobení pro nastavení úrovní na polích. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Vyberte oblast +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Vyberte oblast DocType: Custom DocPerm,Level,Úroveň DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Množství musí být větší než 0 ° C. @@ -2807,7 +2813,7 @@ DocType: Website Theme,Background,Pozadí DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON sezam DocTypes použitých pro aplikování uživatelských oprávnění. Pakliže je prázdný, všechny provázané DocTypes budou použity pro aplikování uživatelských oprávnění." DocType: Report,Ref DocType,Referenční DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Přidejte hodnocení -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Nelze Změnit bez Zrušení apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Je podtabulka apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} musí být jedno ze {1} @@ -2822,7 +2828,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Toto přijde nad prom apps/frappe/frappe/config/setup.py +260,Install Applications.,Instaluje aplikace DocType: Contact,Last Name,Příjmení DocType: Event,Private,Soukromé -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Žádné upozornění na dnešek +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Žádné upozornění na dnešek DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Zvolte tiskové přílohy emailu jako PDF (doporučeno) DocType: Web Page,Left,Zbývá DocType: Event,All Day,Celý den @@ -2836,7 +2842,7 @@ DocType: Event,Send an email reminder in the morning,Ráno odeslat upozornění DocType: Blog Post,Published On,Publikováno (kdy) DocType: Contact,Gender,Pohlaví apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Povinné nebo chybějící údaje: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nelze nastavit jako jedinečné, jak to má non-jedinečné hodnoty" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Pouhých 200 vložky povoleno v jedné žádosti DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Typ reference @@ -2849,7 +2855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Uživatel DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Zobrazit titul v okně prohlížeče jako "Předčíslí - nadpis" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text v typu dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text v typu dokumentu apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Spusťte testy apps/frappe/frappe/handler.py +91,Logged Out,Odhlásit apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Více... @@ -2874,13 +2880,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Právě si prohlížíte DocType: DocField,Default,Výchozí apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}: přidáno -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Hledat '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Hledat '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Prosím, uložte sestavu jako první" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} odběratelé přidáni apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne V DocType: Workflow State,star,star -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,hodnoty oddělené čárkami -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,hodnoty oddělené čárkami +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Prosím, podělte se o své zpětnou vazbu pro {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Obsah www stránky. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Přidat novou roli @@ -2898,7 +2904,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Není platný uživatel LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} není validní stav apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Prosím, vyberte jiný způsob platby. PayPal nepodporuje transakcí s oběživem ‚{0}‘" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Vyhledávací pole {0} není platný +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Vyhledávací pole {0} není platný DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Můžete najít věci tím, že žádá "najít oranžovou zákazníků '" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Je nám líto! Uživatel by měl mít kompletní přístup k vlastnímu záznamu. @@ -2958,7 +2964,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtr Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text k zobrazení k prolinkování www stránky pokud má tento formulář www stránku. Cesta odkazu bude automaticky generována na základě `page_name` a `parent_website_route` DocType: Feedback Request,Feedback Trigger,Zpětná vazba Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Prosím nejprve nastavte {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Prosím nejprve nastavte {0} DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Záplata DocType: Async Task,Failed,Nepodařilo diff --git a/frappe/translations/da.csv b/frappe/translations/da.csv index d0773c6f9c..59bcafbb43 100644 --- a/frappe/translations/da.csv +++ b/frappe/translations/da.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Brugernavn DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Bemærk: Flere sessioner vil være tilladt i tilfælde af mobil enhed apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktiveret email indbakke for bruger {brugere} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan ikke sende denne e-mail. Du har krydset sende grænse på {0} emails for denne måned. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Godkend endeligt {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Godkend endeligt {0}? DocType: Address,County,Anvendes ikke DocType: Workflow,If Checked workflow status will not override status in list view,Hvis Kontrolleret workflow status ikke tilsidesætter status i listevisning apps/frappe/frappe/client.py +280,Invalid file path: {0},Ugyldig filsti: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Vælg e apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Træ DocType: User,User Emails,Bruger e-mails DocType: User,Username,Brugernavn -apps/frappe/frappe/model/base_document.py +581,Value too big,Værdi for stor +apps/frappe/frappe/model/base_document.py +580,Value too big,Værdi for stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kør scripttest DocType: Contact,Department,Afdeling @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Logs DocType: Custom DocPerm,This role update User Permissions for a user,Denne rolle opdatering Bruger Tilladelser for en bruger apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Omdøb {0} DocType: Workflow State,zoom-out,zoom-ud -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Kan ikke åbne {0} når dens forekomst er åben +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan ikke åbne {0} når dens forekomst er åben apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabel {0} kan ikke være tomt apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Med Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Billeder DocType: Communication,Reference Owner,henvisning Ejer DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Mindste cirkulerende stambrøk (mønt). For fx 1 cent for USD, og det skal indtastes som 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, række {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, række {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Indtast det fulde navn. apps/frappe/frappe/model/document.py +904,Beginning with,Begyndende med apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Data Import Skabelon apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Hvis aktiveret, vil kodeordets styrke blive håndhævet baseret på værdien Minimum Password Score. En værdi på 2 er medium stærk og 4 er meget stærk." DocType: About Us Settings,"""Team Members"" or ""Management""","Team medlemmer" eller "Management" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Standard for "Kontrollér" type felt skal enten være '0' eller '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Standard for "Kontrollér" type felt skal enten være '0' eller '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,I går DocType: Contact,Designation,Betegnelse DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Er Udgivet Field DocType: Email Group,Email Group,E-mailgruppe DocType: Note,Seen By,Set af apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Tilføj flere -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ikke lig med +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ikke lig med apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Indstil displayet etiket for feltet apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Forkert værdi: {0} skal være {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Skift egenskaber for feltet (skjul, skrivebeskyttet, tilladelse osv.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Indstill apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator logget ind DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktmuligheder, som ""Sales Query, Support Query"" etc hver på en ny linje eller adskilt af kommaer." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Indsæt +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Indsæt apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vælg {0} DocType: Print Settings,Classic,Klassisk DocType: Desktop Icon,Color,Farve @@ -121,7 +121,7 @@ DocType: Translation,Translation,Oversættelse apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installer apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Hr. DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Denne formular er blevet ændret, efter at du har indlæst det" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Denne formular er blevet ændret, efter at du har indlæst det" DocType: User Permission for Page and Report,User Permission for Page and Report,Bruger Tilladelse til side og rapport DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Hvis ikke angivet, afhænger valutaens præcision af nummerformat" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Årsag apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Angiv venligst bruger DocType: Email Unsubscribe,Email Unsubscribe,Email Afmeld DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Vælg et billede med en ca. bredde på 150px med en gennemsigtig baggrund for det bedste resultat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Den første bruger bliver System Manager (du kan ændre dette senere). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Den første bruger bliver System Manager (du kan ændre dette senere). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cirkel-pil-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Uploader ... DocType: Email Domain,Email Domain,E-mail domæne DocType: Workflow State,italic,kursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,For alle -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Kan ikke sætte Import uden Opret +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Kan ikke sætte Import uden Opret apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Arrangementet og andre kalendere. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle felter er nødvendige for at indsende kommentaren. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Træk for at sortere kolonner @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Kan ikke slette Hjem og Tilbehør mapper apps/frappe/frappe/config/desk.py +19,Files,Filer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Tilladelser bliver anvendt på brugere baseret på, hvad Roller de er tildelt." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Det er ikke tilladt at sende e-mails relateret til dette dokument -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Vælg atleast 1 kolonne fra {0} at sortere / gruppe +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Det er ikke tilladt at sende e-mails relateret til dette dokument +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Vælg atleast 1 kolonne fra {0} at sortere / gruppe DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Markér dette hvis du tester din betaling ved hjælp af Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Du har ikke lov til at slette en standard hjemmeside tema DocType: Feedback Trigger,Example,Eksempel @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Total Abonnenter apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har adgang til niveau 0, så giver højere niveauer ingen mening." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Gem som DocType: Communication,Seen,Set -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Vis flere detaljer +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Vis flere detaljer DocType: System Settings,Run scheduled jobs only if checked,"Kør planlagte job, hvis kontrolleret" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Vil kun blive vist, hvis afsnitsoverskrifter er aktiveret" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkiv @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Vis diagram apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Gyldig e-mail og navn påkrævet DocType: DocType,Hide Heading,Skjul Overskrift DocType: Address,Current,Nuværende -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Relaterede dokumenter apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupper af doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,fjern-cirkel @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Feltnavn {0} kan ikke have specielle tegn som {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Opdatering mange værdier på én gang. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Fejl: Dokument er blevet ændret, efter at du har åbnet det" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} logget ud: {1} DocType: Address,West Bengal,Vestbengalen -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke sætte Tildel Indsend hvis ikke Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke sætte Tildel Indsend hvis ikke Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtreret efter "{0}" DocType: Salutation,Administrator,Administrator @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard roller kan ikke deaktiveres DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhedsbrev -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Kan ikke bruge sub-forespørgsel i rækkefølge efter +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Kan ikke bruge sub-forespørgsel i rækkefølge efter DocType: Web Form,Button Help,Knappen Hjælp DocType: Kanban Board Column,purple,lilla DocType: About Us Settings,Team Members,Team Medlemmer @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Få din glob apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Dit abonnement udløb den {0}. For at forny, {1}." DocType: Workflow State,plus-sign,plus-tegnet apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Opsætning allerede fuldført -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} er ikke installeret +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} er ikke installeret DocType: Workflow State,Refresh,Opdater DocType: Event,Public,Offentlig apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Intet at vise @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Ønsket af apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail Support DocType: DocField,Print Hide If No Value,Udskriv Skjul Hvis Nej Værdi DocType: Event,yellow,gul -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Er Udgivet Field skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Er Udgivet Field skal være en gyldig fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Udlæs skabelon @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},En ny konto er oprettet til dig på {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruktioner sendt -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Indtast e-mail Modtager (e) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Indtast e-mail Modtager (e) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag kø apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan ikke identificere åben {0}. Prøv noget andet. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,Message-ID DocType: Property Setter,Field Name,Feltnavn apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite er ikke konfigureret. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,eller -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modul navn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Fortsætte +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modul navn ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsætte DocType: Custom Field,Fieldname,Feltnavn DocType: Workflow State,certificate,certifikat DocType: User,Tile,Tile @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Vis alle versioner DocType: Workflow State,Print,Udskriv DocType: User,Restrict IP,Begræns IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,instrumentbræt apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Kan ikke sende e-mails på dette tidspunkt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Søg eller indtast en kommando DocType: Communication,Timeline Name,Tidslinje navn @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Salg Master manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Navn på Dokumenttype (DocType), tilknyt til. f.eks Customer" DocType: User,Roles Assigned,Roller Tildelt -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Søg Hjælp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Søg Hjælp DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Din forespørgsel er modtaget. Vi vil svare tilbage inden længe. Hvis du har yderligere oplysninger, bedes du besvare denne mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Tilladelser er automatisk oversat til Standard Rapporter og Søgninger. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Rediger overskrift DocType: File,File URL,Fil URL DocType: Version,Table HTML,tabel HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ingen resultater fundet for '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Tilføj Abonnenter apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Kommende begivenheder i dag DocType: Email Alert Recipient,Email By Document Field,E-mail ved dokumentfelt @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Beløb baseret på Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Bruger er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillad Ufuldstændige formularer -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} skal indstilles først +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} skal indstilles først apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Brug et par ord, undgå almindelige sætninger." DocType: Workflow State,plane,fly -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ups. Din betaling mislykkedes. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du uploader nye rekorder, "Navngivning Series" bliver obligatorisk, hvis den findes." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Få Advarsler for dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Få Advarsler for dag apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType kan kun blive omdøbt af Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},ændrede værdi af {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Tjek din e-mail til verifikation -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold kan ikke være i slutningen af formularen DocType: Communication,Bounced,Afviste DocType: Deleted Document,Deleted Name,slettet Navn apps/frappe/frappe/config/setup.py +14,System and Website Users,System- og hjemmesidebrugere @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument kø DocType: GSuite Templates,Destination ID,Destinations-id DocType: Desktop Icon,List,Liste DocType: Communication,Link Name,Link Navn -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} i række {1} kan ikke skjules og obligatoriske uden standard DocType: System Settings,mm/dd/yyyy,dd/mm/åååå apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Forkert adgangskode: DocType: Print Settings,Send document web view link in email,Send dokument web view link i e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Din feedback til dokument {0} er gemt apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Forrige -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Sv: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Sv: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rækker for {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. For eksempel "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vælg uploadet fil @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ingen fil vedhæftet DocType: Version,Version,Version DocType: User,Fill Screen,Udfyld skærm -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette træ rapport, på grund af manglende data. Mest sandsynligt er det at blive filtreret ud på grund af tilladelser." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Opsæt venligst standard e-mail-konto fra Opsætning> Email> E-mail-konto +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette træ rapport, på grund af manglende data. Mest sandsynligt er det at blive filtreret ud på grund af tilladelser." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vælg Filer apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","dokumenttype ..., fx kunde" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumenttype ..., fx kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tilstanden '{0}' er ugyldig DocType: Workflow State,barcode,stregkode apps/frappe/frappe/config/setup.py +232,Add your own translations,Tilføj dine egne oversættelser @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Onsdag apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Bortset fra Rolle baserede Tilladelse Regler, kan du anvende User Tilladelser baseret på doctypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Disse tilladelser vil gælde for alle transaktioner, hvor den tilladte record er knyttet. For eksempel, hvis firma C tilsættes Bruger Tilladelser for bruger X, bruger X vil kun være i stand til at se transaktioner, som har selskab C som en sammenkædet værdi." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Billede felt skal være en gyldig fieldname DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (navn) på den virksomhed, hvis ejendommen skal indstilles" apps/frappe/frappe/limits.py +82,"To renew, {0}.","For at forny, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Sidebar varer apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} er allerede installeret DocType: Workflow State,exclamation-sign,udråbstegn-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Vis Tilladelser -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Tidslinje felt skal være et link eller Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datointerval apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Side {0} af {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Introd apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",Krypteringsnøglen er ugyldig. Kontroller site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Til DocType: Kanban Board Column,darkgrey,mørkegrå -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Vellykket: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Vellykket: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Kan ikke ændre brugeroplysninger i demo. Tilmeld dig venligst en ny konto på https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Duplikér denne, for at foretage ændringer" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF-dannelse mislykkedes på grund af brudte billedelinks @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Sammenklappelig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gemt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Hvad har du brug for hjælp til? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Muligheder for at vælge. Hver option på en ny linje. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Permanent Annuller {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Permanent Annuller {0}? DocType: Workflow State,music,musik DocType: Web Page,Settings,Indstillinger apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Angiv venligst DOCTYPE DocType: Print Format,Style Settings,style Indstillinger -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sorter feltet {0} skal være en gyldig fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mere DocType: Contact,Sales Manager,Salgschef apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Omdøb DocType: Print Format,Format Data,Format af data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Lignende +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Lignende DocType: Customize Form Field,Customize Form Field,Tilpas Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Tillad Bruger DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Kontrollere, hvilke dokumenter er læses af en bruger" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing app ikke tilladt -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,bruge% som wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail Domæne ikke konfigureret til denne konto, Opret en?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,bruge% som wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail Domæne ikke konfigureret til denne konto, Opret en?" DocType: User,Reset Password Key,Nulstil adgangskode DocType: Email Account,Enable Auto Reply,Aktiver autosvar apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ikke set @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Sæt kun én gang DocType: Email Queue Recipient,Email Queue Recipient,Email Kø Modtager DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Brugernavn {0} findes allerede -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indføres +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sætte import som {1} er ikke kan indføres apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Der er en fejl i din adresseskabelon {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Fra Navn apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Du behøver ikke have adgang til Rapporter: {0} DocType: User,Send Welcome Email,Send velkomst-e-mail apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Upload CSV-fil, der indeholder alle brugertilladelser i samme format som download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Fjern Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Fjern Filter DocType: Address,Daman and Diu,Daman og Diu DocType: Address,Personal,Personlig apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Omdøb @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke have standard udskriftsformat, brug Tilpas formular" DocType: Report,Query,Forespørgsel DocType: DocType,Sort Order,Sorteringsrækkefølge -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'I Listevisning' ikke tilladt for type {0} i række {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Vælg den etiket, hvorefter du vil indsætte nyt felt." ,Document Share Report,Dokument Del Report DocType: User,Last Login,Sidste log ind -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Feltnavn kræves i række {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Feltnavn kræves i række {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonne DocType: Custom Field,Adds a custom field to a DocType,Tilføjer et brugerdefineret felt til et DocType DocType: File,Is Home Folder,Er Home Folder @@ -583,7 +583,7 @@ DocType: File,Folder,Folder DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Nyhedsbrev manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Mulighed 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Alle indlæg +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} til {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log af fejl under anmodninger. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} er blevet føjet til e-mailgruppen. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Alle DocType: Workflow State,backward,bagud -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én tilladt med samme rolle, Level og hersk {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Kun én tilladt med samme rolle, Level og hersk {1}" DocType: Email Queue,Add Unsubscribe Link,Tilføj Afmeld link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ingen kommentarer endnu. Start en ny diskussion. DocType: Workflow State,share,andel @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,er ikk apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Se Abonnenter apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fru DocType: Website Theme,Background Color,Baggrundsfarve -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Der var fejl under afsendelse af e-mail. Prøv venligst igen. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Der var fejl under afsendelse af e-mail. Prøv venligst igen. DocType: Portal Settings,Portal Settings,Portal Indstillinger DocType: Web Page,0 is highest,0 er højest apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Er du sikker på du vil linke denne kommunikation til {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Kontakt os Indstillinger apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Søger ... DocType: Workflow State,text-width,tekst-bredde -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimal Attachment for denne rekord nået. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimal Attachment for denne rekord nået. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Følgende obligatoriske felter skal udfyldes:
DocType: Email Alert,View Properties (via Customize Form),Se Egenskaber (via Customize Form) DocType: Note Seen By,Note Seen By,Note set af @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapportgeneratorens rapporter administreres direkte af rapportgeneratoren. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Bekræft din e-mail adresse apps/frappe/frappe/model/document.py +903,none of,ingen af -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Send mig en kopi +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Send mig en kopi apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Bruger Tilladelser DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Internetside apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Markerede elementer vil blive vist på skrivebordet -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} kan ikke indstilles for Single typer apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanbantavle {0} findes ikke. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} læser dette dokument DocType: ToDo,Assigned By Full Name,Tildelt af navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} opdateret -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporten kan ikke indstilles for Single typer apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dage siden DocType: Email Account,Awaiting Password,afventer adgangskode DocType: Address,Address Line 1,Adresse @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater for workflow (f.eks Udkast, Godkendt, Annulleret)." DocType: Print Settings,Allow Print for Draft,Tillad Print til Udkast apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Sæt Mængde -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Godkend dette dokument for at bekræfte +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Godkend dette dokument for at bekræfte DocType: Contact,Unsubscribed,Afmeldt apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Indstil brugerdefinerede roller for side og rapport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Bedømmelse: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra og Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Overførsel af filer skal du vente et par sekunder. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Vedhæft dit billede +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Vedhæft dit billede apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Værdier Ændret DocType: Workflow State,Stop,Stands DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link til den side, du vil åbne. Efterlad tom, hvis du ønsker at gøre det til en gruppe forældre." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Juster Etiketter til Venstre DocType: Help Article,Expert,Ekspert DocType: Workflow State,circle-arrow-right,cirkel-pil-højre DocType: LDAP Settings,LDAP Server Url,LDAP-server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Kan ikke åbne eksempel når dens {0} er åben +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Kan ikke åbne eksempel når dens {0} er åben apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,I kø for at installere DocType: Custom DocPerm,Custom DocPerm,Tilpasset DocPerm DocType: Newsletter,Send Unsubscribe Link,Send afmeld-link @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} fjernet DocType: Custom DocPerm,Apply User Permissions,Tilføj brugertilladelser DocType: User,Modules HTML,Moduler HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Opsætning> Brugerrettigheder apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Manglende værdier skal angives DocType: DocType,Other Settings,Andre indstillinger DocType: Social Login Keys,Frappe,frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bærer token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ingen dokument valgt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr. DocType: Event,Event,Begivenhed -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Den {0}, {1} skrev:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Den {0}, {1} skrev:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Kan ikke slette standard felt. Du kan skjule det, hvis du ønsker" DocType: Top Bar Item,For top bar,For top bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Kunne ikke identificere {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Adgang til skrivebord DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Serverfejl: Kontroller dine serverlogfiler eller kontakt teknisk support. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Velkomst-e-mail sendt -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Lad os forberede systemet til første brug. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Lad os forberede systemet til første brug. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Udvalgte apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Allerede registreret DocType: System Settings,Float Precision,Float Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Tillad Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ingen Apps Installeret apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Markere feltet som Obligatorisk DocType: Communication,Clicked,Klikkede -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ingen tilladelse til '{0}' {1} DocType: User,Google User ID,Google bruger-id apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planlagt til at sende DocType: DocType,Track Seen,Track Set @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Samtidige Sessions DocType: OAuth Client,Client Credentials,Client legitimationsoplysninger -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Åbn en modul eller værktøj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Åbn en modul eller værktøj DocType: Communication,Delivery Status,Levering status DocType: Module Def,App Name,App Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max filstørrelse tilladt er {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,henvisning Kommunikation DocType: Email Queue,Unsubscribe Method,Afmeld Method DocType: GSuite Templates,Related DocType,Relateret DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Rediger for at tilføje indhold -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Vælg sprog -apps/frappe/frappe/__init__.py +510,No permission for {0},Ingen tilladelse til {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Vælg sprog +apps/frappe/frappe/__init__.py +509,No permission for {0},Ingen tilladelse til {0} DocType: DocType,Advanced,Avanceret apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Synes API Key eller API Secret er forkert !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Indtast Form Type apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ingen poster markeret. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Fjern Field DocType: User,Send Password Update Notification,Send meddelelse vedr. opdateret adgangskode -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","At tillade DocType, DocType. Vær forsigtig!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","At tillade DocType, DocType. Vær forsigtig!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Tilpassede formater til udskrivning, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Opdateret Til Ny version DocType: Custom Field,Depends On,Afhænger af @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,en af apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Vælg venligst en fil, der skal kopieres" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrol ene øjeblik apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Vis Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Hvis Anvend Strengt Bruger Tilladelse er markeret, og Bruger Tilladelse er defineret for en DocType til en Bruger, vil alle de dokumenter, hvor værdien af linket er tom, ikke blive vist til den bruger" DocType: Address,Billing,Fakturering DocType: Email Queue,Not Sent,Ikke Sent DocType: Web Form,Actions,Handlinger @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,klar apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Hverdagsbegivenheder skal starte og slutte på samme dag. DocType: Communication,User Tags,User Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Henter billeder .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Opsætning> Bruger DocType: Workflow State,download-alt,Download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Download af App {0} DocType: Communication,Feedback Request,Feedback Request @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Sikkerhedskopier apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Tilføj Kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valgfrit: Send altid til disse id'er. Hver e-mail-adresse på en ny række -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Skjul detaljer +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Skjul detaljer DocType: Workflow State,Tasks,Opgaver DocType: Event,Tuesday,Tirsdag DocType: Blog Settings,Blog Settings,Blog Indstillinger @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Skriv en Python-fil i den samme mappe, hvor det er gemt og returnere kolonnen og resultat." DocType: DocType,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Indstillinger -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Rediger filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","f.eks. Hvis Anvend User Tilladelser kontrolleres for Rapport DocType men ingen User Tilladelser er defineret for Rapport for en bruger, så alle rapporter er vist til at Bruger" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Rediger filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Field {0} af typen {1} kan ikke være obligatorisk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Tilføj mere apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Skjul diagram DocType: System Settings,Session Expiry Mobile,Session Udløb Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Forsinket apps/frappe/frappe/config/setup.py +128,List of backups available for download,Liste over sikkerhedskopier til rådighed for download apps/frappe/frappe/www/login.html +89,Sign up,Tilmeld dig DocType: Test Runner,Output,Produktion +DocType: Email Alert,Set Property After Alert,Indstil ejendom efter advarsel apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Tilføj felter til formularer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Det ser ud til, at noget er galt med denne websteds Paypal-konfiguration." DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,E-mail-id +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Hvis Anvend brugertilladelser er markeret for Rapport DocType, men der ikke er defineret brugerautorisationer for Rapport til en bruger, vises alle rapporter til den bruger" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"En liste over ressourcer, som Client App vil have adgang til, efter at brugeren tillader det.
fx projekt" DocType: Translation,Translated Text,Oversat tekst DocType: Contact Us Settings,Query Options,Query Options @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kontakter DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapport fra alle dokumentsider aktier apps/frappe/frappe/www/update-password.html +18,New Password,Ny adgangskode -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} mangler +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} mangler apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Undskyld! Du kan ikke slette autogenererede kommentarer DocType: Website Theme,Style using CSS,Style ved hjælp af CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Henvisning DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Blokmodulerne apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vende tilbage længde til {0} for '{1}' i '{2}'; Indstilling af længde som {3} vil forårsage trunkering af data. DocType: Print Format,Custom CSS,Brugerdefinerede CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Tilføj en kommentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignoreret: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoreret: {0} til {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Logger fejl på automatiserede begivenheder (skeduleringen). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Ikke en gyldig kommaseparerede værdier (CSV fil) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Standard Indgående DocType: Workflow State,repeat,gentagelse DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Hvis deaktiveret, vil denne rolle blive fjernet fra alle brugere." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hjælp til søgning +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hjælp til søgning apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrerede men deaktiveret DocType: DocType,Hide Copy,Skjul Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Ryd alle roller @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresser DocType: Communication,Shared,Delt -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Vedhæft dokument Print +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Vedhæft dokument Print DocType: Bulk Update,Field,Felt DocType: Communication,Received,Modtaget DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Query rapport DocType: User,Set New Password,Set ny adgangskode DocType: User,Github User ID,Github bruger-id apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Hvis Dokumenttype -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Ukendt app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S er ikke et gyldigt rapport format. Rapport format skal \ et af følgende% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere gange i rækker {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere gange i rækker {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} fra {1} til {2} i rækkenr. {3} DocType: Communication,Expired,Udløbet DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antal kolonner for et felt i en Grid (Total kolonner i et gitter skal være mindre end 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Har du en konto? Lo apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Ukendt Print Format: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Fold sammen -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Bruger ikke lov til at slette {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Bruger ikke lov til at slette {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Senest opdateret d. DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Scriptkode apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Opret bruger e-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Ingen tilladelser angivet +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Ingen tilladelser angivet apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globale indstillinger: Brugerne vil kun være i stand til at vælge kontrolleret ikoner apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ikke fundet DocType: Custom Role,Custom Role,Tilpasset rolle apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forside / Test Mappe 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorér brugertilladelser hvis mangler -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Gem venligst dokumentet før du uploader. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Gem venligst dokumentet før du uploader. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Indtast din adgangskode DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tilføj en kommentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Afmeldt fra nyhedsbrev -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Fold skal komme før en sektion Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold skal komme før en sektion Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Senest ændret af DocType: Workflow State,hand-down,hånd-down DocType: Address,GST State,GST-stat -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Kan ikke sætte annullere uden Indsend +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Kan ikke sætte annullere uden Indsend DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Der var fejl. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigere URI Bundet Til Auth Code @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Indst DocType: Website Theme,Text Color,Tekstfarve DocType: Desktop Icon,Force Show,kraft Show apps/frappe/frappe/auth.py +78,Invalid Request,Ugyldig Request -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Denne formular har ikke noget input +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Denne formular har ikke noget input apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session Udløb skal være i formatet {0} DocType: Website Sidebar Item,Group,Gruppe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vælg target = "_blank" for at åbne i en ny side. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorér kodefejl. DocType: Workflow State,wrench,skruenøgle apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Ikke markeret -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Opsætning> Bruger DocType: Authentication Log,Date,Dato DocType: Website Settings,Disable Signup,Deaktiver Tilmelding apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Sidde stramt, mens dit system bliver setup. Dette kan tage et øjeblik." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Tilføj kommentar DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul til udlæsning -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Ingen grundlæggende tilladelser sæt +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Ingen grundlæggende tilladelser sæt apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Dit abonnement udløber den {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Downloadlink til din sikkerhedskopi vil blive sendt til følgende e-mail-adresse: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Betydning af Godkend, Annuller, Tilføj" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-rapport apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Tildelt til {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtre gemt DocType: DocField,Percent,Procent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Sæt venligst filtre +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Sæt venligst filtre apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Forbundet med DocType: Workflow State,book,bog DocType: Website Settings,Landing Page,Startside -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Fejl i Tilpasset Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fejl i Tilpasset Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Navn apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Request kø. Det kan tage et øjeblik, skal du være tålmodig." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Ingen Tilladelser sat for dette kriterium. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Tillad login ved hjælp apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Du har ikke nok rettigheder til at få adgang til denne ressource. Kontakt din leder for at få adgang. DocType: Custom Field,Custom,Brugerdefineret apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup mail Alert baseret på forskellige kriterier. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Stillinger arkiveret under {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Stillinger arkiveret under {0} DocType: Email Alert,Send alert if date matches this field's value,"Send besked, hvis dato kampe denne feltets værdi" DocType: Workflow,Transitions,Overgange apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Fjern {0} og slette alle data? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Log ind efter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Udskrivning DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto under Opsætning> Email> E-mail-konto DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Præcision skal være mellem 1 og 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Præcision skal være mellem 1 og 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,og DocType: Error Snapshot,Frames,Rammer @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Billede Link DocType: Auto Email Report,Report Filters,rapportfiltre apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nu DocType: Workflow State,step-backward,trin-bagud -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Venligst sæt Dropbox genvejstaster i dit site config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Slet denne rekord for at tillade at sende denne e-mail-adresse apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Kun obligatoriske felter er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner, hvis du ønsker." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Er Vedhæftede filer Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Udvid alle apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Gyldig login id påkrævet. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Genåbne -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Du har annulleret betalingen -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vælg en gyldig csv fil med data +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vælg en gyldig csv fil med data apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-delte dette dokument med {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokument status overgang fra {0} til {1} er ikke tilladt DocType: DocType,"Make ""name"" searchable in Global Search","Lav ""navn"" søgbart i Global Search" @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Hjælp Kategori apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Bruger {0} er deaktiveret apps/frappe/frappe/www/404.html +8,Page missing or moved,Side mangler eller er flyttet -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Rediger {0} egenskaber DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,indstillinger Razorpay betalingsgateway DocType: DocField,Name,Navn apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Du har overskredet max plads af {0} for din plan. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Søg i dokumenterne DocType: OAuth Authorization Code,Valid,Gyldig -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Åbn link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Dit sprog +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Åbn link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Dit sprog apps/frappe/frappe/desk/form/load.py +46,Did not load,Ikke indlæse apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Tilføj række DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Er Feedback a DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kan Skriv apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Visse dokumenter, som en faktura, bør ikke ændres, når endelig. Den endelige tilstand for sådanne dokumenter kaldes Tilmeldt. Du kan begrænse hvilke roller kan Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Du har ikke tilladelse til at udlæse denne rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Du har ikke tilladelse til at udlæse denne rapport apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element valgt DocType: Newsletter,Test Email Address,Test e-mailadresse DocType: ToDo,Sender,Afsender @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import.zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument ID DocType: Print Settings,Letter,Brev -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Billede felt skal være af typen Vedhæft billede +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Billede felt skal være af typen Vedhæft billede DocType: DocField,Columns,Kolonner DocType: Async Task,Succeeded,Lykkedes apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},"Obligatoriske felter, der kræves i {0}" @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Teksteditor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Indstillinger for Om os siden. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Rediger brugerdefineret HTML DocType: Error Snapshot,Error Snapshot,Fejl Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,I +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,I DocType: Email Alert,Value Change,Value Change DocType: Standard Reply,Standard Reply,Standardsvar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Bredde af indtastningsfeltet @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Brug denne feltnavn for at generere titel apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importér E-mail fra apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Inviter som Bruger -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Vælg Vedhæftede +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Vælg Vedhæftede apps/frappe/frappe/model/naming.py +94, for {0},for {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Der var fejl. Rapportér venligst dette. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Du har ikke tilladelse til at udskrive dette dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Du har ikke tilladelse til at udskrive dette dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Venligst sæt filtre værdi i Rapportfilter tabel. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Indlæser rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Indlæser rapport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Dit abonnement udløber i dag. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Vedhæft fil @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionale Udvidelser DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Forlad denne samtale -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Muligheder ikke indstillet til link felt {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Muligheder ikke indstillet til link felt {0} DocType: Customize Form,"Must be of type ""Attach Image""",Skal være af typen "Vedhæft billede" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Fravælg alle apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Du kan ikke frakoblet "Read Only" for feltet {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Bemærk apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fejlrapport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedbackbetingelserne stemmer ikke overens -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Tidslinje felt skal være en gyldig fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Tidslinje felt skal være en gyldig fieldname DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Række # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Række # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Ny adgangskode sendt på emai apps/frappe/frappe/auth.py +245,Login not allowed at this time,Log ind er ikke tilladt på dette tidspunkt DocType: Email Account,Email Sync Option,E-mail-synkronisering Option @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardsvar på almindelige spørgsmål. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard afsendelse DocType: Workflow State,volume-off,volumen-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Vellidt af {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Vellidt af {0} DocType: Footer Item,Footer Item,footer Item ,Download Backups,Download sikkerhedskopier apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Forside / Test Mappe 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Tekst Juster apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Navn må ikke indeholde specialtegn som {0} DocType: Contact Us Settings,Forward To Email Address,Frem til email-adresse apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Vis alle data -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titel felt skal være et gyldigt feltnavn apps/frappe/frappe/config/core.py +7,Documents,Dokumenter DocType: Email Flag Queue,Is Completed,er afsluttet apps/frappe/frappe/www/me.html +22,Edit Profile,Rediger profil @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Dette felt vises kun, hvis feltnavn defineres her har værdi ELLER reglerne er sande (eksempler): myfield eval: doc.myfield == "Min Værdi" eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,I dag +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Når du har indstillet dette, vil brugerne kun kunne få adgang til dokumenter (f.eks. Blog Post) hvor linket eksisterer (f.eks. Blogger)." DocType: Error Log,Log of Scheduler Errors,Log af Scheduler Fejl DocType: User,Bio,Bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stjerne er lavest & 5 stjerner er højeste rating DocType: Event,Ref Name,Ref Name DocType: Web Page,Center,Centrer +DocType: Email Alert,Value To Be Set,"Værdi, der skal indstilles" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Første niveau DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Repræsenterer staterne tilladt i ét dokument og rolle er tildelt ændre tilstanden. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Opdater Form @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Har webvisning apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType navn skal starte med et bogstav, og det kan kun bestå af bogstaver, tal, mellemrum og understregninger" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Integration Request -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Kære +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Kære DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Regnskabsbruger DocType: Web Page,HTML for header section. Optional,HTML til header sektion. Valgfri apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Denne funktion er helt ny og stadig eksperimenterende -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimalt {0} rækker tilladt +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimalt {0} rækker tilladt DocType: Email Unsubscribe,Global Unsubscribe,Global Afmeld apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Dette er en meget almindelig adgangskode. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Visning DocType: Communication,Assigned,tildelt DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Vælg Udskriv Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Vælg Udskriv Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Korte tastatur mønstre er nemme at gætte DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Længden af {0} skal være mellem 1 og 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Brugeren må ikke søge apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ugyldigt Outputformat DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Anvende denne regel, hvis brugeren er ejer" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Vil være dit login-id +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Vil være dit login-id apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Byg rapport DocType: Note,Notify users with a popup when they log in,"Giv brugerne en popup, når de logger ind" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} eksisterer ikke. Vælg et nyt mål for sammenlægningen @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,Roller Tilladelse apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Opdatering DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Gem nyhedsbrevet før afsendelse -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Muligheder skal være en gyldig DocType for feltet {0} i række {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år siden +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Muligheder skal være en gyldig DocType for feltet {0} i række {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Rediger egenskaber DocType: Patch Log,List of patches executed,Liste over patches henrettet apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} allerede afmeldt -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikation Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikation Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Vælg en anden betalingsmetode. Razorpay understøtter ikke transaktioner i sedler '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,I kø til sikkerhedskopi. Det kan tage et par minutter til en time. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrer OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan ikke være ""{2}"". Den skal være en af ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan ikke være ""{2}"". Den skal være en af ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} eller {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Vis eller skjul skrivebordsikoner apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Opdatering af adgangskode @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Vis Linje Breaks efter Sektioner DocType: Blogger,Short Name,Kort navn apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Side {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Du vælger Sync Option som ALLE, vil det synkronisere alle \ læse såvel som ulæst besked fra serveren. Dette kan også medføre, at dobbeltarbejde \ af Kommunikation (e-mails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Filer Størrelse @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Indkøbschef DocType: Custom Script,Sample,Prøve apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Ukategoriseret Tags DocType: Event,Every Week,Hver uge +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mail-konto er ikke konfigureret. Opret en ny e-mail-konto under Opsætning> Email> E-mail-konto apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik her for at kontrollere dit forbrug eller opgradere til et højere plan DocType: Custom Field,Is Mandatory Field,Er Obligatorisk felt DocType: User,Website User,Website Bruger @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Tilpasset Sidebar Menu DocType: Workflow State,pencil,blyant apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat beskeder og andre meddelelser. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Indsæt Efter kan ikke indstilles som {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Indsæt Efter kan ikke indstilles som {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Del {0} med apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,For opsætning af e-mailkonti skal du indtaste din adgangskode: DocType: Workflow State,hand-up,hånd-up DocType: Blog Settings,Writers Introduction,Writers Introduktion DocType: Address,Phone,Telefonnr. -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Fejl under evaluering af E-mail Alert {0}. Ret din skabelon. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Fejl under evaluering af E-mail Alert {0}. Ret din skabelon. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Vælg dokumenttype eller Rolle at starte. DocType: Contact,Passive,Passiv DocType: Contact,Accounts Manager,Regnskabschef +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Din betaling er annulleret. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Vælg filtype DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Siden blev ikke fundet @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Ejendom Type DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Kun Administrator kan spare en standard rapport. Venligst omdøbe og gemme. DocType: System Settings,Background Workers,Baggrund Arbejdere +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Feltnavn {0} står i konflikt med metaobjekt DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokument status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Du har foretaget {0} af {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Vis brugertilladelser apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Du skal være logget ind og have Systemadministratorrollen for at kunne få adgang til sikkerhedskopier. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Resterende -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Gem før fastgørelse. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Gem før fastgørelse. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Tilføjet {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standard tema er sat i {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan ikke ændres fra {0} til {1} i række {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,Systemindstillinger apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start mislykkedes apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Denne e-mail blev sendt til {0} og kopieres til {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Opsæt venligst standard e-mail-konto fra Opsætning> Email> E-mail-konto -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Opret ny(t) {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Opret ny(t) {0} DocType: Email Rule,Is Spam,er spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapport {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Åben {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Åben {0} DocType: OAuth Client,Default Redirect URI,Standard Redirect URI DocType: Email Alert,Recipients,Modtagere DocType: Workflow State,ok-sign,ok-tegn @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Hjælp artikler ,Modules Setup,Opsætning af moduler apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Din betaling er mislykket. DocType: Communication,Unshared,udelt DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul ikke fundet @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Varemærkelogo DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Opsætning af øverste navigationslinje, sidefod og logo." DocType: Web Form Field,Max Value,Maksimal værdi -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},For {0} på niveau {1} i {2} i række {3} DocType: Contact,All,Alle DocType: Email Queue,Recipient,Modtager DocType: Communication,Has Attachment,har Attachment @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,justere højre DocType: Auto Email Report,Email To,E-mail Til apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} er ikke tom DocType: Page,Roles,Roller -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Field {0} kan ikke vælges. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Fejl: Værdi mangler for {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Field {0} kan ikke vælges. DocType: System Settings,Session Expiry,Session Udløb DocType: Workflow State,ban-circle,ban-cirkel DocType: Email Flag Queue,Unread,Ulæst @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,User Defaults apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Opret ny(t) DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail ikke sendt til {0} (afmeldt / deaktiveret) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail ikke sendt til {0} (afmeldt / deaktiveret) DocType: Async Task,Traceback,Spore tilbage DocType: Currency,Smallest Currency Fraction Value,Mindste Valuta Fraktion Værdi apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Tildel til @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Fra DocType: Website Theme,Google Font (Heading),Google Font (Overskrift) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Vælg en gruppe node først. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Find {0} i {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Find {0} i {1} DocType: OAuth Client,Implicit,Implicit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Føj som kommunikation mod denne DocType (skal have felter, "Status", "Emne")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI'er for at modtage autorisationskode når brugeren giver adgang, samt svigt svar. Typisk en REST endpoint udsat af Kunden App.
fx http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ikke tilladt at ændre {0} efter indsendelse DocType: Communication,Comment Type,Kommentar Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Brugere @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Kan ikke læse filformat for {0} DocType: Auto Email Report,Filter Data,Filtreringsdata apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Tilføj et tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Vedhæft en fil først. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Vedhæft en fil først. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Der var nogle fejl indstilling navnet, skal du kontakte administratoren" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Indkommende e-mail-konto er ikke korrekt apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,E-mail sendt DocType: DocField,Ignore XSS Filter,Ignorer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,fjernet apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Indstillinger Dropbox-sikkerhedskopi -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Send som e-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Send som e-mail DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Bruger {0} kan ikke deaktiveres apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kære Systemadministrator," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Dit land +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Dit land DocType: Event,Sunday,Søndag apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,I Grid View DocType: Address Template,Template,Skabelon @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-indstillinger apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ændring apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal betaling gateway indstillinger -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vil få afkortet, da max tilladte tegn er {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vil få afkortet, da max tilladte tegn er {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ressource ejeradgangskode legitimationsoplysninger DocType: OAuth Client,Response Type,reaktion Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maks Brugere @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Tabel DocType: File,File Size,Filstørrelse apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Du skal logge ind for at indsende denne formular DocType: User,Background Image,Baggrundsbillede -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Vælg dit land, tidszone og valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mellem DocType: Async Task,Queued,Sat i kø @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Opret apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ugyldig Filter: {0} DocType: Email Account,no failed attempts,ingen mislykkede forsøg +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adresse skabelon fundet. Opret venligst en ny fra Opsætning> Udskrivning og branding> Adresseskabelon. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Access Token @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Brugernavn DocType: DocType,Image View,Billede View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Ligner noget gik galt under transaktionen. Da vi ikke har bekræftet betalingen, vil Paypal automatisk refundere dig beløbet. Hvis den ikke gør det, så send os en e-mail og nævne Correlation ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tal og store bogstaver i adgangskoden" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Indsæt Efter feltet '{0}' er nævnt i brugerdefinerede Field '{1}', med etiketten '{2}', eksisterer ikke" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tal og store bogstaver i adgangskoden" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Indsæt Efter feltet '{0}' er nævnt i brugerdefinerede Field '{1}', med etiketten '{2}', eksisterer ikke" DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Vis Print First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter for at skrive @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Filer '{0}' blev ikke fundet apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Fjern Sektion DocType: User,Change Password,Skift adgangskode -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ugyldig E-mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hej! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ugyldig E-mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hej! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Begivenhed ende skal være efter start apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Du har ikke tilladelse til at få en rapport om: {0} +DocType: System Settings,Apply Strict User Permissions,Anvend strenge brugerrettigheder DocType: DocField,Allow Bulk Edit,Tillad Bulk Edit DocType: Blog Post,Blog Post,Blog-indlæg -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Avanceret søgning +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Avanceret søgning apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Vejledning til nulstilling af din adgangskode er sendt til din e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveau 0 er til dokumentniveau tilladelser, \ højere niveauer for tilladelser på feltniveau." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,Tilbagekaldt DocType: Web Page,Sidebar and Comments,Sidebar og Kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Når du Ændres et dokument, efter Annuller og gemme det, vil det få et nyt nummer, der er en version af det gamle nummer." DocType: Stripe Settings,Publishable Key,Offentlig nøgle -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år siden DocType: Workflow State,circle-arrow-left,cirkel-pil-venstre apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache serveren ikke kører. Kontakt venligst Administrator / Tech support apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Opret ny post +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Opret ny post apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Søger DocType: Currency,Fraction,Fraktion DocType: LDAP Settings,LDAP First Name Field,LDAP Fornavn Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Vælg fra eksisterende vedhæftede filer +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vælg fra eksisterende vedhæftede filer DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Navn ikke indtastet i prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail indbakke @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Tilladelsesniveau DocType: User,Send Notifications for Transactions I Follow,Send meddelelser til transaktioner jeg følger -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, Tekst uden Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sætte Indsend, Annuller, Tekst uden Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Er du sikker på, at du vil slette den vedhæftede fil?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ingen resultater fundet for '

-apps/frappe/frappe/__init__.py +1063,Thank you,Tak +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan ikke slette eller annullere fordi {0} {1} er forbundet med {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Tak apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Gemmer DocType: Print Settings,Print Style Preview,Print Style Eksempel apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,I Listevisning DocType: Email Account,Use TLS,Brug TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ugyldigt brugernavn eller adgangskode apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Tilføj brugerdefinerede javascript til formularer. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Linjenr. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Linjenr. ,Role Permissions Manager,Rolleadministrator apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Navnet på det nye Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Klar Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Klar Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorisk: ,User Permissions Manager,Brugeradministrator DocType: Property Setter,New value to be set,Indtast ny værdi @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dage apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisér blogindlæg. DocType: Workflow State,Time,Tid DocType: DocField,Attach,Vedhæft -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldigt feltnavn mønster. Det bør være {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Send feedback Anmodning, hvis der er mindst én kommunikation er tilgængelig for dokumentet." DocType: Custom Role,Permission Rules,Tilladelsesregler DocType: GSuite Settings,GSuite Settings,GSuite Indstillinger DocType: Address,Links,Links -apps/frappe/frappe/model/base_document.py +428,Value missing for,Værdi mangler for +apps/frappe/frappe/model/base_document.py +427,Value missing for,Værdi mangler for apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Tilføj ny -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Den godkendte post kan ikke slettes. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Sikkerhedskopistørrelse DocType: GSuite Templates,Template Name,Skabelonnavn -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ny dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ny dokumenttype DocType: Custom DocPerm,Read,Læs DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rolle Tilladelse til side og rapport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Juster Value apps/frappe/frappe/www/update-password.html +14,Old Password,Gammel adgangskode -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Meddelelser fra {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Meddelelser fra {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","For at formatere kolonner, giver kolonneetiketter i forespørgslen." DocType: Has Domain,Has Domain,Har Domæne apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Har du ikke en konto? Tilmeld dig her -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sætte Tildel Tekst hvis ikke Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sætte Tildel Tekst hvis ikke Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edit Rolle Tilladelser DocType: Communication,Link DocType,Link DocType @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Sørg for, at din profil har en e-mailadresse" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Du har ikke-gemte ændringer i dette skærmbillede. Gem før du fortsætter. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Standard for {0} skal være en mulighed +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard for {0} skal være en mulighed DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori DocType: User,User Image,Brugerbillede apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mails er slået fra @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Næste han DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Disse værdier vil automatisk blive opdateret i transaktioner, og også vil være nyttigt at begrænse tilladelser for denne bruger om transaktioner, der indeholder disse værdier." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Udgiver -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Mislykket: {0} til {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Mislykket: {0} til {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Vælg Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Gennemse apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-mails sendt @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Løb apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Nulstil adgangskode apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Venligst Opgrader for at tilføje flere end {0} abonnenter DocType: Workflow State,hand-left,hånd-venstre -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} for {1} kan ikke være unik DocType: Email Account,Use SSL,Brug SSL DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Vælg Print Format til Edit @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,Ingen kopi DocType: Workflow State,qrcode,QR-code apps/frappe/frappe/www/login.html +34,Login with LDAP,Login med LDAP DocType: Web Form,Breadcrumbs,Rasp -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Hvis ejer +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Hvis ejer DocType: OAuth Authorization Code,Expiration time,udløb tid DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Vis Sidebar @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kunne ikke finde apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Navne og efternavne er nemme at gætte. apps/frappe/frappe/config/website.py +93,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,mappe -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Værdi kan ikke ændres for {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Værdi kan ikke ændres for {0} DocType: Feedback Request,Is Manual,er Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style repræsenterer knap farve: Succes - Grøn, Danger - Rød, Inverse - Sort, Primary - Mørkeblå, Info - Lyseblå, Advarsel - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ingen Rapport. Brug venligst forespørgsels-rapport / [Forkert navn] for at køre en rapport. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Fremskridt apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,efter rolle apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,manglende felter apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ugyldigt feltnavn '{0}' i autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Søg i en dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Søg i en dokumenttype apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Tillad felt forbliver redigerbare selv efter indsendelse DocType: Custom DocPerm,Role and Level,Rolle og niveau DocType: File,Thumbnail URL,Thumbnail URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mere information DocType: Desktop Icon,Desktop Icon,Skrivebordsikon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Din betaling blev succesfuldt accepteret +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Din betaling blev succesfuldt accepteret apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Undskyld! Du har ikke tilladelse til at se denne side. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: Dobbeltklik celle for at redigere DocType: Workflow State,bell,klokke apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fejl i Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Del dette dokument med +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Opsætning> Brugerrettigheder apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan ikke være en undernode, da den har undernoder" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Tilføj vedhæftet fil +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Tilføj vedhæftet fil DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Tak for din besked -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Send Læs Kvittering +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Send Læs Kvittering DocType: Stripe Settings,Stripe Settings,Stripe-indstillinger DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Opsætning via webstedet Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Ugyldig login Token @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Advarsel: dette Print Format er gamle stil og kan ikke genereres via API. DocType: DocField,Print Width,Print Bredde ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST-nummer DocType: User,Allow user to login only before this hour (0-24),Tillad brugeren at logge kun inden denne time (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder er obligatorisk apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Lille tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator adgang {0} på {1} via IP-adresse {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Lig -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valg 'Dynamic Link' type feltet skal pege på en anden Link Field med muligheder som 'DocType' DocType: About Us Settings,Team Members Heading,Team Members Udgifts apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ugyldigt CSV-format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Angiv antal sikkerhedskopier @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Third Party Authentication DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over den øverste menubjælke. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Udlæs rapport: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Udlæs rapport: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} findes ikke DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,Kolonnenavn DocType: Language,Based On,Baseret på apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Gør til standard apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Tjek Frappe-Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} for {1} kan ikke indekseres DocType: Communication,Email Account,E-mailkonto DocType: Workflow State,Download,Hent DocType: Blog Post,Blog Intro,Blog Intro @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,Indsæt kode DocType: ToDo,Low,Lav apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Du kan tilføje dynamiske egenskaber fra dokumentet ved hjælp Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ugyldig grænse {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Liste en dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Liste en dokumenttype DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du uploader nye rekorder, forlader "navn" (ID) søjle tom." DocType: Address,Chattisgarh,Chattisgarh @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Send udskrift som PDF DocType: Web Form,Amount,Beløb DocType: Workflow Transition,Allowed,Tilladt -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Der kan kun være én Fold i en form +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Der kan kun være én Fold i en form apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Kan ikke skrive filformat til {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Gendan til standardindstillinger? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ugyldig Home Page apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ugyldigt login. Prøv igen. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Valgmuligheder der kræves for Link eller Tabel type felt {0} i række {1} DocType: Auto Email Report,Send only if there is any data,Send kun hvis der er nogen data apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Nulstil filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer" +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Tilladelse på niveau 0 skal indstilles, før der indstilles højere niveauer" apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opgave lukket af {0} DocType: Integration Request,Remote,Fjern -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Beregn +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beregn apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vælg venligst DocType først apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Bekræft din e-mail apps/frappe/frappe/www/login.html +42,Or login with,Eller login med DocType: Error Snapshot,Locals,Lokale apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunikeres via {0} på {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} omtalte dig i en kommentar i {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,f.eks (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,f.eks (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} er påkrævet DocType: Integration Request,Integration Type,Integration Type DocType: Newsletter,Send Attachements,Send vedhæftede filer @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Begivenheder ifølge dagens kalender DocType: Web Page,Web Page,Webside DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'I Global søgning' er ikke tilladt for type {0} i række {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Se liste -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Dato skal være i format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dato skal være i format: {0} DocType: Workflow,Don't Override Status,Må ikke Tilsidesæt status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Giv en rating. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Request apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Søgeord -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Den første bruger: dig selv +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Den første bruger: dig selv apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Vælg kolonner DocType: Translation,Source Text,Kilde Tekst apps/frappe/frappe/www/login.py +55,Missing parameters for login,Manglende parametre for login @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Import DocType: ToDo,Assigned By,Tildelt af apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Du kan bruge Tilpas Form til at indstille niveauet på marker. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Vælg din region +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Vælg din region DocType: Custom DocPerm,Level,Niveau DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Beløb skal være større end 0. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,Baggrund DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON liste over doctypes bruges til at anvende Bruger Tilladelser. Hvis tom, vil alle tilknyttede doctypes bruges til at anvende Bruger Tilladelser." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Tilføj venligst en bedømmelse -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Kan ikke sætte Amend uden Annuller +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Kan ikke sætte Amend uden Annuller apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Fuld side DocType: DocType,Is Child Table,Er Child Table apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} skal være en af {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Dette går over diassh apps/frappe/frappe/config/setup.py +260,Install Applications.,Installer applikationer. DocType: Contact,Last Name,Efternavn DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Ingen advarsler for dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Ingen advarsler for dag DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Send e-mail med udskriften vedhæftet som PDF (anbefales) DocType: Web Page,Left,Venstre DocType: Event,All Day,Hele dagen @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,Send en e-mail påmindelse DocType: Blog Post,Published On,Udgivet d. DocType: Contact,Gender,Køn apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,mangler Obligatorisk information: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' kan ikke indstilles som enestående, da det har ikke-entydige værdier" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Kun 200 indsatse tilladt i én anmodning DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Henvisning Type @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,advarsel-skilt DocType: Workflow State,User,Bruger DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis titel i browservinduet som "Præfiks - overskrift" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,tekst i dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,tekst i dokumenttype apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Kør test apps/frappe/frappe/handler.py +91,Logged Out,Logget ud apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mere... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Læser DocType: DocField,Default,Standard apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} tilføjet -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Søg efter '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Søg efter '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Venligst gemme rapporten først apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnenter tilføjet apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ikke I DocType: Workflow State,star,stjerne -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,værdier adskilt af kommaer -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,værdier adskilt af kommaer +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max bredde for type Valuta er 100px i række {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Venligst dele din feedback til {0} apps/frappe/frappe/config/website.py +13,Content web page.,Indhold webside. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Tilføj en ny rolle @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ikke et gyldigt LDAP bruger apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ikke en gyldig stat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Vælg en anden betalingsmetode. PayPal understøtter ikke transaktioner i sedler '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Søgefelt {0} er ikke gyldig +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Søgefelt {0} er ikke gyldig DocType: Workflow State,ok-circle,ok-cirkel apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Du kan finde ting ved at spørge "finde orange i kundernes apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Undskyld! Bruger skal have fuld adgang til deres egen rekord. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, der skal vises for Link til webside, hvis denne form har en webside. Link rute automatisk genereret baseret på `page_name` og` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Feedback Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Indstil {0} først +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Indstil {0} først DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Mislykkedes diff --git a/frappe/translations/de.csv b/frappe/translations/de.csv index 7e10e5b655..e4ea800bc6 100644 --- a/frappe/translations/de.csv +++ b/frappe/translations/de.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook-Benutzername DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Hinweis: Mehrere Sitzungen wird im Falle einer mobilen Gerät erlaubt sein apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktiviert E-Mail-Posteingang für Benutzer {users} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Diese E-Mail kann nicht versendet werden. Sie haben das Sendelimit von {0} E-Mails für diesen Monat überschritten. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,{0} endgültig übertragen? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,{0} endgültig übertragen? DocType: Address,County,Landesbezirk/Gemeinde/Kreis DocType: Workflow,If Checked workflow status will not override status in list view,Wenn diese Option aktiviert Workflow-Status wird nicht Status in der Listenansicht außer Kraft setzen apps/frappe/frappe/client.py +280,Invalid file path: {0},Ungültiger Dateipfad: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Bitte e apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Baumstruktur DocType: User,User Emails,Benutzer E-Mails DocType: User,Username,Benutzername -apps/frappe/frappe/model/base_document.py +581,Value too big,Wert zu groß +apps/frappe/frappe/model/base_document.py +580,Value too big,Wert zu groß DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Skript-Test ausführen DocType: Contact,Department,Abteilung @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Protokolle DocType: Custom DocPerm,This role update User Permissions for a user,Diese Rolle aktualisiert Benutzerberechtigungen für einen Benutzer apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},{0} umbenennen DocType: Workflow State,zoom-out,verkleinern -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"{0} kann nicht geöffnet werden, wenn die zugehörige Instanz geöffnet ist" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"{0} kann nicht geöffnet werden, wenn die zugehörige Instanz geöffnet ist" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabelle {0} darf nicht leer sein apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Mit Buchungskonto apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Bilder DocType: Communication,Reference Owner,Referenz Besitzer DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Kleinste zirkulierenden Brucheinheit (Münze). Für zB 1 Cent für USD und es sollte als 0,01 eingegeben werden" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Zeile {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Zeile {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Bitte geben Sie eine Fullname. apps/frappe/frappe/model/document.py +904,Beginning with,Beginnend mit apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Vorlage für Datenimport apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Übergeordnetes Element DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Wenn aktiviert, wird die Passwortstärke auf der Grundlage des Minimum Password Score Wertes erzwungen. Ein Wert von 2 ist mittelstark und 4 sehr stark." DocType: About Us Settings,"""Team Members"" or ""Management""",„Teammitglieder“ oder „Management“ -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Standard für 'Prüfen'-Feldtyp muss entweder '0' oder '1' sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Standard für 'Prüfen'-Feldtyp muss entweder '0' oder '1' sein apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Gestern DocType: Contact,Designation,Bezeichnung DocType: Test Runner,Test Runner,Tester @@ -69,8 +69,8 @@ apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You nee DocType: DocType,Is Published Field,Ist Veröffentlicht Feld DocType: Email Group,Email Group,E-Mail-Gruppe DocType: Note,Seen By,gesehen durch -apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Mehrfach hinzufügen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nicht wie +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Mehrere hinzufügen +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nicht wie apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Angezeigten Karteikartenreiter für ein Feld einstellen apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Falscher Wert: {0} muss {1} {2} sein apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Feldeigenschaften ändern (verstecken, nur-lesen, Berechtigung etc.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Einstellu apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator hat sich angemeldet DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativen wie „Vertriebsanfrage"", ""Support-Anfrage“ usw., jede in einer neuen Zeile oder durch Kommas getrennt." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Herunterladen -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Einfügen +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Einfügen apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} auswählen DocType: Print Settings,Classic,Klassisch DocType: Desktop Icon,Color,Farbe @@ -121,7 +121,7 @@ DocType: Translation,Translation,Übersetzung apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installieren apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Hr. DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Dieses Formular wurde geändert, nachdem Sie es geladen haben" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Dieses Formular wurde geändert, nachdem Sie es geladen haben" DocType: User Permission for Page and Report,User Permission for Page and Report,Benutzerberechtigung für Seite und Bericht DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Wenn nicht gesetzt, hängt die Währungspräzision vom Zahlenformat ab" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Grund apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Bitte Benutzer angeben DocType: Email Unsubscribe,Email Unsubscribe,E-Mail abbestellen DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Für beste Ergebnisse bitte ein Bild mit ca. 150 Pixeln Breite und transparentem Hintergrund auswählen. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Der erste Benutzer wird zum System-Manager (kann später noch geändert werden). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Der erste Benutzer wird zum System-Manager (kann später noch geändert werden). ,App Installer,App-Installer DocType: Workflow State,circle-arrow-up,Kreis-Pfeil-nach-oben apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Lade hoch... DocType: Email Domain,Email Domain,E-Mail-Domain DocType: Workflow State,italic,kursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Für jeden -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,"{0}: Kann nicht auf ""Import"" eingestellt werden ohne ""Erstellen""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,"{0}: Kann nicht auf ""Import"" eingestellt werden ohne ""Erstellen""" apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Veranstaltungs- und andere Kalender apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,"Alle Felder sind notwendig, um den Kommentar einzureichen." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Spalten durch Ziehen sortieren @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard-Sidebar-Menü apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,"Die Ordner ""Startseite"" und ""Anlagen"" können nicht gelöscht werden" apps/frappe/frappe/config/desk.py +19,Files,Dateien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Berechtigungen werden so auf Benutzer angewandt, wie sie den Rollen zugeordnet sind." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Sie sind nicht berechtigt E-Mails, die sich auf dieses Dokument beziehen, zu versenden" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Bitte wählen Sie atleast 1 Spalte von {0} sortieren / Gruppe DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Aktivieren Sie diese Option, wenn Sie testen Ihre Zahlung der Sandbox-API" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,"Sie sind nicht berechtigt, eine Standard-Webseiten-Vorlage zu löschen" DocType: Feedback Trigger,Example,Beispiel @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Gesamtanzahl der Abonnenten apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Wenn eine Rolle keinen Zugriff auf Ebene 0 hat, dann sind höhere Ebenen bedeutungslos ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Speichern als DocType: Communication,Seen,Gesehen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Weiteres +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Weiteres DocType: System Settings,Run scheduled jobs only if checked,"Geplante Aufträge nur ausführen, wenn aktiviert" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Wird nur dann angezeigt wenn Überschriften aktiviert sind apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,archivieren @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Diagramm anzeige apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Gültige E-Mail-Adresse und Name erforderlich DocType: DocType,Hide Heading,Kopfzeile ausblenden DocType: Address,Current,Strom -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Zugehörige Dokumente apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Gruppen von DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,Entfernen-Kreis @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Feldname {0} kann nicht Sonderzeichen wie {1} beinhalten apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualisieren viele Werte zu einer Zeit. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Fehler: Dokument wurde geändert, nachdem es geöffnet wurde" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie eine neue aus Setup> Drucken und Branding> Adressvorlage. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} abgemeldet: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ""als übertragen markieren"" eingestellt werden, wenn nicht übertragbar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: Kann nicht als ""als übertragen markieren"" eingestellt werden, wenn nicht übertragbar" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","Gefiltert nach ""{0}""" DocType: Salutation,Administrator,Administrator @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blog-Name apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standardrollen können nicht deaktiviert werden DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"Kann nicht Unterabfrage verwenden, um durch" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"Kann nicht Unterabfrage verwenden, um durch" DocType: Web Form,Button Help,Button-Hilfe DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Teammitglieder @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Allgemein wi apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Ihr Abonnement ist abgelaufen am {0}. Zum erneuern, {1}." DocType: Workflow State,plus-sign,Pluszeichen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup-bereits abgeschlossen -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ist nicht installiert +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ist nicht installiert DocType: Workflow State,Refresh,Aktualisieren DocType: Event,Public,Öffentlich apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nichts anzuzeigen @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Geliked durch apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-Mail-Support DocType: DocField,Print Hide If No Value,Druck verbergen wenn ohne Wert DocType: Event,yellow,gelb -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Ist Veröffentlicht Feld muss eine gültige Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Ist Veröffentlicht Feld muss eine gültige Feldname sein apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Anhang hochladen DocType: Block Module,Block Module,Block-Modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Vorlage exportieren @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Ein neues Konto wurde für Sie erstellt auf {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Anleitung Emailed -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Geben Sie den/die E-Mail-Empfänger an +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Geben Sie den/die E-Mail-Empfänger an DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-Mail-Flag-Warteschlange apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kann öffne {0} nicht identifizieren. Versuchen Sie etwas anderes. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,Message-ID DocType: Property Setter,Field Name,Feldname apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ist nicht konfiguriert. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,oder -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Modulname ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Fortsetzen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Modulname ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsetzen DocType: Custom Field,Fieldname,Feldname DocType: Workflow State,certificate,Zertifikat DocType: User,Tile,Kachel @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Alle Versionen DocType: Workflow State,Print,Drucken DocType: User,Restrict IP,IP beschränken +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Instrumententafel apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,E-Mails können zur Zeit nicht versendet werden apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Suchen oder Befehl eingeben DocType: Communication,Timeline Name,Timeline-Name @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Hauptvertriebsleiter apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Ein letzter Schritt apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Name des Dokumenttyps (DocType) mit dem dieses Feld verknüpft sein soll, z. B. Kunde" DocType: User,Roles Assigned,Zugewiesene Rollen -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Hilfe suchen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Hilfe suchen DocType: Top Bar Item,Parent Label,Übergeordnete Bezeichnung apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ihre Anfrage ist eingegangen. Wir werden in Kürze antworten. Wenn Sie zusätzliche Informationen haben, antworten Sie bitte auf diese E-Mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Berechtigungen werden automatisch auf Standardberichte und -suchen übertragen. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Kopf bearbeiten DocType: File,File URL,Datei-URL DocType: Version,Table HTML,Tabelle HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Keine Ergebnisse für '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Abonnenten hinzufügen apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Bevorstehenden Veranstaltungen für heute DocType: Email Alert Recipient,Email By Document Field,E-Mail von Dokumentenfeld @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,"Menge, bezogen auf Feld" apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Benutzer für Freigabe zwingend erforderlich DocType: DocField,Hidden,Ausgeblendet DocType: Web Form,Allow Incomplete Forms,Unvollständige Formulare zulassen -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} muss als erstes gesetzt sein +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} muss als erstes gesetzt sein apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Verwenden Sie ein paar Worte, vermeiden gemeinsame Phrasen." DocType: Workflow State,plane,eben -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Hoppla. Ihre Zahlung ist fehlgeschlagen. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Wenn neue Datensätze hochgeladen werden, ist - falls vorhanden - ""Bezeichnung von Serien"" Pflicht." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Alarme für heute +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Alarme für heute apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType darf nur vom Administrator umbenannt werden apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},geänderte Wert {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Bitte überprüfen Sie Ihre E-Mail für die Überprüfung -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Falz kann nicht am Ende eines Formulars sein DocType: Communication,Bounced,Gesprungen DocType: Deleted Document,Deleted Name,Gelöschte Namen apps/frappe/frappe/config/setup.py +14,System and Website Users,System- und Webseitenbenutzer @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,anstehendes Dokument DocType: GSuite Templates,Destination ID,Ziel-ID DocType: Desktop Icon,List,Listenansicht DocType: Communication,Link Name,Link-Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,"Feld {0} in Zeile {1} kann nicht ausgeblendet werden, und ist ohne Standardeintrag zwingend erfoderlich" DocType: System Settings,mm/dd/yyyy,MM/TT/JJJJ apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ungültiges Passwort: DocType: Print Settings,Send document web view link in email,Senden Dokument Web-Ansicht Link in E-Mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ihr Feedback für Dokument {0} erfolgreich gespeichert apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Vorhergehende -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Zurück: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Zurück: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} Zeilen für {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Unterwährung, z. B. ""Cent""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Wählen Sie Datei uploaded @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Verknüpfung apps/frappe/frappe/utils/file_manager.py +96,No file attached,Keine Datei angehängt DocType: Version,Version,Version DocType: User,Fill Screen,Bildschirm ausfüllen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Der Bericht zu dieser Struktur kann aufgrund fehlender Daten nicht angezeigt werden. Am häufigsten passiert dieser Fehler, weil die Daten aufgrund fehlender Benutzerrechte ausgefiltert werden." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Bitte legen Sie das Standard-E-Mail-Konto von Setup> Email> E-Mail-Konto ein +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Der Bericht zu dieser Struktur kann aufgrund fehlender Daten nicht angezeigt werden. Am häufigsten passiert dieser Fehler, weil die Daten aufgrund fehlender Benutzerrechte ausgefiltert werden." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Wählen Sie Datei apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Über einen Hochladevorgang bearbeiten -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Dokumententyp ..., z. B. Kunde" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Dokumententyp ..., z. B. Kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Der Zustand '{0}' ist ungültig DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Eigene Übersetzungen hinzufügen @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Mittwoch apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",Neben rollenbasierten Berechtigungsregeln können Benutzerberechtigungen auf der Grundlage von DocTypes eingesetzt werden. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Diese Berechtigungen gelten für alle Transaktionen, bei denen der zulässige Datensatz verknüpft ist. Beispiel: Wenn die Firma C den Benutzerrechten des Benutzers X zugeordnet ist, dann kann X nur Vorgänge sehen, die mit der Firma C verknüpft sind." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Bildfeld muss ein gültiger Feldname sein DocType: OAuth Client,Token,Zeichen DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (Name) der Einheit, deren Eigenschaft festgelegt werden muss" apps/frappe/frappe/limits.py +82,"To renew, {0}.","So erneuern, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Elemente der Seitenleiste apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} bereits installiert DocType: Workflow State,exclamation-sign,Ausrufezeichen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Berechtigungen anzeigen -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline-Bereich muss einen Link oder Dynamic Link sein apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumspanne apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt-Diagramm apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Seite {0} von {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Vorste apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Verschlüsselungsschlüssel ist ungültig, bitte check site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,An DocType: Kanban Board Column,darkgrey,dunkelgrau -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Erfolgreich: {0} um {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Erfolgreich: {0} um {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Die Benutzerdetails können im Demo nicht geändert werden. Bitte melden Sie sich unter https://erpnext.com für ein neues Konto an apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Bitte kopieren um Änderungen vorzunehmen apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF-Generierung ist aufgrund fehlerhafter Verknüpfungen für Bilddateien fehlgeschlagen @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Faltbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Gespeichert apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Wozu benötigen Sie Hilfe? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Optionen zum Auswählen. Jede Option in einer neuen Zeile. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,{0} endgültig abbrechen? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,{0} endgültig abbrechen? DocType: Workflow State,music,Musik DocType: Web Page,Settings,Einstellungen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Bitte Doctype angeben DocType: Print Format,Style Settings,Stileinstellungen -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sortierfeld {0} muss ein gültiger Feldname sein apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Weiter DocType: Contact,Sales Manager,Vertriebsleiter apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Umbenennen DocType: Print Format,Format Data,Daten formatieren -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Wie +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Wie DocType: Customize Form Field,Customize Form Field,Formularfeld anpassen apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Benutzer zulassen DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Prüfen, welche Dokumente von einem Nutzer lesbar sind" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing App nicht erlaubt -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,% als Platzhalter benutzen -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-Mail-Domain nicht für dieses Konto konfiguriert, erstellen?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,% als Platzhalter benutzen +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-Mail-Domain nicht für dieses Konto konfiguriert, erstellen?" DocType: User,Reset Password Key,Passwortschlüssel zurücksetzen DocType: Email Account,Enable Auto Reply,Automatische Rückantwort aktivieren apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nicht Gesehen @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Nur einmal festlegen DocType: Email Queue Recipient,Email Queue Recipient,E-Mail-Queue Empfänger DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Benutzername {0} ist bereits vorhanden -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Kann nicht auf ""Import"" eingestellt werden, da {1} nicht importierbar ist" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Es befindet sich ein Fehler in der Adressvorlage {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Von Vor- und Nachname apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Sie haben keine Zugriffsrechte für den Bericht: {0} DocType: User,Send Welcome Email,Willkommens-E-Mail senden apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Laden Sie eine CSV-Datei, die alle Benutzerberechtigungen im gleichen Format wie der Download hat, hoch." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Filter entfernen +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Filter entfernen DocType: Address,Daman and Diu,Daman und Diu DocType: Address,Personal,Persönlich apps/frappe/frappe/config/setup.py +113,Bulk Rename,Werkzeug zum Massen-Umbenennen @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kann kein Standard-Druckformat haben, verwenden Sie Formular anpassen" DocType: Report,Query,Abfrage DocType: DocType,Sort Order,Sortierung -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""In der Listenansicht"" nicht erlaubt für den Typ {0} in Zeile {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Bitte Element auswählen, nach dem ein neues Feld eingefügt werden soll." ,Document Share Report,Dokumentenfreigabebericht DocType: User,Last Login,Letzte Anmeldung -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Feldname wird in Zeile {0} benötigt apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalte DocType: Custom Field,Adds a custom field to a DocType,Fügt einem DocType ein benutzerdefiniertes Feld hinzu DocType: File,Is Home Folder,Ist Ordner für Startseite @@ -583,7 +583,7 @@ DocType: File,Folder,Ordner DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter-Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Option 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Alle Beiträge +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} bis {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Melden von Fehlern während Anfragen. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} wurde zur E-Mail-Gruppe hinzugefügt. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Jeder DocType: Workflow State,backward,Zurück -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Nur eine Regel mit der gleichen Rolle, Ebene und {1} erlaubt" DocType: Email Queue,Add Unsubscribe Link,Abmelde-Link hinzufügen apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Noch keine Kommentare. Starten Sie eine neue Diskussion. DocType: Workflow State,share,Freigeben @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,Ist ni apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Abonnenten anzeigen apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fr. DocType: Website Theme,Background Color,Hintergrundfarbe -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Es gab Fehler beim Versand der E-Mail. Bitte versuchen Sie es erneut. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Es gab Fehler beim Versand der E-Mail. Bitte versuchen Sie es erneut. DocType: Portal Settings,Portal Settings,Portaleinstellungen DocType: Web Page,0 is highest,Höchstwert ist 0 apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Sind Sie sicher, dass Sie diese Mitteilung an {0} neu verknüpfen wollen?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Einstellungen zu „Kontaktieren Sie uns“ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Suchen ... DocType: Workflow State,text-width,Textbreite -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Die maximal zulässige Anzahl von Anhängen für den Datensatz wurde erreicht. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Die maximal zulässige Anzahl von Anhängen für den Datensatz wurde erreicht. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Die folgenden obligatorischen Felder müssen ausgefüllt werden:
DocType: Email Alert,View Properties (via Customize Form),Eigenschaften anzeigen (über benutzerdefiniertes Formular) DocType: Note Seen By,Note Seen By,Hinweis gesehen durch @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Berichte des Berichts-Generators werden direkt von diesem verwaltet. Nichts zu tun. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Bitte bestätige deine Email Adresse apps/frappe/frappe/model/document.py +903,none of,keiner von -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Kopie an mich senden +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Kopie an mich senden apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Benutzerberechtigungen hochladen DocType: Dropbox Settings,App Secret Key,App geheimer Schlüssel apps/frappe/frappe/config/website.py +7,Web Site,Web-Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Die markierten Elemente werden auf dem Desktop angezeigt -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} kann nicht für Einzel-Typen festgelegt werden apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanbantafel {0} ist nicht vorhanden. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} betrachten derzeit dieses Dokument DocType: ToDo,Assigned By Full Name,Zugewiesen von Vollständiger Name apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} aktualisiert -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Bericht kann nicht für Einzel-Typen festgelegt werden apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,vor {0} Tag(en) DocType: Email Account,Awaiting Password,In Erwartung Passwort DocType: Address,Address Line 1,Adresse Zeile 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Zustände für Workflows (z. B. Entwurf, Genehmigt, Gelöscht)" DocType: Print Settings,Allow Print for Draft,Drucken von Entwürfen erlauben apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Anzahl festlegen -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen" +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,"Buchen Sie dieses Dokument, um zu bestätigen" DocType: Contact,Unsubscribed,Abgemeldet apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Legen Sie benutzerdefinierte Rollen für Seite und Bericht apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Bewertung: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Daten-Import-Werkzeug DocType: Address,Dadra and Nagar Haveli,Dadra und Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Hochladen von Dateien bitte für ein paar Sekunden warten. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Eigenes Bild anhängen +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Eigenes Bild anhängen apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Zeilenwerte geändert DocType: Workflow State,Stop,Anhalten DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Mit der Seite, die geöffnet werden soll, verknüpfen. Leer lassen, wenn eine übergeordnete Gruppe daraus gemacht werden soll." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Labels links ausrichten DocType: Help Article,Expert,Experte DocType: Workflow State,circle-arrow-right,Kreis-Pfeil-nach-rechts DocType: LDAP Settings,LDAP Server Url,LDAP-Server-URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Instanz kann nicht geöffnet werden, wenn zugehörige(s) {0} offen ist" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Instanz kann nicht geöffnet werden, wenn zugehörige(s) {0} offen ist" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Queued für die Installation DocType: Custom DocPerm,Custom DocPerm,Benutzerdefinierte DocPerm DocType: Newsletter,Send Unsubscribe Link,Senden Abmelde-Link @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} entfernt DocType: Custom DocPerm,Apply User Permissions,Benutzerberechtigungen anwenden DocType: User,Modules HTML,Modul-HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Angaben zu fehlenden Werten erforderlich DocType: DocType,Other Settings,Weitere Einstellungen DocType: Social Login Keys,Frappe,Frappé @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Kein Dokument ausgewählt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Soll DocType: Event,Event,Ereignis -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Am {0}, schrieb {1}:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Standardfeld kann nicht gelöscht werden. Sie können es aber verbergen, wenn Sie wollen." DocType: Top Bar Item,For top bar,Für die Kopfleiste apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Konnte {0} nicht identifizieren @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Schreibtisch-Zugang DocType: Workflow State,minus,Minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server-Fehler: Bitte die Serverprotokolle überprüfen oder den technischen Support kontaktieren. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Willkommens-E-Mail versenden -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Lassen Sie uns das System für die erste Nutzung vorbereiten. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Lassen Sie uns das System für die erste Nutzung vorbereiten. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Hervorgehoben apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Bereits registriert DocType: System Settings,Float Precision,Wechselkurs-Genauigkeit @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Drucken erlauben apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Keine Apps installiert apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Feld als Pflichtfeld markieren DocType: Communication,Clicked,Angeklickt -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Keine Berechtigung um '{0}' {1} DocType: User,Google User ID,Google-Nutzer-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Geplante senden DocType: DocType,Track Seen,Spur gesehen @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,lft DocType: User,Simultaneous Sessions,Gleichzeitige Sessions DocType: OAuth Client,Client Credentials,Client-Credentials -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Modul oder Werkzeug öffnen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Modul oder Werkzeug öffnen DocType: Communication,Delivery Status,Lieferstatus DocType: Module Def,App Name,App-Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max Dateigröße erlaubt ist {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Referenz Kommunikations DocType: Email Queue,Unsubscribe Method,Unsubscribe-Methode DocType: GSuite Templates,Related DocType,Ähnliche DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Bearbeiten um Inhalte hinzuzufügen -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Sprachenauswahl -apps/frappe/frappe/__init__.py +510,No permission for {0},Keine Berechtigung für {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Sprachenauswahl +apps/frappe/frappe/__init__.py +509,No permission for {0},Keine Berechtigung für {0} DocType: DocType,Advanced,Fortgeschritten apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Scheint API-Schlüssel oder API Secret ist falsch !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenz: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Formulartyp eingeben apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Keine Datensätze markiert. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Feld entfernen DocType: User,Send Password Update Notification,Mitteilung über Passwort-Aktualisierung senden -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DocType, DocType zulassen. Achtung!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType zulassen. Achtung!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Benutzerdefinierte Formate für Druck, E-Mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Aktualisiert auf neue Version DocType: Custom Field,Depends On,Hängt ab von @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,eine(r/s) von apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Bitte wählen Sie die zu kopierende Datei aus apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Überprüfen einen Moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Schlagwörter anzeigen +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Wenn eine strikte Benutzerberechtigung aktiviert ist und die Benutzerberechtigung für einen DocType für einen Benutzer definiert ist, werden alle Dokumente, deren Wert der Link leer ist, diesem Benutzer nicht angezeigt" DocType: Address,Billing,Abrechnung DocType: Email Queue,Not Sent,Nicht versendet DocType: Web Form,Actions,Aktionen @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,beseitigen apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Täglich wiederkehrende Veranstaltungen sollten am selben Tag enden. DocType: Communication,User Tags,Schlagworte zum Benutzer apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Bilder holen .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Herunterladen der App {0} DocType: Communication,Feedback Request,Feedback-Anfrage @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Kontakt hinzufügen DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optional: Immer diese IDs senden. Jede E-Mail-Adresse auf einer neuen Zeile -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Details ausblenden +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Details ausblenden DocType: Workflow State,Tasks,Aufgaben DocType: Event,Tuesday,Dienstag DocType: Blog Settings,Blog Settings,Blog-Einstellungen @@ -1015,10 +1016,9 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Python-Datei in den selben Ordner schreiben, in dem dieser Inhalt gespeichert wird, und Spalte und Ergebnis zurückgeben." DocType: DocType,Sort Field,Sortierfeld DocType: Razorpay Settings,Razorpay Settings,Razorpay Einstellungen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Filter bearbeiten -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Z. B. Wenn ""Benutzerberechtigung anwenden"" für einen Berichts-DocType aktiviert ist, aber keine Benutzerberechtigungen für einen Bericht definiert wurden, werden dem Benutzer alle Berichte angezeigt." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Mehr hinzufügen +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Filter bearbeiten +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Feld {0} des Typs {1} kann nicht zwingend erforderlich sein +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Weitere hinzufügen apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ausblenden Übersicht DocType: System Settings,Session Expiry Mobile,Sitzung verfällt für mobil apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Suchergebnisse für @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Verzögert apps/frappe/frappe/config/setup.py +128,List of backups available for download,Datensicherungen herunterladen apps/frappe/frappe/www/login.html +89,Sign up,Anmeldung DocType: Test Runner,Output,Ausgabe +DocType: Email Alert,Set Property After Alert,Setzen Sie die Eigenschaft nach Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Felder zu Formularen hinzufügen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Sieht aus wie etwas ist falsch mit dieser Website Paypal-Konfiguration. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,Blatt DocType: Portal Menu Item,Portal Menu Item,Portal Menüpunkt DocType: User Email,Email ID,E-Mail-ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Wenn Anwenden von Benutzerberechtigungen auf Bericht DocType geprüft wird, aber keine Benutzerberechtigungen für Bericht für einen Benutzer definiert sind, werden alle Berichte dem Benutzer angezeigt" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Eine Liste der Ressourcen, die der Client-Anwendung Zugriff auf nach dem Benutzer erlaubt, es haben wird.
zB Projekt" DocType: Translation,Translated Text,Übersetzt Text DocType: Contact Us Settings,Query Options,Abfrageoptionen @@ -1052,11 +1054,11 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Hinz apps/frappe/frappe/www/me.html +38,Profile,Profil DocType: Communication,Sent or Received,Gesendet oder empfangen DocType: DefaultValue,Key,Schlüssel -DocType: Address,Contacts,Impressum +DocType: Address,Contacts,Kontakte DocType: System Settings,Setup Complete,Einrichtung abgeschlossen apps/frappe/frappe/config/setup.py +66,Report of all document shares,"Bericht über alle Dokumente, die freigegeben wurden" apps/frappe/frappe/www/update-password.html +18,New Password,Neues Passwort -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} fehlt +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} fehlt apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Es tut uns leid! Sie können nicht automatisch generierten Kommentare löschen DocType: Website Theme,Style using CSS,CSS-Style apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referenz-DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Block-Module apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Länge zurücksetzen auf {0} für '{1}' in '{2}'; Einstellen der Länge wie {3} bewirkt Abschneiden von Daten. DocType: Print Format,Custom CSS,Benutzerdefiniertes CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Einen Kommentar hinzufügen -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignoriert: {0} um {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoriert: {0} um {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Protokoll von Fehlern bei automatisierten Ereignissen (Terminplaner) apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Keine gültige .csv-Datei @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Standard-Eingang DocType: Workflow State,repeat,Wiederholen DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Wenn diese Option deaktiviert, wird diese Rolle von allen Benutzern entfernt werden." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hilfe zur Suche +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hilfe zur Suche apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrierte aber deaktiviert DocType: DocType,Hide Copy,Kopie ausblenden apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Alle Rollen löschen @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adressen DocType: Communication,Shared,gemeinsam genutzt -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Dokumentendruck anhängen +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Dokumentendruck anhängen DocType: Bulk Update,Field,Feld DocType: Communication,Received,Empfangen DocType: Social Login Keys,Google Client ID,Google-Kunden-ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Abfragebericht DocType: User,Set New Password,Neues Passwort setzen DocType: User,Github User ID,GitHub-Nutzer-ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Wenn Dokumententyp -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kann nicht löschen oder zu stornieren , weil {0} {1} mit verknüpft ist {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kann nicht löschen oder zu stornieren , weil {0} {1} mit verknüpft ist {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Unbekannte Anwendung {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S ist kein gültiges Berichtsformat. Berichtsformat sollte eine der folgenden% s \ DocType: Communication,Chat,Unterhaltung -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Feldname {0} erscheint mehrfach in Zeilen {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Feldname {0} erscheint mehrfach in Zeilen {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} von {1} bis {2} in Zeile # {3} DocType: Communication,Expired,Verfallen DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Anzahl der Spalten für ein Feld in einem Raster (Total Spalten in einem Raster sollte weniger als 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Ein Konto haben? An apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unbekanntes Druckformat: {0} DocType: Workflow State,arrow-down,Pfeil-nach-unten apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Zuklappen -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Benutzer darf {0}: {1} nicht löschen +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Benutzer darf {0}: {1} nicht löschen apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Zuletzt aktualisiert am DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Kopfleiste DocType: GSuite Settings,Script Code,Skriptcode apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Benutzer E-Mail erstellen -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Keine Berechtigungen angegeben +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Keine Berechtigungen angegeben apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globale Einstellungen: Benutzer können nur überprüft Symbole zu wählen apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nicht gefunden DocType: Custom Role,Custom Role,benutzerdefinierte Rolle apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Startseite/Test-Ordner 2 DocType: System Settings,Ignore User Permissions If Missing,"Benutzerberechtigungen ignorieren, wenn Folgendes fehlt" -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Bitte das Dokument vor dem Hochladen abspeichern. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Bitte das Dokument vor dem Hochladen abspeichern. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Passwort eingeben DocType: Dropbox Settings,Dropbox Access Secret,Dropbox-Zugangsdaten apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Weiteren Kommentar hinzufügen apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType bearbeiten apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Unsubscribed von Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Falz muss vor einem Bereichsumbruch kommen +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Falz muss vor einem Bereichsumbruch kommen apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zuletzt geändert durch DocType: Workflow State,hand-down,Pfeil-nach-unten DocType: Address,GST State,GST Staat -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,"{0}: ""Abbruch"" kann nicht ohne ""Übertragen"" eingestellt werden" +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,"{0}: ""Abbruch"" kann nicht ohne ""Übertragen"" eingestellt werden" DocType: Website Theme,Theme,Thema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Es sind Fehler aufgetreten. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound To Auth-Code @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Meine DocType: Website Theme,Text Color,Textfarbe DocType: Desktop Icon,Force Show,Kraft anzeigen apps/frappe/frappe/auth.py +78,Invalid Request,Ungültige Anfrage -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Dieses Formular hat keine Eingabefelder +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Dieses Formular hat keine Eingabefelder apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sitzungsablauf muss im Format {0} sein DocType: Website Sidebar Item,Group,Gruppe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Bitte für ""Ziel"" = ""_blank"" auswählen, um den Inhalt in einer neuen Seite zu öffnen." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Verschlüsselungsfehler ignorieren. DocType: Workflow State,wrench,Schraubenschlüssel apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nicht festgelegt -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Benutzer DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Anmelden deaktivieren apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Bitte warten Sie, während Ihr System eingerichtet wird. Dies kann einige Zeit dauern." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Kommentar hinzufügen DocType: DocField,Mandatory,Zwingend notwendig apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module für den Export -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Keine Grundberechtigungen festgelegt +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Keine Grundberechtigungen festgelegt apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Ihr Abonnement endet am {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download-Link für Datensicherung wird an die folgende E-Mail-Adresse gesendet: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Bedeutung von Übertragen, Stornieren, Abändern" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,Abfrage-Bericht apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Zugewiesen zu {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filter gespeichert DocType: DocField,Percent,Prozent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Bitte Filter einstellen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Bitte Filter einstellen apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Verknüpft mit DocType: Workflow State,book,Buchen DocType: Website Settings,Landing Page,Zielseite -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Fehler in benutzerdefinierten Skripts +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fehler in benutzerdefinierten Skripts apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import anfordern Warteschlange. Dies kann einen Moment dauern, bitte haben Sie Geduld." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Keine Berechtigungen für diese Kriterien gesetzt. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Login mit Mobilnummer z apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Sie haben nicht genügend Rechte, um auf diese Ressource zuzugreifen. Bitte kontaktieren Sie Ihren Manager um Zugang zu erhalten." DocType: Custom Field,Custom,Benutzerdefiniert apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,E-Mail-Benachrichtigung einrichten auf der Grundlage verschiedener Kriterien. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Beiträge abgelegt unter {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Beiträge abgelegt unter {0} DocType: Email Alert,Send alert if date matches this field's value,"Benachrichtigung senden, wenn das Datum dem Wert dieses Feldes entspricht" DocType: Workflow,Transitions,Übergänge apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Entfernen Sie {0} und alle Daten löschen? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Anmelden nach DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Druck DocType: Workflow State,thumbs-up,Bild-nach-oben -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto von Setup> Email> E-Mail-Konto DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Genauigkeit sollte zwischen 1 und 6 liegen +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Genauigkeit sollte zwischen 1 und 6 liegen apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,und DocType: Error Snapshot,Frames,Frames @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Bildverknüpfung DocType: Auto Email Report,Report Filters,Berichtsfilter apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,jetzt DocType: Workflow State,step-backward,Schritt zurück -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Bitte Dropbox-Zugriffsdaten in den Einstellungen der Seite setzen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Löschen Sie diesen Datensatz, um das Senden an diese E-Mail Adresse zu ermöglichen" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Für neue Datensätze sind nur Pflichtfelder zwingend erforderlich. Nicht zwingend erforderliche Spalten können gelöscht werden, falls gewünscht." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Ist Ordner für Anhänge apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Alle erweitern apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Gültige Benutzer-ID erforderlich. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Wiedereröffnen -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Sie haben die Zahlung storniert -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Bitte eine gültige CSV-Datei mit Daten auswählen +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Bitte eine gültige CSV-Datei mit Daten auswählen apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} teilt dieses Dokument nicht mehr mit {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumentstatus-Übergang von {0} {1} ist nicht erlaubt DocType: DocType,"Make ""name"" searchable in Global Search",Machen Sie "name" durchsuchbar in Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Hilfe Kategorie apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Benutzer {0} ist deaktiviert apps/frappe/frappe/www/404.html +8,Page missing or moved,Seite fehlt oder befindet sich an einem neuen Ort -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,{0} Eigenschaften bearbeiten DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Payment Gateway-Einstellungen DocType: DocField,Name,Name apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Sie haben den maximalen Speicherplatz {0} für Ihren Plan überschritten. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Suche nach den docs DocType: OAuth Authorization Code,Valid,Gültig -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Verknüpfung öffnen -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Ihre Sprache +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Verknüpfung öffnen +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ihre Sprache apps/frappe/frappe/desk/form/load.py +46,Did not load,wurde nicht geladen apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Zeile hinzufügen DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Ist Feedback- DocType: Address,Lakshadweep Islands,Lakshadweep Inseln apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kann schreiben apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bestimmte Vorgänge, wie z.B. Rechnung, sollten nach dem Fertigstellen nicht mehr abgeändert werden. Diese befinden sich im Status ""Gebucht"". Sie können außerdem festlegen, wer Vorgänge buchen darf." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Sie sind nicht berechtigt diesen Bericht zu exportieren +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Sie sind nicht berechtigt diesen Bericht zu exportieren apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 Artikel ausgewählt DocType: Newsletter,Test Email Address,Test-E-Mail-Adresse DocType: ToDo,Sender,Absender @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokument-ID DocType: Print Settings,Letter,Brief -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Bildfeld muss Typ anhängen Bild +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Bildfeld muss Typ anhängen Bild DocType: DocField,Columns,Spalten DocType: Async Task,Succeeded,Erfolgreich apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Benötigte Pflichtfelder vorhanden für {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Text Bearbeiter apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,"Einstellungen ""Über uns""." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Benutzerdefiniertes HTML bearbeiten DocType: Error Snapshot,Error Snapshot,Fehler-Schnappschuss -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,in +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,in DocType: Email Alert,Value Change,Wertänderung DocType: Standard Reply,Standard Reply,Standard-Antwort apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Breite des Eingabefeldes @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,"Verwenden Sie diesen Feldnamen, um den Titel zu erzeugen" apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import von E-Mails aus apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Als Benutzer einladen -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Anhänge auswählen +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Anhänge auswählen apps/frappe/frappe/model/naming.py +94, for {0},für {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Es sind Fehler aufgetreten. Bitte melden Sie dies. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Sie sind nicht berechtigt dieses Dokument zu drucken +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Sie sind nicht berechtigt dieses Dokument zu drucken apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Bitte setzen Sie Filter Wert in Berichtsfiltertabelle. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Lade Bericht +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Lade Bericht apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Ihr Abonnement wird heute auslaufen. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Datei anhängen @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regional Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Benachrichtigungen abbestellen -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Optionen nicht für das Verknüpfungs-Feld {0} gesetzt DocType: Customize Form,"Must be of type ""Attach Image""",Muss vom Typ sein "Bild anhängen" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Alles wiederufen apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"""Nur lesen"" kann für das Feld {0} nicht rückgängig gemacht werden" @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Anmerkung apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fehlerbericht apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Rückmeldungsbedingungen stimmen nicht überein -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline-Feld muss eine gültige Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline-Feld muss eine gültige Feldname sein DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Zeile #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Zeile #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Neues Passwort per E-Mail versendet apps/frappe/frappe/auth.py +245,Login not allowed at this time,Anmelden zur Zeit nicht erlaubt DocType: Email Account,Email Sync Option,E-Mail-Sync Option @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard-Antworten auf häufige Fragen apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard-Versand DocType: Workflow State,volume-off,Lautstärke aus -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Geliked durch {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Geliked durch {0} DocType: Footer Item,Footer Item,Footer Artikel ,Download Backups,Datensicherungen herunterladen apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Startseite/Test-Ordner 1 @@ -1565,7 +1563,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,M apps/frappe/frappe/core/doctype/file/file_list.js +80,Edit Folder,Ordner bearbeiten DocType: DocField,Dynamic Link,Dynamische Verknüpfung apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date,Bis-Datum -apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Nicht nachgewiesen Jobs +apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Zeige fehlgeschlagene Jobs apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +68,Details,Details DocType: Property Setter,DocType or Field,DocType oder Feld DocType: Communication,Soft-Bounced,Soft-Bounced @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Textausrichtung apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Der Name darf keine Sonderzeichen wie {0} enthalten DocType: Contact Us Settings,Forward To Email Address,Weiterleiten an E-Mail-Adresse apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Alle Daten -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Bezeichnungsfeld muss ein gültiger Feldname sein apps/frappe/frappe/config/core.py +7,Documents,Dokumente DocType: Email Flag Queue,Is Completed,Abgeschlossen apps/frappe/frappe/www/me.html +22,Edit Profile,Profil bearbeiten @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Dieses Feld wird nur angezeigt, wenn der Feldname hier definierten Wert hat oder die Regeln erfüllt sind (Beispiele): myfield eval: doc.myfield == 'My Value' eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Heute +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Heute apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sobald dies eingestellt wurde, haben die Benutzer nur Zugriff auf Dokumente (z. B. Blog-Eintrag), bei denen eine Verknüpfung existiert (z. B. Blogger)." DocType: Error Log,Log of Scheduler Errors,Protokoll von Fehlermeldungen des Terminplaners DocType: User,Bio,Lebenslauf @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 Stern ist die niedrigste & 5 Sterne ist die höchste Bewertung DocType: Event,Ref Name,Re-Name DocType: Web Page,Center,Zentrieren +DocType: Email Alert,Value To Be Set,"Wert, der gesetzt werden soll" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Erste Stufe DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Stellt die in einem Dokument erlaubten Zustände und die zugewiesene Rolle zum Ändern des Zustands dar. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Formular aktualisieren @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Hat Webansicht apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType Name sollte mit einem Buchstaben beginnen und es darf nur aus Buchstaben, Zahlen, Leerzeichen und Unterstrichen" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Integration anfordern -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Hallo +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Hallo DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Rechnungswesen Benutzer DocType: Web Page,HTML for header section. Optional,HTML für Kopfzeilen-Bereich. Optional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Diese Funktion ist ganz neu und noch experimentell -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximum von {0} Zeilen erlaubt +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximum von {0} Zeilen erlaubt DocType: Email Unsubscribe,Global Unsubscribe,Global austragen apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Dies ist ein sehr häufiges Passwort. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Anzeigen DocType: Communication,Assigned,Zugewiesen DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Druckformat auswählen +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Druckformat auswählen apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kurze Tastatur-Muster sind leicht zu erraten DocType: Portal Settings,Portal Menu,Portal-Menü apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Länge von {0} sollte zwischen 1 und 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Benutzer kann nicht suchen apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ungültige Ausgabeformat DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Diese Regel anwenden, wenn der Nutzer gleich dem Besitzer ist" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Wird Ihre Login-ID sein +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Wird Ihre Login-ID sein apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Bericht erstellen DocType: Note,Notify users with a popup when they log in,"Benachrichtigen Sie die Benutzer mit einem Pop-up, wenn sie sich in" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} existiert nicht. Bitte ein neues Ziel zum Zusammenführen wählen @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,Rollen Permission apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualisieren DocType: Error Snapshot,Snapshot View,Schnappschuss-Ansicht apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Bitte den Newsletter vor dem Senden speichern -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},"""Optionen"" muss ein gültiger DocType für Feld {0} in Zeile {1} sein" +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} Jahr (e) vor +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},"""Optionen"" muss ein gültiger DocType für Feld {0} in Zeile {1} sein" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Eigenschaften bearbeiten DocType: Patch Log,List of patches executed,Angewandte Patches apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} bereits abgemeldet -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikationsmedium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikationsmedium DocType: Website Settings,Banner HTML,Banner-HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Bitte wählen Sie eine andere Zahlungsmethode. Razorpay unterstützt keine Transaktionen in der Währung ‚{0}‘ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Queued für das Backup. Es kann ein paar Minuten bis zu einer Stunde dauern. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrieren OAuth-Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kann nicht ""{2}"" sein . Es sollte aus ""{3}"" sein." +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kann nicht ""{2}"" sein . Es sollte aus ""{3}"" sein." apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} oder {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Desktopsymbole ein- oder ausblenden apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Passwort-Aktualisierung @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Zeige Zeilenumbrüche nach den Abschnitten DocType: Blogger,Short Name,Kürzel apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Seite {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Sie haben die ALL als Synchronisations-Option gewählt. \ Damit werden alle neuen, gelesenen sowie ungelesene Nachricht vom Server empfangen. \ Es kann zu Duplikaten bei den E-Mails kommen." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Dateien Größe @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,Einkaufsleiter DocType: Custom Script,Sample,Beispiel apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Stichworte DocType: Event,Every Week,Wöchentlich +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-Mail-Konto nicht eingerichtet. Bitte erstellen Sie ein neues E-Mail-Konto von Setup> Email> E-Mail-Konto apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Klicken Sie hier, um Ihre Nutzung zu überprüfen oder zu einem höheren Upgrade-Plan" DocType: Custom Field,Is Mandatory Field,Ist Pflichtfeld DocType: User,Website User,Webseitenbenutzer @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Benutzerdefinierte Sidebar Menu DocType: Workflow State,pencil,Bleistift apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat-Nachrichten und andere Meldungen -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Dahinter einfügen kann nicht als eingestellt werden {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Dahinter einfügen kann nicht als eingestellt werden {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,{0} teilen mit apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-Mail-Konto-Setup geben Sie bitte Ihre Passwort für: DocType: Workflow State,hand-up,Pfeil-nach-oben DocType: Blog Settings,Writers Introduction,Vorwort des Autors DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Fehler beim Auswerten E-Mail Benachrichtigung {0}. Bitte korrigieren Sie Ihre Vorlage. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Fehler beim Auswerten E-Mail Benachrichtigung {0}. Bitte korrigieren Sie Ihre Vorlage. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,"Dokumententyp oder Rolle auswählen, um zu beginnen." DocType: Contact,Passive,Passiv DocType: Contact,Accounts Manager,Kontenmanager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ihre Zahlung wird storniert. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Dateityp auswählen DocType: Help Article,Knowledge Base Editor,Wissensdatenbank Bearbeiter/-in apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Seite nicht gefunden @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Eigenschaftstyp DocType: Workflow State,screenshot,Screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Nur der Administrator kann einen Standardbericht speichern. Bitte umbenennen und speichern. DocType: System Settings,Background Workers,Hintergrundaktivitäten +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Feldname {0} im Konflikt mit Meta-Objekt DocType: Deleted Document,Data,Daten apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentenstatus apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Sie haben {0} von {1} gemacht @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Benutzerrechte anzeigen apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Sie müssen eingeloggt sein und die Systemmanager-Rolle haben um auf Datensicherungen zuzugreifen. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Verbleibend -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Bitte vor dem Anhängen speichern +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Bitte vor dem Anhängen speichern apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),{0} ({1}) hinzugefügt apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standard-Design wird in {0} eingestellt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Feldtyp kann nicht von {0} nach {1} in Zeile {2} geändert werden @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Systemverwaltung apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sitzungsstart fehlgeschlagen apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Diese E-Mail wurde an {0} gesendet und eine Kopie an {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Bitte legen Sie das Standard-E-Mail-Konto von Setup> Email> E-Mail-Konto ein -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Neu erstellen: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Neu erstellen: {0} DocType: Email Rule,Is Spam,ist Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Bericht {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},{0} öffnen +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0} öffnen DocType: OAuth Client,Default Redirect URI,Standard Weiterleitungs URI DocType: Email Alert,Recipients,Empfänger DocType: Workflow State,ok-sign,OK-Zeichen @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Hilfeartikel ,Modules Setup,Moduleinstellungen apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ihre Zahlung ist fehlgeschlagen. DocType: Communication,Unshared,ungeteilten DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nicht gefunden @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,Markenzeichen DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Einrichten der oberen Navigationsleiste, der Fußzeile und des Logos" DocType: Web Form Field,Max Value,Max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Für {0} auf der Ebene {1} in {2} in Zeile {3} DocType: Contact,All,Alle DocType: Email Queue,Recipient,Empfänger DocType: Communication,Has Attachment,Hat Anhang @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,rechtsbündig DocType: Auto Email Report,Email To,E-Mail an apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Ordner {0} ist nicht leer DocType: Page,Roles,Rollen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Feld {0} ist nicht auswählbar. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Fehler: Wert fehlt für {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Feld {0} ist nicht auswählbar. DocType: System Settings,Session Expiry,Sitzungsende DocType: Workflow State,ban-circle,Bannkreis DocType: Email Flag Queue,Unread,Ungelesen @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Benutzer-Voreinstellungen apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Neuen Eintrag erstellen DocType: Workflow State,chevron-down,Winkel nach unten -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-Mail wurde nicht an {0} gesendet (abbestellt / deaktiviert) DocType: Async Task,Traceback,Zurück verfolgen DocType: Currency,Smallest Currency Fraction Value,Kleinste Währungsanteilwert apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Zuweisen zu @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Von DocType: Website Theme,Google Font (Heading),Google Font (Überschrift) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Zuerst einen Gruppenknoten wählen. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} in {1} finden +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} in {1} finden DocType: OAuth Client,Implicit,Implizit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Als Kommunikation zu diesem DocType anhängen (muss die Felder, ""Status"" und ""Betreff"" beinhalten)" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs zum Empfangen von Berechtigungscodes, wenn der Benutzer den Zugriff ermöglicht, sowie Ausfall Antworten. Typischerweise App ein REST-Endpunkt durch den Kunden ausgesetzt.
zB http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ändern von {0} nach dem Übertragen nicht erlaubt +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ändern von {0} nach dem Übertragen nicht erlaubt DocType: Communication,Comment Type,Kommentarart DocType: OAuth Client,OAuth Client,OAuth-Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Benutzer @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Das Dateiformat kann nicht gelesen werden für {0} DocType: Auto Email Report,Filter Data,Filterdaten apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Eine Markierung hinzufügen -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Bitte zuerst eine Datei anhängen. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Bitte zuerst eine Datei anhängen. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",Beim Setzen des Namens hat es einige Fehler gegeben. Kontaktieren Sie bitte Ihren Administrator apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Eingehende E-Mail-Konto nicht korrekt apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,E-Mail wurde abgesendet DocType: DocField,Ignore XSS Filter,Ignorieren XSS-Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,entfernt apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox Backup-Einstellungen -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Als E-Mail senden +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Als E-Mail senden DocType: Website Theme,Link Color,Farbe der Verknüpfung apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Benutzer {0} kann nicht deaktiviert werden apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Sehr geehrter System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Dein Land +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Dein Land DocType: Event,Sunday,Sonntag apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In der Grid-Ansicht DocType: Address Template,Template,Vorlage @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-Einstellungen apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Änderung apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal Payment-Gateway-Einstellungen -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) wird abgeschnitten werden, da maximal {2} Zeichen erlaubt sind" DocType: OAuth Client,Resource Owner Password Credentials,Ressourceneigentümer Passwort Credentials DocType: OAuth Client,Response Type,Antworttyp apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Nutzer @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Tabelle DocType: File,File Size,Dateigröße apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Anmeldung erforderlich, um dieses Formular zu übermitteln" DocType: User,Background Image,Hintergrundbild -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Bitte Land, Zeitzone und Währung auswählen" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Bitte Land, Zeitzone und Währung auswählen" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Zwischen DocType: Async Task,Queued,Warteschlange @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Erstellen apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ungültiger Filter: {0} DocType: Email Account,no failed attempts,keine Fehlversuchen +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Keine Standard-Adressvorlage gefunden. Bitte erstellen Sie eine neue aus Setup> Drucken und Branding> Adressvorlage. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Zugriffsschlüssel DocType: OAuth Bearer Token,Access Token,Zugriffstoken @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub-Benutzername DocType: DocType,Image View,Bildansicht apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Sieht aus wie etwas ging während der Transaktion falsch. Da wir die Zahlung nicht bestätigt haben, wird Paypal Sie automatisch diesen Betrag zu erstatten. Wenn dies nicht der Fall, senden Sie uns bitte eine E-Mail und erwähnen Sie die ID Korrelation: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Dahinter einfügen Feld '{0}' in benutzerdefinierten Feld erwähnt '{1}', mit dem Label '{2}' existiert nicht" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Geben Sie Symbole, Zahlen und Großbuchstaben in das Passwort ein" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Dahinter einfügen Feld '{0}' in benutzerdefinierten Feld erwähnt '{1}', mit dem Label '{2}' existiert nicht" DocType: Workflow State,signal,Signal DocType: DocType,Show Print First,Ausdruck zuerst anzeigen apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Strg + Enter, um zu Posten" @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Datei '{0}' nicht gefunden apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Aufteilung entfernen DocType: User,Change Password,Kennwort ändern -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ungültige E-Mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hallo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ungültige E-Mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hallo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Das Ende des Ereignisses muss nach dem Ereignis-Anfang liegen apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Sie haben keine ausreichenden Benutzerrechte um einen Bericht über: {0} zu erhalten +DocType: System Settings,Apply Strict User Permissions,Strenge Benutzerberechtigungen anwenden DocType: DocField,Allow Bulk Edit,Bulk Bearbeiten zulassen DocType: Blog Post,Blog Post,Blog-Eintrag -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Erweiterte Suche +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Erweiterte Suche apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Eine Anleitung zum Zurücksetzen des Passworts wurde an ihre E-Mail-Adresse verschickt apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 ist für Dokumentebene Berechtigungen, \ höhere Ebenen für Feldebene Berechtigungen." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,Gesperrte DocType: Web Page,Sidebar and Comments,Sidebar und Kommentare apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wenn ein Dokument nach dem Stornieren geändert und abgespeichert wird, bekommt es eine neue Versionsnummer der alten Nummer." DocType: Stripe Settings,Publishable Key,Veröffentlichender Schlüssel -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} Jahr (e) vor DocType: Workflow State,circle-arrow-left,Kreis-Pfeil-nach-links apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis Cache-Server läuft nicht. Bitte Administrator/Technischen Support kontaktieren apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Einen neuen Datensatz erstellen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Einen neuen Datensatz erstellen apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Suchen DocType: Currency,Fraction,Teil DocType: LDAP Settings,LDAP First Name Field,LDAP-Feld Vorname -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Aus bestehenden Anlagen auswählen +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Aus bestehenden Anlagen auswählen DocType: Custom Field,Field Description,Feldbeschreibung apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Name nicht über Eingabeaufforderung gesetzt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-Mail-Posteingang @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Berechtigungsebene DocType: User,Send Notifications for Transactions I Follow,"Benachrichtigungen für Transaktionen, denen Sie folgen, senden" -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kann nicht auf ""Übertragen"", ""Stornieren"", ""Ändern"" eingestellt werden ohne ""Schreiben""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Soll die Anlage wirklich gelöscht werden? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kann nicht löschen oder zu stornieren , weil {0} {1} mit verknüpft ist {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Keine Ergebnisse für '

-apps/frappe/frappe/__init__.py +1063,Thank you,Danke +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kann nicht löschen oder zu stornieren , weil {0} {1} mit verknüpft ist {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Danke apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Speichere DocType: Print Settings,Print Style Preview,Druckstil-Vorschau apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Ordner @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,In der Listenansicht DocType: Email Account,Use TLS,TLS verwenden apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ungültige Benutzerkennung oder ungültiges Passwort apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Benutzerdefiniertes Javascript zum Formular hinzufügen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Lf. Nr. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Lf. Nr. ,Role Permissions Manager,Rollenberechtigungen-Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Name des neuen Druckformats -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Anlage beseitigen +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Anlage beseitigen apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Zwingend erforderlich: ,User Permissions Manager,Benutzerrechte-Manager DocType: Property Setter,New value to be set,Neuer Wert muss gesetzt werden @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,vor 2 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blog-Einträge kategorisieren DocType: Workflow State,Time,Zeit DocType: DocField,Attach,Anhängen -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ist kein gültiges Format für Feldnamen. Es sollte sein {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Senden Feedback Antrag nur dann, wenn mindestens eine Kommunikation ist für das Dokument ist." DocType: Custom Role,Permission Rules,Berechtigungsregeln DocType: GSuite Settings,GSuite Settings,GSuite Einstellungen DocType: Address,Links,Verknüpfungen -apps/frappe/frappe/model/base_document.py +428,Value missing for,Wert fehlt für +apps/frappe/frappe/model/base_document.py +427,Value missing for,Wert fehlt für apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Unterpunkt hinzufügen -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Übertragener Datensatz kann nicht gelöscht werden. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Sicherungsgröße DocType: GSuite Templates,Template Name,Vorlagenname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,neuer Dokumententyp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,neuer Dokumententyp DocType: Custom DocPerm,Read,Lesen DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rollengenehmigung Seite und Bericht apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Wert ausrichten apps/frappe/frappe/www/update-password.html +14,Old Password,Altes Passwort -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Beiträge von {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Beiträge von {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Um Spalten zu formatieren, geben Sie die Spaltenbeschriftungen in der Abfrage ein." DocType: Has Domain,Has Domain,Hat Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Sie haben noch kein Konto? Konto erstellen -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Kann nicht als ""als geändert markieren"" eingestellt werden, wenn nicht übertragbar" DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Rollenberechtigungen bearbeiten DocType: Communication,Link DocType,Link DocType @@ -2335,7 +2339,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Bitte stellen Sie sicher, dass Ihr Profil eine E-Mail-Adresse hat" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Sie haben noch nicht gespeicherte Änderungen in diesem Formular. Bitte speichern Sie diese, bevor Sie fortfahren." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard für {0} muss eine Auswahlmöglichkeit sein DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorie DocType: User,User Image,Bild des Benutzers apps/frappe/frappe/email/queue.py +289,Emails are muted,E-Mails sind stumm geschaltet @@ -2368,7 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Nächste A DocType: Workflow State,ok,OK DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Diese Werte werden automatisch in Transaktionen aktualisiert. Außerdem sind sie nützlich, um die Berechtigungen dieses Benutzers bei Transaktionen mit diesen Werten zu beschränken." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Herausgeber -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Fehlgeschlagen: {0} um {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Fehlgeschlagen: {0} um {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Wählen Pflicht apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Durchsuchen apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Gesendete E-Mails @@ -2380,7 +2384,7 @@ DocType: Async Task,Running,Laufend apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Passwort zurücksetzen apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Bitte Upgrade auf mehr als {0} Abonnenten hinzufügen DocType: Workflow State,hand-left,Pfeil-nach-links -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Feldtyp {0} für {1} kann nicht einmalig sein DocType: Email Account,Use SSL,SSL verwenden DocType: Workflow State,play-circle,Spielplatz apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zu bearbeitendes Druckformat wählen @@ -2435,7 +2439,7 @@ DocType: DocField,No Copy,Keine Kopie DocType: Workflow State,qrcode,QR-Code apps/frappe/frappe/www/login.html +34,Login with LDAP,Einloggen mit LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Wenn Inhaber +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Wenn Inhaber DocType: OAuth Authorization Code,Expiration time,Ablaufzeit DocType: Web Page,Website Sidebar,Webseite Sidebar DocType: Web Form,Show Sidebar,anzeigen Sidebar @@ -2455,7 +2459,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{0} konnte in {1} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Namen und Vornamen von ihnen selbst sind leicht zu erraten. apps/frappe/frappe/config/website.py +93,Knowledge Base,Wissensbasis DocType: Workflow State,briefcase,Aktenkoffer -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Wert kann für {0} nicht geändert werden +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Wert kann für {0} nicht geändert werden DocType: Feedback Request,Is Manual,ist Handbuch DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil stellt die Farbe der Schaltfläche dar: Erfolg - Grün, Gefahr - Rot, Kehrwert - Schwarz, Primär - Dunkelblau, Info - Hellblau, Warnung - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Kein Bericht geladen. Bitte Reportabfrage query-report/[Report Name] benutzen, um einen Bericht auszuführen." @@ -2532,7 +2536,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Fortschritt apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,durch Rolle apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,fehlende Felder apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ungültige Feldname '{0}' in auton -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Suche in einem Dokumenttyp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Suche in einem Dokumenttyp apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,"Auch nach dem Übertragen zulassen, dass das Feld bearbeitbar bleibt" DocType: Custom DocPerm,Role and Level,Rolle und Ebene DocType: File,Thumbnail URL,Thumbnail-URL @@ -2549,18 +2553,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Strg + G) DocType: Contact,More Information,Mehr Informationen DocType: Desktop Icon,Desktop Icon,Desktopsymbol -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Ihre Zahlung wurde erfolgreich angenommen +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Ihre Zahlung wurde erfolgreich angenommen apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,"Verzeihung! Sie sind nicht berechtigt, diese Seite zu sehen." apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tipp: Klicken Sie doppelt Zelle zu bearbeiten DocType: Workflow State,bell,Glocke apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fehler in E-Mail-Benachrichtigung apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dieses Dokument teilen mit +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} kann kein Knotenpunkt sein, da Unterpunkte vorhanden sind" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Anhang hinzufügen +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Anhang hinzufügen DocType: Communication,Email,E-Mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Vielen Dank für Ihre Nachricht -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Senden Lesebestätigung +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Senden Lesebestätigung DocType: Stripe Settings,Stripe Settings,Stripe-Einstellungen DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox-Setup via Site Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Invalid Login Token @@ -2637,6 +2642,7 @@ DocType: DocType,Web View,Webansicht apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,WARNUNG: Dieses Druckformat ist im alten Stil und kann nicht über die API generiert werden. DocType: DocField,Print Width,Druckbreite ,Setup Wizard,Setup-Assistent +DocType: Address,GST State Number,GST Staatsnummer DocType: User,Allow user to login only before this hour (0-24),Benutzer darf sich nur vor dieser Stunde anmelden (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Ordner ist zwingend erforderlich apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2662,7 +2668,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Kleiner Text apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator hat auf {0} über {1} zugegriffen mit IP-Adresse {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,ist gleich -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link""-Feldtyp aus ""Optionen"" muss auf ein anderes Verknüpfungsfeld mit Optionen wie ""DocType"" zeigen" DocType: About Us Settings,Team Members Heading,Überschrift zu den Teammitgliedern apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ungültige CSV-Format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Anzahl der Backups einstellen @@ -2673,7 +2679,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Drittpartei-Authentifizierung DocType: Website Settings,Banner is above the Top Menu Bar.,Banner über der oberen Menüleiste. DocType: Razorpay Settings,API Secret,API Geheimnis -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Export-Report: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Export-Report: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} existiert nicht DocType: Email Account,Port,Anschluss DocType: Print Format,Arial,Arial @@ -2696,7 +2702,7 @@ DocType: Kanban Board Column,Column Name,Spaltenname DocType: Language,Based On,Basiert auf apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Zum Standard machen apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Überprüfen Sie Frappe Server-URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Feldtyp {0} für {1} kann nicht indiziert werden DocType: Communication,Email Account,E-Mail-Konto DocType: Workflow State,Download,Herunterladen DocType: Blog Post,Blog Intro,Blog-Einleitung @@ -2707,7 +2713,7 @@ DocType: Web Page,Insert Code,Code einfügen DocType: ToDo,Low,Niedrig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Sie können dynamische Eigenschaften aus dem Dokument mit Hilfe von Jinja Templating hinzufügen. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ungültige Grenze {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Einen Dokumenttyp auflisten +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Einen Dokumenttyp auflisten DocType: Event,Ref Type,Ref-Typ apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Wenn neue Datensätze hochgeladen werden, bitte die Spalte ""Bezeichnung"" (ID) leer lassen." DocType: Address,Chattisgarh,Chattisgarh @@ -2729,25 +2735,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Ausdruck als PDF senden DocType: Web Form,Amount,Betrag DocType: Workflow Transition,Allowed,Erlaubt -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Es darf nur einen Falz in einem Formular geben apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Das Dateiformat kann nicht für {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Wiederherstellen der Standardeinstellungen? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ungültige Startseite apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ungültiger Login. Versuch es noch einmal. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Optionen für Link- oder Tabellenart-Feld {0} in Zeile {1} DocType: Auto Email Report,Send only if there is any data,"Senden Sie nur dann, wenn es irgendwelche Daten" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Filter zurücksetzen -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : Die Erlaubnis für Ebene 0 muss gesetzt werden bevor höhere Ebenen eingestellt werden können apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Zuordnung geschlossen von {0} DocType: Integration Request,Remote,entfernt -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Berechnen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Berechnen apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Bitte zuerst DocType auswählen apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Email-Adresse bestätigen apps/frappe/frappe/www/login.html +42,Or login with,Oder melden Sie sich an mit DocType: Error Snapshot,Locals,Einheimische apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommuniziert über {0} um {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} erwähnte Sie in einem Kommentar in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,z. B. (55 + 434) / 4 oder =Math.sin(Math.PI/2)... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,z. B. (55 + 434) / 4 oder =Math.sin(Math.PI/2)... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} erforderlich DocType: Integration Request,Integration Type,Integration Typ DocType: Newsletter,Send Attachements,senden Attachements @@ -2757,14 +2763,14 @@ DocType: DocField,Perm Level,Berechtigungsebene apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Ereignisse im heutigen Kalender DocType: Web Page,Web Page,Webseite DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In Globaler Suche' nicht zulässig für Typ {0} in Zeile {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Liste anzeigen -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum muss in folgendem Format vorliegen: {0} DocType: Workflow,Don't Override Status,Überschreiben Sie nicht-Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Bitte geben Sie eine Bewertung. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback-Anfrage apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Suchbegriff -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Der erste Benutzer: Sie selbst! +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Der erste Benutzer: Sie selbst! apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Spalten auswählen DocType: Translation,Source Text,Quellentext apps/frappe/frappe/www/login.py +55,Missing parameters for login,Fehlende Parameter für Login @@ -2786,7 +2792,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importieren DocType: ToDo,Assigned By,Zugewiesen von apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"Sie können ""Formular anpassen"" verwenden, um Ebenen auf Feldern zu setzen ." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Wählen Sie Ihre Region +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Wählen Sie Ihre Region DocType: Custom DocPerm,Level,Ebene DocType: Custom DocPerm,Report,Bericht apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Betrag muss größer als 0 sein. @@ -2806,7 +2812,7 @@ DocType: Website Theme,Background,Hintergrund DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON (JavaScript Object Notation)-Liste der DocTypes, die zur Zuordnung von Benutzerrechten verwendet werden. Sofern diese Liste leer ist, werden alle DocTypes verwendet um Benutzerrechte zuzuordnen." DocType: Report,Ref DocType,Ref-DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Bitte fügen Sie eine Bewertung hinzu -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,"{0}: ""Geändert"" kann nicht eingestellt werden ohne ""Abbruch""" apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Ganze Seite DocType: DocType,Is Child Table,Ist Untertabelle apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} muss aus {1} sein @@ -2821,7 +2827,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Dies erscheint oberhal apps/frappe/frappe/config/setup.py +260,Install Applications.,Anwendungen installieren DocType: Contact,Last Name,Familienname DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Keine Warnungen für heute +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Keine Warnungen für heute DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Ausdrucke als E-Mail-Anhang im PDF-Format senden (empfohlen) DocType: Web Page,Left,Links DocType: Event,All Day,Ganzer Tag @@ -2835,7 +2841,7 @@ DocType: Event,Send an email reminder in the morning,Morgens eine Erinnerungemai DocType: Blog Post,Published On,Veröffentlicht am DocType: Contact,Gender,Geschlecht apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Pflichtangaben fehlen: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Feld '{0}' kann nicht als ""eindeutig"" eingestellt werden, da es nicht-eindeutige Werte hat" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Nur 200 Einsätze in einem Anfrage erlaubt DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referenz-Typ @@ -2848,7 +2854,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Warnschild DocType: Workflow State,User,Benutzer DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Diesen Eintrag im Browser-Fenster als ""Präfix - Titel"" anzeigen" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Text in Dokumententyp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Text in Dokumententyp apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Tests ausführen apps/frappe/frappe/handler.py +91,Logged Out,Abgemeldet apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mehr... @@ -2873,13 +2879,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Gerade in Betrachtung DocType: DocField,Default,Standard apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} hinzugefügt -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Suche nach '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Suche nach '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Bitte speichern Sie den Bericht zuerst apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} Empfänger hinzugefügt apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nicht in DocType: Workflow State,star,Stern -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Werte durch Komma getrennt -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max Breite für Typ Währung ist 100px in Zeile {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Werte durch Komma getrennt +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max Breite für Typ Währung ist 100px in Zeile {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Bitte teilen Sie Ihr Feedback für {0} apps/frappe/frappe/config/website.py +13,Content web page.,Inhalt der Webseite apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Neue Rolle hinzufügen @@ -2897,7 +2903,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Keine gültige LDAP-Benutzer apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} kein gültiger Zustand apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Bitte wählen Sie eine andere Zahlungsmethode. PayPal bietet keine Unterstützung für Transaktionen in der Währung ‚{0}‘ -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Suchfeld {0} ist nicht gültig +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Suchfeld {0} ist nicht gültig DocType: Workflow State,ok-circle,Genehmigungs-Kreislauf apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Sie können Informationen finden, indem Sie zum Beispiel ""suche Orange in Kunden"" eingeben." apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Verzeihung! Benutzer sollten uneingeschränkten Zugang zu ihren eigenen Rekord zu haben. @@ -2956,7 +2962,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Text, der für die Verknüpfung zur Webseite angezeigt wird, wenn dieses Formular eine Webseite hat. Verknüpfungs-Pfad wird basierend auf ""page_name"" und ""parent_website_route"" automatisch generiert" DocType: Feedback Request,Feedback Trigger,Feedback-Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Bitte zuerst {0} setzen +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Bitte zuerst {0} setzen DocType: Unhandled Email,Message-id,Nachrichten ID DocType: Patch Log,Patch,Korrektur DocType: Async Task,Failed,Fehlgeschlagen diff --git a/frappe/translations/el.csv b/frappe/translations/el.csv index 0074f8c393..debab47c4d 100644 --- a/frappe/translations/el.csv +++ b/frappe/translations/el.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Όνομα χρήστη facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Σημείωση: Πολλαπλές συνεδρίες θα επιτρέπεται στην περίπτωση της κινητής συσκευής apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Ενεργοποιήθηκε εισερχόμενα e-mail για το χρήστη {χρήστες} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Δεν μπορώ να στείλω αυτό το μήνυμα. Έχετε περάσει το όριο αποστολής του {0} emails για αυτό το μήνα. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Μόνιμα Υποβολή {0} ; +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Μόνιμα Υποβολή {0} ; DocType: Address,County,Κομητεία DocType: Workflow,If Checked workflow status will not override status in list view,"Αν είναι ελεγμένο για την κατάσταση της ροής εργασίας, δεν θα αντικαταστήσει την κατάσταση στην προβολή λίστας" apps/frappe/frappe/client.py +280,Invalid file path: {0},Μη έγκυρη διαδρομή του αρχείου: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Παρ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Δέντρο DocType: User,User Emails,Emails χρήστη DocType: User,Username,Όνομα χρήστη -apps/frappe/frappe/model/base_document.py +581,Value too big,Η τιμή είναι υπερβολικά μεγάλη +apps/frappe/frappe/model/base_document.py +580,Value too big,Η τιμή είναι υπερβολικά μεγάλη DocType: DocField,DocField,Πεδίο εγγράφου DocType: GSuite Settings,Run Script Test,Εκτέλεση δοκιμής δέσμης ενεργειών DocType: Contact,Department,Τμήμα @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Logs DocType: Custom DocPerm,This role update User Permissions for a user,Αυτός ο ρόλος ενημερώνει τα δικαιώματα χρήστη για ένα χρήστη apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Μετονομασία {0} DocType: Workflow State,zoom-out,Zoom-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Δεν είναι δυνατό το άνοιγμα {0} όταν παράδειγμα είναι ανοιχτό +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Δεν είναι δυνατό το άνοιγμα {0} όταν παράδειγμα είναι ανοιχτό apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Ο πίνακας {0} δεν μπορεί να είναι κενός apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,με Καθολικά apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,εικόνες DocType: Communication,Reference Owner,αναφορά Ιδιοκτήτης DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Μικρότερη μονάδα που κυκλοφορούν κλάσμα (κέρμα). Για παράδειγμα 1 σεντ για USD και θα πρέπει να εισαχθεί ως 0,01" DocType: Social Login Keys,GitHub,Github -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Σειρά {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Σειρά {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Παρακαλώ δώστε ένα Ονοματεπώνυμο. apps/frappe/frappe/model/document.py +904,Beginning with,Ξεκινώντας με apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Πρότυπο εισαγωγής δεδομένων apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Γονέας DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Αν είναι ενεργοποιημένη, η ισχύς του κωδικού θα επιβληθεί με βάση την τιμή του ελάχιστου αριθμού κωδικού πρόσβασης. Μια τιμή 2 είναι μέτρια ισχυρή και 4 είναι πολύ ισχυρή." DocType: About Us Settings,"""Team Members"" or ""Management""","""Μέλη ομάδας"" ή ""διαχείριση""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Η προεπιλογή για τον τύπο πεδίου 'ελέγχου' πρέπει να είναι είτε «0» είτε «1» +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Η προεπιλογή για τον τύπο πεδίου 'ελέγχου' πρέπει να είναι είτε «0» είτε «1» apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Εχτές DocType: Contact,Designation,Ονομασία DocType: Test Runner,Test Runner,Δοκιμή Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Δημοσιεύεται πεδίο DocType: Email Group,Email Group,email Ομάδα DocType: Note,Seen By,Θεάθηκε από apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Προσθήκη πολλαπλών -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Όχι σαν +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Όχι σαν apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Ρυθμίστε την ετικέτα που εμφανίζεται για το πεδίο apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Λανθασμένη τιμή: το {0} πρέπει να είναι {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Αλλαγή ιδιοτήτων πεδίου ( απόκρυψη , μόνο για ανάγνωση , την άδεια κλπ. )" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ρυθμ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Διαχειριστής Logged In DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Επιλογές επικοινωνίας, όπως ""ερώτημα πωλήσεων, ερώτημα υποστήριξης"" κτλ το καθένα σε καινούρια γραμμή ή διαχωρισμένα με κόμματα." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Λήψη -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Εισαγωγή +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Εισαγωγή apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Επιλέξτε {0} DocType: Print Settings,Classic,Κλασικό DocType: Desktop Icon,Color,Χρώμα @@ -121,7 +121,7 @@ DocType: Translation,Translation,Μετάφραση apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Εγκατάσταση apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Κ DocType: Custom Script,Client,Πελάτης -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Αυτή η μορφή έχει αλλάξει μετά την έχετε φορτωμένο +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Αυτή η μορφή έχει αλλάξει μετά την έχετε φορτωμένο DocType: User Permission for Page and Report,User Permission for Page and Report,Άδεια χρήσης για Page και Έκθεση DocType: Address,Himachal Pradesh,Χιματσάλ Πραντές DocType: System Settings,"If not set, the currency precision will depend on number format","Εάν δεν έχει οριστεί, η ακρίβεια νομίσματος θα εξαρτηθεί από τη μορφή αριθμού" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Αιτιολογία apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Παρακαλώ ορίστε τον χρήστη DocType: Email Unsubscribe,Email Unsubscribe,Email Διαγραφή DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Επιλέξτε μια εικόνα πλάτους 150px περ. Με ένα διαφανές φόντο για καλύτερα αποτελέσματα. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Ο πρώτος χρήστης θα γίνει ο διαχειριστής του συστήματος ( μπορείτε να το αλλάξετε αυτό αργότερα ). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Ο πρώτος χρήστης θα γίνει ο διαχειριστής του συστήματος ( μπορείτε να το αλλάξετε αυτό αργότερα ). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Circle-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Γίνεται αποστολή στο διακομιστή... DocType: Email Domain,Email Domain,τομέα email DocType: Workflow State,italic,Πλάγια γραφή apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Για όλους -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Δεν είναι δυνατή η ρύθμιση εισαγωγής χωρίς δημιουργία +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Δεν είναι δυνατή η ρύθμιση εισαγωγής χωρίς δημιουργία apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Εκδήλωση και άλλα ημερολόγια. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Όλα τα πεδία είναι απαραίτητα για την υποβολή του σχολίου. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Σύρετε για να ταξινομήσετε στήλες @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Πρότυπο μενού Sidebar apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Δεν μπορείτε να διαγράψετε Σπίτι και Συνημμένα φακέλους apps/frappe/frappe/config/desk.py +19,Files,αρχεία apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Τα δικαιώματα εφαρμόζονται σε χρήστες με βάση τους ρόλους που τους έχουν ανατεθεί. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Δεν επιτρέπεται να στείλετε μηνύματα ηλεκτρονικού ταχυδρομείου που σχετίζονται με αυτό το έγγραφο -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Επιλέξτε atleast 1 στήλη από {0} έως ταξινόμηση / ομάδα +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Δεν επιτρέπεται να στείλετε μηνύματα ηλεκτρονικού ταχυδρομείου που σχετίζονται με αυτό το έγγραφο +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Επιλέξτε atleast 1 στήλη από {0} έως ταξινόμηση / ομάδα DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Ελέγξτε αυτό εάν δοκιμάζετε την πληρωμή σας χρησιμοποιώντας το API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Δεν επιτρέπεται να διαγράψετε ένα πρότυπο ιστοσελίδας Θέμα DocType: Feedback Trigger,Example,Παράδειγμα @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Σύνολο Συνδρομητές apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Εάν ένας ρόλος δεν έχει πρόσβαση στο επίπεδο 0, τότε τα υψηλότερα επίπεδα είναι χωρίς νόημα ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Αποθήκευση ως DocType: Communication,Seen,Επίσκεψη -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Δείτε περισσότερες λεπτομέρειες +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Δείτε περισσότερες λεπτομέρειες DocType: System Settings,Run scheduled jobs only if checked,Εκτέλεση χρονοπρογραμματισμένων εργασιών μόνο αν είναι επιλεγμένο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Θα εμφανίζεται μόνο εάν είναι ενεργοποιημένη τίτλοι των ενοτήτων apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Αρχείο @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Εμφάνιση apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Απαιτείται ένα έγκυρο e-mail και όνομα DocType: DocType,Hide Heading,Απόκρυψη κεφαλίδας DocType: Address,Current,Ρεύμα -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Σχετικά έγγραφα apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Ομάδες doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,Remove-circle @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,φίλτρο apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"FIELDNAME {0} δεν μπορεί να έχει ειδικούς χαρακτήρες, όπως {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Ενημέρωση πολλές τιμές σε ένα χρόνο. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Σφάλμα: το έγγραφο έχει τροποποιηθεί αφού το έχετε ανοίξει -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διευθύνσεων. Δημιουργήστε ένα νέο από το Setup> Printing and Branding> Template Address. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} αποσυνδεθεί: {1} DocType: Address,West Bengal,Δυτική Βεγγάλη -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : Δεν είναι δυνατή η ανάθεση υποβολής αν δεν είναι υποβλητέα +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : Δεν είναι δυνατή η ανάθεση υποβολής αν δεν είναι υποβλητέα DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Φιλτράρισμα κατά "{0}" DocType: Salutation,Administrator,Διαχειριστής @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Τίτλος blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Πρότυπο ρόλοι δεν μπορεί να απενεργοποιηθεί DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Ενημερωτικό δελτίο -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Δεν είναι δυνατή η χρήση υπο-ερώτημα για από +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Δεν είναι δυνατή η χρήση υπο-ερώτημα για από DocType: Web Form,Button Help,κουμπί Βοήθεια DocType: Kanban Board Column,purple,μωβ DocType: About Us Settings,Team Members,Μέλη της ομάδας @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Πάρτε apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Η συνδρομή σας έληξε στις {0}. Για την ανανέωση, {1}." DocType: Workflow State,plus-sign,Plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Ρύθμιση ήδη ολοκληρωθεί -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} δεν είναι εγκατεστημένο +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} δεν είναι εγκατεστημένο DocType: Workflow State,Refresh,Ανανέωση DocType: Event,Public,Δημόσιο apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Δεν έχει τίποτα να δείξει @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Άρεσε apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Υποστήριξη ηλεκτρονικού ταχυδρομείου DocType: DocField,Print Hide If No Value,Εκτύπωση Απόκρυψη Αν Όχι Αξία DocType: Event,yellow,Kίτρινος -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Δημοσιεύεται πεδίο πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Δημοσιεύεται πεδίο πρέπει να είναι μια έγκυρη ΌνομαΠεδίου apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Ανεβάστε Συνημμένο DocType: Block Module,Block Module,Block Ενότητα apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Πρότυπο εξαγωγής @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Κα DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Ένας νέος λογαριασμός έχει δημιουργηθεί για εσάς σε {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Οδηγίες μέσω ηλεκτρονικού ταχυδρομείου -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Εισάγετε το Email Παραλήπτη (ες) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Εισάγετε το Email Παραλήπτη (ες) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Ουρά Σημαία apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,δεν μπορεί να εντοπίσει ανοικτή {0}. Δοκιμάστε κάτι άλλο. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,μήνυμα ID DocType: Property Setter,Field Name,Όνομα πεδίου apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Το Google GSuite δεν έχει ρυθμιστεί. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,Ή -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ενότητα όνομα ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Συνέχεια +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ενότητα όνομα ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Συνέχεια DocType: Custom Field,Fieldname,Όνομα πεδίου DocType: Workflow State,certificate,Πιστοποιητικό DocType: User,Tile,Πλακάκι @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Εμφάνιση όλων των εκδόσεων DocType: Workflow State,Print,Εκτύπωση DocType: User,Restrict IP,Περιορισμός IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Ταμπλό apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Δεν μπορεί να γίνει αποστοή e-mail αυτή τη στιγμή apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Αναζήτηση ή πληκτρολόγηση μιας εντολής DocType: Communication,Timeline Name,Timeline Όνομα @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Διαχειριστής κύριων εγ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Ένα τελευταίο βήμα apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Όνομα του τύπου εγγράφου (doctype) με τον οποίο θέλετε αυτό το πεδίο να συνδέεται με (π.Χ. Πελάτη) DocType: User,Roles Assigned,Ανάθεση ρόλων -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Βοήθεια αναζήτησης +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Βοήθεια αναζήτησης DocType: Top Bar Item,Parent Label,Γονική ετικέτα apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Η ερώτησή σας έχει παραληφθεί. Θα απαντήσουμε άμεσα σύντομα. Εάν έχετε οποιεσδήποτε πρόσθετες πληροφορίες, απαντήστε σε αυτό το μήνυμα." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Τα δικαιώματα μεταφράζονται αυτόματα σε πρότυπες εκθέσεις και αναζητήσεις . @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Επεξεργασία επικεφαλίδας DocType: File,File URL,Url αρχείου DocType: Version,Table HTML,Πίνακας HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Δεν βρέθηκαν αποτελέσματα για '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Προσθήκη Συνδρομητές apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Επερχόμενα συμβάντα για σήμερα DocType: Email Alert Recipient,Email By Document Field,Email ανά πεδίο εγγράφου @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Ποσό με βάση το πεδίο apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Ο χρήστης είναι υποχρεωτική για το μερίδιο DocType: DocField,Hidden,κρυμμένο DocType: Web Form,Allow Incomplete Forms,Επιτρέψτε Ελλιπής Έντυπα -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} Πρέπει να ορίσετε πρώτα +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} Πρέπει να ορίσετε πρώτα apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Χρησιμοποιήστε λίγα λόγια, αποφύγετε κοινά φράσεις." DocType: Workflow State,plane,Αεροπλάνο -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ωχ. Η πληρωμή σας απέτυχε. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Αν ανεβάζετε νέες εγγραφές, η ""σειρά ονομασίας"" είναι απαραίτητη, εφόσον υπάρχει." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Λάβετε ειδοποιήσεις για σήμερα +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Λάβετε ειδοποιήσεις για σήμερα apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType μπορεί να μετονομαστεί μόνο από Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},αλλαγμένη τιμή του {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Παρακαλώ ελέγξτε το email σας για επαλήθευση -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Η αναδίπλωση δεν μπορεί να είναι στο τέλος της φόρμας DocType: Communication,Bounced,Ακάλυπτες DocType: Deleted Document,Deleted Name,διαγράφεται Όνομα apps/frappe/frappe/config/setup.py +14,System and Website Users,Χρήστες συστήματος και ιστοσελίδας @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,έγγραφο ουρ DocType: GSuite Templates,Destination ID,Αναγνωριστικό προορισμού DocType: Desktop Icon,List,Λίστα DocType: Communication,Link Name,Όνομα σύνδεσμο -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Το πεδίο {0} στη γραμμή {1} δεν μπορεί να είναι κρυφό και υποχρεωτικό χωρίς προεπιλογμένη τιμή DocType: System Settings,mm/dd/yyyy,μμ/ηη/εεεε apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Λανθασμένος κωδικός: DocType: Print Settings,Send document web view link in email,Αποστολή εγγράφου σύνδεσμο προβολή ιστοσελίδων στο email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Σχόλια για το έγγραφο {0} έχει αποθηκευτεί με επιτυχία apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Προηγούμενο -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Απ: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Απ: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} γραμμές για {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Υπο-νόμισμα. Για παράδειγμα "cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Επιλέξτε προστιθέμενο αρχείο @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Σύνδεσμος apps/frappe/frappe/utils/file_manager.py +96,No file attached,Δεν βρέθηκε συνημμένο αρχείο DocType: Version,Version,Έκδοση DocType: User,Fill Screen,Γέμισε την οθόνη -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Δεν είναι δυνατή η προβολή αυτής της έκθεσης δέντρο, λόγω έλλειψης στοιχείων. Το πιο πιθανό, είναι να φιλτραριστεί λόγω δικαιώματα." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Δεν είναι δυνατή η προβολή αυτής της έκθεσης δέντρο, λόγω έλλειψης στοιχείων. Το πιο πιθανό, είναι να φιλτραριστεί λόγω δικαιώματα." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Επιλέξτε Αρχείο apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Επεξεργασία μέσω Ανεβάστε -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Τύπος εγγράφου ..., π.χ. πελατών" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Τύπος εγγράφου ..., π.χ. πελατών" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Η Κατάσταση '{0}' δεν είναι έγκυρη DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Προσθέστε τις δικές σας μεταφράσεις @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Τετάρτη apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Εκτός από τους κανόνες δικαιωμάτων που βασίζονται σε ρόλους, μπορείτε να εφαρμόσετε δικαιώματα χρηστών με βάση τύπους εγγράφων" apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Αυτά τα δικαιώματα θα ισχύουν για όλες τις συναλλαγές όπου το επιτρεπόμενο αρχείο είναι συνδεδεμένο. Για παράδειγμα αν η εταιρία c προστεθή στα δικαιώματα του χρήστη χ, ο χρήστης χ θα μπορεί να δει μόνο τις συναλλαγές που έχουν την εταιρία c σαν συνδεδεμένη τιμή." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,πεδίο εικόνας πρέπει να είναι μια έγκυρη ΌνομαΠεδίου DocType: OAuth Client,Token,Ένδειξη DocType: Property Setter,ID (name) of the entity whose property is to be set,Id (όνομα) της οντότητας της οποίας η ιδιότητα είναι να καθοριστεί apps/frappe/frappe/limits.py +82,"To renew, {0}.","Για την ανανέωση, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Αντικείμενα της sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,Η εφαρμογή {0} έχει ήδη εγκατασταθεί DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Εμφάνιση Δικαιώματα -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένας σύνδεσμος ή Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Εύρος ημερομηνιών apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Σελίδα {0} από {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Συσ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Το κλειδί κρυπτογράφησης δεν είναι έγκυρο, ελέγξτε το site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Έως DocType: Kanban Board Column,darkgrey,σκούρο γκρι -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Επιτυχείς: {0} έως {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Επιτυχείς: {0} έως {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Δεν είναι δυνατή η αλλαγή των λεπτομερειών του χρήστη στη δοκιμαστική έκδοση. Εγγραφείτε για έναν νέο λογαριασμό στη διεύθυνση https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Παρακαλώ δημιουργήστε αντίγραφο αυτού για να κάνετε αλλαγές apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Δημιουργία PDF απέτυχε λόγω της διακοπής των συνδέσεων εικόνας @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Αναδιπλούμενο apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Αποθηκεύτηκε apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Σε τι χρειάζεσαι βοήθεια? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Επιλογές για επιλεγμένες. Κάθε επιλογή σε μια νέα γραμμή. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Μόνιμα Ακύρωση {0} ; +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Μόνιμα Ακύρωση {0} ; DocType: Workflow State,music,Μουσική DocType: Web Page,Settings,Ρυθμίσεις apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Παρακαλώ ορίστε τον τύπο εγγράφου DocType: Print Format,Style Settings,Ρυθμίσεις στυλ -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,πεδίο Ταξινόμηση {0} πρέπει να είναι μια έγκυρη ΌνομαΠεδίου apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Περισσότερο DocType: Contact,Sales Manager,Διευθυντής πωλήσεων apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Μετονομασία DocType: Print Format,Format Data,Μορφοποίηση δεδομένων -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,σαν +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,σαν DocType: Customize Form Field,Customize Form Field,Προσαρμογή πεδίου φόρμας apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Επίτρεψε χρήστη DocType: OAuth Client,Grant Type,Είδος επιδότησης apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Ελέγξτε ποια έγγραφα είναι δυνατόν να αναγνωσθούν από έναν χρήστη apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Η εφαρμογή καταχώρισης δεν επιτρέπεται -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Τομέα email δεν έχει ρυθμιστεί για αυτόν το λογαριασμό, δημιουργήστε έναν;" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,χρησιμοποιήστε% ως μπαλαντέρ +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Τομέα email δεν έχει ρυθμιστεί για αυτόν το λογαριασμό, δημιουργήστε έναν;" DocType: User,Reset Password Key,Επαναφορά κωδικού DocType: Email Account,Enable Auto Reply,Ενεργοποίηση αυτόματης απάντησης apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Δεν φαίνεται @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Ορισμός μόνο μία φορά DocType: Email Queue Recipient,Email Queue Recipient,Email Ουρά Παραλήπτη DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Όνομα Χρήστη {0} υπάρχει ήδη -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Δεν είναι δυνατή η ρύθμιση των εισαγωγών καθώς το {1} δεν είναι δυνατόν να εισαχθεί apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Υπάρχει ένα σφάλμα στο Πρότυπο σας Διεύθυνση {0} DocType: Footer Item,"target = ""_blank""","Target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Από Ονοματεπώνυμο apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Δεν έχετε πρόσβαση στην έκθεση: {0} DocType: User,Send Welcome Email,Αποστολή Καλώς Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Ανεβάστε το αρχείο csv που περιέχει όλα τα δικαιώματα των χρηστών στην ίδια μορφή όπως οι λήψεις. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Κατάργηση φίλτρου +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Κατάργηση φίλτρου DocType: Address,Daman and Diu,Δαμάν και Ντιού DocType: Address,Personal,Προσωπικός apps/frappe/frappe/config/setup.py +113,Bulk Rename,Μαζική Μετονομασία @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Το τυπικό DocType δεν μπορεί να έχει προεπιλεγμένη μορφή εκτύπωσης, χρησιμοποιήστε τη ρύθμιση Customize Form" DocType: Report,Query,Ερώτημα DocType: DocType,Sort Order,Σειρά ταξινόμησης -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},«Σε προβολή λίστας» δεν επιτρέπεται για τον τύπο {0} στη γραμμή {1} DocType: Custom Field,Select the label after which you want to insert new field.,Επιλέξτε την ετικέτα μετά την οποία θέλετε να εισαγάγετε νέο πεδίο. ,Document Share Report,Αναφορά κοινοποίησης εγγράφου DocType: User,Last Login,Τελευταία είσοδος -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Το όνομα πεδίου είναι απαραίτητο στη γραμμή {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Στήλη DocType: Custom Field,Adds a custom field to a DocType,Προσθέτει ένα προσαρμοσμένο πεδίο σε έναν τύπο εγγράφου DocType: File,Is Home Folder,Είναι Προσωπικόςφάκελος @@ -583,7 +583,7 @@ DocType: File,Folder,Φάκελος DocType: DocField,Index,Δείκτης DocType: Email Group,Newsletter Manager,Ενημερωτικό Δελτίο Διευθυντής apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Επιλογή 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Όλες οι Δημοσιεύσεις +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} έως {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Συνδεθείτε σφάλματος κατά τη διάρκεια αιτήσεων. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} έχει προστεθεί με επιτυχία τον Όμιλο Email. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Δείκτης DocType: DocShare,Everyone,Όλοι DocType: Workflow State,backward,Πίσω -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Μόνο ένας κανόνας είναι επιτρεπτός με τον ίδιο Ρόλο, Επίπεδο και {1}" DocType: Email Queue,Add Unsubscribe Link,Προσθήκη Διαγραφή Σύνδεσμος apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Δεν υπάρχουν ακόμη σχόλια. Ξεκινήστε μια νέα συζήτηση. DocType: Workflow State,share,Κοινοποίηση @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,δεν apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Προβολή Συνδρομητές apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Κα DocType: Website Theme,Background Color,Χρώμα φόντου -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Υπήρξαν σφάλματα κατά την αποστολή ηλεκτρονικού ταχυδρομείου. Παρακαλώ δοκιμάστε ξανά . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Υπήρξαν σφάλματα κατά την αποστολή ηλεκτρονικού ταχυδρομείου. Παρακαλώ δοκιμάστε ξανά . DocType: Portal Settings,Portal Settings,portal Ρυθμίσεις DocType: Web Page,0 is highest,0 Είναι η υψηλότερη apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Είστε σίγουροι ότι θέλετε να επανασύνδεση αυτή την ανακοίνωση σε {0}; @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Ρυθμίσεις επικοινωνίας apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Αναζήτηση ... DocType: Workflow State,text-width,Text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Μέγιστο Όριο Συνημμένο για αυτό το ρεκόρ του. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Μέγιστο Όριο Συνημμένο για αυτό το ρεκόρ του. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Τα παρακάτω υποχρεωτικά πεδία πρέπει να συμπληρωθούν:
DocType: Email Alert,View Properties (via Customize Form),Δείτε τα ακίνητα (μέσω Προσαρμογή έντυπο) DocType: Note Seen By,Note Seen By,Σημείωση φαίνεται από το @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Ρατζαστάν apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Οι εκθέσεις του δημιουργού εκθέσεων είναι διαχειρίσημες απευθείας από τον δημιουργό εκθέσεων. Δεν υπάρχει τίποτα να κάνετε. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Παρακαλούμε επιβεβαιώστε σας Διεύθυνση E-mail apps/frappe/frappe/model/document.py +903,none of,Κανένας από -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Στείλτε μου ένα αντίγραφο +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Στείλτε μου ένα αντίγραφο apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Αποστολή στο διακομιστή των δικαιωμάτων χρήστη DocType: Dropbox Settings,App Secret Key,App μυστικό κλειδί apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Τα επιλεγμένα στοιχεία θα εμφανίζονται στην επιφάνεια εργασίας -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} Δεν μπορεί να οριστεί για μοναδιαίους τύπους apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Διοικητικό {0} δεν υπάρχει. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Αυτή τη στιγμή βλέπετε αυτό το έγγραφο DocType: ToDo,Assigned By Full Name,Ανατεθεί Με Ονοματεπώνυμο apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} Ενημερώθηκε -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Η έκθεση δεν μπορεί να οριστεί για μοναδιαίους τύπους apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ημέρες πριν DocType: Email Account,Awaiting Password,Εν αναμονή Κωδικός DocType: Address,Address Line 1,Γραμμή διεύθυνσης 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Καταστάσεις ροής εργασίας ( π.Χ. Σχέδιο , εγκεκριμένη, ακυρομένη ) ." DocType: Print Settings,Allow Print for Draft,Επιτρέψτε εκτύπωσης για Σχέδιο apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Ορισμός Ποσότητα -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Υποβολή αυτό το έγγραφο για να επιβεβαιώσετε DocType: Contact,Unsubscribed,Χωρίς συνδρομή apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Ορίστε προσαρμοσμένες ρόλους για τη σελίδα και αναφορά apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Εκτίμηση: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Εργαλείο εισαγωγής δεδομένων DocType: Address,Dadra and Nagar Haveli,Τη Ντάδρα και τον Ναγκάρ Χάβελι apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Ανέβασμα αρχείων παρακαλώ περιμένετε για λίγα δευτερόλεπτα. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Επισύναψη της εικόνα σας +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Επισύναψη της εικόνα σας apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Αξίες σειρά Άλλαξε DocType: Workflow State,Stop,Διακοπή DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Σύνδεσμο προς τη σελίδα που θέλετε να ανοίξετε. Αφήστε κενό αν θέλετε να γίνει μια ομάδα γονέων κάνουν. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Ευθυγράμμιση Ετικ DocType: Help Article,Expert,Ειδικός DocType: Workflow State,circle-arrow-right,Circle-arrow-right DocType: LDAP Settings,LDAP Server Url,LDAP URL διεύθυνση του διακομιστή -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Δεν μπορείτε να ανοίξετε παράδειγμα, όταν του {0} είναι ανοικτή" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Δεν μπορείτε να ανοίξετε παράδειγμα, όταν του {0} είναι ανοικτή" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Ουρά για να εγκαταστήσετε DocType: Custom DocPerm,Custom DocPerm,Προσαρμοσμένη DocPerm DocType: Newsletter,Send Unsubscribe Link,Αποστολή Διαγραφή Σύνδεσμος @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} αφαιρεθεί DocType: Custom DocPerm,Apply User Permissions,Εφαρμογή δικαιωμάτων χρηστών DocType: User,Modules HTML,Ενότητες HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Εγκατάσταση> Διαχείριση δικαιωμάτων χρηστών apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Οι τιμές που λείπουν είναι απαραίτητες DocType: DocType,Other Settings,άλλες ρυθμίσεις DocType: Social Login Keys,Frappe,Φραπέ @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Φορέας Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Δεν έχει επιλεγεί το έγγραφο apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Συμβάν -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Στις {0}, ο {1} έγραψε:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Δεν μπορείτε να διαγράψετε τυπικό πεδίο. Μπορείτε να το κρύψει, αν θέλετε" DocType: Top Bar Item,For top bar,Για την μπάρα κορυφής apps/frappe/frappe/utils/bot.py +148,Could not identify {0},δεν μπόρεσε να εντοπίσει {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Επιφάνεια Access DocType: Workflow State,minus,Πλην apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Σφάλμα διακομιστή : Παρακαλώ ελέγξτε τα αρχεία καταγραφής του διακομιστή σας ή επικοινωνήστε με την τεχνική υποστήριξη. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Το email καλωσορίσματος εστάλη. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Ας προετοιμαστεί το σύστημα για την πρώτη χρήση. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Ας προετοιμαστεί το σύστημα για την πρώτη χρήση. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Προτεινόμενα apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Ήδη εγγεγραμμένος DocType: System Settings,Float Precision,Ακρίβεια αριθμού κινητής υποδιαστολής @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Επιτρέψτε Εκτύπωση apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Δεν υπάρχουν εγκατεστημένες εφαρμογές apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Σημειώστε το πεδίο ως υποχρεωτικό DocType: Communication,Clicked,Έγινε κλικ -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Δεν έχετε άδεια για '{0} ' {1} DocType: User,Google User ID,ID χρήστη google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Προγραμματισμένη για να στείλετε DocType: DocType,Track Seen,Track Seen @@ -822,7 +821,7 @@ DocType: Address,Kerala,Κεράλα DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,ταυτόχρονη Συνεδρίες DocType: OAuth Client,Client Credentials,Διαπιστευτήρια πελάτη -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Ανοίξτε μια λειτουργική μονάδα ή ένα εργαλείο +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Ανοίξτε μια λειτουργική μονάδα ή ένα εργαλείο DocType: Communication,Delivery Status,Κατάσταση παράδοσης DocType: Module Def,App Name,Όνομα εφαρμογής apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Μέγιστο μέγεθος αρχείου που επιτρέπεται είναι {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,αναφοράς ανακοί DocType: Email Queue,Unsubscribe Method,Μέθοδος Διαγραφή DocType: GSuite Templates,Related DocType,Σχετικό πρότυπο DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Επεξεργασία για να προσθέσετε περιεχόμενο -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Επιλέξτε Γλώσσες -apps/frappe/frappe/__init__.py +510,No permission for {0},Δεν άδεια για {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Επιλέξτε Γλώσσες +apps/frappe/frappe/__init__.py +509,No permission for {0},Δεν άδεια για {0} DocType: DocType,Advanced,Για προχωρημένους apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Φαίνεται κλειδί API ή API μυστικό είναι λάθος !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Παραπομπή: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Εισάγετε τύπο φόρμας apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Δεν υπάρχουν αρχεία ετικέτα. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Κατάργηση πεδίο DocType: User,Send Password Update Notification,Αποστολή Κωδικού Ειδοποίηση ενημέρωσης -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Επιτρέποντας DocType , DocType . Να είστε προσεκτικοί !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Επιτρέποντας DocType , DocType . Να είστε προσεκτικοί !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Προσαρμοσμένες μορφές για την εκτύπωση, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Ενημέρωση στη νέα έκδοση DocType: Custom Field,Depends On,Εξαρτάται από @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Ένας από apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Επιλέξτε αρχείο για αντιγραφή apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Έλεγχος μια στιγμή apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Δείτε τις ετικέτες +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Εάν επιλεγεί η άδεια χρήσης αυστηρού χρήστη και η άδεια χρήστη είναι ορισμένη για ένα έγγραφο τύπου DocType για έναν χρήστη, τότε όλα τα έγγραφα όπου η τιμή του συνδέσμου είναι κενή, δεν θα εμφανίζονται στον εν λόγω χρήστη" DocType: Address,Billing,Χρέωση DocType: Email Queue,Not Sent,Δεν απεστάλη DocType: Web Form,Actions,Ενέργειες @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,σαφής apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Τα καθημερινά συμβάντα θα πρέπει να ολοκληρώνονται την ίδια ημέρα. DocType: Communication,User Tags,Ετικέτες χρηστών apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Λήψη εικόνων .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Ρύθμιση> Χρήστης DocType: Workflow State,download-alt,Download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Λήψη App {0} DocType: Communication,Feedback Request,feedback Αίτηση @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,αντίγραφα ασφαλείας apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Προσθέστε επαφή DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Προαιρετικά: Πάντα στείλετε σε αυτές τις ταυτότητες. Κάθε διεύθυνση ηλεκτρονικού ταχυδρομείου σε μια νέα σειρά -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Απόκρυψη Λεπτομέρειες +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Απόκρυψη Λεπτομέρειες DocType: Workflow State,Tasks,Εργασίες DocType: Event,Tuesday,Τρίτη DocType: Blog Settings,Blog Settings,Ρυθμίσεις blog @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Γράψτε ένα αρχείο python στον ίδιο φάκελο όπου αυτό αποθηκεύεται και επέστρεψε στήλη και αποτέλεσμα. DocType: DocType,Sort Field,Πεδίο ταξινόμησης DocType: Razorpay Settings,Razorpay Settings,Ρυθμίσεις Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Επεξεργασία φίλτρου -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","πχ. Εάν εφαρμόσετε δικαιώματα χρήσης ελέγχεται για την Έκθεση DocType αλλά δεν τα δικαιώματα των χρηστών που ορίζονται για την αναφορά για ένα χρήστη, τότε όλες οι αναφορές που φαίνεται στο εν λόγω Χρήστη" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Επεξεργασία φίλτρου +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Το πεδίο {0} με τύπο {1} δεν μπορεί να είναι υποχρεωτικό apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Πρόσθεσε περισσότερα apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Απόκρυψη Διάγραμμα DocType: System Settings,Session Expiry Mobile,Συνεδρία λήξης Κινητό @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Καθυστερημένη apps/frappe/frappe/config/setup.py +128,List of backups available for download,Κατάλογος των αντιγράφων ασφαλείας διαθέσιμο για download apps/frappe/frappe/www/login.html +89,Sign up,Εγγραφή DocType: Test Runner,Output,Παραγωγή +DocType: Email Alert,Set Property After Alert,Ορισμός ιδιότητας μετά την ειδοποίηση apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Προσθήκη πεδίων σε φόρμες. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Φαίνεται ότι κάτι δεν πάει καλά με τη διαμόρφωση Paypal αυτού του ιστότοπου. DocType: File,rgt,Rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,Φύλλο DocType: Portal Menu Item,Portal Menu Item,Portal Στοιχείο Μενού DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Εάν το Εφαρμογή δικαιωμάτων χρήστη έχει επιλεγεί για το Report DocType, αλλά δεν έχουν οριστεί δικαιώματα χρήστη για την αναφορά για έναν χρήστη, τότε όλες οι αναφορές εμφανίζονται στον συγκεκριμένο χρήστη" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Ο κατάλογος των πόρων που θα έχει η εφαρμογή πελάτη πρόσβαση σε αφού ο χρήστης το επιτρέπει.
π.χ. έργου DocType: Translation,Translated Text,μεταφρασμένο κείμενο DocType: Contact Us Settings,Query Options,Επιλογές ερωτημάτων @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Επαφές DocType: System Settings,Setup Complete,Η εγκατάσταση ολοκληρώθηκε apps/frappe/frappe/config/setup.py +66,Report of all document shares,Έκθεση του συνόλου των κοινοποιήσεων του εγγράφου apps/frappe/frappe/www/update-password.html +18,New Password,Νέος κωδικός -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Φίλτρο {0} λείπει +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Φίλτρο {0} λείπει apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Συγνώμη! Δεν μπορείτε να διαγράψετε δημιουργείται αυτόματα σχόλια DocType: Website Theme,Style using CSS,Στυλ χρήση CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Τύπος εγγράφου αναφοράς @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Αποκλεισμός Ενότητες apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Επαναφορά μήκος σε {0} για '{1}' σε '{2}'? Ρύθμιση του μήκους ως {3} θα προκαλέσει αποκοπή των δεδομένων. DocType: Print Format,Custom CSS,Προσαρμοσμένο css apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Προσθέστε ένα σχόλιο -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Αγνοείται: {0} έως {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Αγνοείται: {0} έως {1} DocType: Address,Gujarat,Γκουτζαράτ apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Αρχείο καταγραφής σφάλματος για αυτοματοποιημένα συμβάντα (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Μη έγκυρο αρχείο διαχωρισμένο με κόμματα (csv αρχείο) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Προεπιλεγμένα εισερχ DocType: Workflow State,repeat,Επανάληψη DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Αν απενεργοποιηθεί, ο ρόλος αυτός θα πρέπει να αφαιρεθεί από όλους τους χρήστες." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Βοήθεια για αναζήτηση +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Βοήθεια για αναζήτηση apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Εγγεγραμμένοι αλλά άτομα με ειδικές ανάγκες DocType: DocType,Hide Copy,Απόκρυψη αντιγράφου apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Καταργήστε όλους τους ρόλους @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Χώρα apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Διευθύνσεις DocType: Communication,Shared,κοινόχρηστο -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Επισύναψη εκτύπωσης εγγράφου +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Επισύναψη εκτύπωσης εγγράφου DocType: Bulk Update,Field,Πεδίο DocType: Communication,Received,Λήψη DocType: Social Login Keys,Google Client ID,Google client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Έκθεση ερωτήματος DocType: User,Set New Password,Ορισμός νέου κωδικού πρόσβασης DocType: User,Github User ID,ID χρήστη github apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Εάν Τύπος εγγράφου -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} {1} συνδέεται με {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} {1} συνδέεται με {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Άγνωστος app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s δεν είναι έγκυρη μορφή έκθεσης. Αναφορά μορφή θα πρέπει να \ ένα από τα ακόλουθα %s DocType: Communication,Chat,Κουβέντα -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Το όνομα πεδίου {0} εμφανίζεται πολλαπλές φορές στις γραμμές {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Το όνομα πεδίου {0} εμφανίζεται πολλαπλές φορές στις γραμμές {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} από {1} έως {2} στη σειρά # {3} DocType: Communication,Expired,Έληξε DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Αριθμό των στηλών για ένα πεδίο σε ένα πλέγμα (Σύνολο Στήλες σε ένα πλέγμα πρέπει να είναι μικρότερο από 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Έχετε λογα apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Άγνωστη μορφή Εκτύπωση: {0} DocType: Workflow State,arrow-down,Βέλος προς τα κάτω apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Σύμπτυξη -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψει {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Ο χρήστης δεν επιτρέπεται να διαγράψει {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Τελευταία ενημέρωση στις DocType: Help Article,Likes,Μου αρέσουν DocType: Website Settings,Top Bar,Top bar DocType: GSuite Settings,Script Code,Κώδικα δέσμης ενεργειών apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Δημιουργία ηλεκτρονικού ταχυδρομείου χρήστη -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Δεν καθορίζονται δικαιώματα +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Δεν καθορίζονται δικαιώματα apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Καθολικές ρυθμίσεις: Οι χρήστες θα έχουν τη δυνατότητα να επιλέξουν ελέγχονται εικονίδια μόνο apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,Το {0} δεν βρέθηκε DocType: Custom Role,Custom Role,Προσαρμοσμένη ρόλος apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Αρχική Σελίδα / φάκελο Test 2 DocType: System Settings,Ignore User Permissions If Missing,Αγνοήστε τα δικαιώματα των χρηστών σε περίπτωση μη ύπαρξης -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Παρακαλώ να αποθηκεύσετε το έγγραφο πριν από την αποστολή. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Παρακαλώ να αποθηκεύσετε το έγγραφο πριν από την αποστολή. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Εισάγετε τον κωδικό σας DocType: Dropbox Settings,Dropbox Access Secret,Dropbox access secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Προσθέστε άλλο ένα σχόλιο apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Επεξεργασία DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Αδιάθετες από Ενημερωτικό Δελτίο -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Διπλώστε πρέπει να προηγηθεί μια αλλαγή ενότητας +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Διπλώστε πρέπει να προηγηθεί μια αλλαγή ενότητας apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Τροποποιήθηκε τελευταία από DocType: Workflow State,hand-down,Hand-down DocType: Address,GST State,Κράτος GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Δεν είναι δυνατή η ακύρωση χωρίς υποβολή +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Δεν είναι δυνατή η ακύρωση χωρίς υποβολή DocType: Website Theme,Theme,Θέμα apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Υπήρχαν σφάλματα. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Ανακατεύθυνση URI αναγκασμένοι να Auth Code @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Οι DocType: Website Theme,Text Color,Χρώμα κειμένου DocType: Desktop Icon,Force Show,δύναμη Εμφάνιση apps/frappe/frappe/auth.py +78,Invalid Request,Άκυρη αίτηση -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Αυτή η φόρμα δεν έχει καμία είσοδο +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Αυτή η φόρμα δεν έχει καμία είσοδο apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Η λήξη συνεδρίας θα πρέπει να είναι σε μορφή {0} DocType: Website Sidebar Item,Group,Ομάδα DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Επιλέξτε target = "" _blank "" για να ανοίξει σε μια νέα σελίδα ." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Αγνοήστε τα σφάλματα κωδικοποίησης. DocType: Workflow State,wrench,Wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Δεν έχει οριστεί -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Ρύθμιση> Χρήστης DocType: Authentication Log,Date,Ημερομηνία DocType: Website Settings,Disable Signup,Απενεργοποίηση εγγραφής apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Καθίστε ήρεμα, ενώ το σύστημά σας εγκαθίσταται. Αυτό μπορεί να διαρκέσει μερικά λεπτά." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Πρόσθεσε σχόλιο DocType: DocField,Mandatory,Υποχρεωτικό apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Ενότητα για Εξαγωγή -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Δεν ρυθμίστηκαν βασικά δικαιώματα +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Δεν ρυθμίστηκαν βασικά δικαιώματα apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Η συνδρομή σας θα λήξει στις {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Ο σύνδεσμος λήψης του αντιγράφου ασφαλείας θα σας αποσταλεί στην ακόλουθη διεύθυνση ηλεκτρονικού ταχυδρομείου: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Σημασία των υποβολή, ακύρωση, τροποποίηση" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-έκθεση apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Ανατέθηκε σε {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,φίλτρα αποθηκεύονται DocType: DocField,Percent,Τοις εκατό -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Παρακαλούμε να ορίσετε φίλτρα +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Παρακαλούμε να ορίσετε φίλτρα apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Συνδέεται με την DocType: Workflow State,book,Καταχώρηση DocType: Website Settings,Landing Page,Σελίδα προσέλευσης -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Σφάλμα στην προσαρμοσμένη δέσμη ενεργειών +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Σφάλμα στην προσαρμοσμένη δέσμη ενεργειών apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Όνομα apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Αίτηση εισαγωγής αναμονή. Αυτό μπορεί να διαρκέσει μερικά λεπτά, παρακαλώ να είστε υπομονετικοί." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Δεν έχουν οριστεί δικαιώματα για τα εν λόγω κριτήρια. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Να επιτρέπετ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Δεν έχετε επαρκή δικαιώματα για να αποκτήσετε πρόσβαση σε αυτόν τον πόρο. Επικοινωνήστε με το διαχειριστή σας για να αποκτήσετε πρόσβαση. DocType: Custom Field,Custom,Προσαρμοσμένο apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Ρύθμιση ειδοποήσεων email με βάση διάφορα κριτήρια. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Τις θέσεις που κατατίθενται στο πλαίσιο {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Τις θέσεις που κατατίθενται στο πλαίσιο {0} DocType: Email Alert,Send alert if date matches this field's value,Αποστολή ειδοποίησης σε περίπτωση που η ημερομηνία ταιριάζει με την τιμή αυτού του πεδίου DocType: Workflow,Transitions,Μεταβάσεις apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Αφαιρέστε {0} και να διαγράψετε όλα τα δεδομένα; @@ -1284,9 +1285,8 @@ DocType: User,Login After,Είσοδος μετά DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Εκτύπωση DocType: Workflow State,thumbs-up,Thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account DocType: DocPerm,DocPerm,Άδεια εγγράφου -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Η ακρίβεια πρέπει να είναι μεταξύ 1 και 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Η ακρίβεια πρέπει να είναι μεταξύ 1 και 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,Και DocType: Error Snapshot,Frames,Πλαίσια @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Σύνδεσμος εικόνας DocType: Auto Email Report,Report Filters,Φίλτρα έκθεση apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,τώρα DocType: Workflow State,step-backward,Βήμα προς τα πίσω -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Παρακαλώ ορίστε τα κλειδιά πρόσβασης dropbox στις ρυθμίσεις του site σας apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Διαγραφή αυτής της εγγραφής για να επιτρέψει την αποστολή σε αυτήν τη διεύθυνση ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Μόνο τα υποχρεωτικά πεδία είναι απαραίτητα για νέες εγγραφές. Μπορείτε να διαγράψετε μη υποχρεωτικές στήλες εάν το επιθυμείτε. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Είναι Συνημμένα Φάκελος apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Ανάπτυξη όλων apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Απαιτείται ένα έγκυρο id σύνδεσης. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Άνοιγμα ξανά -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Έχετε ακυρώσει την πληρωμή -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Παρακαλώ επιλέξτε ένα έγκυρο αρχείο csv με τα δεδομένα +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Παρακαλώ επιλέξτε ένα έγκυρο αρχείο csv με τα δεδομένα apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} Σταμάτησε να μοιράζεται αυτό το έγγραφο με {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Μετάβασης Κατάσταση εγγράφου από {0} έως {1} δεν επιτρέπεται DocType: DocType,"Make ""name"" searchable in Global Search",Κάντε "όνομα" αναζήτηση σε Σφαιρική Αναζήτηση @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Π DocType: Help Category,Help Category,Βοήθεια Κατηγορία apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Ο χρήστης {0} είναι απενεργοποιημένος apps/frappe/frappe/www/404.html +8,Page missing or moved,Η σελίδα λείπει ή έχει μετακινηθεί -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Επεξεργασία {0} ιδιότητες DocType: DocType,Route,Διαδρομή apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Ρυθμίσεις πύλη πληρωμής Razorpay DocType: DocField,Name,Όνομα apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Έχετε υπερβεί το μέγιστο χώρο του {0} για το σχέδιό σας. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Αναζήτηση στα έγγραφα DocType: OAuth Authorization Code,Valid,Έγκυρος -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Άνοιγμα συνδέσμου -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Η γλώσσα σου +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Άνοιγμα συνδέσμου +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Η γλώσσα σου apps/frappe/frappe/desk/form/load.py +46,Did not load,Δεν έγινε η φόρτωση apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Προσθήκη Row DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Είναι α DocType: Address,Lakshadweep Islands,Νήσοι Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Μπορεί Γράψτε apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ορισμένα έγγραφα, όπως ένα τιμολόγιο, δεν θα πρέπει να αλλάξουν αφού οριστικοποιηθούν. Η τελική κατάσταση των εν λόγω εγγράφων ονομάζεται υποβεβλημένο. Μπορείτε να ορίσετε ποιοι ρόλοι έχουν δικαίωμα υποβολής." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Δεν επιτρέπεται να εξάγουν αυτή την έκθεση +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Δεν επιτρέπεται να εξάγουν αυτή την έκθεση apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 επιλεγμένο στοιχείο DocType: Newsletter,Test Email Address,Δοκιμή διεύθυνση ηλεκτρονικού ταχυδρομείου DocType: ToDo,Sender,Αποστολέας @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,εισαγωγής .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,έγγραφο ταυτότητας DocType: Print Settings,Letter,Επιστολή -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,πεδίο εικόνας πρέπει να είναι τύπου Επισύναψη εικόνας +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,πεδίο εικόνας πρέπει να είναι τύπου Επισύναψη εικόνας DocType: DocField,Columns,Στήλες DocType: Async Task,Succeeded,Πετυχημένος apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Υποχρεωτικά πεδία είναι υποχρεωτικά σε {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Επεξεργαστής κειμένου apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Ρυθμίσεις για τη σελίδα προφίλ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Επεξεργασία προσαρμοσμένου κώδικα HTML DocType: Error Snapshot,Error Snapshot,Στιγμιότυπο σφάλματος -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,σε +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,σε DocType: Email Alert,Value Change,Αλλαγή τιμής DocType: Standard Reply,Standard Reply,Πρότυπη απάντηση apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Το πλάτος του πεδίου εισόδου @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Χρησιμοποιήστε αυτό το πεδίο με όνομα για τη δημιουργία του τίτλου apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Εισαγωγή e-mail από apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Πρόσκληση ως χρήστη -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Επιλογή συνημμένων +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Επιλογή συνημμένων apps/frappe/frappe/model/naming.py +94, for {0},για {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Υπήρξαν λάθη. Παρακαλούμε αναφέρετε αυτό. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Δεν επιτρέπεται να εκτυπώσετε το έγγραφο +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Δεν επιτρέπεται να εκτυπώσετε το έγγραφο apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Παρακαλούμε να ορίσετε την αξία φίλτρα στον πίνακα Έκθεση Φίλτρο. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Φόρτωση Έκθεση +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Φόρτωση Έκθεση apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Η συνδρομή σας θα λήξει σήμερα. DocType: Page,Standard,Πρότυπο apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Επισυνάψετε Το Αρχείο @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Περιφερειακή Επεκτάσεις DocType: LDAP Settings,Base Distinguished Name (DN),Βάση διακεκριμένο όνομα (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Αφήστε αυτή τη συζήτηση -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Οι επιλογές δεν έχουν οριστεί για το πεδίο συνδέσμου {0} DocType: Customize Form,"Must be of type ""Attach Image""",Πρέπει να είναι του τύπου "Επισύναψη εικόνας" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Κατάργηση επιλογής όλων apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Δεν μπορείτε να επανέρχεστε «μόνο για ανάγνωση» για το πεδίο {0} @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Σημείωση apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Αναφορά σφάλματος apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Οι συνθήκες ανάδρασης δεν ταιριάζουν -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένα έγκυρο ΌνομαΠεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Χρονοδιάγραμμα πεδίο πρέπει να είναι ένα έγκυρο ΌνομαΠεδίου DocType: Currency,Symbol,Σύμβολο -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Γραμμή #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Γραμμή #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Ο νέος κωδικός απεστάλη μέσω e-mail apps/frappe/frappe/auth.py +245,Login not allowed at this time,Η είσοδος δεν επιτρέπεται αυτή τη στιγμή DocType: Email Account,Email Sync Option,Email επιλογή Sync @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Κείμενο apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Πρότυπες απαντήσεις σε συχνά ερωτήματα. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Προεπιλογή αποστολής DocType: Workflow State,volume-off,Volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Άρεσε {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Άρεσε {0} DocType: Footer Item,Footer Item,υποσέλιδο Στοιχείο ,Download Backups,Λήψη αντιγράφων ασφαλείας apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Αρχική Σελίδα / Δοκιμή Φάκελος 1 @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Στίχοιση κειμένου apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Όνομα δεν μπορεί να περιέχει ειδικούς χαρακτήρες, όπως {0}" DocType: Contact Us Settings,Forward To Email Address,Προώθηση στις διευθύνσεις ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Εμφάνιση όλων των δεδομένων -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Το πεδίο τίτλου πρέπει να είναι ένα έγκυρο όνομα πεδίου apps/frappe/frappe/config/core.py +7,Documents,Έγγραφα DocType: Email Flag Queue,Is Completed,έχει ολοκληρωθεί apps/frappe/frappe/www/me.html +22,Edit Profile,Επεξεργασία προφίλ @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Αυτό το πεδίο θα εμφανιστεί μόνο αν η ΌνομαΠεδίου ορίζεται εδώ έχει αξία ή οι κανόνες είναι αλήθεια (παραδείγματα): myfield eval: doc.myfield == «Αξία μου» eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Σήμερα +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Σήμερα apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Αφού οριστεί, οι χρήστες θα έχουν πρόσβαση μονο σε έγγραφα ( π.Χ. Blog post), όπου υπάρχει σύνδεσμος ( π.Χ. Blogger ) ." DocType: Error Log,Log of Scheduler Errors,Αρχείο καταγραφής των σφαλμάτων του scheduler DocType: User,Bio,Βιογραφικό @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 αστέρι είναι χαμηλότερη και 5 αστέρια είναι υψηλότερη βαθμολογία DocType: Event,Ref Name,Όνομα αναφοράς DocType: Web Page,Center,Κέντρο +DocType: Email Alert,Value To Be Set,Τιμή που πρέπει να οριστεί apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Πρώτο Επίπεδο DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Αντιπροσωπεύει τις καταστάσεις που επιτρέπονται σε ένα έγγραφο και τον ρόλος που ανατίθεται να αλλάξει την κατάσταση. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Ανανέωση φόρμας @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Έχει Web Προβολή apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Το όνομά DocType θα πρέπει να αρχίζει με ένα γράμμα και μπορεί να αποτελείται μόνο από γράμματα, αριθμούς, διαστήματα και χαρακτήρες υπογράμμισης" DocType: Communication,Spam,Ανεπιθυμητη αλληλογραφια DocType: Integration Request,Integration Request,Αίτηση ολοκλήρωσης -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Αγαπητέ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Αγαπητέ DocType: Address,Maharashtra,Μαχαράστρα DocType: Address,Accounts User,Χρήστης λογαριασμών DocType: Web Page,HTML for header section. Optional,Html για την ενότητα της κεφαλίδας. Προαιρετικός apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Αυτό το χαρακτηριστικό είναι καινούργιο και ακόμα σε πειραματικό στάδιο -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Επιτρέπονται μέγιστο {0} σειρές +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Επιτρέπονται μέγιστο {0} σειρές DocType: Email Unsubscribe,Global Unsubscribe,Παγκόσμια Διαγραφή apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Αυτό είναι ένα πολύ κοινό κωδικό πρόσβασης. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Θέα DocType: Communication,Assigned,ανατεθεί DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Επιλέξτε μορφοποίηση εκτύπωσης +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Επιλέξτε μορφοποίηση εκτύπωσης apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Σύντομη μοτίβα πληκτρολόγιο είναι εύκολο να μαντέψει DocType: Portal Settings,Portal Menu,Μενού portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Μήκος {0} πρέπει να είναι μεταξύ 1 και 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Ο χρήστης δεν μπορεί να αναζητήσει apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Άκυρη Μορφή εξόδου DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Εφαρμόστε τον κανόνα αυτό, αν ο χρήστης είναι ο ιδιοκτήτης" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Θα είναι το αναγνωριστικό σύνδεσής σας +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Θα είναι το αναγνωριστικό σύνδεσής σας apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,šΚατασκευή έκθεσης DocType: Note,Notify users with a popup when they log in,Ειδοποίηση για τους χρήστες με ένα popup όταν συνδεθείτε apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} Δεν υπάρχει, επιλέξτε ένα νέο στόχο για τη συγχώνευση" @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,Ρόλοι άδε apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ενημέρωση DocType: Error Snapshot,Snapshot View,Προβολή στιγμιότυπου apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Παρακαλώ αποθηκεύστε το ενημερωτικό δελτίο πριν από την αποστολή -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Οι επιλογές θα πρέπει να είναι ένας έγκυρος τύπος εγγράφου για το πεδίο {0} στη γραμμή {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} χρόνια πριν +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Οι επιλογές θα πρέπει να είναι ένας έγκυρος τύπος εγγράφου για το πεδίο {0} στη γραμμή {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Επεξεργασία ιδιοτήτων DocType: Patch Log,List of patches executed,Λίστα των δημοσιεύσεων του φόρουμ της ιστοσελίδας. apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} έχετε ήδη διαγραφή -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Μέσο επικοινωνίας +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Μέσο επικοινωνίας DocType: Website Settings,Banner HTML,Html banner apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Επιλέξτε μια άλλη μέθοδο πληρωμής. Razorpay δεν υποστηρίζει τις συναλλαγές μετρητών «{0}» apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Στην ουρά για backup. Μπορεί να χρειαστούν μερικά λεπτά έως μία ώρα. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Εγγραφή OAuth App πελάτη -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Δεν μπορεί να είναι ""{2}"". Θα πρέπει να είναι ένα από τα ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ή {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Εμφάνιση ή απόκρυψη εικονιδίων επιφάνειας εργασίας apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Ενημέρωση κωδικού @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Εμφάνιση αλλαγές γραμμής μετά Ενότητες DocType: Blogger,Short Name,Σύντομη ονομασία apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Σελίδα {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Έχετε την επιλογή Option Sync, όπως όλα, θα sync στο σύνολο \ διαβάσει, καθώς και μη αναγνωσμένων μηνυμάτων από το διακομιστή. Αυτό μπορεί επίσης να προκαλέσει την επικάλυψη \ Επικοινωνίας (e-mail)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,αρχεία Μέγεθος @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,¥πεύθυνος αγορών DocType: Custom Script,Sample,Δείγμα apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Ετικέτες DocType: Event,Every Week,Κάθε εβδομάδα +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου δεν έχει ρυθμιστεί. Δημιουργήστε ένα νέο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Κάντε κλικ εδώ για να ελέγξετε τη χρήση σας ή να αναβαθμίσετε σε ένα υψηλότερο σχέδιο DocType: Custom Field,Is Mandatory Field,Είναι υποχρεωτικό πεδίο DocType: User,Website User,Χρήστης ιστοτόπου @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Προσαρμοσμένη Sidebar Μενού DocType: Workflow State,pencil,Μολύβι apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Συνομιλία μηνύματα και άλλες ειδοποιήσεις. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Εισάγετε Μετά δεν μπορεί να οριστεί ως {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Εισάγετε Μετά δεν μπορεί να οριστεί ως {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Μοιραστείτε {0} με apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Ρύθμιση λογαριασμού ηλεκτρονικού ταχυδρομείου, παρακαλούμε εισάγετε τον κωδικό σας για:" DocType: Workflow State,hand-up,Hand-up DocType: Blog Settings,Writers Introduction,Εισαγωγή συγγραφέων DocType: Address,Phone,Τηλέφωνο -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Σφάλμα κατά την αξιολόγηση Email Alert {0}. Διορθώστε το πρότυπό σας. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Σφάλμα κατά την αξιολόγηση Email Alert {0}. Διορθώστε το πρότυπό σας. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Επιλογή τύπου εγγράφου ή ρόλου για να ξεκινήσετε. DocType: Contact,Passive,Αδρανής DocType: Contact,Accounts Manager,Διαχειριστής λογαριασμών +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Η πληρωμή σας ακυρώνεται. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Επιλογή τύπου αρχείου DocType: Help Article,Knowledge Base Editor,Γνώση Επεξεργαστής Βάσης apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Η σελίδα δεν βρέθηκε @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Τύπος ιδιότητας DocType: Workflow State,screenshot,Screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Μόνο ο διαχειριστής μπορεί να αποθηκεύσει μια πρότυπη έκθεση. Παρακαλώ να μετονομάσετε και να αποθηκεύσετε. DocType: System Settings,Background Workers,Οι εργαζόμενοι φόντο +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Όνομα πεδίου {0} που έρχεται σε σύγκρουση με αντικείμενο meta DocType: Deleted Document,Data,Δεδομένα apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Κατάσταση εγγράφου apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Κάνατε {0} από {1} @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Προβολή δικαιωμάτων χρήστη apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Θα πρέπει να είστε συνδεδεμένοι στο σύστημα και να έχετε ρόλο διαχειριστή συστήματος για να έχετε πρόσβαση σε αντίγραφα ασφαλείας. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Παραμένων -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Παρακαλούμε να αποθηκεύσετε πριν από την τοποθέτηση. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Παρακαλούμε να αποθηκεύσετε πριν από την τοποθέτηση. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Προστέθηκε {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Προεπιλεγμένο θέμα βρίσκεται σε {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Ο τύπος πεδίου δεν μπορεί να αλλάξει από {0} σε {1} στη γραμμή {2} @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Ρυθμίσεις συστήματος apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Η έναρξη της περιόδου σύνδεσης απέτυχε apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Αυτό το μήνυμα ηλεκτρονικού ταχυδρομείου εστάλη σε {0} και να αντιγραφεί {1} DocType: Workflow State,th,Th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ρυθμίστε τον προεπιλεγμένο λογαριασμό ηλεκτρονικού ταχυδρομείου από το Setup> Email> Email Account -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Δημιουργία νέου {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Δημιουργία νέου {0} DocType: Email Rule,Is Spam,είναι Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Έκθεση {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Άνοιγμα {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Άνοιγμα {0} DocType: OAuth Client,Default Redirect URI,Προεπιλογή Ανακατεύθυνση URI DocType: Email Alert,Recipients,Παραλήπτες DocType: Workflow State,ok-sign,Ok-sign @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,άρθρα Βοήθειας ,Modules Setup,Ρυθμίσεις λειτουργικής μονάδας apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Τύπος: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Η πληρωμή σας απέτυχε. DocType: Communication,Unshared,επιμερισμένα DocType: Address,Karnataka,Καρνάτακα apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Η λειτουργική μονάδα δεν βρέθηκε @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,brand Εικόνα DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Ρύθμιση της επάνω γραμμή πλοήγησης, του υποσέλιδου και του λογότυπου." DocType: Web Form Field,Max Value,Μέγιστη τιμή -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Για {0} σε επίπεδο {1} στο {2} στη γραμμή {3} DocType: Contact,All,Όλα DocType: Email Queue,Recipient,Παραλήπτης DocType: Communication,Has Attachment,έχει Συνημμένο @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,Ευθυγράμμιση δεξιά DocType: Auto Email Report,Email To,E-mail Για να apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Φάκελο {0} δεν είναι άδειο DocType: Page,Roles,Ρόλοι -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Σφάλμα: Λείπει τιμή για {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Το πεδίο {0} δεν είναι επιλέξιμο . DocType: System Settings,Session Expiry,Λήξη συνεδρίας DocType: Workflow State,ban-circle,Ban-circle DocType: Email Flag Queue,Unread,Αδιάβαστος @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Προεπιλογές προφίλ χρήστη apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Δημιουργία νέου DocType: Workflow State,chevron-down,Chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Ηλεκτρονικό ταχυδρομείο δεν αποστέλλονται σε {0} (αδιάθετων / άτομα με ειδικές ανάγκες) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Ηλεκτρονικό ταχυδρομείο δεν αποστέλλονται σε {0} (αδιάθετων / άτομα με ειδικές ανάγκες) DocType: Async Task,Traceback,Ανατρέχω DocType: Currency,Smallest Currency Fraction Value,Ο μικρότερος Νόμισμα κλάσμα Αξία apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Ανάθεση σε @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Από DocType: Website Theme,Google Font (Heading),Google Font (Ονομασία) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Επιλέξτε πρώτα έναν κόμβο ομάδας. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Βρες {0} σε {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Βρες {0} σε {1} DocType: OAuth Client,Implicit,Σιωπηρή DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Προσάρτηση ως επικοινωνία αυτού του τύπου εγγράφου (πρέπει να έχει πεδία, ""Κατάσταση"", ""θέμα"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs για τη λήψη κωδικού εξουσιοδότησης μόλις ο χρήστης επιτρέπει την πρόσβαση, καθώς και τις απαντήσεις αποτυχία. Συνήθως ένα τελικό σημείο ΥΠΟΛΟΙΠΟ εκτίθεται από τον Πελάτη App.
π.χ. http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Δεν επιτρέπεται να αλλάξετε {0} μετά την υποβολή DocType: Communication,Comment Type,Τύπος σχολίου DocType: OAuth Client,OAuth Client,πελάτη OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Χρήστες @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Δεν είναι δυνατή η ανάγνωση της μορφής αρχείου για το {0} DocType: Auto Email Report,Filter Data,Φιλτράρετε δεδομένα apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Προσθήκη ετικέτας -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Παρακαλώ επισυνάψτε ένα αρχείο πρώτα. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Εμφανίστηκαν κάποια σφάλματα κατά τη ρύθμιση του ονόματος, Παρακαλώ επικοινωνήστε με το διαχειριστή" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Ο εισερχόμενος λογαριασμός ηλεκτρονικού ταχυδρομείου δεν είναι σωστός apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,Το email απεστάλη DocType: DocField,Ignore XSS Filter,Αγνοήστε XSS φίλτρο apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,αφαιρεθεί apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Ρυθμίσεις Dropbox αντιγράφων ασφαλείας -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Αποστολή ως e-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Αποστολή ως e-mail DocType: Website Theme,Link Color,Χρώμα δεσμού apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Ο χρήστης {0} δεν μπορεί να απενεργοποιηθεί apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Αγαπητέ Διευθυντή του Συστήματος," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Η χώρα σου +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Η χώρα σου DocType: Event,Sunday,Κυριακή apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Στην προβολή πλέγματος DocType: Address Template,Template,Πρότυπο @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Δελχί apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Ρυθμίσεις LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Για την τροποποίηση του apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Ρυθμίσεις πύλη πληρωμών PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) θα πάρει περικοπεί, όπως max χαρακτήρων που επιτρέπονται είναι {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) θα πάρει περικοπεί, όπως max χαρακτήρων που επιτρέπονται είναι {2}" DocType: OAuth Client,Resource Owner Password Credentials,Πόρων Ιδιοκτήτης κωδικού πρόσβασης DocType: OAuth Client,Response Type,Τύπος απάντηση apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max χρήστες @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Πίνακας DocType: File,File Size,Μέγεθος αρχείου apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Θα πρέπει να συνδεθείτε για να υποβάλετε το αυτή τη φόρμα DocType: User,Background Image,Εικόνα φόντου -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",Επιλέξτε τη χώρα σας και ελέγξτε την ζώνη ώρας και το νόμισμα. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",Επιλέξτε τη χώρα σας και ελέγξτε την ζώνη ώρας και το νόμισμα. apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Μεταξύ DocType: Async Task,Queued,Στην ουρά @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Δημιουργία apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Άκυρα Φίλτρο : {0} DocType: Email Account,no failed attempts,Δεν αποτυχημένες προσπάθειες +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Δεν βρέθηκε προεπιλεγμένο πρότυπο διευθύνσεων. Δημιουργήστε ένα νέο από το Setup> Printing and Branding> Template Address. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Κλειδί Πρόσβασης DocType: OAuth Bearer Token,Access Token,Η πρόσβαση παραχωρήθηκε @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Όνομα χρήστη github DocType: DocType,Image View,Προβολή εικόνας apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Μοιάζει με κάτι πήγε στραβά κατά τη διάρκεια της συναλλαγής. Από τη στιγμή που δεν έχουν επιβεβαιώσει την πληρωμή, Paypal, θα σας επιστρέψουμε αυτόματα αυτό το ποσό. Αν δεν το κάνει, παρακαλούμε να μας στείλετε ένα email και αναφέρουν το αναγνωριστικό Συσχέτιση: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Εισάγετε Μετά πεδίο '{0}' αναφέρεται στην Προσαρμοσμένο πεδίο '{1}', με την ετικέτα '{2}', δεν υπάρχει" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Συμπεριλάβετε σύμβολα, αριθμούς και κεφαλαία γράμματα στον κωδικό πρόσβασης" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Εισάγετε Μετά πεδίο '{0}' αναφέρεται στην Προσαρμοσμένο πεδίο '{1}', με την ετικέτα '{2}', δεν υπάρχει" DocType: Workflow State,signal,Σήμα DocType: DocType,Show Print First,Προβολή εκτύπωσης πρώτα apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter για να δημοσιεύσετε @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Αρχείο '{0}' δεν βρέθηκε apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Κατάργηση τμήματος DocType: User,Change Password,Άλλαξε κωδικό -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Μη έγκυρο email : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Γειά σου! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Μη έγκυρο email : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Γειά σου! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Η λήξη συμβάντος πρέπει να είναι μετά την έναρξη apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Δεν έχετε άδεια για να πάρετε μια έκθεση σχετικά με: {0} +DocType: System Settings,Apply Strict User Permissions,Εφαρμόστε αυστηρά δικαιώματα χρήστη DocType: DocField,Allow Bulk Edit,Να επιτρέπεται η μαζική επεξεργασία DocType: Blog Post,Blog Post,Δημοσίευση blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Σύνθετη αναζήτηση +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Σύνθετη αναζήτηση apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Οι οδηγίες επαναφοράς κωδικού πρόσβασης έχουν αποσταλθεί στο e-mail σας apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Το επίπεδο 0 είναι για δικαιώματα επιπέδου εγγράφου, \ υψηλότερα επίπεδα για δικαιώματα πεδίου." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,ανακλήθηκε DocType: Web Page,Sidebar and Comments,Sidebar και Σχόλια apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Όταν τροποποιείτε ένα έγγραφο μετά ακυρώστε και αποθηκεύστε το, θα πάρει ένα νέο αριθμό που είναι μια έκδοση του παλιού αριθμού." DocType: Stripe Settings,Publishable Key,Κλειδί δημοσίευσης -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} χρόνια πριν DocType: Workflow State,circle-arrow-left,Circle-arrow-left apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Ο διακομιστής cache Redis δεν λειτουργεί. Παρακαλώ επικοινωνήστε με το διαχειριστή / τεχνική υποστήριξη apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Όνομα κόμμα -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Δημιουργία νέας εγγραφής +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Δημιουργία νέας εγγραφής apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Ερευνητικός DocType: Currency,Fraction,Κλάσμα DocType: LDAP Settings,LDAP First Name Field,LDAP Όνομα πεδίο -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Επιλέξτε από τα υπάρχοντα συνημμένα DocType: Custom Field,Field Description,Περιγραφή πεδίου apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Το όνομα δεν έχει οριστεί μέσω διαλόγου προτροπής apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Εισερχόμενα e-mail @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Πληροφορίες: DocType: Custom Field,Permission Level,Επίπεδο δικαιωμάτων DocType: User,Send Notifications for Transactions I Follow,Αποστολή ειδοποιήσεων για συναλλαγές που παρακολουθώ -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Δεν είναι δυνατή η ρύθμιση υποβολή, ακύρωση, τροποποίηση χωρίς εγγραφή" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Είστε σίγουροι ότι θέλετε να διαγράψετε το συνημμένο; -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} {1} συνδέεται με {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Δεν βρέθηκαν αποτελέσματα για '

-apps/frappe/frappe/__init__.py +1063,Thank you,Σας ευχαριστούμε +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Δεν μπορείτε να διαγράψετε ή να ακυρώσετε επειδή {0} {1} συνδέεται με {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Σας ευχαριστούμε apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Οικονομία DocType: Print Settings,Print Style Preview,Προεπισκόπηση στυλ εκτύπωσης apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,Στην προβολή λίστας DocType: Email Account,Use TLS,Χρήση tls apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Μη έγκυρη είσοδος ή κωδικός πρόσβασης apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Προσθήκη προσαρμοσμένων javascript για τις φόρμες. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Όχι +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Όχι ,Role Permissions Manager,Διαχειριστής δικαιωμάτων ρόλου apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Όνομα της νέας μορφοποίησης εκτύπωσης -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,σαφές Συνημμένο +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,σαφές Συνημμένο apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Υποχρεωτικό: ,User Permissions Manager,Διαχειριστής δικαιωμάτων χρήστη DocType: Property Setter,New value to be set,Νέα τιμή που θα καθοριστεί @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 μέ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Κατηγοριοποίηση δημοσιεύσεων blog. DocType: Workflow State,Time,Χρόνος DocType: DocField,Attach,Επισυνάψτε -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι έγκυρο μοτίβο ΌνομαΠεδίου. Θα πρέπει να είναι {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} δεν είναι έγκυρο μοτίβο ΌνομαΠεδίου. Θα πρέπει να είναι {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Αποστολή σχολίων Αίτημα μόνο εάν υπάρχει τουλάχιστον ένας επικοινωνίας είναι διαθέσιμη για το έγγραφο. DocType: Custom Role,Permission Rules,Κανόνες άδειας DocType: GSuite Settings,GSuite Settings,Ρυθμίσεις GSuite DocType: Address,Links,Σύνδεσμοι -apps/frappe/frappe/model/base_document.py +428,Value missing for,Η τιμή λείπει για +apps/frappe/frappe/model/base_document.py +427,Value missing for,Η τιμή λείπει για apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Προσθήκη παιδιού -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Οι υποβεβλημένες εγγραφές δεν μπορούν να διαγραφούν. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,αντιγράφων ασφαλείας Μέγεθος DocType: GSuite Templates,Template Name,Όνομα προτύπου -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,νέος τύπος του εγγράφου +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,νέος τύπος του εγγράφου DocType: Custom DocPerm,Read,Ανάγνωση DocType: Role Permission for Page and Report,Role Permission for Page and Report,Άδεια ρόλο για την σελίδα και Έκθεση apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Ευθυγράμμιση Αξία apps/frappe/frappe/www/update-password.html +14,Old Password,Παλιός κωδικός -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Δημοσιεύσεις από {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Δημοσιεύσεις από {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Για να διαμορφώσετε τις στήλες, εισάγετε τις ετικέτες των στηλών στο ερώτημα." DocType: Has Domain,Has Domain,Έχει τομέα apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Δεν έχετε λογαριασμό; Εγγραφείτε -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0} : Δεν είναι δυνατή η ανάθεση τροποποίησης, αν δεν είναι υποβλητέα" DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Επεξεργασία δικαιωμάτων ρόλου DocType: Communication,Link DocType,DocType σύνδεσμο @@ -2336,7 +2340,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Παρακαλώ βεβαιωθείτε ότι το προφίλ σας έχει μια διεύθυνση ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Έχετε μη αποθηκευμένες αλλαγές σε αυτή τη φόρμα. Παρακαλώ αποθηκεύστε πριν συνεχίσετε. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Προεπιλογή για {0} πρέπει να είναι μια επιλογή +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Προεπιλογή για {0} πρέπει να είναι μια επιλογή DocType: Tag Doc Category,Tag Doc Category,Tag Doc Κατηγορία DocType: User,User Image,Εικόνα εικόνα apps/frappe/frappe/email/queue.py +289,Emails are muted,Τα email είναι σε σίγαση @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Επόμε DocType: Workflow State,ok,Εντάξει DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Οι τιμές αυτές θα πρέπει να ενημερώνονται αυτόματα σε συναλλαγές και, επίσης, θα ήταν χρήσιμο να περιορίσετε τα δικαιώματα για το χρήστη για τις συναλλαγές που περιέχουν αυτές τις αξίες." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Εκδότης -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Αποτυχία: {0} στο {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Αποτυχία: {0} στο {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Επιλέξτε Υποχρεωτική apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Αναζήτηση apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,emails Sent @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,Τρέξιμο apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Επαναφορά κωδικού πρόσβασης apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Παρακαλούμε Αναβάθμιση για να προσθέσετε περισσότερες από {0} συνδρομητές DocType: Workflow State,hand-left,Hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} για {1} δεν μπορεί να είναι μοναδικό +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} για {1} δεν μπορεί να είναι μοναδικό DocType: Email Account,Use SSL,Χρήση ssl DocType: Workflow State,play-circle,Play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Επιλέξτε μορφοποίηση εκτύπωσης για επεξεργασία @@ -2436,7 +2440,7 @@ DocType: DocField,No Copy,Δεν υπάρχει αντίγραφο DocType: Workflow State,qrcode,Qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Σύνδεση με LDAP DocType: Web Form,Breadcrumbs,Διαδρομή -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Εάν Ιδιοκτήτης +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Εάν Ιδιοκτήτης DocType: OAuth Authorization Code,Expiration time,ώρα λήξης DocType: Web Page,Website Sidebar,ιστοσελίδα Sidebar DocType: Web Form,Show Sidebar,Εμφάνιση Sidebar @@ -2456,7 +2460,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},δεν μπορο apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Ονόματα και επώνυμα από μόνα τους είναι εύκολο να μαντέψει κανείς. apps/frappe/frappe/config/website.py +93,Knowledge Base,Βάση γνώσεων DocType: Workflow State,briefcase,Χαρτοφύλακας -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Η τιμή δεν μπορεί να αλλάξει για {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Η τιμή δεν μπορεί να αλλάξει για {0} DocType: Feedback Request,Is Manual,είναι Εγχειρίδιο DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Το στυλ αντιπροσωπεύει το χρώμα του κουμπιού: επιτυχία - πράσινο, κίνδυνος - κόκκινο, αντίστροφη - μαύρο, πρωτεύουσα - σκούρο μπλε, πληροφορία - γαλάζιο, προσοχή - πορτοκαλί" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Δεν Report Loaded. Παρακαλούμε χρησιμοποιήστε το ερώτημα-αναφορά / [Name] αναφορά στη εκτελέσετε μια έκθεση. @@ -2533,7 +2537,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Πρόοδο apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ανά Ρόλο apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,λείπει πεδία apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Μη έγκυρο πεδίο με όνομα '{0}' σε autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Αναζήτηση σε ένα είδος εγγράφου +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Αναζήτηση σε ένα είδος εγγράφου apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Επιτρέψτε στο πεδίο να παραμείνει επεξεργάσιμο ακόμη και μετά την υποβολή DocType: Custom DocPerm,Role and Level,Ρόλος και επίπεδο DocType: File,Thumbnail URL,Μικρογραφία URL @@ -2550,18 +2554,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Περισσότερες πληροφορίες DocType: Desktop Icon,Desktop Icon,Εικονίδιο επιφάνειας εργασίας -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Η πληρωμή σας έγινε δεκτή με επιτυχία +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Η πληρωμή σας έγινε δεκτή με επιτυχία apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Συγγνώμη! δεν επιτρέπεται να δείτε αυτή τη σελίδα. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Συμβουλή: Κάντε διπλό κλικ κελί για να επεξεργαστείτε DocType: Workflow State,bell,Κουδούνι apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Σφάλμα στην ειδοποίηση μέσω ηλεκτρονικού ταχυδρομείου apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Μοιραστείτε αυτό το έγγραφο με +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Εγκατάσταση> Διαχείριση δικαιωμάτων χρηστών apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} Δεν μπορεί να είναι ένας κόμβος φύλλο, δεδομένου ότι έχει θυγατρικούς κόμβους" DocType: Communication,Info,Πληροφορίες -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Προσθήκη συνημμένου +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Προσθήκη συνημμένου DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Σας ευχαριστούμε για το μήνυμά σας -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Αποστολή Διαβάστε Παραλαβή +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Αποστολή Διαβάστε Παραλαβή DocType: Stripe Settings,Stripe Settings,Ρυθμίσεις ταινιών DocType: Dropbox Settings,Dropbox Setup via Site Config,Ρύθμιση Dropbox μέσω του δικτυακού τόπου Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Άκυρη Είσοδος Διακριτικό @@ -2638,6 +2643,7 @@ DocType: DocType,Web View,Web Προβολή apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Προειδοποίηση: Αυτή η μορφή εκτύπωσης είναι σε παλιό στυλ και δεν μπορεί να παραχθεί μέσω του API. DocType: DocField,Print Width,Πλάτος εκτύπωσης ,Setup Wizard,Οδηγός εγκατάστασης +DocType: Address,GST State Number,Αριθμός κατάστασης GST DocType: User,Allow user to login only before this hour (0-24),Επίτρεψε στο χρήστη να συνδεθεί μόνο πριν από αυτή την ώρα (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Φάκελος είναι υποχρεωτική apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2663,7 +2669,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Μικρό κείμενο apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Διαχειριστής προσπελαστεί {0} σε {1} μέσω της διεύθυνσης IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Ίσο -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Οι επιλογές του τύπου πεδίου 'δυναμικός σύνδεσμος' πρέπει να δείχνουν σε ένα άλλο πεδίο συνδέσμου επιλογές σαν τον 'τύπο εγγράφου' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Οι επιλογές του τύπου πεδίου 'δυναμικός σύνδεσμος' πρέπει να δείχνουν σε ένα άλλο πεδίο συνδέσμου επιλογές σαν τον 'τύπο εγγράφου' DocType: About Us Settings,Team Members Heading,Κεφαλίδα των μελών της ομάδας apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Μη έγκυρη μορφή CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Ρυθμίστε τον αριθμό των αντιγράφων ασφαλείας @@ -2674,7 +2680,7 @@ DocType: Contact,Contact,Επαφή DocType: User,Third Party Authentication,Ταυτοποίηση μέσω τρίτου DocType: Website Settings,Banner is above the Top Menu Bar.,Το banner είναι πάνω από το top menu bar. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Εξαγωγή Έκθεση: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Εξαγωγή Έκθεση: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} δεν υπάρχει DocType: Email Account,Port,Θύρα DocType: Print Format,Arial,Arial @@ -2697,7 +2703,7 @@ DocType: Kanban Board Column,Column Name,Όνομα στήλης DocType: Language,Based On,Με βάση την apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Κάντε Προεπιλογή apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Ελέγξτε τη διεύθυνση URL Φραπέ διακομιστή -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} για {1} δεν μπορεί να αναπροσαρμόζονται +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} για {1} δεν μπορεί να αναπροσαρμόζονται DocType: Communication,Email Account,Ο λογαριασμός ηλεκτρονικού ταχυδρομείου DocType: Workflow State,Download,Λήψη DocType: Blog Post,Blog Intro,Εισαγωγή blog @@ -2708,7 +2714,7 @@ DocType: Web Page,Insert Code,Εισαγωγή κώδικα DocType: ToDo,Low,Χαμηλός apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Μπορείτε να προσθέσετε δυναμικές ιδιότητες από το έγγραφο χρησιμοποιώντας Τζίντζα υφής. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Μη έγκυρο όριο {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Απαριθμήστε έναν τύπο εγγράφου +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Απαριθμήστε έναν τύπο εγγράφου DocType: Event,Ref Type,Τύπος αναφοράς apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Αν το φόρτωμα νέες εγγραφές, αφήστε κενή τη στήλη ""όνομα"" (id) ." DocType: Address,Chattisgarh,Chattisgarh @@ -2730,25 +2736,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Αποστολή εκτύπωσης ως pdf DocType: Web Form,Amount,Ποσό DocType: Workflow Transition,Allowed,Επιτρέπεται -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Μπορεί να υπάρχει μόνο μία αναδίπλωση σε μια φόρμα +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Μπορεί να υπάρχει μόνο μία αναδίπλωση σε μια φόρμα apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Δεν είναι δυνατή η εγγραφή μορφής αρχείου για το {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Επαναφορά στις προεπιλεγμένες ρυθμίσεις; apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Μη έγκυρη αρχική σελίδα apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Μη έγκυρη σύνδεση. Προσπάθησε ξανά. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Επιλογές που απαιτούνται για το πεδίο Τύπος συνδέσμου ή πίνακα {0} στη σειρά {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Επιλογές που απαιτούνται για το πεδίο Τύπος συνδέσμου ή πίνακα {0} στη σειρά {1} DocType: Auto Email Report,Send only if there is any data,Αποστολή μόνο αν υπάρχει κάποια δεδομένα apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Επαναφορά φίλτρων -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Το δικαίωμα στο επίπεδο 0 πρέπει να οριστεί πριν οριστούν υψηλότερα επίπεδα +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Το δικαίωμα στο επίπεδο 0 πρέπει να οριστεί πριν οριστούν υψηλότερα επίπεδα apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Η ανάθεση έχει κλείσει από {0} DocType: Integration Request,Remote,Μακρινός -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Υπολογισμός +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Υπολογισμός apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Παρακαλώ επιλέξτε τύπο εγγράφου πρώτα apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Επιβεβαίωση email σας apps/frappe/frappe/www/login.html +42,Or login with,Ή συνδεθείτε με DocType: Error Snapshot,Locals,Οι ντόπιοι apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Διαβιβάζονται μέσω του {0} σε {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} σας ανέφερε σε ένα σχόλιο στο {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,π.χ. (55 + 434) / 4 ή = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,π.χ. (55 + 434) / 4 ή = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} Απαιτείται DocType: Integration Request,Integration Type,Τύπος ολοκλήρωσης DocType: Newsletter,Send Attachements,Αποστολή Συνημμένα @@ -2758,14 +2764,14 @@ DocType: DocField,Perm Level,Επίπεδο πρόσβασης apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Συμβάντα στο σημερινό ημερολόγιο DocType: Web Page,Web Page,Ιστοσελίδα DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Στην Παγκόσμια Αναζήτηση' δεν επιτρέπεται ο τύπος {0} στη σειρά {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Στην Παγκόσμια Αναζήτηση' δεν επιτρέπεται ο τύπος {0} στη σειρά {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Προβολή λίστας -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Η ημερομηνία πρέπει να είναι σε μορφή : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Η ημερομηνία πρέπει να είναι σε μορφή : {0} DocType: Workflow,Don't Override Status,Μην Παράκαμψη Κατάσταση apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Παρακαλώ δώστε βαθμολογία. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Σχόλια Αίτημα apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Ορος αναζήτησης -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Ο πρώτος χρήστης : εσείς +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Ο πρώτος χρήστης : εσείς apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Επιλέξτε στήλες DocType: Translation,Source Text,πηγή κειμένου apps/frappe/frappe/www/login.py +55,Missing parameters for login,Λείπει παραμέτρους για login @@ -2787,7 +2793,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Εισαγωγή DocType: ToDo,Assigned By,Ανατέθηκε από apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Μπορείτε να χρησιμοποιήσετε την προσαρμογή φόρμας για να ρυθμίσετε τα επίπεδα στα πεδία. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Επιλέξτε την περιοχή σας +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Επιλέξτε την περιοχή σας DocType: Custom DocPerm,Level,Επίπεδο DocType: Custom DocPerm,Report,Έκθεση apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Ποσό πρέπει να είναι μεγαλύτερη από 0. @@ -2807,7 +2813,7 @@ DocType: Website Theme,Background,Φόντο DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Λίστα json των τύπων εγγράφων που χρησιμοποιούνται για την εφαρμογή δικαιωμάτων χρήστη. Εάν είναι κενό, όλοι οι συνδεδεμένοι τύποι εγγράφων θα χρησιμοποιηθούν για να εφαρμοστούν τα δικαιώματα χρήσης." DocType: Report,Ref DocType,Ref doctype apps/frappe/frappe/www/feedback.py +42,Please add a rating,Προσθέστε μια βαθμολογία -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Δεν είναι δυνατή η ρύθμιση τροποποίησης χωρίς ακύρωση +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Δεν είναι δυνατή η ρύθμιση τροποποίησης χωρίς ακύρωση apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Ολοσέλιδος DocType: DocType,Is Child Table,Είναι θυγατρικός πίνακας apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} Πρέπει να είναι μία από {1} @@ -2822,7 +2828,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Αυτό πηγαίν apps/frappe/frappe/config/setup.py +260,Install Applications.,Εγκατάσταση εφαρμογών. DocType: Contact,Last Name,Επώνυμο DocType: Event,Private,Ιδιωτικός -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Δεν υπάρχουν ειδοποιήσεις για σήμερα +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Δεν υπάρχουν ειδοποιήσεις για σήμερα DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Αποστολή των συννημένων εκτυπώσεων του email ως pdf (συνιστάται) DocType: Web Page,Left,Αριστερά DocType: Event,All Day,Ολοήμερο @@ -2836,7 +2842,7 @@ DocType: Event,Send an email reminder in the morning,Στείλτε ένα email DocType: Blog Post,Published On,Δημοσιεύθηκε στις DocType: Contact,Gender,Φύλο apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Υποχρεωτικές πληροφορίες λείπουν: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Το πεδίο '{0}' δεν μπορεί να οριστεί ως μοναδικό καθώς έχει μη μοναδικές τιμές +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Το πεδίο '{0}' δεν μπορεί να οριστεί ως μοναδικό καθώς έχει μη μοναδικές τιμές apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Μόνο 200 ένθετα επιτρέπεται σε ένα αίτημα DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Τύπος αναφοράς @@ -2849,7 +2855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Warning-sign DocType: Workflow State,User,Χρήστης DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Εμφάνιση τίτλου στο παράθυρο του browser ως "πρόθεμα - τίτλος" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,κείμενο σε είδος εγγράφου +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,κείμενο σε είδος εγγράφου apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Εκτελέστε Δοκιμές apps/frappe/frappe/handler.py +91,Logged Out,Αποσυνδέθηκα apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Περισσότερο... @@ -2874,13 +2880,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Σήμερα Επισκόπηση DocType: DocField,Default,Προεπιλεγμένο apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} Προστέθηκε -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Αναζήτηση για '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Αναζήτηση για '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Παρακαλούμε να αποθηκεύσετε την πρώτη έκθεση apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} συνδρομητές προστέθηκαν apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Δεν Στο DocType: Workflow State,star,Αστέρι -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,τιμές διαχωρισμένες με κόμμα -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Το μέγιστο πλάτος για τον τύπο νόμισμα είναι 100px στη γραμμή {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,τιμές διαχωρισμένες με κόμμα +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Το μέγιστο πλάτος για τον τύπο νόμισμα είναι 100px στη γραμμή {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Παρακαλούμε να μοιραστείτε τα σχόλιά σας για {0} apps/frappe/frappe/config/website.py +13,Content web page.,Ιστοσελίδα περιεχομένου apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Προσθήκη νέου ρόλου @@ -2898,7 +2904,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Δεν είναι ένα έγκυρο χρήστη LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} Δεν είναι έγκυρη κατάσταση apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Επιλέξτε μια άλλη μέθοδο πληρωμής. Το PayPal δεν υποστηρίζει τις συναλλαγές μετρητών «{0}» -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,πεδίο αναζήτησης {0} δεν είναι έγκυρη +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,πεδίο αναζήτησης {0} δεν είναι έγκυρη DocType: Workflow State,ok-circle,Ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Μπορείτε να βρείτε τα πράγματα, ζητώντας «να βρει πορτοκαλί πελατών" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Συγγνώμη! Ο χρήστης θα πρέπει να έχει πλήρη πρόσβαση στο δικό τους αρχείο. @@ -2958,7 +2964,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Φίλτρο Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Το κείμενο που θα εμφανίζεται για το σύνδεσμο προς την ιστοσελίδα, αν αυτή η φόρμα έχει μια ιστοσελίδα. Η διαδρομή του συνδέσμου θα δημιουργείται αυτόματα με βάση τα πεδία `page_name` και `parent_website_route`" DocType: Feedback Request,Feedback Trigger,Σχόλια ενεργοποίησης -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Παρακαλώ να ορίσετε {0} πρώτα +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Παρακαλώ να ορίσετε {0} πρώτα DocType: Unhandled Email,Message-id,Μήνυμα-id DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Αποτυχία diff --git a/frappe/translations/es-AR.csv b/frappe/translations/es-AR.csv index 0997ab54e3..795012c0a8 100644 --- a/frappe/translations/es-AR.csv +++ b/frappe/translations/es-AR.csv @@ -1,3 +1,3 @@ DocType: Communication,Comment Type,Tipo de Comentario -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Limpiar Adjunto +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Limpiar Adjunto DocType: Communication,Communication,Comunicacion diff --git a/frappe/translations/es-CL.csv b/frappe/translations/es-CL.csv index 38a8181156..6e48a4c978 100644 --- a/frappe/translations/es-CL.csv +++ b/frappe/translations/es-CL.csv @@ -28,7 +28,7 @@ DocType: Communication,Link DocType,Enlace DocType apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +20,Column Name cannot be empty,El Nombre de la Columna no puede estar vacía ,Feedback Ratings,Ratings de Feedback apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de {0} mensajes de correo electrónico para este mes. -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,No se puede utilizar una sub-consulta en order by +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,No se puede utilizar una sub-consulta en order by apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +227,Permissions can be managed via Setup > Role Permissions Manager,Los permisos se pueden gestionar a través de Configuración > Administrador de permisos DocType: LDAP Settings,LDAP First Name Field,Campo de Primer Nombre LDAP apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Configuraciones Globales: Los usuarios sólo podrán elegir los iconos marcados diff --git a/frappe/translations/es-NI.csv b/frappe/translations/es-NI.csv index fcc688a29d..fd69a2afe2 100644 --- a/frappe/translations/es-NI.csv +++ b/frappe/translations/es-NI.csv @@ -1,5 +1,5 @@ DocType: Web Form,Accept Payment,Aceptar Pago DocType: Auto Email Report,Based on Permissions For User,Base sobre Permiso de Usuario -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultarán truncadas, como caracteres máximo permitido es {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultarán truncadas, como caracteres máximo permitido es {2}" DocType: System Settings,Backups,Respaldos apps/frappe/frappe/utils/password_strength.py +58,Better add a few more letters or another word,Mejor añadir algunas letras extras u otra palabra diff --git a/frappe/translations/es-PE.csv b/frappe/translations/es-PE.csv index 7f75fa023c..f68293a412 100644 --- a/frappe/translations/es-PE.csv +++ b/frappe/translations/es-PE.csv @@ -1,4 +1,4 @@ -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: no se puede definir 'De Importación' como {1} porque no es importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: no se puede definir 'De Importación' como {1} porque no es importable DocType: DocField,Heading,Título apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},No se puede cargar : {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,Permisos en los niveles más altos son los permisos de nivel de campo. Todos los campos tienen un conjunto Nivel de permiso en su contra y las reglas definidas en el que los permisos se aplican al campo. Esto es útil en caso de que quiera ocultar o hacer cierto campo de sólo lectura para ciertas funciones. @@ -14,11 +14,11 @@ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledge DocType: Report,Ref DocType,Referencia Tipo de Documento DocType: Print Settings,Print Style Preview,Vista previa de Estilo de impresión DocType: Customize Form,Enter Form Type,Introduzca Tipo de Formulario -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Seleccione de archivos adjuntos existentes +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccione de archivos adjuntos existentes DocType: Email Alert Recipient,Email By Document Field,Email Por Campo Documento apps/frappe/frappe/core/page/permission_manager/permission_manager.js +483,Saved!,Guardado! apps/frappe/frappe/public/js/frappe/ui/messages.js +66,Enter Value,Introducir valor -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede Presentar, Cancelar y Corregir sin Guardar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede Presentar, Cancelar y Corregir sin Guardar" DocType: Web Page,Insert Style,Inserte Estilo DocType: Workflow State,th-large,-ésimo gran DocType: User,Email Settings,Configuración del correo electrónico @@ -45,7 +45,7 @@ apps/frappe/frappe/model/document.py +577,Cannot edit cancelled document,No se p DocType: Social Login Keys,Facebook Client ID,Facebook Client ID apps/frappe/frappe/config/setup.py +107,Set numbering series for transactions.,Establecer series de numeración para las transacciones. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Presentar un problema -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Enviar como correo electrónico +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Enviar como correo electrónico DocType: Currency,Symbol,Símbolo DocType: Workflow Document State,Update Field,Actualizar Campos apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.","Puede cambiar los documentos Enviados cancelándolos y luego, haciendo los cambios pertinentes." @@ -55,7 +55,7 @@ DocType: Website Script,Script to attach to all web pages.,Guión para unir a to apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Seleccionar tipo de documento para descargar apps/frappe/frappe/core/page/data_import_tool/importer.py +56,Only allowed {0} rows in one import,Soló esta filas {0} permitidas para una importación DocType: Property Setter,Set Value,Valor seleccionado -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Mostrar más detalles +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Mostrar más detalles apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname which will be the DocType for this link field.,Nombre de campo el cual será el DocType para enlazar el campo. DocType: Workflow,DocType on which this Workflow is applicable.,El DocType en el presente del flujo de trabajo es aplicable. DocType: Workflow,"If checked, all other workflows become inactive.","Si se selecciona, todos los otros flujos de trabajo se vuelven inactivos ." @@ -70,7 +70,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Forma apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si va a cargar nuevos registros, ""Secuencias"" se convierte en obligatoria, si está presente." DocType: Report,Letter Head,Membretes DocType: Custom DocPerm,Role,Función -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Las opciones no establecen para campo de enlace {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Las opciones no establecen para campo de enlace {0} DocType: Web Page,Style,Estilo apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} no es permitido ser renombrado DocType: Property Setter,Field Name,Nombre del campo @@ -78,7 +78,7 @@ DocType: Custom Script,Adds a custom script (client or server) to a DocType,Aña DocType: Report,Report Type,Tipo de informe DocType: User Email,Enable Outgoing,Habilitar saliente DocType: Email Account,Ignore attachments over this size,Ignorar los adjuntos mayores a este tamaño -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},La fecha debe estar en formato : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La fecha debe estar en formato : {0} DocType: Print Settings,In points. Default is 9.,En puntos. El valor predeterminado es 9. apps/frappe/frappe/config/website.py +18,User editable form on Website.,Forma editable Usuario en el Sitio Web. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Carga y Sincronización @@ -88,7 +88,7 @@ DocType: Workflow State,thumbs-down,pulgar hacia abajo DocType: Address Template,This format is used if country specific format is not found,Este formato se utiliza si no se encuentra un formato específico del país apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Árbol DocType: Communication,Email,Correo electrónico -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Ayuda en la búsqueda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ayuda en la búsqueda DocType: Web Page,Left,Izquierda apps/frappe/frappe/core/doctype/user/user.py +174,Sorry! Sharing with Website User is prohibited.,¡Lo siento! Compartir con los del Sitio Web está prohibido. DocType: Custom Script,Script,Guión @@ -96,7 +96,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh F apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Una nueva cuenta ha sido creada para ti en {0} DocType: Website Script,Website Script,Guión del Sitio Web apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referencia DocType -apps/frappe/frappe/__init__.py +1063,Thank you,Gracias +apps/frappe/frappe/__init__.py +1062,Thank you,Gracias DocType: Address,Shipping,Envío DocType: Standard Reply,Standard Reply,Respuestas automáticas DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","¿Cómo se debe formatear esta moneda ? Si no se establece, utilizará valores predeterminados del sistema" @@ -119,7 +119,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Workflow State,star-empty,- estrella vacía apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Gracias por tu email DocType: Social Login Keys,Social Login Keys,Credenciales sociales -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permitir DocType , tipo de documento . ¡Ten cuidado!" apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Usted necesita tener el permiso ""Compartir""" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,The system provides many pre-defined roles. You can add new roles to set finer permissions.,El sistema ofrece muchas funciones predefinidas . Usted puede agregar nuevos roles para establecer permisos más finos. apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} no puede ser un nodo de hoja , ya que tiene los niños" @@ -127,18 +127,18 @@ DocType: Footer Item,Company,Compañía(s) DocType: Email Alert,Send alert if date matches this field's value,Envíe la alarma si la fecha coincide con el valor de este campo apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Configuración de Alerta de E-mail basado en varios criterios. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Puede añadir propiedades dinámicas del documento mediante el uso de plantillas Jinja. -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Predeterminado para {0} debe ser una opción -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Las opciones deben ser validas para el DocType en el campo {0} de la linea {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Predeterminado para {0} debe ser una opción +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Las opciones deben ser validas para el DocType en el campo {0} de la linea {1} apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically generated reply,Esta es una respuesta generada automáticamente apps/frappe/frappe/core/page/permission_manager/permission_manager.js +434,Set,conjunto DocType: Workflow State,Workflow State,Estados de los flujos de trabajo DocType: Communication,Submitted,Enviado -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: No se han asignado permisos básicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: No se han asignado permisos básicos apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +234,"Your download is being built, this may take a few moments...","Se está generando su descarga, esto puede tardar unos minutos..." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Sube Permisos de Usuario apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Descarga de datos DocType: DocType,Hide Heading,Ocultar Rubro -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: no se puede 'Asignar Correción' si no se puede presentar +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: no se puede 'Asignar Correción' si no se puede presentar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Retire la Sección apps/frappe/frappe/core/doctype/file/file.py +221,No permission to write / remove.,No tiene permiso para escribir/eliminar. apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,No se cargo el reporte. Utilice Consultar Informes/[Report Name]] para ejecutar un reporte. @@ -146,11 +146,11 @@ apps/frappe/frappe/config/setup.py +199,Define workflows for forms.,Definir los DocType: Workflow State,font,Fuente apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Padre DocType: Communication,Workflow,Flujo de Trabajo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Buscar en un tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Buscar en un tipo de documento DocType: Print Format,Server,Servidor DocType: Custom DocPerm,Apply User Permissions,Aplicar permisos de usuario DocType: Website Settings,Set Banner from Image,Establecer Banner de imagen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,No. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,No. DocType: DocType,Is Single,Es Individual apps/frappe/frappe/templates/includes/list/filters.html +19,clear,claro DocType: Email Alert,Send alert if this field's value changes,Enviar alerta si cambia el valor de este campo @@ -161,16 +161,16 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,Please do not chan DocType: Email Alert,Days Before or After,Días Anteriores o Posteriores DocType: File,Content Hash,Hash contenido DocType: Workflow State,align-left,alinear -izquierda -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: no se puede establecer 'De importación' sin crearlo primero +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: no se puede establecer 'De importación' sin crearlo primero apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +255,Hide field in Report Builder,Ocultar campo en el Generador de Informes -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},El ancho máximo para la moneda es 100px en la linea {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},El ancho máximo para la moneda es 100px en la linea {0} apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} agregado(s) DocType: Integration Request,Reference DocName,Referencia DocNombre apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Guardado DocType: System Settings,Security,Seguridad DocType: Custom DocPerm,Read,Lectura -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Use% como comodín -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},El usuario no puede eliminar {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Use% como comodín +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},El usuario no puede eliminar {0}: {1} apps/frappe/frappe/desk/query_report.py +87,Query must be a SELECT,Debe seleccionar la Consulta DocType: DocShare,Document Name,Nombre del documento apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Comenzar una nueva Formato @@ -185,13 +185,13 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +34 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,No se le permite eliminar un tema Sitio web estándar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +227,Permissions can be managed via Setup > Role Permissions Manager,Los permisos se pueden gestionar a través de Configuración > Administrador de Funciones apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +34,Download Blank Template,Descargar la plantilla en blanco -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : Permiso en el nivel 0 se debe establecer antes de fijar niveles más altos +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : Permiso en el nivel 0 se debe establecer antes de fijar niveles más altos DocType: System Settings,dd-mm-yyyy,dd- mm- aaaa apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Boletines para contactos, clientes potenciales ." DocType: Email Alert,Message Examples,Ejemplos de Mensajes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Como práctica recomendada , no asigne el mismo conjunto de permisos para diferentes funciones. En su lugar, establecer varias funciones al mismo usuario ." DocType: Website Theme,Top Bar Color,Inicio Barra Color -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Sólo puede haber un doblez en forma +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Sólo puede haber un doblez en forma DocType: Address,Shop,Tienda apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Agregar subcuenta apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,Las funciones se pueden configurar para los usuarios de su página de usuario . @@ -210,8 +210,8 @@ DocType: Contact,Open,Abrir DocType: DocType,Hide Copy,Copia Oculta apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Formato de impresión estándar no se puede actualizar apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +7,Select Type,Seleccione el tipo de -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Fallo: {0} a {1}: {2} -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Esta forma no tiene ninguna entrada +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Fallo: {0} a {1}: {2} +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Esta forma no tiene ninguna entrada apps/frappe/frappe/model/naming.py +44,{0} is required,{0} es necesario DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados . DocType: Workflow State,Tag,Etiqueta @@ -229,7 +229,7 @@ DocType: DocType,Single Types have only one record no tables associated. Values apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +58,Make a new,Hacer una nueva apps/frappe/frappe/core/page/user_permissions/user_permissions.js +222,Select User or DocType to start.,Seleccionar usuario o tipo de documento para empezar. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo tendrán acceso a los documentos que puedan (por ejemplo, Entrada de blog ) donde se encuentra la relación (por ejemplo, Blogger ) ." -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},No está permitido para el tipo {0} en la linea {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},No está permitido para el tipo {0} en la linea {1} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +216,"Change type of field. (Currently, Type change is \ allowed among 'Currency and Float')","Cambiar el tipo de campo. (Actual, Tipo de cambio, Cantidad permitida, Moneda, Flotante, etc)" DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = "" _blank"" para abrir en una nueva página." @@ -254,7 +254,7 @@ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please conta DocType: Workflow Document State,Only Allow Edit For,Sólo Permitir Editar Para DocType: Website Slideshow,This goes above the slideshow.,Esto va por encima de la presentación de diapositivas. DocType: Website Settings,Footer Items,Elementos del Pie de Página -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: no se puede 'Corregir' sin antes cancelar +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: no se puede 'Corregir' sin antes cancelar apps/frappe/frappe/templates/emails/new_user.html +4,Your login id is,Su nombre de usuario es DocType: DocField,Currency,Divisa apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Por favor, especifique el doctype" @@ -262,12 +262,12 @@ DocType: System Settings,Session Expiry Mobile,Vencimiento de sesión en disposi DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,El texto que se muestra para enlazar a la página Web si esta forma dispone de una página web. Ruta Enlace automáticamente se genera en base a `page_name` y` parent_website_route` ,Setup Wizard,Asistente de configuración DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar Emails con adjuntos en formato PDF (recomendado) -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,El campo {0} no se puede seleccionar . +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,El campo {0} no se puede seleccionar . apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,Select To Download:,Seleccione la descarga : apps/frappe/frappe/public/js/frappe/upload.js +223,Please attach a file or set a URL,"Por favor, adjuntar un archivo o defina una URL" DocType: Contact,Is Primary Contact,Es Contacto principal ,Permitted Documents For User,Documentos permitidos para los usuarios -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Hacer un Nuevo Registro +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Hacer un Nuevo Registro DocType: Report,Script Report,Informe de secuencias de comandos apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +19,Label is mandatory,Etiqueta es obligatoria DocType: Currency,**Currency** Master,**Moneda** Principal @@ -288,7 +288,7 @@ DocType: Workflow State,"Style represents the button color: Success - Green, Dan DocType: User,Facebook Username,Facebook Nombre de usuario apps/frappe/frappe/core/page/permission_manager/permission_manager.js +301,Users with role {0}:,Los usuarios con función {0}: apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been attached to the record,El mismo archivo ya se ha adjuntado al registro -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: no se puede 'Cancelar' sin presentarlo +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: no se puede 'Cancelar' sin presentarlo DocType: Address,Address Title,Dirección Título apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marque el campo como obligatorio DocType: Workflow State,resize-full,cambiar a tamaño completo @@ -300,7 +300,7 @@ DocType: Contact,Sales Master Manager,Gerente de Ventas apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Puede utilizar caracteres comodín% apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was not saved (there were errors),Informe no se guardó ( hubo errores ) apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Subiendo ... -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,No se le permite exportar este reporte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,No se le permite exportar este reporte apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Los permisos del nivel 0 son los permisos a nivel de documentos, es decir, que tienen permiso especial para los documentos." apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades de campo (ocultar, sólo lectura, permisos, etc)" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Seleccione un tipo de documento para hacer un nuevo formato @@ -312,7 +312,7 @@ apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},No puede conectarse: apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guardar." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +154,Permissions Updated,Actualización de permisos apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +126,Both DocType and Name required,Tanto DocType y Nombre son obligatorios -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Sólo una regla es permitida con el mismo rol, Nivel y {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Sólo una regla es permitida con el mismo rol, Nivel y {1}" DocType: Customize Form,"Customize Label, Print Hide, Default etc.","Personaliza etiquetas, impresión Hide , Default , etc" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +661,Sort By,Ordenado por apps/frappe/frappe/desk/form/utils.py +91,No further records,No hay registros adicionales @@ -340,7 +340,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layou DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-moneda, por ejemplo, ""Centavo""" DocType: Workflow State,exclamation-sign,signo de exclamación DocType: Desktop Icon,List,Vista de árbol -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Hubo errores al enviar el correo electrónico. Por favor, inténtelo de nuevo." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Hubo errores al enviar el correo electrónico. Por favor, inténtelo de nuevo." apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Vencimiento de sesión debe estar en formato {0} DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Almacena el JSON de las últimas versiones conocidas de diferentes aplicaciones instaladas. Se utiliza para mostrar notas de la versión. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Corregir" @@ -370,7 +370,7 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Cr apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Seleccione el Tipo de Documento o Función para empezar. DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Define las acciones de los estados y el siguiente paso y funciones permitidas. DocType: DocType,Show Print First,Mostrar Imprimir Primera -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Reportar no se puede configurar para los tipos individuales +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Reportar no se puede configurar para los tipos individuales apps/frappe/frappe/core/doctype/report/report.js +37,Disable Report,Desactivar Informe DocType: Workflow State,resize-small,cambiar el tamaño pequeño DocType: Workflow State,question-sign,Consultar Firma @@ -378,14 +378,14 @@ apps/frappe/frappe/utils/nestedset.py +229,Multiple root nodes not allowed.,Nodo DocType: Event,Saturday,Sábado DocType: Address,Maintenance User,Mantenimiento por el Usuario apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send to {0},Programado para enviar a {0} -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,debe establecerse primero: {0} +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,debe establecerse primero: {0} apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you can update only selective columns.","Para la actualización, usted lo puede hacer solo en algunas columnas." DocType: Custom DocPerm,Export,Exportación DocType: Workflow State,Search,Búsqueda apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Algunos documentos como facturas, no se deben cambiar una vez guardados. El estado final de dichos documentos se llama 'Presentado'. Puede restringir qué roles/usuarios pueden presentar documentos" apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not find what you were looking for.,¡Lo siento! No pude encontrar lo que estabas buscando. DocType: Workflow State,remove-sign,Eliminar el efecto de signo -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Adjunte un archivo primero . +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Adjunte un archivo primero . apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Permisos Mostrar usuario apps/frappe/frappe/public/js/frappe/request.js +347,Report this issue,Reportar Incidencia apps/frappe/frappe/public/js/frappe/views/treeview.js +212,New {0},Nuevo {0} @@ -394,23 +394,23 @@ DocType: Custom Script,Script Type,Guión Tipo DocType: Workflow State,text-width,texto de ancho DocType: Custom DocPerm,This role update User Permissions for a user,Este función actualiza los Permisos de Usuario para un usuario DocType: Workflow State,resize-horizontal,cambiar el tamaño horizontal -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: registro presentado no se puede eliminar. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: registro presentado no se puede eliminar. apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Campos obligatorios requeridos en {0} -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Máximo {0} filas permitidos +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Máximo {0} filas permitidos DocType: Custom DocPerm,Import,Importación apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Había algunos errores de configuración el nombre, por favor póngase en contacto con el administrador" apps/frappe/frappe/website/doctype/web_form/web_form.py +37,You need to be in developer mode to edit a Standard Web Form,Se requiere estar en modo desarrollador para editar un formulario web estándar. DocType: Website Theme,Google Font (Heading),Google Font (Título) apps/frappe/frappe/core/page/user_permissions/user_permissions.js +31,A user can be permitted to multiple records of the same DocType.,Un usuario se puede permitir que varios registros de un mismo tipo de documento . -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades ""Tipo de Documento""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades ""Tipo de Documento""" apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Plegar/Desplegar -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: no se puede 'Asignar Enviar' si no se puede presentar +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: no se puede 'Asignar Enviar' si no se puede presentar DocType: Workflow State,step-forward,paso hacia adelante DocType: Workflow State,align-justify,alinear - justificar apps/frappe/frappe/core/page/data_import_tool/importer.py +249,Not allowed to Import,No tiene permisos para importar -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Abra un Módulo o Herramienta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Abra un Módulo o Herramienta apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Subir archivo CSV que contiene todos los permisos de usuario en el mismo formato que en Descargar. -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Por favor, guarde los cambios antes de conectar" +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Por favor, guarde los cambios antes de conectar" apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Tabla de Padres DocType: Dropbox Settings,Dropbox Access Key,Clave de Acceso de Dropbox apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Valores perdidos requeridos @@ -433,7 +433,7 @@ apps/frappe/frappe/model/naming.py +66,Naming Series mandatory,Las secuencias so DocType: Event,Ref Type,Tipo Ref DocType: DocType,Sort Order,Orden de Clasificación apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Tome asiento mientras el sistema está siendo configurado. Esto puede tomar un momento. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No se puede mostrar este informe árbol, debido a los datos faltantes. Lo más probable es que se está filtrando a cabo debido a los permisos." +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No se puede mostrar este informe árbol, debido a los datos faltantes. Lo más probable es que se está filtrando a cabo debido a los permisos." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +247,Hide field in form,Ocultar campo en forma DocType: Newsletter,Email Sent?,Enviar Email ? apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +272,Show a description below the field,Mostrar una descripción debajo del campo @@ -452,7 +452,7 @@ DocType: Custom Field,Field Description,Descripción del Campo apps/frappe/frappe/utils/nestedset.py +194,Root {0} cannot be deleted,Raíz {0} no se puede eliminar DocType: Website Settings,Banner is above the Top Menu Bar.,El Banner está por sobre la barra de menú superior. apps/frappe/frappe/templates/includes/comments/comments.py +50,View it in your browser,Véalo en su navegador -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Campo Título debe ser un nombre de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Campo Título debe ser un nombre de campo válido apps/frappe/frappe/client.py +86,Cannot edit standard fields,No se puede editar campos estándar apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ajustes para la página de contacto. apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +48,1 hour ago,Hace 1 hora @@ -483,14 +483,14 @@ apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have comple apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Editar permisos de rol apps/frappe/frappe/core/doctype/doctype/doctype.py +287,DocType can not be merged,El DocType no se puede fusionar DocType: DocField,Allow on Submit,Permitir en Enviar -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Seleccionar el formato de impresión +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Seleccionar el formato de impresión DocType: DocField,"For Links, enter the DocType as range. For Select, enter list of Options, each on a new line.","Para enlaces, introduzca el DocType como rango. para seleccionar, ingrese lista de opciones, cada uno en una nueva línea." DocType: Workflow State,eye-open,- ojo abierto apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +87,Submit after importing.,Revisar después de importar. DocType: Email Account,Email Account Name,Correo electrónico Nombre de cuenta apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,{0} no encontrado -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Publicaciones por {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Publicaciones por {0} apps/frappe/frappe/core/doctype/doctype/doctype.py +198,Series {0} already used in {1},Serie {0} ya se utiliza en {1} DocType: Report,Report Manager,Administrador de informes DocType: Custom DocPerm,Report,Informe @@ -509,16 +509,16 @@ apps/frappe/frappe/www/list.html +3,{0} List,Listado: {0} DocType: DocType,Is Submittable,Es presentable-- DocType: System Settings,Disable Standard Email Footer,Desactivar pie de página estandar en Email DocType: Blog Post,"Description for listing page, in plain text, only a couple of lines. (max 140 characters)","Descripción de la página perfil, en texto plano, sólo un par de líneas. (máx. 140 caracteres)" -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} no se puede establecer para los tipos individuales +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} no se puede establecer para los tipos individuales apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +600,Select Table Columns for {0},Seleccionar columnas de tabla para {0} DocType: Workflow State,cog,diente DocType: Custom Field,Select the label after which you want to insert new field.,Seleccione la etiqueta después de la cual desea insertar el nuevo campo . -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Tipo de documento ..., por ejemplo, al cliente" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipo de documento ..., por ejemplo, al cliente" apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccione {0} DocType: Property Setter,Property Setter,Establecer prioridad-- DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostrar título en la ventana del navegador como "Prefijo - título" DocType: File,Attached To DocType,Asociado A DocType -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Fila # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Fila # {0}: apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Necesitas estar conectado y tener la función de Administrador del Sistema, para poder tener acceso a las copias de seguridad ." DocType: Website Settings,Title Prefix,Prefijo del Título DocType: DocField,Section Break,Salto de sección @@ -527,7 +527,7 @@ DocType: Print Settings,PDF Settings,Configuración de PDF apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went wrong,Oups! Algo salió mal apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Por rangos DocType: Web Form,Select DocType,Seleccione tipo de documento -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Presentar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Presentar permanentemente {0}? DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","por ejemplo ""Soporte "","" Ventas "","" Jerry Yang """ apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Cancel).","Acciones para los flujos de trabajo (por ejemplo: Aprobar, Cancelar)." DocType: Communication,Feedback,Comentarios diff --git a/frappe/translations/es.csv b/frappe/translations/es.csv index ad3ece6123..8fda638eec 100644 --- a/frappe/translations/es.csv +++ b/frappe/translations/es.csv @@ -1,7 +1,7 @@ apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,"Por favor, seleccione un campo de cantidad." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +282,Press Esc to close,Presione Esc para cerrar apps/frappe/frappe/desk/form/assign_to.py +150,"A new task, {0}, has been assigned to you by {1}. {2}","Una nueva tarea, {0}, le ha sido asignada por {1}. {2}" -DocType: Email Queue,Email Queue records.,los registros de correo electrónico cola. +DocType: Email Queue,Email Queue records.,Registros de Email en cola. apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Publicar apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,"Por favor, seleccione primero el tipo de entidad" DocType: Address,Punjab,Punjab @@ -9,13 +9,13 @@ apps/frappe/frappe/config/setup.py +114,Rename many items by uploading a .csv fi DocType: Workflow State,pause,pausa apps/frappe/frappe/www/desk.py +18,You are not permitted to access this page.,Usted no está autorizado a acceder a esta página. apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems ldap is not installed on system.
Guidelines to install ldap dependancies and python package,Parece que ldap no está instalado en el sistema.
Pautas para instalar las dependencias de ldap y el paquete python -DocType: About Us Settings,Website,Sitio web +DocType: About Us Settings,Website,Sitio Web apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Tiene que estar registrado para acceder a esta página DocType: User,Facebook Username,Nombre de usuario en facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Varias sesiones serán permitidas en el caso de los dispositivos móviles apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},buzón de correo electrónico habilitado para el usuario {usuarios} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,No se puede enviar este correo electrónico. Usted ha cruzado el límite de envío de mensajes de correo electrónico {0} para este mes. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Validar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Validar permanentemente {0}? DocType: Address,County,País DocType: Workflow,If Checked workflow status will not override status in list view,Si el estado de flujo de trabajo facturado no anulará el estado en la vista de lista apps/frappe/frappe/client.py +280,Invalid file path: {0},Ruta no válida archivo: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Por fa apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,Árbol {0} DocType: User,User Emails,Correos electrónicos del Usuario DocType: User,Username,Nombre de usuario -apps/frappe/frappe/model/base_document.py +581,Value too big,Valor demasiado grande +apps/frappe/frappe/model/base_document.py +580,Value too big,Valor demasiado grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Ejecutar Script de Prueba DocType: Contact,Department,Departamento @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Registros DocType: Custom DocPerm,This role update User Permissions for a user,Este rol actualiza los permisos de usuario apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Cambiar el nombre {0} DocType: Workflow State,zoom-out,Alejar -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierto/a +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,No se puede abrir {0} cuando su instancia está abierto/a apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,La tabla {0} no puede estar vacía apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Con libros de contabilidad apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,imágenes DocType: Communication,Reference Owner,Propietario de Referencia DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Unidad más pequeña fracción de circulación (moneda). Por ejemplo, 1 centavo por USD y debe ser ingresado como 0.01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Fila {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Fila {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Por favor, de un nombre completo." apps/frappe/frappe/model/document.py +904,Beginning with,A partir de apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Plantilla para importar datos apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Principal DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Si está activada, la fuerza de la contraseña se aplicará en función del valor de Puntuación mínima de contraseña. Un valor de 2 siendo fuerte medio y 4 siendo muy fuerte." DocType: About Us Settings,"""Team Members"" or ""Management""",'Miembros del equipo' o 'Administración' -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Predeterminado para ""Consultar"" tipo de campo debe ser '0' o '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Predeterminado para ""Consultar"" tipo de campo debe ser '0' o '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Ayer DocType: Contact,Designation,Puesto DocType: Test Runner,Test Runner,Prueba Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Es campo publicable DocType: Email Group,Email Group,Grupo de Correo Electrónico DocType: Note,Seen By,Visto por apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Añadir Multiple -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Diferente a +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Diferente a apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Establezca la etiqueta visual para el campo apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valor incorrecto: {0} debe ser {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Cambiar las propiedades de los campos (ocultar, sólo lectura, permisos, etc)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ajustes p apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador logeado DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opciones de contacto, como 'Consultas de Ventas, Consultas de soporte, etc' cada una en una nueva línea o separados por comas." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Descargar -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insertar +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insertar apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seleccionar {0} DocType: Print Settings,Classic,Clásico DocType: Desktop Icon,Color,Color @@ -121,7 +121,7 @@ DocType: Translation,Translation,Traducción apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Sr. DocType: Custom Script,Client,Cliente -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Este formulario se ha modificado después de haber cargado +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Este formulario se ha modificado después de haber cargado DocType: User Permission for Page and Report,User Permission for Page and Report,Permiso de Usuario para Página y Reporte DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Si no se establece, la precisión de la moneda dependerá del formato de número" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Razón apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Por favor, especifique el usuario" DocType: Email Unsubscribe,Email Unsubscribe,Cancelar suscripción por correo electrónico DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Seleccione una imagen de ancho aprox 150px con fondo transparente para obtener mejores resultados. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,El primer usuario se convertirá en el administrador del sistema (puede cambiar esto más adelante). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,El primer usuario se convertirá en el administrador del sistema (puede cambiar esto más adelante). ,App Installer,Instalador de Aplicación DocType: Workflow State,circle-arrow-up,circle-arrow -up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Subiendo... DocType: Email Domain,Email Domain,Dominio de Correo Electrónico DocType: Workflow State,italic,itálica apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Para todos -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,"{0}: no se puede establecer ""importar"" sin crear primero" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,"{0}: no se puede establecer ""importar"" sin crear primero" apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Eventos y otros calendarios. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Todos los campos son necesarios para enviar el comentario apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Arrastre para ordenar las columnas @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Menú Lateral Estándar apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,No se puede eliminar la carpeta principal y sus carpetas adjuntas apps/frappe/frappe/config/desk.py +19,Files,Archivos apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Los permisos serán aplicados a los usuarios en base a las funciones / roles que tienen asignados. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Usted no está autorizado para enviar mensajes de correo electrónico relacionados a este documento. -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Usted no está autorizado para enviar mensajes de correo electrónico relacionados a este documento. +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Por favor, seleccione al menos 1 columna de {0} para ordenar / agrupar" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Comprobar esto si está probando su pago mediante la API de Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,No tienes permitido borrar un tema predeterminado del sitio web. DocType: Feedback Trigger,Example,Ejemplo @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Suscriptores totales apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un rol no tiene acceso en al Nivel 0, entonces los niveles más altos tampoco tendrán permisos." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Guardar como DocType: Communication,Seen,Visto -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Mostrar más detalles. +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Mostrar más detalles. DocType: System Settings,Run scheduled jobs only if checked,Ejecutar las tareas programadas solamente si están comprobadas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,sólo se mostrará si se habilitan los títulos de sección apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archivo @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Mostrar gráfico apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Se requiere un nombre y correo electrónico válidos DocType: DocType,Hide Heading,Ocultar encabezado DocType: Address,Current,Corriente -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documentos Relacionados apps/frappe/frappe/config/core.py +17,Groups of DocTypes,"Grupos de ""DocTypes""" DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-circle @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filtro apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},El nombre del campo {0} no puede tener caracteres especiales como {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Actualizar muchos valores al mismo tiempo. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Error : El documento se ha modificado después de haber sido abierto. -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"No se encontró ninguna plantilla de dirección predeterminada. Por favor, cree uno nuevo en Configuración> Impresión y marca> Plantilla de dirección." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} desconectado: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: no se puede establecer ""asignar envío"" si no es enviable" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: no se puede establecer ""asignar envío"" si no es enviable" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrado por "{0}" DocType: Salutation,Administrator,Administrador @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Título del Blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Roles estándar no pueden ser desactivados DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Boletín de noticias -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,No se puede utilizar sub-query en order by +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,No se puede utilizar sub-query en order by DocType: Web Form,Button Help,Botón de Ayuda DocType: Kanban Board Column,purple,púrpura DocType: About Us Settings,Team Members,Miembros del Equipo @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Obtenga su a apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Su suscripción expiró el {0}. Para renovar, {1}." DocType: Workflow State,plus-sign,signo-más apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuración ya completa -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Aplicación {0} no está instalada +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Aplicación {0} no está instalada DocType: Workflow State,Refresh,Actualizar DocType: Event,Public,Público apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nada para mostrar @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Gustado por apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Soporte de Correo Electrónico DocType: DocField,Print Hide If No Value,Impresión Oculta si no hay Valor DocType: Event,yellow,amarillo -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Es Campo Publicable debe ser un nombre de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Es Campo Publicable debe ser un nombre de campo válido apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Subir archivo adjunto DocType: Block Module,Block Module,Módulo de bloque apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Exportar Plantilla @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Bús DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Una nueva cuenta ha sido creada para usted en {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrucciones enviadas por correo electrónico -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Ingrese Destinatario(s) de Correo Electrónico +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Ingrese Destinatario(s) de Correo Electrónico DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Bandera de correo electrónico de la cola apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,No puede identificar abierto {0}. Intentar otra cosa. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,ID de mensaje DocType: Property Setter,Field Name,Nombre de Campo apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite no esta configurada apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,o -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nombre del módulo... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continuar +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nombre del módulo... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuar DocType: Custom Field,Fieldname,Nombre del campo DocType: Workflow State,certificate,certificado DocType: User,Tile,Mosaico @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostrar todas las versiones DocType: Workflow State,Print,Imprimir DocType: User,Restrict IP,Restringir IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Tablero apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,No se pueden enviar mensajes de correo electrónico en este momento apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Buscar o escribir un comando DocType: Communication,Timeline Name,Nombre de la línea de tiempo @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Gerente principal de ventas apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Un último paso apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Nombre del tipo de documento (DocType) al que quieres que se vincule este campo. Por ej. ""Cliente""" DocType: User,Roles Assigned,Roles asignados -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Buscar Ayuda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Buscar Ayuda DocType: Top Bar Item,Parent Label,Etiqueta Principal apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Su consulta ha sido recibida. Responderemos a la mayor brevedad posible. Si usted tiene alguna información adicional, puede responder a este correo." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Los permisos se trasladarán automáticamente a los informes estándar y las búsquedas . @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Editar encabezado DocType: File,File URL,URL del archivo DocType: Version,Table HTML,Tabla HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No se encontraron resultados para '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Añadir Suscriptores apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Eventos para hoy DocType: Email Alert Recipient,Email By Document Field,Email por documento @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Cantidad basada en el Campo apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,El usuario es obligatorio para compartir DocType: DocField,Hidden,Oculto DocType: Web Form,Allow Incomplete Forms,Permitir formularios incompletos -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} debe establecerse primero +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} debe establecerse primero apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Utilizar algunas palabras, evitar frases comunes." DocType: Workflow State,plane,Plano -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Vaya. Su pago ha fallado. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si va a cargar nuevos registros, y existen ""Secuencias e identificadores"", estas serán obligatorias" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Recibe alertas para Hoy +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Recibe alertas para Hoy apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType sólo puede ser renombrado por Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},cambio de valor de {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Por favor, consultar su correo electrónico para la verificación" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,El plegado no se puede utilizar al final del formulario +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,El plegado no se puede utilizar al final del formulario DocType: Communication,Bounced,Rebotados DocType: Deleted Document,Deleted Name,Nombre borrado apps/frappe/frappe/config/setup.py +14,System and Website Users,Usuarios del sistema y del sitio web @@ -382,19 +381,19 @@ apps/frappe/frappe/www/feedback.html +23,Your rating: ,Tu clasificación: apps/frappe/frappe/utils/data.py +568,{0} and {1},{0} y {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Agregar siempre ""Borrador"" al imprimir borradores de documentos" apps/frappe/frappe/core/doctype/communication/communication.js +228,Email has been marked as spam,El correo electrónico se ha marcado como spam -DocType: About Us Settings,Website Manager,Administrar página web +DocType: About Us Settings,Website Manager,Administrar Página Web apps/frappe/frappe/public/js/frappe/list/list_view.js +695,You selected Draft or Cancelled documents,Seleccionó documentos en Borrador o Cancelados apps/frappe/frappe/model/document.py +1044,Document Queued,documento en cola DocType: GSuite Templates,Destination ID,ID de Destino DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,Nombre del enlace -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,El campo {0} en la línea {1} no puede ocultarse y por defecto es obligatorio +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,El campo {0} en la línea {1} no puede ocultarse y por defecto es obligatorio DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Contraseña invalida: DocType: Print Settings,Send document web view link in email,Enviar documento vista web link en el email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Su opinión de documento {0} se guarda correctamente apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Anterior -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} filas de {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-moneda. Por ejemplo ""céntimo""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Seleccione el archivo subido @@ -405,20 +404,21 @@ DocType: Desktop Icon,Link,Vinculo apps/frappe/frappe/utils/file_manager.py +96,No file attached,No hay archivos adjuntos DocType: Version,Version,Versión DocType: User,Fill Screen,Pantalla completa -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No se puede mostrar este informe, debido a la falta de datos. Probablemente necesite los debidos permisos." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta predeterminada de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","No se puede mostrar este informe, debido a la falta de datos. Probablemente necesite los debidos permisos." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleccione Archivo apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Editar subiendo... -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Tipo de documento, por ejemplo; Cliente" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipo de documento, por ejemplo; Cliente" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La condición '{0}' no es válida DocType: Workflow State,barcode,Código de barras apps/frappe/frappe/config/setup.py +232,Add your own translations,Añada sus propias traducciones -DocType: Country,Country Name,Nombre del país +DocType: Country,Country Name,Nombre del País DocType: About Us Team Member,About Us Team Member,Miembro del Equipo Acerca de Nosotros apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","Los permisos se establecen en los roles y en los tipos de documentos (llamados 'DocType') Se establecen permisos como: lectura, escritura, crear, borrar, validar, cancelar, corregir, reporte, importar, exportar, imprimir, Email y los permisos de usuario" DocType: Event,Wednesday,Miércoles apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Además de reglas de permisos basado en roles, puede aplicar permisos de usuario basado en 'DocType'." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Estos permisos se aplican para todas las transacciones en las que se vincula el registro permitido. Por ejemplo, si la Compañia C se añade a los permisos del usuario X, el usuario X podrá ver las transacciones vinculadas a la Compañia C." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Campo de imagen debe ser un nombre de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Campo de imagen debe ser un nombre de campo válido DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,Identificación ( nombre) de la entidad cuya propiedad va a establecerse apps/frappe/frappe/limits.py +82,"To renew, {0}.","Para renovar, {0}." @@ -427,15 +427,15 @@ DocType: Web Form,Sidebar Items,Elementos de barra lateral apps/frappe/frappe/installer.py +125,App {0} already installed,Aplicación {0} ya instalada DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostrar Permisos -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,El campo de línea de tiempo debe ser un vínculo o enlace dinámico -apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rango de fechas +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,El campo de línea de tiempo debe ser un vínculo o enlace dinámico +apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rango de Fechas apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Página {0} de {1} DocType: About Us Settings,Introduce your company to the website visitor.,Dar a conocer su empresa al visitante del sitio Web. apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","La clave de cifrado no es válida, consulte site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,a DocType: Kanban Board Column,darkgrey,gris oscuro -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Terminado: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Terminado: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,No puede cambiar los detalles del usuario en el demo. Por favor cree una nueva cuenta en https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Por favor, duplicar esto para realizar los cambios" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Error en la generación del archivo PDF debido a problema con los enlaces de las imágenes @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Plegable apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Guardado. apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Con qué necesitas ayuda? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opciones para seleccionar. Cada opción en una nueva línea. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Cancelar permanentemente {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Cancelar permanentemente {0}? DocType: Workflow State,music,música DocType: Web Page,Settings,Configuración apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Por favor, especifique el 'DocType'" DocType: Print Format,Style Settings,Ajustes de Estilo -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Campo de orden {0} debe ser un nombre de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Campo de orden {0} debe ser un nombre de campo válido apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Más DocType: Contact,Sales Manager,Gerente de ventas apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Renombrar DocType: Print Format,Format Data,Formato de datos -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Como +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Como DocType: Customize Form Field,Customize Form Field,Personalizar campos de formulario apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Permitir al usuario DocType: OAuth Client,Grant Type,Tipo de subvención apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Indique que documentos pueden ser leídos por los usuarios apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listado de aplicación no permitido -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Utilice '%' como comodín -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Dominio de correo electrónico no está configurado para esta cuenta, crear uno?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Utilice '%' como comodín +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Dominio de correo electrónico no está configurado para esta cuenta, crear uno?" DocType: User,Reset Password Key,Restablecer contraseña/clave DocType: Email Account,Enable Auto Reply,Habilitar Respuesta Automática apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,No visto @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Establecer una sola vez DocType: Email Queue Recipient,Email Queue Recipient,Cola de correo electrónico de destinatarios DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nombre de usuario {0} ya existe -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: no se puede establecer ""importar"" puesto que {1} no es importable" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: no se puede establecer ""importar"" puesto que {1} no es importable" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Hay un error en su plantilla de dirección {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Desde Nombre Completo apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Usted no tiene acceso al Reporte: {0} DocType: User,Send Welcome Email,Enviar Email de bienvenida apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Debe subir un archivo CSV que contenga todos los permisos de usuario en el mismo formato que lo descargo. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Eliminar filtro +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Eliminar filtro DocType: Address,Daman and Diu,Daman and Diu DocType: Address,Personal,Personal apps/frappe/frappe/config/setup.py +113,Bulk Rename,Renombrar en Masa @@ -554,18 +554,18 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType no puede tener el formato de impresión predeterminado, use Customize Form" DocType: Report,Query,Consulta DocType: DocType,Sort Order,Ordenar por -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'En vista de lista' no está permitido para el tipo {0} en el renglón {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'En vista de lista' no está permitido para el tipo {0} en el renglón {1} DocType: Custom Field,Select the label after which you want to insert new field.,Seleccione la etiqueta con la cual desea insertar el nuevo campo. ,Document Share Report,Reporte de documentos compartidos DocType: User,Last Login,Último ingreso -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nombre de campo es requerido en la línea {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nombre de campo es requerido en la línea {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Columna DocType: Custom Field,Adds a custom field to a DocType,Añade un campo personalizado para el 'DocType' DocType: File,Is Home Folder,Es Carpeta apps/frappe/frappe/email/doctype/email_group/email_group.py +87,{0} is not a valid Email Address,{0} no es una dirección de correo electrónico válida apps/frappe/frappe/public/js/frappe/list/list_view.js +733,Select atleast 1 record for printing,Seleccionar al menos 1 registro para la impresión apps/frappe/frappe/core/doctype/has_role/has_role.py +13,User '{0}' already has the role '{1}',Usuario '{0}' ya tiene el papel '{1}' -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Cargar y sincronizar +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Cargar y Sincronizar apps/frappe/frappe/public/js/frappe/form/share.js +36,Shared with {0},Compartido con {0} apps/frappe/frappe/email/doctype/newsletter/newsletter.py +131,Unsubscribe,Darse de baja DocType: Communication,Reference Name,Nombre de referencia @@ -577,13 +577,13 @@ DocType: Integration Request,Authorized,Autorizado DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,"Los campos únicos, solo tienen un registro y no tienen tablas asociadas, los valores serán guardados en una columna aislada." DocType: System Settings,Enable Password Policy,Activar directiva de contraseñas DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Lista como [{ ""etiqueta"": _( ""trabajos""), ""ruta"": ""trabajos""}]" -apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},El tipo de campo no se puede cambiar para {0} +apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},El Tipo de Campo no se puede cambiar para {0} DocType: Workflow,Rules defining transition of state in the workflow.,Reglas que definen la transición del estado en el flujo de trabajo. DocType: File,Folder,Carpeta DocType: DocField,Index,Índice DocType: Email Group,Newsletter Manager,Administrador de boletínes apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opción 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Todos los mensajes +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Entrar de error durante peticiones. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ha sido añadido al grupo de correo electrónico. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicador DocType: DocShare,Everyone,Todos DocType: Workflow State,backward,hacia atrás -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: sólo se permite una regla con el mismo rol, nivel y {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: sólo se permite una regla con el mismo rol, nivel y {1}" DocType: Email Queue,Add Unsubscribe Link,Añadir Enlace Darse de baja apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Sin comentarios aún. Iniciar una nueva discusión. DocType: Workflow State,share,cuota @@ -610,8 +610,8 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Última a apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,no permitido. apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Ver Suscriptores apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sra. -DocType: Website Theme,Background Color,Color de fondo -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo." +DocType: Website Theme,Background Color,Color de Fondo +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Ha ocurrido un error al enviar el correo electrónico. Por favor, inténtelo de nuevo." DocType: Portal Settings,Portal Settings,Configuración del portal DocType: Web Page,0 is highest,0 es más alto apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,¿Seguro que desea volver a vincular esta comunicación a {0}? @@ -619,10 +619,10 @@ apps/frappe/frappe/www/login.html +104,Send Password,Enviar contraseña apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +45,Attachments,Adjuntos apps/frappe/frappe/website/doctype/web_form/web_form.py +133,You don't have the permissions to access this document,Usted no está autorizado para acceder a este documento DocType: Language,Language Name,Nombre del lenguaje -DocType: Email Group Member,Email Group Member,Correo electrónico del grupo miembro +DocType: Email Group Member,Email Group Member,Miembro de Grupo de Correo Electrónico DocType: Email Alert,Value Changed,Valor Cambiado apps/frappe/frappe/model/base_document.py +309,Duplicate name {0} {1},Nombre duplicado {0} {1} -DocType: Web Form Field,Web Form Field,Campo de formulario web +DocType: Web Form Field,Web Form Field,Campo de Formulario Web apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +255,Hide field in Report Builder,Ocultar campo en el generador de reportes apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +21,Edit HTML,Editar HTML apps/frappe/frappe/core/page/permission_manager/permission_manager.js +504,Restore Original Permissions,Restaurar permisos originales @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Configuración de contácto apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Buscando ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Se alcanzo el límite máximo de archivos adjuntos para este registro. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Se alcanzo el límite máximo de archivos adjuntos para este registro. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Los siguientes campos obligatorios deben ser llenados:
DocType: Email Alert,View Properties (via Customize Form),Ver propiedades (vía personalizar formulario) DocType: Note Seen By,Note Seen By,Nota vista por @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,El generador de reportes es manejado directamente por el 'report builder' no hay nada que hacer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Por favor verifica tu dirección de correo apps/frappe/frappe/model/document.py +903,none of,ninguno de -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Enviarme una copia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Enviarme una copia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Subir permisos de usuario DocType: Dropbox Settings,App Secret Key,Clave Secreta de Aplicación apps/frappe/frappe/config/website.py +7,Web Site,Sitio Web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Los elementos marcados se mostrarán en el escritorio -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} no puede establecerse para tipos individuales +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} no puede establecerse para tipos individuales apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Tablero Kanban {0} no existe. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} están viendo actualmente este documento DocType: ToDo,Assigned By Full Name,Asignado por Nombre Completo apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} actualizado -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,El reporte no se puede definir para un solo tipo +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,El reporte no se puede definir para un solo tipo apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Hace {0} días DocType: Email Account,Awaiting Password,Esperando Contraseña DocType: Address,Address Line 1,Dirección línea 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Diferentes estados para el flujo de trabajo (Por ejemplo: Borrador, Aprobado, Cancelado)" DocType: Print Settings,Allow Print for Draft,Permitir Impresión para Borrador apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Establecer cantidad -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Presentar este documento para confirmar +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Presentar este documento para confirmar DocType: Contact,Unsubscribed,No suscrito apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Asignar roles personalizados para la página y reporte apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Clasificación: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Herramienta de importación de datos DocType: Address,Dadra and Nagar Haveli,Dadra y Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Subiendo archivos favor espere durante unos segundos. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Adjunte su Fotografía +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Adjunte su Fotografía apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valores de Fila Modificados DocType: Workflow State,Stop,Detener DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Enlace a la página que desea abrir. Dejar en blanco si desea que sea un grupo principal. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Alinear etiquetas a la izquierda DocType: Help Article,Expert,Experto DocType: Workflow State,circle-arrow-right,circle- arrow-right DocType: LDAP Settings,LDAP Server Url,Url del servidor LDAP -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,No se puede abrir instancia cuando su {0} esta abierto/a +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,No se puede abrir instancia cuando su {0} esta abierto/a apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,En cola para instalar DocType: Custom DocPerm,Custom DocPerm,DocPerm Personalizado DocType: Newsletter,Send Unsubscribe Link,Enviar Enlace de cancelar suscripción @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Aplicación {0} eliminada DocType: Custom DocPerm,Apply User Permissions,Aplicar permisos de usuario. DocType: User,Modules HTML,Módulos HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuración> Administrador de permisos de usuario apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Valores faltantes requeridos DocType: DocType,Other Settings,Otros ajustes DocType: Social Login Keys,Frappe,Frapé @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ningún documento seleccionado apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Evento -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","hace {0}, {1} escribió:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","hace {0}, {1} escribió:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,No se puede eliminar de campo estándar. Solo puede ocultarlo si lo desea DocType: Top Bar Item,For top bar,Por la barra superior apps/frappe/frappe/utils/bot.py +148,Could not identify {0},No se pudo identificar {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Acceso a Escritorio DocType: Workflow State,minus,menos apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Error de servidor: Se recomienda consultar los registros o contacte el soporte técnico. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Correo electrónico de bienvenida enviado -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Se esta preparando el sistema para el primer uso. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Se esta preparando el sistema para el primer uso. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Destacado apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Ya está Registrado DocType: System Settings,Float Precision,Factor de Redondeo @@ -753,10 +752,10 @@ DocType: Web Form,Allow Print,Permitir Imprimir apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No hay aplicaciones instaladas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marque el campo obligatorio DocType: Communication,Clicked,Teclear -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},No tiene permiso para '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},No tiene permiso para '{0} ' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programado para enviar -DocType: DocType,Track Seen,Visto en la pista +DocType: DocType,Track Seen,Seguimiento de vistas apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Este método sólo se puede utilizar para crear un comentario. DocType: Event,orange,naranja apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,No hay {0} @@ -783,7 +782,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Colum DocType: Email Alert Recipient,Email By Role,Correo Electrónico por Rol apps/frappe/frappe/core/page/permission_manager/permission_manager.js +301,Users with role {0}:,Los usuarios con rol {0}: apps/frappe/frappe/desk/page/applications/applications.py +83,Installing App {0},Instalando Aplicación {0} -DocType: Print Format,Custom Format,Formato personalizado +DocType: Print Format,Custom Format,Formato Personalizado DocType: Workflow State,random,aleatorio DocType: Newsletter Email Group,Newsletter Email Group,Boletín Grupo de correo electrónico DocType: Dropbox Settings,Integrations,Integraciones @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Izquierda- DocType: User,Simultaneous Sessions,Sesiones simultáneas DocType: OAuth Client,Client Credentials,Credenciales del Cliente -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Abrir un módulo o herramienta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Abrir un módulo o herramienta DocType: Communication,Delivery Status,Estado del envío DocType: Module Def,App Name,Nombre de la Aplicación apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Tamaño máximo de archivo permitido es {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Comunicación de referencia DocType: Email Queue,Unsubscribe Method,Método para darse de baja DocType: GSuite Templates,Related DocType,DocType Relacionado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Editar para agregar contenido -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Seleccione Idiomas -apps/frappe/frappe/__init__.py +510,No permission for {0},Sin permiso para {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Seleccione Idiomas +apps/frappe/frappe/__init__.py +509,No permission for {0},Sin permiso para {0} DocType: DocType,Advanced,Anticipado apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Parece que la clave de API o clave secreta de API secreto está mal !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referencia: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Seleccione el tipo de formulario apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No hay registros etiquetados. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Quitar Campo DocType: User,Send Password Update Notification,Enviar notificación de cambio de contraseña -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Precaución, autorizando 'DocType'" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Precaución, autorizando 'DocType'" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formatos personalizados para impresión, correo electrónico" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Actualizado Para Nueva Versión DocType: Custom Field,Depends On,Depende de @@ -911,7 +910,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +6,No Data,No DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Enlace es la página de inicio del sitio web . Links estándar (índice, inicio de sesión, productos , blog, sobre , contacto)" apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Error de autenticación al recibir correos electrónicos de cuenta de correo electrónico {0}. Mensaje del servidor: {1} apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,values and dates,valores y fechas -DocType: Custom Field,Custom Field,Campo personalizado +DocType: Custom Field,Custom Field,Campo Personalizado apps/frappe/frappe/email/doctype/email_alert/email_alert.py +26,Please specify which date field must be checked,Por favor especifique la fecha que debe ser verificada DocType: Custom DocPerm,Set User Permissions,Establecer permisos de usuario DocType: Email Account,Email Account Name,Cuenta de correo electrónico @@ -920,7 +919,7 @@ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +21 DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.",Boletines para contactos e iniciativas. DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","por ejemplo ""Soporte"", ""Ventas"", ""Jerry Yang""" -apps/frappe/frappe/public/js/frappe/form/workflow.js +115,Document Status transition from,Estado de documento transición de +apps/frappe/frappe/public/js/frappe/form/workflow.js +115,Document Status transition from,Transición del Estado del Documento desde DocType: DocField,Description,Descripción DocType: Print Settings,Repeat Header and Footer in PDF,Repetir encabezado y pie de página en PDF DocType: Address Template,Is Default,Es por defecto @@ -948,8 +947,9 @@ DocType: System Settings,Date and Number Format,Formato de Fecha y Número apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Tamaño máximo de adjunto es {0} MB apps/frappe/frappe/model/document.py +902,one of,uno de apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Por favor seleccione archivo para copiar -apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Comprobación de un momento +apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Comprobando un momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Mostrar etiquetas +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Si está activado Permiso de usuario estricto y se ha definido Permiso de usuario para un DocType para un usuario, todos los documentos en los que el valor del enlace esté en blanco no se mostrarán a ese Usuario" DocType: Address,Billing,Facturación DocType: Email Queue,Not Sent,No enviado DocType: Web Form,Actions,Acciones @@ -974,11 +974,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select apps/frappe/frappe/utils/nestedset.py +201,Cannot delete {0} as it has child nodes,"No se puede eliminar {0}, ya que contiene sub-grupos" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +47,{0} minutes ago,Hace {0} minutos DocType: Kanban Board Column,lightblue,azul claro -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Seleccionar columnas +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Select Columns,1. Seleccionar Columnas apps/frappe/frappe/templates/includes/list/filters.html +19,clear,Limpiar apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Los eventos diarios deben terminar el mismo día. DocType: Communication,User Tags,Etiquetas de usuario apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Trayendo Imagenes... +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuración> Usuario DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Descargando aplicación {0} DocType: Communication,Feedback Request,Solicitud de retroalimentación @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Copias de seguridad apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Agregar contacto DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Enviar siempre a estos identificadores. Cada dirección de correo electrónico en una nueva fila -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ocultar detalles +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ocultar detalles DocType: Workflow State,Tasks,Tareas DocType: Event,Tuesday,Martes DocType: Blog Settings,Blog Settings,Configuración del Blog @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Guardar un archivo Python en la misma carpeta donde esta guardada y retornar una columna con el resultado. DocType: DocType,Sort Field,Ordenar por campo DocType: Razorpay Settings,Razorpay Settings,Ajustes Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Editar filtro -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,El campo {0} de tipo {1} no puede ser obligatorio -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Por ejemplo: Si aplica permisos a los usuarios, estos serán comprobados por los documentos, pero si no existen permisos para un reporte por usuario en especifico, todos los reportes podrán ser vistos por este usuario." +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Editar filtro +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,El campo {0} de tipo {1} no puede ser obligatorio apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Añadir más apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Ocultar Gráfico DocType: System Settings,Session Expiry Mobile,Vencimiento de sesión en dispositivo móvil @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Retrasado apps/frappe/frappe/config/setup.py +128,List of backups available for download,Lista de las copias de seguridad disponibles para su descarga apps/frappe/frappe/www/login.html +89,Sign up,Regístrate DocType: Test Runner,Output,Salida +DocType: Email Alert,Set Property After Alert,Establecer propiedad después de la alerta apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Agregar campos a los formularios. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está mal con la configuración de PayPal del sitio DocType: File,rgt,rgt @@ -1039,11 +1040,12 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,hoja DocType: Portal Menu Item,Portal Menu Item,Elemento del Menú del Portal DocType: User Email,Email ID,ID de Correo Electrónico +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Si se selecciona Aplicar permisos de usuario para Report DocType pero no se definen permisos de usuario para Informe para un usuario, todos los informes se muestran a ese usuario" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Una lista de los recursos que el cliente de aplicación tendrá acceso a la vez que el usuario lo permite.
por ejemplo, el proyecto" DocType: Translation,Translated Text,Texto traducido -DocType: Contact Us Settings,Query Options,Opciones de consulta +DocType: Contact Us Settings,Query Options,Opciones de Consulta apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +159,Import Successful!,¡Importación Exitosa! -apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +40,Updating Records,Registros de actualización +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +40,Updating Records,Registros de Actualización DocType: Error Snapshot,Timestamp,Marca de tiempo DocType: Patch Log,Patch Log,Bitácora de parches apps/frappe/frappe/utils/bot.py +164,Hello {0},Hola {0} @@ -1053,10 +1055,10 @@ apps/frappe/frappe/www/me.html +38,Profile,Perfil DocType: Communication,Sent or Received,Enviado o Recibido DocType: DefaultValue,Key,Clave DocType: Address,Contacts,Contactos -DocType: System Settings,Setup Complete,Configuración completa. +DocType: System Settings,Setup Complete,Configuración Completa. apps/frappe/frappe/config/setup.py +66,Report of all document shares,Informe de todos los documentos compartidos apps/frappe/frappe/www/update-password.html +18,New Password,Nueva Contraseña -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtro {0} falta +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtro {0} falta apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,¡Lo siento! No se pueden eliminar los comentarios generados automáticamente DocType: Website Theme,Style using CSS,Estilo con CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referencia a 'DocType' @@ -1080,7 +1082,7 @@ apps/frappe/frappe/www/message.html +19,Status: {0},Estado: {0} DocType: DocShare,Document Name,Nombre de documento apps/frappe/frappe/core/doctype/communication/communication.js +82,Mark as Spam,Marcar como correo no deseado DocType: ToDo,Medium,Medio -DocType: Customize Form,Customize Form,Personalizar formulario +DocType: Customize Form,Customize Form,Personalizar Formulario apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,Campo obligatorio: establecer rol para DocType: Currency,A symbol for this currency. For e.g. $,"Un símbolo para esta moneda. Por ejemplo, $" apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Frappe Framework @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Módulos de Bloque apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Revirtiendo longitud a {0} para '{1}' en '{2}'; Ajuste de la longitud como {3} causará truncamiento de datos. DocType: Print Format,Custom CSS,CSS personalizado apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Añadir un comentario -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorado: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorado: {0} a {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Bitácora de error en eventos automáticos (planificador). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),No es un archivo separado por comas válido (archivo CSV) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Por defecto entrante DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Si está desactivado, este rol será eliminado de todos los usuarios." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Ayuda en Búsqueda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ayuda en Búsqueda apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrado pero discapacitados DocType: DocType,Hide Copy,Ocultar copia apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Limpiar todos los roles @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,País apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Direcciones DocType: Communication,Shared,Compartido -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Adjuntar Documento para Imprimir +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Adjuntar Documento para Imprimir DocType: Bulk Update,Field,Campo DocType: Communication,Received,Recibido DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1166,16 +1168,16 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +60,Append To is DocType: Contact,Salutation,Saludo. DocType: Communication,Rejected,Rechazado DocType: Website Settings,Brand,Marca -DocType: Report,Query Report,Informe de consultas +DocType: Report,Query Report,Informe de Consultas DocType: User,Set New Password,Establecer nueva contraseña DocType: User,Github User ID,ID de usuario Github apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Si el tipo de documento -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","No se puede eliminar o cancelar debido a {0} {1} está vinculada con {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","No se puede eliminar o cancelar debido a {0} {1} está vinculada con {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Aplicación Desconocido {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S no es un formato de informe válido. Formato del informe debe \ uno de los siguientes% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},El campo {0} aparece varias veces en las lineas {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},El campo {0} aparece varias veces en las lineas {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} de {1} a {2} en fila # {3} DocType: Communication,Expired,Expirado DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Número de columnas para un campo en una cuadrícula (Total de columnas en una cuadrícula debe ser inferior a 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,¿Tiene una cuenta? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Desconocido Formato de impresión: {0} DocType: Workflow State,arrow-down,flecha hacia abajo apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Plegar -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},El usuario no tiene permitido eliminar {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},El usuario no tiene permitido eliminar {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Última actualización el DocType: Help Article,Likes,Me Gustas DocType: Website Settings,Top Bar,Barra Superior DocType: GSuite Settings,Script Code,Código Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Crear correo electrónico de usuario -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,No hay Permisos Especificados -apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Configuración global: Los usuarios sólo podrán elegir los iconos controladas +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,No hay Permisos Especificados +apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Configuración Global: Los usuarios sólo podrán elegir los iconos marcados apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} no encontrado DocType: Custom Role,Custom Role,Rol Personalizado apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Inicio / Carpeta de Prueba 2 DocType: System Settings,Ignore User Permissions If Missing,"Ignorar los permisos de usuario, en caso que no existan." -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Por favor, guarde el documento antes de subirlo." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Por favor, guarde el documento antes de subirlo." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Ingrese su contraseña DocType: Dropbox Settings,Dropbox Access Secret,Acceso Secreto a Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Añadir otro comentario apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Editar DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Cancelado la suscripción a Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,El plegado debe ir antes del salto de pagina +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,El plegado debe ir antes del salto de pagina apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Última modificación por DocType: Workflow State,hand-down,mano-abajo DocType: Address,GST State,Estado del GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,"{0}: no se puede establecer ""cancelar"" sin enviar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,"{0}: no se puede establecer ""cancelar"" sin enviar" DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Hubo errores . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redireccionamiento obligado a Auth Code @@ -1222,11 +1224,11 @@ DocType: Workflow State,Inbox,Bandeja de Entrada DocType: Event,Red,Rojo DocType: Workflow State,Tag,Etiqueta. DocType: Custom Script,Script,Script -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mi configuración +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mi Configuración DocType: Website Theme,Text Color,Color de texto DocType: Desktop Icon,Force Show,Forzar a Mostrar apps/frappe/frappe/auth.py +78,Invalid Request,Solicitud inválida -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Este formulario no tiene ninguna entrada +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Este formulario no tiene ninguna entrada apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},El vencimiento de sesión debe estar en formato {0} DocType: Website Sidebar Item,Group,Grupo DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Seleccione el objetivo = ""_blank"" para abrir en una nueva página." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorar errores de codificación. DocType: Workflow State,wrench,llave inglesa apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,No especificado -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuración> Usuario DocType: Authentication Log,Date,Fecha DocType: Website Settings,Disable Signup,Deshabilitar registro apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Tome asiento mientras el sistema está siendo configurado. Esto puede tomar unos minutos. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Agregar comentario DocType: DocField,Mandatory,Obligatorio apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Módulo para Exportar -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: no se ha definido ningún conjunto de permisos básicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: no se ha definido ningún conjunto de permisos básicos apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Su suscripción expirará en {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},El enlace de descarga para el backup será enviado por correo electrónico a la siguiente dirección electrónica: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significado de Validar, Cancelar y Corregir" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,consulta de informe apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Asignado a {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtros guardados DocType: DocField,Percent,Por ciento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Por favor, defina los filtros" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Por favor, defina los filtros" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Vinculado Con DocType: Workflow State,book,Libro DocType: Website Settings,Landing Page,Pagina de inicio -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Error en Script Personalizado +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Error en Script Personalizado apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nombre apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Solicitud de importación en cola. Este proceso puede tardar unos instantes, por favor, sea paciente." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,No hay permisos establecidos para este criterio. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Permitir inicio de sesi apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Usted no tiene permisos suficientes para acceder a este apartado. Por favor, póngase en contacto con su administrador para obtener acceso." DocType: Custom Field,Custom,Personalizar apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Configuración de alertas Email basado en distintos criterios. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Publicar bajo {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Publicar bajo {0} DocType: Email Alert,Send alert if date matches this field's value,Enviar una alarma si la fecha coincide con el valor de este campo DocType: Workflow,Transitions,Transiciones apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Eliminar {0} y borrar todos los datos? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Iniciar después DocType: Print Format,Monospace,Monoespaciado DocType: Letter Head,Printing,Impresión DocType: Workflow State,thumbs-up,pulgar-arriba -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Crea una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precisión debe estar entre 1 y 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precisión debe estar entre 1 y 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,y DocType: Error Snapshot,Frames,Marcos @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Enlace a la Imagen DocType: Auto Email Report,Report Filters,Filtros de informe apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ahora DocType: Workflow State,step-backward,retroceder -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Por favor, establezca las llaves de acceso de Dropbox en la configuración de su sistema" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar este registro para permitir el envío a esta dirección de correo electrónico apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Sólo los campos obligatorios son necesarios para los nuevos registros. Puede eliminar columnas de carácter no obligatorio, si lo desea." @@ -1305,7 +1305,7 @@ apps/frappe/frappe/utils/data.py +734,"Filter must have 4 values (doctype, field apps/frappe/frappe/utils/bot.py +89,show,mostrar DocType: Address Template,Address Template,Plantillas de direcciones DocType: Workflow State,text-height,text-height -DocType: Web Form Field,Max Length,Longitud máxima +DocType: Web Form Field,Max Length,Longitud Máxima DocType: Workflow State,map-marker,mapa del marcador apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Validar una incidencia DocType: Event,Repeat this Event,Repetir este evento @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Es carpeta Archivos adjuntos apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Expandir todo apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Identificación de usuario válido requerido. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-Abrir -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ha cancelado el pago -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Por favor, seleccione un archivo csv con datos válidos" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Por favor, seleccione un archivo csv con datos válidos" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} dejó de compartir este documento con {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,El cambio de estado de documento de {0} a {1} no está permitido DocType: DocType,"Make ""name"" searchable in Global Search","Hacer el ""nombre"" buscable en la búsqueda global" @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Val DocType: Help Category,Help Category,Categoría de Ayuda apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,El usuario {0} está deshabilitado apps/frappe/frappe/www/404.html +8,Page missing or moved,Página no encontrada -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Editar {0} propiedades DocType: DocType,Route,Ruta apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Configuración de la pasarela de pago Razorpay DocType: DocField,Name,Nombre apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Se ha superado el espacio máximo de {0} para su plan. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Buscar en los documentos DocType: OAuth Authorization Code,Valid,Válido -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Abrir vínculo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tu lenguaje +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Abrir vínculo +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tu Lenguaje apps/frappe/frappe/desk/form/load.py +46,Did not load,No se cargó apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Añadir fila DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Solicitud de DocType: Address,Lakshadweep Islands,Islas Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Puede escribir apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Algunos documentos como facturas, no se pueden cambiar una vez guardados. El estado final de dichos documentos se llama 'Validado'. Puede restringir qué roles y/o usuarios pueden validar los documentos." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,No tiene permitido exportar este reporte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,No tiene permitido exportar este reporte apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 elemento seleccionado DocType: Newsletter,Test Email Address,Dirección de correo electrónico de prueba DocType: ToDo,Sender,Remitente @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Importar.zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Identificador del Documento DocType: Print Settings,Letter,Carta -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Campo de imagen debe ser de tipo Adjuntar imagen +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Campo de imagen debe ser de tipo Adjuntar imagen DocType: DocField,Columns,columnas DocType: Async Task,Succeeded,Terminado apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Los siguientes campos son obligatorios en {0} @@ -1412,10 +1410,10 @@ DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare DocType: Event,Friday,Viernes apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +758,Edit in full page,Editar en página completa -DocType: Authentication Log,User Details,Detalles de usuario +DocType: Authentication Log,User Details,Detalles de Usuario DocType: Report,Add Total Row,Añadir Fila Total apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +19,For example if you cancel and amend INV004 it will become a new document INV004-1. This helps you to keep track of each amendment.,Por ejemplo si se cancela y corrige INV004 se convertirá en un nuevo documento INV004-1. Esto le ayuda a mantener un registro de cada modificación. -apps/frappe/frappe/config/setup.py +166,Setup Reports to be emailed at regular intervals,Informes de configuración para enviar por correo electrónico a intervalos regulares +apps/frappe/frappe/config/setup.py +166,Setup Reports to be emailed at regular intervals,Configurar Informes para enviar por correo electrónico a intervalos regulares DocType: Workflow Document State,0 - Draft; 1 - Submitted; 2 - Cancelled,0 - Borrador; 1 - Enviado; 2 - Cancelado DocType: File,Attached To DocType,Asociado a 'DocType' DocType: DocField,Int,Int @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Editor de texto apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Ajustes de pagina 'acerca de nosotros' apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Editar HTML personalizado DocType: Error Snapshot,Error Snapshot,Error de Instantánea -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,En +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,En DocType: Email Alert,Value Change,Cambio de Valor DocType: Standard Reply,Standard Reply,Respuesta automática apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ancho de la caja de entrada @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilice este nombre de campo para generar título apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importar correo electrónico de: apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Invitar como usuario -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Seleccione adjuntos +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Seleccione adjuntos apps/frappe/frappe/model/naming.py +94, for {0},para {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Hubo errores. Por favor, informe de esto." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,No está autorizado a imprimir este documento +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,No está autorizado a imprimir este documento apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Por favor, establece el valor en la tabla de filtros Filtro de informe." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Cargando Reporte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Cargando Reporte apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Su suscripción expira hoy. DocType: Page,Standard,Estándar apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Adjuntar Archivo @@ -1485,13 +1483,13 @@ DocType: Contact,Replied,Respondido DocType: Newsletter,Test,Prueba DocType: Custom Field,Default Value,Valor predeterminado apps/frappe/frappe/public/js/frappe/ui/messages.js +229,Verify,Verificar -DocType: Workflow Document State,Update Field,Actualizar campo +DocType: Workflow Document State,Update Field,Actualizar Campo apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed for {0},Error en la validación de {0} apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensiones Regionales DocType: LDAP Settings,Base Distinguished Name (DN),Nombre distinguido base (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Abandonar esta conversación -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Las opciones no establecidas para el campo enlazado {0} -DocType: Customize Form,"Must be of type ""Attach Image""",Debe ser del tipo "Adjuntar imagen" +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Las opciones no establecidas para el campo enlazado {0} +DocType: Customize Form,"Must be of type ""Attach Image""","Debe ser del tipo ""Adjuntar Imagen""" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Deselecciona todo apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},No se puede desmarcar 'solo lectura' para el campo {0} DocType: Auto Email Report,Zero means send records updated at anytime,Cero significa enviar registros actualizados en cualquier momento @@ -1513,7 +1511,7 @@ DocType: Dropbox Settings,Backup Frequency,Frecuencia de copia de seguridad DocType: Workflow State,Inverse,inverso DocType: DocField,User permissions should not apply for this Link,Los permisos de usuario no deben aplicarse para este enlace apps/frappe/frappe/model/naming.py +94,Invalid naming series (. missing),Secuencias y identificadores inválidos (. Faltante) -apps/frappe/frappe/core/page/usage_info/usage_info.html +20,Current Users,Usuarios actuales +apps/frappe/frappe/core/page/usage_info/usage_info.html +20,Current Users,Usuarios Actuales DocType: Language,Language,Idioma apps/frappe/frappe/public/js/frappe/desk.js +16,Browser not supported,Navegador no compatible apps/frappe/frappe/templates/pages/integrations/stripe_checkout.py +27,Some information is missing,Falta información @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Nota apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Reporte de Error apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Condiciones de la Retroalimentación no coinciden -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,El campo de línea de tiempo debe ser un nombre de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,El campo de línea de tiempo debe ser un nombre de campo válido DocType: Currency,Symbol,Símbolo. -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Línea #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Línea #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nueva contraseña enviada por correo electrónico apps/frappe/frappe/auth.py +245,Login not allowed at this time,No se permite iniciar sesión en este momento DocType: Email Account,Email Sync Option,Opción de Sincronizar Correo Electrónico @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Texto apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Respuestas automáticas a tareas comunes apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Envío por defecto DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Gustado por {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Gustado por {0} DocType: Footer Item,Footer Item,Ítem de Pie de Página ,Download Backups,Descargar Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Inicio / Carpeta Prueba 1 @@ -1571,15 +1569,15 @@ DocType: Communication,Soft-Bounced,Rebotes livianos apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +38,Seems Publishable Key or Secret Key is wrong !!!,Parece que la clave publica o clave secreta es incorrecta! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,Ayuda rápida para establecer permisos DocType: Tag Doc Category,Doctype to Assign Tags,Doctype para asignar etiquetas -apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapses,Mostrar recaídas +apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapses,Mostrar Recaídas apps/frappe/frappe/core/doctype/communication/communication.js +241,Email has been moved to trash,El correo electrónico se ha movido a la papelera DocType: Report,Report Builder,Generador de reportes DocType: Async Task,Task Name,Nombre de tarea apps/frappe/frappe/app.py +145,"Your session has expired, please login again to continue.","Tu sesión ha caducado, vuelve a iniciar sesión para continuar." -DocType: Communication,Workflow,Flujos de trabajo +DocType: Communication,Workflow,Flujos de Trabajo apps/frappe/frappe/desk/page/applications/applications.py +99,Queued for backup and removing {0},En cola para copia de seguridad y eliminar {0} DocType: Workflow State,Upload,Subir -DocType: System Settings,Date Format,Formato de fecha +DocType: System Settings,Date Format,Formato de Fecha apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published,No publicado apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Cancel).","Acciones para flujo de trabajo (p.ej. aprobar, cancelar)." DocType: Workflow State,flag,Bandera @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Alinear texto apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},El nombre no puede contener caracteres especiales como {0} DocType: Contact Us Settings,Forward To Email Address,Reenviar a la dirección de correo electrónico apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostrar todos los datos -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,El campo del título debe ser un nombre válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,El campo del título debe ser un nombre válido apps/frappe/frappe/config/core.py +7,Documents,Documentos DocType: Email Flag Queue,Is Completed,Esta completado apps/frappe/frappe/www/me.html +22,Edit Profile,Editar perfil @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",aparecerá este campo sólo si el nombre del campo definido aquí tiene valor o las reglas son verdaderos (ejemplos): eval myfield: doc.myfield == 'Mi Valor' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Hoy +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hoy apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Una vez que haya establecido esto, los usuarios sólo podrán acceder a ciertos documentos, (por ejemplo: Entrada de blog si esta relacionado con Blogger)." DocType: Error Log,Log of Scheduler Errors,Bitácora de errores en el programador de tareas DocType: User,Bio,Biografía @@ -1606,7 +1604,7 @@ DocType: OAuth Client,App Client Secret,Clave Secreta de Aplicación apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Validando apps/frappe/frappe/desk/page/activity/activity.js +89,Show Likes,Mostrar Likes DocType: DocType,UPPER CASE,MAYÚSCULAS -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,HTML personalizado +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +189,Custom HTML,HTML Personalizado apps/frappe/frappe/core/doctype/file/file_list.js +77,Enter folder name,Introduzca nombre de carpeta apps/frappe/frappe/core/page/permission_manager/permission_manager.js +54,Select Role,Seleccione rol DocType: Communication,Deleted,Eliminado @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 estrella es más bajo y 5 estrellas es la calificación más alta DocType: Event,Ref Name,Nombre Ref. DocType: Web Page,Center,Centro +DocType: Email Alert,Value To Be Set,Valor a establecer apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primer nivel DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representa los estados permitidos en un solo documento y el rol asignado para el cambio del estado apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Actualizar formulario @@ -1642,20 +1641,20 @@ DocType: DocType,Has Web View,Tiene vista Web apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","El nombre del DocType debe comenzar con una letra y sólo puede consistir en letras, números, espacios y guiones bajos" DocType: Communication,Spam,Correo no deseado DocType: Integration Request,Integration Request,Solicitud de integración -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Estimado +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Estimado DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Cuentas de Usuario DocType: Web Page,HTML for header section. Optional,HTML para la sección de encabezado. opcional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Esta característica es nuevo y todavía experimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Máximo: {0} lineas permitidas +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Máximo: {0} lineas permitidas DocType: Email Unsubscribe,Global Unsubscribe,Darse de baja globalmente apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Esta es una contraseña muy común. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Ver DocType: Communication,Assigned,Asignado DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Seleccionar formato de impresión +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Seleccionar formato de impresión apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,patrones de teclado cortos son fáciles de adivinar -DocType: Portal Settings,Portal Menu,Menú del portal +DocType: Portal Settings,Portal Menu,Menú del Portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longitud de {0} debe estar entre 1 y 1000 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Buscar por cualquier cosa DocType: DocField,Print Hide,Ocultar en impresión @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,El usuario no puede buscar apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Formato de salida no válido DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Aplicar esta regla, si el usuario es el propietario" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Será su ID de inicio de sesión +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Será su ID de inicio de sesión apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Crear reporte DocType: Note,Notify users with a popup when they log in,Notificar a los usuarios con un mensaje emergente cuando se conectan apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} no existe, seleccione un nuevo objetivo para fusionar" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,Permisos de Roles apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Actualizar DocType: Error Snapshot,Snapshot View,Vista Instantánea apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Por favor, guarde el boletín antes de enviarlo" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Las opciones deben ser validas para el 'DocType' en el campo {0} de la línea {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} año (s) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Las opciones deben ser validas para el 'DocType' en el campo {0} de la línea {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Editar propiedades DocType: Patch Log,List of patches executed,Lista de parches aplicados apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ya ha sido dado de baja -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Medio de comunicación +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Medio de comunicación DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Por favor seleccione otro método de pago. Razorpay no admite transacciones en moneda '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,En cola para copia de seguridad. Se puede tomar un par de minutos a una hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Register OAuth cliente de aplicación -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no puede ser ""{2}"". Debe ser uno de ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} no puede ser ""{2}"". Debe ser uno de ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} o {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Mostrar u ocultar los iconos del escritorio apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Actualización de contraseña @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Mostrar saltos de línea después de las Secciones DocType: Blogger,Short Name,Nombre corto apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Página {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Usted está seleccionando la opción de sincronización como todo, se vuelve a sincronizar todos los \ leer, así como los mensajes no leídos desde el servidor. Esto también puede causar la duplicación \ de comunicaciónes (e-mails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Tamaño de archivos @@ -1758,9 +1758,10 @@ DocType: Contact,Purchase Manager,Gerente de compras DocType: Custom Script,Sample,Muestra. apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Etiquetas sin Categorizar DocType: Event,Every Week,Cada semana +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Cuenta de correo electrónico no configurada. Crea una nueva cuenta de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Haga clic aquí para verificar su uso o actualizar a un plan superior DocType: Custom Field,Is Mandatory Field,Es un campo obligatorio -DocType: User,Website User,Usuario del sitio web +DocType: User,Website User,Usuario del Sitio Web apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,No es igual DocType: Integration Request,Integration Request Service,Solicitud de Servicio de Integración DocType: Website Script,Script to attach to all web pages.,Script para unir a todas las páginas web. @@ -1771,7 +1772,7 @@ DocType: Auto Email Report,Only Send Records Updated in Last X Hours,Sólo envia DocType: Communication,Feedback,Comentarios. apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +72,You are not allowed to create / edit reports,No se le permite crear / editar reportes DocType: Workflow State,Icon will appear on the button,El icono aparecerá en el botón -DocType: Website Settings,Website Settings,Configuración del sitio web +DocType: Website Settings,Website Settings,Configuración del Sitio Web apps/frappe/frappe/core/page/user_permissions/user_permissions.py +106,Please upload using the same template as download.,"Por favor, adjunte la misma plantilla que descargó." apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Month,Mes DocType: Email Account,ProTip: Add Reference: {{ reference_doctype }} {{ reference_name }} to send document reference,Protip: Agregar Reference: {{ reference_doctype }} {{ reference_name }} enviar referencia del documento @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Menú Lateral Personalizado DocType: Workflow State,pencil,Lápiz apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Mensajes de chat y otras notificaciones. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Insertar después no se puede establecer como {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Insertar después no se puede establecer como {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Compartir {0} con apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Configuración de cuenta de correo electrónico por favor, introduzca su contraseña para:" DocType: Workflow State,hand-up,mano-arriba DocType: Blog Settings,Writers Introduction,Introducción de los Escritores DocType: Address,Phone,Teléfono -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,"Error al evaluar Alerta de Correo electrónico {0}. Por favor, corrija su plantilla." +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,"Error al evaluar Alerta de Correo electrónico {0}. Por favor, corrija su plantilla." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Seleccione el tipo de documento o el rol para comenzar. DocType: Contact,Passive,Pasivo DocType: Contact,Accounts Manager,Gerente de Cuentas +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Su pago se cancela. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Seleccione el tipo de archivo DocType: Help Article,Knowledge Base Editor,Editor de la Base de Conocimiento apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Página no encontrada @@ -1800,7 +1802,7 @@ DocType: Event,Groups,Grupos DocType: Workflow State,Workflow State,Estados de flujos de trabajo apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Added,Filas Añadidas apps/frappe/frappe/www/update-password.html +163,Success! You are good to go 👍,¡Éxito! Estás listo para continuar 👍 -apps/frappe/frappe/www/me.html +3,My Account,Mi cuenta +apps/frappe/frappe/www/me.html +3,My Account,Mi Cuenta DocType: ToDo,Allocated To,Asignado a apps/frappe/frappe/templates/emails/password_reset.html +4,Please click on the following link to set your new password,"Por favor, haga clic en el siguiente enlace para configurar su nueva contraseña" DocType: Email Alert,Days After,Dias despues @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Tipo de inmueble DocType: Workflow State,screenshot,Captuta de pantalla apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Sólo el administrador puede guardar un informe estándar. Por favor, cambie el nombre y guarde." DocType: System Settings,Background Workers,Procesos en segundo plano +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} en conflicto con el metaobjeto DocType: Deleted Document,Data,Datos apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Estado del documento apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Usted ha hecho {0} de {1} @@ -1825,7 +1828,7 @@ DocType: Social Login Keys,Frappe Client Secret,Código Secreto de Cliente de Fr DocType: Deleted Document,Deleted DocType,DocType eliminado apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Niveles de permisos DocType: Workflow State,Warning,Advertencia -DocType: Tag Category,Tag Category,Categoría de etiqueta +DocType: Tag Category,Tag Category,Categoría de Etiqueta apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +817,"Ignoring Item {0}, because a group exists with the same name!","Omitiendo el artículo {0} , ya existe un grupo con el mismo nombre!" apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +20,Cannot restore Cancelled Document,No se puede restaurar documento anulado apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +200,Help,Ayuda @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Mostrar permisos de usuario apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Debe haber iniciado sesión y tener la función de administrador del sistema, para poder tener acceso a las copias de seguridad." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Restante -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Por favor, guarde los cambios antes de adjuntar" +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Por favor, guarde los cambios antes de adjuntar" apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Añadido: {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema por defecto se encuentra en {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},El tipo de campo de {0} no puede ser cambiado a {1} en la línea {2} @@ -1849,22 +1852,21 @@ DocType: Help Article,Intermediate,Intermedio apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,Puede leer DocType: Custom Role,Response,Respuesta apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Flujo de trabajo se iniciará después de guardar . -apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Puede compartir +apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Puede Compartir apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Dirección de destinatario no válida DocType: Workflow State,step-forward,adelantar apps/frappe/frappe/limits.py +67,Your subscription has expired.,Su suscripción ha expirado. DocType: Role Permission for Page and Report,Set Role For,Establecer Rol Para apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Actualizando... DocType: Event,Starts on,Comienza el -DocType: System Settings,System Settings,Configuración del sistema +DocType: System Settings,System Settings,Configuración del Sistema apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Error de inicio de sesión apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Este correo electrónico fue enviado a {0} y copiado a {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configure la cuenta predeterminada de correo electrónico desde Configuración> Correo electrónico> Cuenta de correo electrónico -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Crear: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Crear: {0} DocType: Email Rule,Is Spam,es spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Informe {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Abrir {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Abrir {0} DocType: OAuth Client,Default Redirect URI,Predeterminado URI de redireccionamiento DocType: Email Alert,Recipients,Destinatarios DocType: Workflow State,ok-sign,ok- signo @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Artículos de Ayuda ,Modules Setup,Configuración de módulos apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipo: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Su pago ha fallado. DocType: Communication,Unshared,Incompartible DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Módulo no Encontrado @@ -1898,7 +1901,7 @@ apps/frappe/frappe/config/integrations.py +13,Stripe payment gateway settings,Aj apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +5,Select Type of Document to Download,Seleccionar tipo de documento a descargar DocType: Email Account,e.g. pop.gmail.com / imap.gmail.com,por ejemplo pop.gmail.com / imap.gmail.com apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +243,Use the field to filter records,Utilice el campo para filtrar registros -DocType: DocType,View Settings,Ver configuraciones +DocType: DocType,View Settings,Ver Configuraciones DocType: Email Account,Outlook.com,Outlook.com apps/frappe/frappe/core/page/desktop/desktop.py +13,"Add your Employees so you can manage leaves, expenses and payroll","Añada sus empleados para que pueda administrar permisos, gastos y nómina" DocType: System Settings,Scheduler Last Event,Programar el último evento @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Imagen de marca DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuración de la barra de navegación superior, pie de página y logotipo." DocType: Web Form Field,Max Value,Valor máximo -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Para {0} en el nivel {1} en {2} de la línea {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Para {0} en el nivel {1} en {2} de la línea {3} DocType: Contact,All,Todos DocType: Email Queue,Recipient,Beneficiario DocType: Communication,Has Attachment,Tiene Adjunto @@ -1937,14 +1940,15 @@ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Expand,Expandir DocType: Address,Sikkim,Sikkim apps/frappe/frappe/core/page/permission_manager/permission_manager.js +434,Set,Establecer apps/frappe/frappe/desk/search.py +41,This query style is discontinued,Este estilo de consulta esta discontinuado -DocType: Email Alert,Trigger Method,Método de activación +DocType: Email Alert,Trigger Method,Método de Activación apps/frappe/frappe/utils/data.py +744,Operator must be one of {0},El Operador debe ser uno de {0} DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token DocType: Workflow State,align-right,alinear-derecha DocType: Auto Email Report,Email To,Email para apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Carpeta {0} no está vacía DocType: Page,Roles,Roles -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,El campo {0} no se puede seleccionar. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Error: falta el valor para {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,El campo {0} no se puede seleccionar. DocType: System Settings,Session Expiry,Vencimiento de sesión DocType: Workflow State,ban-circle,Área de Prohibición DocType: Email Flag Queue,Unread,No leído @@ -1956,10 +1960,10 @@ DocType: Address,Arunachal Pradesh,Arunachal Pradesh apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Configuración automática de correo electrónico apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Abajo apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common password.,Es una de las 10 contraseñas mas comunes. -DocType: User,User Defaults,Parámetros de usuario +DocType: User,User Defaults,Parámetros de Usuario apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Crear DocType: Workflow State,chevron-down,chevron -down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Correo electrónico no enviado a {0} (dado de baja / desactivado) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Correo electrónico no enviado a {0} (dado de baja / desactivado) DocType: Async Task,Traceback,Rastrear DocType: Currency,Smallest Currency Fraction Value,Valor de Fracción de Moneda mas pequeño apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Asignar a @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Desde DocType: Website Theme,Google Font (Heading),Google Font (Encabezado) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Seleccione primero un nodo de grupo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Encontrar {0} en {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Encontrar {0} en {1} DocType: OAuth Client,Implicit,Implícito DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Establecer como forma de comunicación por defecto para este ""DocType"". Debe contener los campos: ""estado"" y ""asunto""" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI para la recepción de código de autorización una vez que el usuario permite el acceso, así como las respuestas de fallo. Normalmente, un extremo REST expuesto por el cliente de la aplicación.
por ejemplo, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,No se permite cambiar {0} si ya está enviado +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,No se permite cambiar {0} si ya está enviado DocType: Communication,Comment Type,Comentario tipo DocType: OAuth Client,OAuth Client,Cliente OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Usuarios @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Incapaz de leer el formato de archivo para {0} DocType: Auto Email Report,Filter Data,Filtrar datos apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Añadir una etiqueta -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Por favor, adjunte un archivo" +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Por favor, adjunte un archivo" apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Existen algunos errores al configurar el nombre, por favor póngase en contacto con el administrador" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Cuenta de Correo Electrónico entrante no es correcta apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,Correo Electrónico Enviado DocType: DocField,Ignore XSS Filter,Ignorar filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,eliminado apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Configuración de copia de seguridad de Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Enviar como correo electrónico. +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Enviar como correo electrónico. DocType: Website Theme,Link Color,Color de enlace apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,El usuario {0} no se puede deshabilitar apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Estimado administrador del sistema," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tu país +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tu País DocType: Event,Sunday,Domingo. apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,En vista de cuadrícula DocType: Address Template,Template,Plantilla @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Configuración de LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Corrigiento apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Configuración de la pasarela de pago de PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultarán truncadas, como caracteres máximo permitido es {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) resultarán truncadas, como caracteres máximo permitido es {2}" DocType: OAuth Client,Resource Owner Password Credentials,Credenciales de recursos contraseña de propietario DocType: OAuth Client,Response Type,Tipo de respuesta apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Usuarios Máx @@ -2032,8 +2036,8 @@ DocType: User,Karma,Karma DocType: DocField,Table,Tabla DocType: File,File Size,Tamaño de archivo apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Debes iniciar sesión para enviar este formulario -DocType: User,Background Image,Imagen de fondo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Seleccione su país, zona horaria y moneda" +DocType: User,Background Image,Imagen de Fondo +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Seleccione su país, zona horaria y moneda" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Entre DocType: Async Task,Queued,En cola @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Crear apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro no válido: {0} DocType: Email Account,no failed attempts,Número de intentos fallidos +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"No se encontró ninguna plantilla de dirección predeterminada. Por favor, cree uno nuevo en Configuración> Impresión y marca> Plantilla de dirección." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Clave de Acceso de Aplicación DocType: OAuth Bearer Token,Access Token,Token de Acceso @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Nombre de usuario Github DocType: DocType,Image View,Vista de imagen apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Parece que algo ha ido mal durante la transacción. Puesto que no hemos confirmado el pago, PayPal le reembolsará automáticamente esta cantidad. Si no es así, por favor, envíenos un correo electrónico y mencionar el ID de correlación: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Incluir símbolos, números y letras mayúsculas en la contraseña" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Inserción luego del campo '{0}' mencionado en el campo personalizado '{1}', con la etiqueta '{2}', no existe" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Incluir símbolos, números y letras mayúsculas en la contraseña" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Inserción luego del campo '{0}' mencionado en el campo personalizado '{1}', con la etiqueta '{2}', no existe" DocType: Workflow State,signal,señal DocType: DocType,Show Print First,Mostrar Imprimir primero apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter para publicar @@ -2083,23 +2088,24 @@ DocType: Contact,Maintenance Manager,Gerente de Mantenimiento DocType: Workflow State,Search,Buscar apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,Please select another payment method. Stripe does not support transactions in currency '{0}',Seleccione otro método de pago. Stripe no admite transacciones en moneda '{0}' apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Mover a la papelera -DocType: Web Form,Web Form Fields,Campos de formulario web +DocType: Web Form,Web Form Fields,Campos de Formulario Web DocType: Website Theme,Top Bar Text Color,Color de texto de barra superior apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Advertencia: No se puede encontrar {0} en cualquier tabla relacionada con {1} apps/frappe/frappe/model/document.py +1043,This document is currently queued for execution. Please try again,"Este documento se pone en cola para su ejecución actualmente. Por favor, inténtelo de nuevo" apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Archivo '{0}' no encontrado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Remover la sección DocType: User,Change Password,Cambiar contraseña -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email no válido: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,¡Hola! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email no válido: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,¡Hola! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,La finalización del evento debe ser posterior al inicio apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Usted no tiene permiso para obtener un informe sobre: {0} +DocType: System Settings,Apply Strict User Permissions,Aplicar permisos de usuario estrictos DocType: DocField,Allow Bulk Edit,Permitir edición masiva DocType: Blog Post,Blog Post,Entrada en el Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Búsqueda Avanzada +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Búsqueda Avanzada apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Las instrucciones para el restablecimiento de la contraseña han sido enviadas a su correo electrónico apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ - higher levels for field level permissions.","Nivel 0 es para permisos de nivel de documento, \ niveles superiores para permisos de nivel de campo." + higher levels for field level permissions.","Nivel 0 es para permisos de nivel de documento, \ niveles superiores para permisos a nivel de campo." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +661,Sort By,Ordenar por DocType: Workflow,States,Estados DocType: Email Alert,Attach Print,Adjuntar Impresión @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,Revocado DocType: Web Page,Sidebar and Comments,Barra lateral y Comentarios apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Cuando se corrige un documento (después de cancelarlo) y guardarlo, se obtendrá un nuevo número, el cual es una versión del antiguo número." DocType: Stripe Settings,Publishable Key,Clave publicable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} año (s) DocType: Workflow State,circle-arrow-left,izquierda - circle-arrow apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"El servidor de caché Redis no esta funcionando. Por favor, póngase en contacto con el administrador / soporte técnico" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nombre de Parte -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Crear un nuevo registro +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Crear un nuevo registro apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Buscando DocType: Currency,Fraction,Fracción DocType: LDAP Settings,LDAP First Name Field,LDAP Campo Nombre -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Seleccione desde los archivos adjuntos existentes +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleccione desde los archivos adjuntos existentes DocType: Custom Field,Field Description,Descripción de Campo apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nombre no establecido a través de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Bandeja de entrada de email @@ -2168,26 +2173,25 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Nivel de permisos DocType: User,Send Notifications for Transactions I Follow,Enviarme notificaciones de las transacciones que sigo -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede establecer ""enviar"", ""cancelar"" o ""corregir"" sin escribir primero" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: no se puede establecer ""enviar"", ""cancelar"" o ""corregir"" sin escribir primero" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,¿Está seguro que desea eliminar el adjunto? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","No se puede eliminar o cancelar debido a {0} {1} está vinculada con {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No se encontraron resultados para '

-apps/frappe/frappe/__init__.py +1063,Thank you,Gracias. +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","No se puede eliminar o cancelar debido a {0} {1} está vinculada con {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Gracias. apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Guardando DocType: Print Settings,Print Style Preview,Vista previa de estilo apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Usted no está autorizado para modificar este formulario web apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,"Por favor, seleccione Tipo de Documento primero" DocType: About Us Settings,About Us Settings,Configuración de información de la compañía -DocType: Website Settings,Website Theme,Tema del sitio web +DocType: Website Settings,Website Theme,Tema del Sitio Web DocType: DocField,In List View,En vista de lista DocType: Email Account,Use TLS,Utilizar TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Inicio de sesión o contraseña no válidos apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Añadir javascript personalizado a los formularios. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Nº +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Nº ,Role Permissions Manager,Administrar permisos apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nombre del nuevo formato de impresión -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Eliminar archivo adjunto +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Eliminar archivo adjunto apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorio: ,User Permissions Manager,Administrar permisos a usuarios DocType: Property Setter,New value to be set,Nuevo valor a establecer @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Hace 2 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Clasificar las entradas del blog. DocType: Workflow State,Time,Tiempo DocType: DocField,Attach,Adjuntar -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} no es un formato válido de nombre de campo. Debe ser {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Enviar comentarios Solicitud sólo si hay al menos una comunicación está disponible para el documento. DocType: Custom Role,Permission Rules,Reglas de permisos DocType: GSuite Settings,GSuite Settings,Configuración de GSuite DocType: Address,Links,Enlaces -apps/frappe/frappe/model/base_document.py +428,Value missing for,Falta un valor para +apps/frappe/frappe/model/base_document.py +427,Value missing for,Falta un valor para apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Agregar hijo -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: El registro enviado no puede ser eliminado. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: El registro enviado no puede ser eliminado. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Tamaño de copia de seguridad DocType: GSuite Templates,Template Name,Nombre de Plantilla -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nuevo tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuevo tipo de documento DocType: Custom DocPerm,Read,Leer DocType: Role Permission for Page and Report,Role Permission for Page and Report,El permiso para la función Página e Informe apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Alinear Valor apps/frappe/frappe/www/update-password.html +14,Old Password,Contraseña anterior -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Entradas por {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Entradas por {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Para dar formato a las columnas, debe obtener las etiquetas desde la consulta." DocType: Has Domain,Has Domain,Tiene Dominio apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,¿No tienes una cuenta? Regístrate -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: no se puede establecer ""asignar corrección"" si no es enviable" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: no se puede establecer ""asignar corrección"" si no es enviable" DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Editar roles DocType: Communication,Link DocType,Enlazar DocType @@ -2258,7 +2262,7 @@ DocType: Web Form,Success URL,URL exitoso DocType: Email Account,Append To,Anexar a DocType: Workflow Document State,Only Allow Edit For,Permitir editar para apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +108,Mandatory field: {0},Campo obligatorio: {0} -apps/frappe/frappe/templates/includes/comments/comments.html +35,Your Name,Tu nombre +apps/frappe/frappe/templates/includes/comments/comments.html +35,Your Name,Tu Nombre DocType: DocType,InnoDB,InnoDB DocType: File,Is Folder,Es Carpeta ,Feedback Ratings,Calificaciones de Retroalimentación @@ -2300,7 +2304,7 @@ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +34 DocType: Web Form,Accept Payment,acepte el pago apps/frappe/frappe/config/core.py +62,A log of request errors,Registro de errores de petición DocType: Report,Letter Head,Membrete -DocType: DocType,Quick Entry,Entrada rápida +DocType: DocType,Quick Entry,Entrada Rápida apps/frappe/frappe/core/doctype/file/file.py +221,No permission to write / remove.,No tiene permiso para editar / eliminar. DocType: Web Form,Button Label,Etiqueta de botón DocType: Website Theme,UPPERCASE,MAYÚSCULAS @@ -2334,9 +2338,9 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Por favor, asegúrese de que su perfil tiene una dirección de correo electrónico" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Usted tiene cambios sin guardar en este formulario. Por favor guardar antes de continuar. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Por defecto {0} debe ser una opción +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Por defecto {0} debe ser una opción DocType: Tag Doc Category,Tag Doc Category,Categoría de Etiqueta de Doc -DocType: User,User Image,Imagen de usuario +DocType: User,User Image,Imagen de Usuario apps/frappe/frappe/email/queue.py +289,Emails are muted,Los correos electrónicos se silencian apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Arriba DocType: Website Theme,Heading Style,Estilo de encabezado @@ -2345,7 +2349,7 @@ apps/frappe/frappe/utils/data.py +552,1 weeks ago,hace 1 semana apps/frappe/frappe/desk/page/applications/applications.py +75,You cannot install this app,No se puede instalar esta aplicación DocType: Communication,Error,Error apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +99,Do not send Emails.,No envíe mensajes de correo electrónico. -DocType: DocField,Column Break,Salto de columna +DocType: DocField,Column Break,Salto de Columna DocType: Event,Thursday,Jueves apps/frappe/frappe/utils/response.py +144,You don't have permission to access this file,Usted no tiene permiso para acceder a este archivo apps/frappe/frappe/model/document.py +639,Cannot link cancelled document: {0},No se puede vincular al documento anulado: {0} @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Próximas DocType: Workflow State,ok,Bueno DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Estos valores se actualizan automáticamente en las transacciones y también serán útiles para restringir los permisos para este usuario en transacciones que contienen estos valores. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Publicado por -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Fallido: {0} a {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Fallido: {0} a {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Selección Obligatoria apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Explorar apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Correos Electrónicos Enviados @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Ejecutándose apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Restablecer contraseña apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Por favor, actualice Para agregar más de {0} suscriptores" DocType: Workflow State,hand-left,mano-izquierda -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,El tipo de campo {0} de {1} no puede ser único +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,El tipo de campo {0} de {1} no puede ser único DocType: Email Account,Use SSL,Utilizar SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Seleccionar formato de impresión a editar @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,No copiar DocType: Workflow State,qrcode,Código QR apps/frappe/frappe/www/login.html +34,Login with LDAP,Ingresar con LDAP DocType: Web Form,Breadcrumbs,Migas -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Si es dueño +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Si es dueño DocType: OAuth Authorization Code,Expiration time,Tiempo de expiración DocType: Web Page,Website Sidebar,Barra Lateral página web DocType: Web Form,Show Sidebar,Mostrar barra lateral @@ -2446,7 +2450,7 @@ DocType: Feedback Trigger,Email Fieldname,Nombre de Campo de Correo Electrónico DocType: Website Settings,Top Bar Items,Elementos de la Barra Superior apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ for {0}","Identificación del Correo Electrónico debe ser única, la Cuenta de Correo Electrónico ya existe \ para {0}" -DocType: Print Settings,Print Settings,Ajustes de impresión +DocType: Print Settings,Print Settings,Ajustes de Impresión DocType: Page,Yes,Sí DocType: DocType,Max Attachments,Máximo de adjuntos DocType: Desktop Icon,Page,Página @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},No se pudo encont apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Nombres y apellidos por sí mismos son fáciles de adivinar. apps/frappe/frappe/config/website.py +93,Knowledge Base,Base de conocimiento DocType: Workflow State,briefcase,Cartera -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},El valor no puede ser cambiado para {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},El valor no puede ser cambiado para {0} DocType: Feedback Request,Is Manual,Es Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa el color del botón: (Éxito-verde), (Peligro-rojo), (Inverso-negro), (Primario-azul oscuro), (Informativo-azul claro), (Advertencia-Naranja)" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,No se cargo el reporte. Utilice query-report/[Report Name] para obtener un reporte @@ -2475,7 +2479,7 @@ DocType: Workflow,"All possible Workflow States and roles of the workflow. Docst DocType: Website Theme,Footer Text Color,Color del texto en el pie de pagina apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Modificada por última vez apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Los permisos del nivel 0 son los permisos a nivel de documentos, es decir, que tienen accesos primarios a los documentos." -DocType: Print Format,Print Format,Formatos de impresión +DocType: Print Format,Print Format,Formatos de Impresión apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +123,Invalid payment gateway credentials,Credenciales de Pasarela de Pagos no válidas apps/frappe/frappe/config/setup.py +32,Set Permissions on Document Types and Roles,Establecer permisos para los tipos de roles y documentos apps/frappe/frappe/model/meta.py +147,No Label,Sin etiqueta @@ -2505,19 +2509,19 @@ DocType: Print Settings,Allow page break inside tables,Permitir salto de página DocType: Email Account,SMTP Server,Servidor SMTP DocType: Print Format,Print Format Help,Ayuda de formato de impresión apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Actualizar la plantilla y guardar en formato descargable antes de adjuntar. -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +851,With Groups,Con grupos +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +851,With Groups,Con Grupos DocType: DocType,Beta,Beta apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +22,restored {0} as {1},restaurado {0} como {1} apps/frappe/frappe/core/page/data_import_tool/exporter.py +71,"If you are updating, please select ""Overwrite"" else existing rows will not be deleted.","Si está actualizando, por favor seleccione ""Sobrescribir"" para eliminar las filas existentes." DocType: Event,Every Month,Cada Mes DocType: Letter Head,Letter Head in HTML,Membrete en HTML -DocType: Web Form,Web Form,Formulario web +DocType: Web Form,Web Form,Formulario Web DocType: About Us Settings,Org History Heading,Encabezado de la historia de la organización apps/frappe/frappe/core/doctype/user/user.py +471,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Lo siento. Ha llegado al límite máximo de usuarios para su suscripción. Usted puede desactivar un usuario existente o comprar un plan de suscripción superior. DocType: Print Settings,Allow Print for Cancelled,Permitir impresión para Cancelado DocType: Communication,Integrations can use this field to set email delivery status,Integraciones pueden utilizar este campo para establecer el estado de entrega de correo electrónico DocType: Web Form,Web Page Link Text,Texto del Enlace de la Página Web -DocType: Page,System Page,Página del sistema +DocType: Page,System Page,Página del Sistema apps/frappe/frappe/config/setup.py +183,"Set default format, page size, print style etc.","Establecer el formato por defecto, tamaño de página, el estilo de impresión, etc." apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,ESC,ESC DocType: Website Settings,Include Search in Top Bar,Incluir Buscar en Barra Superior @@ -2526,17 +2530,17 @@ DocType: DocType,DESC,DESC DocType: DocType,Naming,Nombrando DocType: Event,Every Year,Cada año apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select All,Seleccionar todo -apps/frappe/frappe/config/setup.py +230,Custom Translations,Traducciones personalizados +apps/frappe/frappe/config/setup.py +230,Custom Translations,Traducciones Personalizadas apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Progreso apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,por Rol. apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Campos Faltantes apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,nombre de campo no válido '{0}' en nombre automático -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Buscar en un tipo de documento. +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Buscar en un tipo de documento. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Permita que el campo permanezca editable incluso después de haberla enviado DocType: Custom DocPerm,Role and Level,Rol y nivel DocType: File,Thumbnail URL,URL en miniatura apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Informes personalizados -DocType: Website Script,Website Script,Script del sitio web +DocType: Website Script,Website Script,Script del Sitio Web DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Si no estás usando la aplicación web de publicación de Google Apps, puedes usar la https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec" apps/frappe/frappe/config/setup.py +188,Customized HTML Templates for printing transactions.,Plantillas HTML personalizadas para imprimir transacciones apps/frappe/frappe/public/js/frappe/form/print.js +250,Orientation,Orientación @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mas información DocType: Desktop Icon,Desktop Icon,Icono de escritorio -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Su pago fue aceptado con éxito +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Su pago fue aceptado con éxito apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,"Lamentablemente, usted no está autorizado para ver esta página." apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Consejo: Doble clic en la celda para editar DocType: Workflow State,bell,campana apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error en la alerta por correo electrónico apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Compartir este documento con +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuración> Administrador de permisos de usuario apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} no puede ser un nodo hoja ya que tiene hijos DocType: Communication,Info,Información -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Añadir un adjunto +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Añadir un adjunto DocType: Communication,Email,Correo electrónico (Email) apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,¡Gracias por tu mensaje! -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Enviar confirmación de lectura +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Enviar confirmación de lectura DocType: Stripe Settings,Stripe Settings,Configuración de Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Configuración de Dropbox a través de la configuración del sitio apps/frappe/frappe/www/login.py +64,Invalid Login Token,Invalid Login Token @@ -2632,10 +2637,11 @@ DocType: Email Account,GMail,GMail DocType: Address,Party GSTIN,Parte GSTIN apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Informe DocType: Communication,SMS,SMS -DocType: DocType,Web View,Vista web +DocType: DocType,Web View,Vista Web apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Advertencia: Este formato de impresión es de un estilo antiguo y no se puede generar a través de la API. DocType: DocField,Print Width,Ancho de Impresión ,Setup Wizard,Asistente de configuración. +DocType: Address,GST State Number,Número de Estado del GST DocType: User,Allow user to login only before this hour (0-24),Permitir que el usuario ingrese sólo antes de esta hora ( 0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Es obligatoria una carpeta apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ DocType: Workflow State,bold,negrita DocType: Contact,Status,Estado DocType: GSuite Settings,Client Secret,Client Secret DocType: Company History,Year,Año -DocType: OAuth Client, Advanced Settings,Ajustes avanzados +DocType: OAuth Client, Advanced Settings,Ajustes Avanzados apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +22,Please enter values for GSuite Access Key and GSuite Access Secret,Por favor ingrese los valores para GSuite Access Key y GSuite Access Secret apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} no existe en el renglón {1} DocType: Event,Event Type,Tipo de Evento @@ -2661,7 +2667,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Texto pequeño apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Acceso de Administrador {0} en {1} a través de la dirección IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Iguales -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Las opciones de campo de tipo 'Vinculo Dinámico' debe apuntar a otro campo con propiedades 'DocType' DocType: About Us Settings,Team Members Heading,Líderes de equipo apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Formato CSV no válido apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Establecer el número de copias de seguridad @@ -2672,7 +2678,7 @@ DocType: Contact,Contact,Contacto DocType: User,Third Party Authentication,Autenticación por otros medios DocType: Website Settings,Banner is above the Top Menu Bar.,El banner está sobre la barra de menú superior. DocType: Razorpay Settings,API Secret,Clave Secreta de API -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Reporte de Exportación: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Reporte de Exportación: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} no existe DocType: Email Account,Port,Puerto DocType: Print Format,Arial,Arial @@ -2693,9 +2699,9 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribe DocType: Print Settings,PDF Settings,Configuración de paginas PDF DocType: Kanban Board Column,Column Name,Nombre de columna DocType: Language,Based On,Basado en -apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Hacer por defecto +apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Hacer por Defecto apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Compruebe la URL del servidor Frappe -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,El tipo de campo {0} de {1} no puede(n) ser indexado(s) +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,El tipo de campo {0} de {1} no puede(n) ser indexado(s) DocType: Communication,Email Account,Cuentas de correo electrónico DocType: Workflow State,Download,Descargar DocType: Blog Post,Blog Intro,Intro. del Blog @@ -2706,7 +2712,7 @@ DocType: Web Page,Insert Code,Insertar código DocType: ToDo,Low,Bajo apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Puede añadir propiedades dinámicas desde el documento usando plantillas Jinja. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Límite {0} inválido -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Listar un tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listar un tipo de documento DocType: Event,Ref Type,Tipo Ref. apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si desea cargar nuevos registros, deje en blanco la columna ""name"" (ID)" DocType: Address,Chattisgarh,Chattisgarh @@ -2721,32 +2727,32 @@ DocType: Workflow State,road,ruta DocType: LDAP Settings,Organizational Unit,Unidad organizacional DocType: User,Timezone,Zona horaria apps/frappe/frappe/public/js/frappe/model/model.js +106,Unable to load: {0},No se puede cargar: {0} -apps/frappe/frappe/config/integrations.py +28,Backup,Copia de seguridad +apps/frappe/frappe/config/integrations.py +28,Backup,Copia de Seguridad apps/frappe/frappe/core/page/usage_info/usage_info.html +3,Expires in {0} days,Expira en {0} días DocType: DocField,Read Only,Sólo lectura apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Nuevo Boletín DocType: Print Settings,Send Print as PDF,Enviar Impresión como 'PDF' DocType: Web Form,Amount,Importe DocType: Workflow Transition,Allowed,Permitido -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Sólo puede haber un plegado en un formulario +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Sólo puede haber un plegado en un formulario apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Incapaz de escribir el formato de archivo para {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restaurar a la configuración predeterminada? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Error en la página de Inicio apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ingreso invalido. Inténtalo de nuevo. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opciones necesarias para el campo Tipo de enlace o de tabla {0} en la fila {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opciones necesarias para el campo Tipo de enlace o de tabla {0} en la fila {1} DocType: Auto Email Report,Send only if there is any data,Enviar sólo si hay algún dato apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Restablecer filtros -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: el Permiso en el nivel 0 debe ser establecido antes de establecer niveles superiores +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: el Permiso en el nivel 0 debe ser establecido antes de establecer niveles superiores apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Asignación cerrada por {0} DocType: Integration Request,Remote,Remoto -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calcular +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Por favor, seleccione 'DocType' primero" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirme su Email apps/frappe/frappe/www/login.html +42,Or login with,O ingresar con DocType: Error Snapshot,Locals,Locales apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicado a través de {0} del {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} te ha mencionado en un comentario en {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por ejemplo (55 + 434) / 4 ó = Math.sin(Math.PI/2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por ejemplo (55 + 434) / 4 ó = Math.sin(Math.PI/2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} es requerido DocType: Integration Request,Integration Type,Tipo de Integración DocType: Newsletter,Send Attachements,Enviar Adjuntos @@ -2754,16 +2760,16 @@ DocType: Social Login Keys,GitHub Client ID,ID de Cliente de GitHub DocType: Contact Us Settings,City,Ciudad DocType: DocField,Perm Level,Nivel permitido apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Eventos en el calendario de hoy -DocType: Web Page,Web Page,Página web +DocType: Web Page,Web Page,Página Web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'En búsqueda global' no se permite el tipo {0} en la fila {1} -apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Ver lista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},La fecha debe estar en formato: {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'En búsqueda global' no se permite el tipo {0} en la fila {1} +apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Ver Lista +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La fecha debe estar en formato: {0} DocType: Workflow,Don't Override Status,No sobreescriba el estado apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Por favor, de una calificación." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Comentarios Solicitud apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Término de búsqueda -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,El primer usuario: Usted +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,El primer usuario: Usted apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Seleccione columnas DocType: Translation,Source Text,Texto de origen apps/frappe/frappe/www/login.py +55,Missing parameters for login,Faltan parámetros para el inicio de sesión @@ -2785,7 +2791,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importando DocType: ToDo,Assigned By,Asignado por apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Usted puede utilizar la opción 'Personalizar formulario' para establecer distintos niveles sobre los campos. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Seleccione su región +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Seleccione su Región DocType: Custom DocPerm,Level,Nivel DocType: Custom DocPerm,Report,Reporte apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,La cantidad debe ser mayor que 0. @@ -2805,7 +2811,7 @@ DocType: Website Theme,Background,Fondo DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Se utiliza una lista JSON de los 'DocType' para aplicar los permisos de usuario. Si está vacío, todos doctypes vinculadas serán utilizados para solicitar permisos de usuario." DocType: Report,Ref DocType,Ref. DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Por favor añada una calificación -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,"{0}: no se puede establecer ""corregir"" sin cancelar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,"{0}: no se puede establecer ""corregir"" sin cancelar" apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Página completa DocType: DocType,Is Child Table,Es una tabla secundaria apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} debe ser uno de {1} @@ -2820,7 +2826,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Esto va encima de la p apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalación de aplicaciones DocType: Contact,Last Name,Apellido DocType: Event,Private,Privado -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,No hay alertas para hoy +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,No hay alertas para hoy DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar correo electrónico con adjuntos en formato PDF (recomendado) DocType: Web Page,Left,Inactivo/Fuera DocType: Event,All Day,Todo el Día @@ -2834,7 +2840,7 @@ DocType: Event,Send an email reminder in the morning,Enviar un recordatorio por DocType: Blog Post,Published On,Publicado el DocType: Contact,Gender,Género apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Información obligatoria faltante: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,El campo '{0}' no se puede establecer como único ya que tiene valores no únicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,El campo '{0}' no se puede establecer como único ya que tiene valores no únicos apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Sólo 200 inserciones se permiten en una petición DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Tipo de referencia @@ -2843,21 +2849,21 @@ DocType: Communication,Marked As Spam,Marcado como Spam apps/frappe/frappe/utils/file_manager.py +333,There is some problem with the file url: {0},Hay un poco de problema con la url del archivo: {0} apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Árbol apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +184,You are not allowed to print this report,Usted no está autorizado a imprimir este informe -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Permisos de usuario +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Permisos de Usuario DocType: Workflow State,warning-sign,Icono de advertencia DocType: Workflow State,User,Usuario DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Mostrar título en la ventana del navegador como ""Prefijo - título""" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,texto en el tipo de documento -apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Ejecutar pruebas +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,texto en el tipo de documento +apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Ejecutar Pruebas apps/frappe/frappe/handler.py +91,Logged Out,Desconectado apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Más... DocType: System Settings,User can login using Email id or Mobile number,El usuario puede iniciar sesión con ID de correo electrónico o número de móvil -DocType: Bulk Update,Update Value,Actualizar valor +DocType: Bulk Update,Update Value,Actualizar Valor apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},Marcar como {0} apps/frappe/frappe/model/rename_doc.py +25,Please select a new name to rename,Selecciona un nuevo nombre para cambiar el nombre apps/frappe/frappe/public/js/frappe/request.js +137,Something went wrong,Algo salió mal apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,"Solo se muestran {0} entradas. Por favor, filtre para obtener resultados más específicos." -DocType: System Settings,Number Format,Formato de número +DocType: System Settings,Number Format,Formato de Número DocType: Auto Email Report,Frequency,Frecuencia DocType: Custom Field,Insert After,insertar después DocType: Social Login Keys,GitHub Client Secret,GitHub Client Secret @@ -2872,13 +2878,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visualizando DocType: DocField,Default,Predeterminado apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} añadido -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Buscar por '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Buscar por '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Por favor, guarde el informe primero" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} suscriptores añadidos apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,No en DocType: Workflow State,star,estrella. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valores separados por comas -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},El ancho máximo para el tipo de divisa es 100px en la línea {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valores separados por comas +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},El ancho máximo para el tipo de divisa es 100px en la línea {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Por favor, comparta sus comentarios para {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Contenido de la página web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Agregar un nuevo rol @@ -2896,11 +2902,11 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,No es un usuario válido LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} no es un estado válido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Por favor seleccione otro método de pago. PayPal no admite transacciones en moneda '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,campo de búsqueda {0} no es válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,campo de búsqueda {0} no es válido DocType: Workflow State,ok-circle,ok- círculo apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Se pueden encontrar cosas preguntando "encontrar naranja en los clientes ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,"Lamentablemente, el usuario debe tener acceso completo a sus propios registros." -,Usage Info,Información de uso +,Usage Info,Información de Uso apps/frappe/frappe/utils/oauth.py +226,Invalid Token,Ficha inválida DocType: Email Account,Email Server,Servidor de Correo Electrónico DocType: DocShare,Document Type,Tipo de documento @@ -2926,7 +2932,7 @@ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Co apps/frappe/frappe/core/page/data_import_tool/exporter.py +68,You can only upload upto 5000 records in one go. (may be less in some cases),Sólo se pueden cargar hasta 5.000 registros de una sola vez. (Puede ser menos en algunos casos) apps/frappe/frappe/model/document.py +159,Insufficient Permission for {0},Permiso insuficiente para {0} apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +771,Report was not saved (there were errors),El reporte no se pudo guardar (contiene errores) -DocType: Print Settings,Print Style,Estilo de impresión +DocType: Print Settings,Print Style,Estilo de Impresión apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,No está vinculado a ningún registro DocType: Custom DocPerm,Import,Importar / Exportar apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Línea {0}: No es permitido 'habilitar' en ' ' para los campos estandar @@ -2955,13 +2961,13 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtro Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"El texto que se mostrará para enlazar a la página web, en caso que este formulario sea una pagina web. El enlace se generará automaticamente basado en 'nombre de pagina' y ruta del sitio principal' (`page_name` and `parent_website_route`)" DocType: Feedback Request,Feedback Trigger,Disparador de Retroalimentación -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Por favor, primero configure {0}" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Por favor, primero configure {0}" DocType: Unhandled Email,Message-id,Mensaje-id DocType: Patch Log,Patch,Parche DocType: Async Task,Failed,Falló apps/frappe/frappe/core/page/data_import_tool/importer.py +54,No data found,No se han encontrado datos DocType: Web Form,Allow Comments,Permitir Comentarios -DocType: User,Background Style,Estilo de fondo +DocType: User,Background Style,Estilo de Fondo apps/frappe/frappe/model/rename_doc.py +77,merged {0} into {1},fusionado {0} en {1} DocType: System Settings,mm-dd-yyyy,mm-dd-aaaa apps/frappe/frappe/core/doctype/communication/feed.py +58,{0} logged in,{0} conectado diff --git a/frappe/translations/et.csv b/frappe/translations/et.csv index 2418d42f8e..3e732ab0e4 100644 --- a/frappe/translations/et.csv +++ b/frappe/translations/et.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook kasutajanime DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Märkus: Mitu istungid on lubatud juhul mobiilne seade apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Lubatud postkastist kasutaja {kasutajad} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ei saa saata see e-posti. Olete ületanud saates piir {0} kirju sel kuul. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Püsivalt Esita {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Püsivalt Esita {0}? DocType: Address,County,maakond DocType: Workflow,If Checked workflow status will not override status in list view,Kui on valitud töövoo oleku ei alistada staatuse loendivaate apps/frappe/frappe/client.py +280,Invalid file path: {0},Vigane faili tee: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Palun v apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,Kasutaja kirjad DocType: User,Username,Kasutajanimi -apps/frappe/frappe/model/base_document.py +581,Value too big,Väärtus liiga suur +apps/frappe/frappe/model/base_document.py +580,Value too big,Väärtus liiga suur DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Department @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Palgid DocType: Custom DocPerm,This role update User Permissions for a user,See roll uuendada kasutaja Õigused kasutaja apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Nimeta {0} DocType: Workflow State,zoom-out,zoom-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Ei saa avada {0}, kui selle näiteks on avatud" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Ei saa avada {0}, kui selle näiteks on avatud" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabel {0} ei saa olla tühi apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Mis Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,images DocType: Communication,Reference Owner,viide Omanik DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Väikseim ringleva murdosa üksus (münt). Sest näiteks 1 sent USD ja see tuleb kanda 0,01" DocType: Social Login Keys,GitHub,Github -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Palun saada fullname. apps/frappe/frappe/model/document.py +904,Beginning with,Algus apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Andmed Import Mall apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Lapsevanem DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Kui see on lubatud, paroolide tugevust jõustatakse põhineb Minimaalne Parooliskoor väärtus. Väärtus 2 on keskmise tugevusega ja 4 on väga tugev." DocType: About Us Settings,"""Team Members"" or ""Management""","Team liikmed" või "Management" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Vaikimisi "Check" tüüpi valdkonnas peab olema kas "0" või "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Vaikimisi "Check" tüüpi valdkonnas peab olema kas "0" või "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Eile DocType: Contact,Designation,Määramine DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Kas Avaldatud Field DocType: Email Group,Email Group,E Group DocType: Note,Seen By,näinud apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Lisa mitu -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Mitte nagu +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Mitte nagu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Seadke ekraani märgistuse valdkonnas apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Vale väärtus: {0} peab olema {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Muuda valdkonnas omadused (peida, readonly luba jne)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Seaded Ko apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator sisse logitud DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt võimalusi, nagu "Sales Query, Support Query" jne iga uue liini või komadega eraldatult." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Lae -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Sisesta +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Sisesta apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vali {0} DocType: Print Settings,Classic,Klassika DocType: Desktop Icon,Color,Värvus @@ -121,7 +121,7 @@ DocType: Translation,Translation,tõlkimine apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Paigaldage apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,härra DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,See vorm on muudetud pärast olete laaditud +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,See vorm on muudetud pärast olete laaditud DocType: User Permission for Page and Report,User Permission for Page and Report,Kasutaja Luba Page ja aruanne DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Kui ei ole määratud, valuuta täpsus sõltub arvuvorming" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Põhjus apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Palun täpsustage kasutaja DocType: Email Unsubscribe,Email Unsubscribe,E-tellimine DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Valige pilt umbes laius 150px läbipaistva tausta parima tulemuse. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Esimene kasutaja saab Süsteemihaldur (võid seda hiljem muuta). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Esimene kasutaja saab Süsteemihaldur (võid seda hiljem muuta). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Ringi Nool üles apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Üleslaadimine ... DocType: Email Domain,Email Domain,E-Domain DocType: Workflow State,italic,kald- apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Igaühele -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Ei saa määrata Import ilma Loo +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Ei saa määrata Import ilma Loo apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Sündmus ja teiste kalendreid. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Kõik väljad on vajalik esitada kommentaari. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Drag sorteerida veergude @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Külgriba menüü apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Ei saa kustutada Kodu ja failid kaustadesse apps/frappe/frappe/config/desk.py +19,Files,faile apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Õigused saada kohaldatakse Kasutajad põhineb milliseid rolle nad on määratud. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Teil ei ole lubatud saata e-kirju, mis on seotud käesoleva dokumendi" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Pane valima vähemalt 1 veeru {0} sorteerima / rühmas +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Teil ei ole lubatud saata e-kirju, mis on seotud käesoleva dokumendi" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Pane valima vähemalt 1 veeru {0} sorteerima / rühmas DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Märgi see, kui olete katsetamise makse kasutades Liivakasti API" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Teil ei ole lubatud kustutada standard veebilehe teema DocType: Feedback Trigger,Example,Näide @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Kokku Tellijaid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Kui Role ei ole juurdepääsu tasemel 0, siis kõrgem tase on mõttetu." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Salvesta kui DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Näita rohkem üksikasju +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Näita rohkem üksikasju DocType: System Settings,Run scheduled jobs only if checked,"Plaanitud töökohti ainult siis, kui kontrollida" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Kuvatakse ainult siis, kui pealkirjad on lubatud" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiiv @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Näita Chart apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Kehtib e-posti ja nime vaja DocType: DocType,Hide Heading,Peida Rubriik DocType: Address,Current,praegune -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Seotud dokumendid apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupid doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,kustutada ringi @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Fieldname {0} ei ole erisümboleid, näiteks {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Uuenda paljud väärtused korraga. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Viga: Dokumendi on muudetud pärast olete avanud -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaike Aadress Mall leitud. Looge uus üks Setup> Trükkimine ja Branding> Aadress Mall. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} loginud: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Ei saa määrata Määra Esitada kui mitte esitatav +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Ei saa määrata Määra Esitada kui mitte esitatav DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtreeritud "{0}" DocType: Salutation,Administrator,Administraator @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blogi pealkiri apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard rolle ei saa välja lülitada DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Infobülletään -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Ei saa kasutada sub-päringu järjekorras +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Ei saa kasutada sub-päringu järjekorras DocType: Web Form,Button Help,Button Abi DocType: Kanban Board Column,purple,purpurne DocType: About Us Settings,Team Members,Team liikmed @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Võta oma ü apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Teie tellimus aegus {0}. Uuendada, {1}." DocType: Workflow State,plus-sign,plussmärk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup juba valmis -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ei ole paigaldatud +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ei ole paigaldatud DocType: Workflow State,Refresh,Värskenda DocType: Event,Public,Avalik apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Midagi näidata @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Meeldis apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,e-posti tugi DocType: DocField,Print Hide If No Value,Prindi Peida Kui väärtust DocType: Event,yellow,kollane -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Kas Avaldatud Field peab olema kehtiv fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Kas Avaldatud Field peab olema kehtiv fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Laadi Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Ekspordi Mall @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Uus konto on loodud sinu jaoks {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Juhised Emailitud -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Sisestage e-posti aadress (id) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Sisestage e-posti aadress (id) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-Flag järjekorda apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Ei suuda tuvastada avatud {0}. Proovi midagi muud. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,sõnum ID DocType: Property Setter,Field Name,Field Name apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ei ole konfigureeritud. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,või -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Mooduli nimetus ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Jätkama +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Mooduli nimetus ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Jätkama DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,tunnistus DocType: User,Tile,Plaat @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Näita kõik versioonid DocType: Workflow State,Print,Trükk DocType: User,Restrict IP,Keelatud IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,armatuurlaud apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Ei saa saata meile sel ajal apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Otsi või anna käsk DocType: Communication,Timeline Name,Timeline Nimi @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Müük Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nimi Dokumendi liik (DocType) soovite selles valdkonnas siduda. nt Klienditeenindus DocType: User,Roles Assigned,Määratud rolle -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Otsi Abi +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Otsi Abi DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Teie päring on kätte saadud. Me vastame tagasi varsti. Kui teil on mis tahes lisateavet, vastake sellele mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Õigused on automaatselt tõlgitud Standard Aruanded ja otsingud. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Rubriik DocType: File,File URL,Faili URL DocType: Version,Table HTML,Tabel HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Tulemusi ei leitud ""

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Lisa Abonentide apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Tulevased sündmused Täna DocType: Email Alert Recipient,Email By Document Field,Email dokumendi Field @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Põhinev summa Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Kasutaja on kohustuslik Share DocType: DocField,Hidden,Peidetud DocType: Web Form,Allow Incomplete Forms,Laske Puudulik vormid -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} tuleb seada esimese +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} tuleb seada esimese apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Kasutage mõned sõnad, vältida ühise laused." DocType: Workflow State,plane,lennuk -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oih. Sinu makse ei ole. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Kui teil on üleslaadimise uusi rekordeid, "nimetamine Series" muutub kohustuslikuks, kui see on olemas." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Saada Märguanded Täna +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Saada Märguanded Täna apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType saab nimeks Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Muutunud väärtus {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Palun kontrollige oma e-posti kontrollimiseks -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold ei saa lõpus kujul +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold ei saa lõpus kujul DocType: Communication,Bounced,Põrkas DocType: Deleted Document,Deleted Name,Kustutatud Nimi apps/frappe/frappe/config/setup.py +14,System and Website Users,Süsteem ja veebilehe kasutajate @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumendi Järjekorra DocType: GSuite Templates,Destination ID,Sihtkoht ID DocType: Desktop Icon,List,Nimekiri DocType: Communication,Link Name,link Nimi -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} järjest {1} ei saa peita ja kohustuslik ilma default +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} järjest {1} ei saa peita ja kohustuslik ilma default DocType: System Settings,mm/dd/yyyy,pp / kk / aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Vale parool: DocType: Print Settings,Send document web view link in email,Saada dokumendi web vaade lingile e-posti apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Teie tagasiside dokument {0} on edukalt salvestatud apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Eelmine -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} read {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuuta. Sest näiteks "sent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vali üleslaetud faili @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,No lisatud faili DocType: Version,Version,Version DocType: User,Fill Screen,Täitke Screen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ei saa kuvada selle puu aruande, kuna puuduvad andmed. Tõenäoliselt on väljafiltreerimisest tõttu õigusi." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Palun setup vaikimisi e-posti konto seadistamine> E-post> Post konto +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ei saa kuvada selle puu aruande, kuna puuduvad andmed. Tõenäoliselt on väljafiltreerimisest tõttu õigusi." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Valige File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit kaudu üleslaadimine -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Dokumendi tüübi ..., nt kliendi" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Dokumendi tüübi ..., nt kliendi" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tingimus "{0}" on kehtetu DocType: Workflow State,barcode,vöötkoodi apps/frappe/frappe/config/setup.py +232,Add your own translations,Lisa oma tõlked @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Kolmapäev apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Peale rollipõhist Luba reeglid, mida saab rakendada Kasutaja reeglid põhineb doctypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Need õigused kehtivad kõigi tehingute kus lubatud rekord on seotud. Näiteks, kui firma C lisatakse Kasutaja reeglid kasutaja X, kasutaja X on ainult võimalik näha tehinguid, mis on firma C lingitud väärtus." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Pilt valdkonnas peab olema kehtiv fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Pilt valdkonnas peab olema kehtiv fieldname DocType: OAuth Client,Token,sümboolne DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (nimi) üksuse, kelle vara tuleb seada" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Uuendada, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Külgriba üksused apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} juba paigaldatud DocType: Workflow State,exclamation-sign,hüüatus-märk apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Näita reeglid -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline valdkonnas peab olema link või Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline valdkonnas peab olema link või Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Kuupäevavahemik apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Tutvus apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Krüptovõti on kehtetu, palun kontrollige site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Kuni DocType: Kanban Board Column,darkgrey,tumehall -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Edukad: {0} kuni {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Edukad: {0} kuni {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Ei saa muuta kasutaja andmeid demo. Palun registreeruda uue konto https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Palun dubleerida seda teha muudatusi apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"PDF põlvkonna ebaõnnestus, sest katki pildi lingid" @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Kokkupandav apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Salvestatud apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Millega sa abi vajad? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Valikud valige. Iga võimalus uuele reale. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Püsivalt Loobu {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Püsivalt Loobu {0}? DocType: Workflow State,music,muusika DocType: Web Page,Settings,Seaded apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Palun täpsustage doctype DocType: Print Format,Style Settings,stiil -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sorteeri valdkonnas {0} peab olema kehtiv fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sorteeri valdkonnas {0} peab olema kehtiv fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Rohkem DocType: Contact,Sales Manager,Müügijuht apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Nimeta DocType: Print Format,Format Data,Formaat andmed -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Nagu +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Nagu DocType: Customize Form Field,Customize Form Field,Kohanda Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Laske Kasutaja DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Vaata, millised dokumendid on loetav Kasutaja" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Loetletakse rakenduse ole lubatud -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Kasutage% metamärgi -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-Domain ole konfigureeritud seda kontot, looge see?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Kasutage% metamärgi +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-Domain ole konfigureeritud seda kontot, looge see?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Luba automaatne vastus apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ei ole näinud @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Määrata ainult ühe korra DocType: Email Queue Recipient,Email Queue Recipient,E Queue saaja DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Kasutaja {0} on juba olemas -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Ei saa määrata import kui {1} ei ole imporditavate +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Ei saa määrata import kui {1} ei ole imporditavate apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Seal on viga teie Aadress malli {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Siit Täisnimi apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Sa ei pea juurdepääsu Raport: {0} DocType: User,Send Welcome Email,Saada Tere Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Laadi CSV fail, mis sisaldab kõiki kasutajate õigusi samas vormis nagu Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Eemalda filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Eemalda filter DocType: Address,Daman and Diu,Daman ja Diu DocType: Address,Personal,Personal apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Nimeta @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",Standard DocType ei saa vaikimisi trükiformaadis kasutada Kohanda vormi DocType: Report,Query,Query DocType: DocType,Sort Order,Järjekord -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"In List View 'ei ole lubatud tüüp {0} järjest {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"In List View 'ei ole lubatud tüüp {0} järjest {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Valige silt, mille järel soovite lisada uue valdkonna." ,Document Share Report,Dokumendi Jaga aruanne DocType: User,Last Login,Viimane sisselogimine -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname on vaja järjest {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname on vaja järjest {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Veerg DocType: Custom Field,Adds a custom field to a DocType,Lisab custom valdkonnas DOCTYPE DocType: File,Is Home Folder,Kas Home Folder @@ -583,7 +583,7 @@ DocType: File,Folder,Folder DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Uudiskiri Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Variant 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Kõik teated +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} kuni {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Logi vea jooksul taotlusi. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} on edukalt lisatud E Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indikaator DocType: DocShare,Everyone,Igaüks DocType: Workflow State,backward,tagasi -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Ainult üks reegel on lubatud sama roll, Level ja {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Ainult üks reegel on lubatud sama roll, Level ja {1}" DocType: Email Queue,Add Unsubscribe Link,Lisa tellimus Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Pole veel kommentaare. Alusta uut arutelu. DocType: Workflow State,share,aktsia @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ei ole apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Vaata Tellijaid apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Prl DocType: Website Theme,Background Color,Tausta värv -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Vigu samas saates email. Palun proovi uuesti. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Vigu samas saates email. Palun proovi uuesti. DocType: Portal Settings,Portal Settings,portaal seaded DocType: Web Page,0 is highest,0 on kõrgeim apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Kas oled kindel, et tahad uuesti ühendada see side {0}?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Kontakt Seaded apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Otsides ... DocType: Workflow State,text-width,Teksti laiusega -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimaalne manuselimiidi selle kirje jõudnud. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimaalne manuselimiidi selle kirje jõudnud. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Järgnevad kohustuslikud väljad peavad olema täidetud:
DocType: Email Alert,View Properties (via Customize Form),Vaata pakkumisi (via Kohanda vorm) DocType: Note Seen By,Note Seen By,Märkus näinud @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder aruanded juhib otseselt aruande ehitaja. Pole midagi teha. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Palun kontrollige oma e-posti aadress apps/frappe/frappe/model/document.py +903,none of,ükski -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Saada mulle koopia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Saada mulle koopia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Laadi Kasutaja reeglid DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Registreeritud üksusi kuvatakse arvutis -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ei saa määrata Ühtse tüüpi +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ei saa määrata Ühtse tüüpi apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} ei ole olemas. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Praegu vaatate seda dokumenti DocType: ToDo,Assigned By Full Name,Määratud Täisnimi apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} uuendatud -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Aruanne ei saa kehtestada ühtse tüüpi +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Aruanne ei saa kehtestada ühtse tüüpi apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} päeva tagasi DocType: Email Account,Awaiting Password,Ootan salasõna DocType: Address,Address Line 1,Aadress Line 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Ühendriigid töövoo (nt eelnõu heaks kiidetud, tühistatud)." DocType: Print Settings,Allow Print for Draft,Laske Print eelnõu apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Kindlaksmääratud koguses -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Esita selle dokumendi kinnitamiseks +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Esita selle dokumendi kinnitamiseks DocType: Contact,Unsubscribed,Tellimata apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Määra kohandatud rollide lehele ja aruanne apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Hinnang: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Andmed Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra ja Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Failide saatmisel palun oodake paar sekundit. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Kinnitage oma pilt +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Kinnitage oma pilt apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Rida Väärtused muudetud DocType: Workflow State,Stop,Peatuge DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link lehele, mida soovite avada. Jäta tühjaks, kui sa tahad teha seda rühma vanem." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Seadke sildid vasakule DocType: Help Article,Expert,ekspert DocType: Workflow State,circle-arrow-right,Ringi Nool paremale DocType: LDAP Settings,LDAP Server Url,LDAP serveri URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Ei saa avada näiteks kui selle {0} on avatud +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Ei saa avada näiteks kui selle {0} on avatud apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Järjekorrastatud paigaldada DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Saada tellimus Link @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} eemaldada DocType: Custom DocPerm,Apply User Permissions,Rakenda Kasutaja reeglid DocType: User,Modules HTML,Moodulid HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Kasutaja reeglid Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Kadunud väärtusi Vajalikud DocType: DocType,Other Settings,Muud seaded DocType: Social Login Keys,Frappe,frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth kandja žetooni apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ühtki dokumenti valitud apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Sündmus -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","On {0}, {1} kirjutas:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","On {0}, {1} kirjutas:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Ei saa kustutada standard valdkonnas. Saate peita, kui soovite" DocType: Top Bar Item,For top bar,Top bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ei suutnud tuvastada {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Laud Access DocType: Workflow State,minus,miinus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Error: Palun kontrollige oma kajakad või võtke toe. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Tere saadetud e- -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Olgem valmistada süsteemi esimest kasutamist. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Olgem valmistada süsteemi esimest kasutamist. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Soovitatavad apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Juba registreeritud DocType: System Settings,Float Precision,Float Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Laske Prindi apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No installitud rakendusi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Märgi valdkonnas nagu Kohustuslik DocType: Communication,Clicked,Klõpsanud -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nr luba "{0} '{1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nr luba "{0} '{1} DocType: User,Google User ID,Google Kasutaja ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Plaanitud saata DocType: DocType,Track Seen,Rada näinud @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,samaaegne Sessions DocType: OAuth Client,Client Credentials,Klient volikirjad -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Avage moodul või tööriist +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Avage moodul või tööriist DocType: Communication,Delivery Status,Toimetaja staatus DocType: Module Def,App Name,App nimi apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksimaalne faili suurus lubatud on {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,viide Side DocType: Email Queue,Unsubscribe Method,Tühista meetod DocType: GSuite Templates,Related DocType,seotud DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Muuda lisada sisu -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Vali keel -apps/frappe/frappe/__init__.py +510,No permission for {0},Ei luba {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Vali keel +apps/frappe/frappe/__init__.py +509,No permission for {0},Ei luba {0} DocType: DocType,Advanced,Edasijõudnud apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Tundub API võti või API Secret on vale !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Viide: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Sisesta vorm Type apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No arvestust märgistatud. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Eemalda Field DocType: User,Send Password Update Notification,Saada Salasõna värskendus teatamine -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Lubades DocType, DocType. Ole ettevaatlik!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Lubades DocType, DocType. Ole ettevaatlik!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Kohandatud Vormid trükkimine, e-post" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,"Ajakohastada, et uus versioon" DocType: Custom Field,Depends On,Oleneb @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,üks apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Palun valige fail kopeerida apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontroll üks hetk apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Näita Sildid +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Kui ranged kasutaja loata kontrollitakse ja kasutaja loata on defineeritud DocType jaoks kasutaja, siis kõik dokumendid, kus väärtus link on tühi, ei näidata selle kasutaja" DocType: Address,Billing,Arved DocType: Email Queue,Not Sent,Ei Saadetud DocType: Web Form,Actions,Actions @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,selge apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Iga päev üritusi peaks lõppema samal päeval. DocType: Communication,User Tags,Kasutaja Sildid apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Kujutiste toomine .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Kasutaja DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Allalaadimine App {0} DocType: Communication,Feedback Request,Tagasiside taotlus @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Varukoopiad apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Lisa kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valikuline: alati saatma neid ID-sid. Iga e-posti aadress on uue rea -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Peidaüksikasjad +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Peidaüksikasjad DocType: Workflow State,Tasks,Ülesanded DocType: Event,Tuesday,Teisipäev DocType: Blog Settings,Blog Settings,Blogi Seaded @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Kirjutage Python faili samasse kausta, kus see salvestatakse ja tagasi veerus ja tulemus." DocType: DocType,Sort Field,Sorteeri Field DocType: Razorpay Settings,Razorpay Settings,Razorpay seaded -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Field {0} tüüpi {1} ei saa olla kohustuslik -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","nt. Kui Rakenda Kasutaja reeglid kontrollitakse aruanne DocType kuid kasutaja õigused on määratletud aruanne Kasutaja, siis on kõik aruanded näidanud, et kasutaja" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Field {0} tüüpi {1} ei saa olla kohustuslik apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Lisa veel apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Peida Chart DocType: System Settings,Session Expiry Mobile,Session lõppemine Mobiilne @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Hilinenud apps/frappe/frappe/config/setup.py +128,List of backups available for download,Loetelu varukoopiaid allalaadimiseks saadaval apps/frappe/frappe/www/login.html +89,Sign up,Registreeri DocType: Test Runner,Output,väljund +DocType: Email Alert,Set Property After Alert,Määra Property Pärast Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Lisa väljad vorme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Paistab midagi on valesti selle saidi Paypal konfiguratsiooni. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,leht DocType: Portal Menu Item,Portal Menu Item,Portaal Menüüvalik DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Kui Rakenda kasutajalubasid kontrollitakse aruanne DocType kuid kasutaja load on defineeritud aruandest kasutaja, siis kõik aruanded on toodud selle kasutaja" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Nimekirja ressursse, mida klient App on juurdepääs pärast kasutaja seda lubab.
nt projekti" DocType: Translation,Translated Text,tõlgitud tekst DocType: Contact Us Settings,Query Options,Päringu valikud @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,sidemed DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Aruanne kõik dokumendi aktsiaid apps/frappe/frappe/www/update-password.html +18,New Password,uus parool -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} puuduvad +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} puuduvad apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Kahjuks Sa ei saa kustutada Isegenereeritud kommentaarid DocType: Website Theme,Style using CSS,Style kasutades CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Viide DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Block moodulid apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ennistamine pikkuse {0} for '{1}' in '{2}'; Seadistamine pikkus {3} paneb kärpimise andmeid. DocType: Print Format,Custom CSS,Custom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Lisa kommentaar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Vahele jäetud: {0} kuni {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Vahele jäetud: {0} kuni {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Logi vea automatiseeritud sündmused (planeerija). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Mitte kehtiv komadega eraldatud väärtuste (CSV) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Vaikimisi Saabuva DocType: Workflow State,repeat,kordus DocType: Website Settings,Banner,Lipp DocType: Role,"If disabled, this role will be removed from all users.","Kui lülitada, see roll eemaldatakse kõik kasutajad." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Spikker Otsi +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Spikker Otsi apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registreeritud kuid puudega DocType: DocType,Hide Copy,Peida Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Kustuta kõik rollid @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Riik apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Aadressid DocType: Communication,Shared,jagatud -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Kinnita Dokumendi Prindi +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Kinnita Dokumendi Prindi DocType: Bulk Update,Field,väli DocType: Communication,Received,Saanud DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Päringuaruanne DocType: User,Set New Password,Set New Password DocType: User,Github User ID,Github Kasutaja ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Kui Dokumendi liik -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ei saa kustutada ega tühistada, sest {0} {1} on seotud {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ei saa kustutada ega tühistada, sest {0} {1} on seotud {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Tundmatu app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S ei ole kehtiv aruande vormi. Aruande esitamine peaks \ üks järgmistest% s DocType: Communication,Chat,Vestlus -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} esineb mitu korda ridadesse {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} esineb mitu korda ridadesse {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} on {1} kuni {2} järjest # {3} DocType: Communication,Expired,Aegunud DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Veergude arvu valdkonnas Grid (kokku veergude grid peaks olema väiksem kui 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Ole kontot? Logi si apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Tundmatu Prindi Formaat: {0} DocType: Workflow State,arrow-down,Nool alla apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Kokkuvarisemine -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Keelatud kasutaja kustutada {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Keelatud kasutaja kustutada {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Viimati uuendatud DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script kood apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Loo Kasutaja e-post -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nr reeglid Määratletud +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nr reeglid Määratletud apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Global Settings: Kasutajad saavad ainult valida kontrollida ikoonid apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ei leitud DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignoreeri Kasutaja reeglid Kui kadunud -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Palun dokumendi salvestada enne üleslaadimist. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Palun dokumendi salvestada enne üleslaadimist. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Sisestage parool DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lisa veel üks kommentaar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Loobus Infoleht -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Voldi peab tulema enne sektsioonipiir +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Voldi peab tulema enne sektsioonipiir apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Viimati muudetud DocType: Workflow State,hand-down,käsitsi alla DocType: Address,GST State,GST riik -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Ei saa määrata Tühista ilma Esita +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Ei saa määrata Tühista ilma Esita DocType: Website Theme,Theme,Teema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Vigu. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Ümber suunama URI kohustatud autentimine kood @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Minu DocType: Website Theme,Text Color,Teksti värv DocType: Desktop Icon,Force Show,Force Näita apps/frappe/frappe/auth.py +78,Invalid Request,Vale taotlus -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,See vorm ei ole mingit sisendit +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,See vorm ei ole mingit sisendit apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session lõppemine peab olema kujul {0} DocType: Website Sidebar Item,Group,Group DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Vali target = "_blank" avada uue lehekülje. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignoreeri kodeerimisvead. DocType: Workflow State,wrench,mutrivõti apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Määramata -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Kasutaja DocType: Authentication Log,Date,Kuupäev DocType: Website Settings,Disable Signup,Keela liitumine apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Oodake, kui teie süsteem pannakse üles. See võib võtta mõne hetke." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Lisa kommentaar DocType: DocField,Mandatory,Kohustuslik apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Moodul eksportida -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: No põhilised õigused komplekt +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: No põhilised õigused komplekt apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Teie tellimus lõpeb {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Lae link oma backup hakkavad saama järgmisel e-posti aadress: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Tähendus on Esitada, Loobu, Muuta" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,päringu-aruanne apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Määratud {0} {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtrid salvestatud DocType: DocField,Percent,Protsenti -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Palun määra filtrid +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Palun määra filtrid apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Seotud DocType: Workflow State,book,raamat DocType: Website Settings,Landing Page,Koduleheks -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Viga Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Viga Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nimi apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import taotlus Järjekorras. See võib võtta mõne hetke, palun ole kannatlik." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,No reeglid kehtestada selle kriteeriume. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Luba sisse kasutades Mo apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Sa ei ole piisavalt õigusi, et kasutada seda ressurssi. Palun võtke manager pääse." DocType: Custom Field,Custom,Tava apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert põhineb erinevate kriteeriumide alusel. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Ametikohad Filed under {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Ametikohad Filed under {0} DocType: Email Alert,Send alert if date matches this field's value,Saada alert kui kuupäev sobib see väli väärtus DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Eemalda {0} kustutada kõik andmed? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Logi Pärast DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Trükkimine DocType: Workflow State,thumbs-up,pöidlad üles -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Saatke konto seadistamine ei. Looge uus e-posti konto seadistamine> E-post> Post konto DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision peab olema vahemikus 1 ja 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision peab olema vahemikus 1 ja 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ja DocType: Error Snapshot,Frames,Raamid @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Pildi link DocType: Auto Email Report,Report Filters,aruanne filtrid apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nüüd DocType: Workflow State,step-backward,samm-tagasi -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Palun määra Dropbox sissepääsuvõtmetena saidi config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Kustuta see rekord lubada saates selle e-posti aadress apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Ainult kohustuslikud väljad on vajalikud uue rekordi. Võite kustutada mittekohustuslikud kolonnid, kui soovite." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Kas failid kausta apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Laienda kõik apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Kehtib sisse id vajalik. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re avatud -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Olete tühistanud makse -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Palun valige sobiv csv faili andmeid +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Palun valige sobiv csv faili andmeid apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-jagas seda dokumenti {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumendi Status üleminek {0} kuni {1} ei ole lubatud DocType: DocType,"Make ""name"" searchable in Global Search",Tee "nimi" otsitav Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,alg DocType: Help Category,Help Category,Abi Kategooria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Kasutaja {0} on keelatud apps/frappe/frappe/www/404.html +8,Page missing or moved,Page kadunud või liigutada -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Edit {0} omadused DocType: DocType,Route,marsruut apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay makse gateway seaded DocType: DocField,Name,Nimi apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Olete ületanud maksimaalse ruumi {0} oma plaani. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Otsing docs DocType: OAuth Authorization Code,Valid,kehtiv -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Ava link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Vali keel +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Ava link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Vali keel apps/frappe/frappe/desk/form/load.py +46,Did not load,Ei koorma apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Lisa Row DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Kas Tagasisid DocType: Address,Lakshadweep Islands,Lakshadweep saared apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kas kirjutada apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Mõned dokumendid, nagu Arve ei peaks muutma, kui lõplik. Lõpliku riigile nimetatud dokumente nimetatakse esitamist. Saate piirata mis rolle saab esitada." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Teil ei ole lubatud eksportida käesoleva aruande +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Teil ei ole lubatud eksportida käesoleva aruande apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kirje valitud DocType: Newsletter,Test Email Address,Test e-posti aadress DocType: ToDo,Sender,Lähetaja @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokumendi ID DocType: Print Settings,Letter,Täht -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Pilt valdkonnas peab olema tüübiga Kinnita Pilt +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Pilt valdkonnas peab olema tüübiga Kinnita Pilt DocType: DocField,Columns,veerud DocType: Async Task,Succeeded,Õnnestus apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Kohustuslikud väljad on nõutud {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Tekstiredaktor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Seaded Meist Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Viga Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Sisse +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Sisse DocType: Email Alert,Value Change,Väärtus Muutus DocType: Standard Reply,Standard Reply,Standard Vasta apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Laius sisestusboks @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Kasutage seda fieldname genereerida pealkiri apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import e-posti apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Kutsu Kasutaja -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Vali failid +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Vali failid apps/frappe/frappe/model/naming.py +94, for {0},jaoks {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Seal olid vead. Palun teata sellest. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Teil ei ole lubatud trükkida Selle dokumendi +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Teil ei ole lubatud trükkida Selle dokumendi apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Palun määra filtrid väärtus aruanne Filter tabelis. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Laadimine aruanne +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Laadimine aruanne apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Teie tellimus lõpeb täna. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Kaasa fail @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Piirkondlikud Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Jäta see vestlus -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Valikud ei seatud link valdkonnas {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Valikud ei seatud link valdkonnas {0} DocType: Customize Form,"Must be of type ""Attach Image""",Peab olema tüübiga "Kinnitage Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Tühista kõik valikud apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Sa ei saa teha väljalülitatud "Read Only" eest valdkonnas {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Märge apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Viga aruanne apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Tagasiside tingimused ei sobi -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline valdkonnas peab olema kehtiv fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline valdkonnas peab olema kehtiv fieldname DocType: Currency,Symbol,Sümbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Uus salasõna saadetakse apps/frappe/frappe/auth.py +245,Login not allowed at this time,Sisene ole lubatud sel ajal DocType: Email Account,Email Sync Option,Saatke Sync variant @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard vastab ühistele küsimustele. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Vaikimisi saatmine DocType: Workflow State,volume-off,mahu-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Meeldis {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Meeldis {0} DocType: Footer Item,Footer Item,jalus toode ,Download Backups,Lae Varukoopiad apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Tekst Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nimi ei tohi sisaldada erimärke nagu {0} DocType: Contact Us Settings,Forward To Email Address,Edasta e-posti aadress apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Näita kõik andmed -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Pealkiri valdkonnas peab olema kehtiv fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Pealkiri valdkonnas peab olema kehtiv fieldname apps/frappe/frappe/config/core.py +7,Documents,Dokumendid DocType: Email Flag Queue,Is Completed,on lõpetatud apps/frappe/frappe/www/me.html +22,Edit Profile,Muuda profiili @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","See väli ilmub ainult siis, kui fieldname määratletud siin on väärtuse või reeglid on tõsi (näited): myfield eval: doc.myfield == "Minu Value" eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,täna +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,täna apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kui oled selle kasutajad saavad ainult juurdepääs dokumentidele (nt. Blog Post), kus on olemas seos (nt. Blogger)." DocType: Error Log,Log of Scheduler Errors,Logi of Scheduler vead DocType: User,Bio,Bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 tärniga on madalaim ja 5 tärni on kõrgeim hinnang DocType: Event,Ref Name,Ref nimi DocType: Web Page,Center,Keskpunkt +DocType: Email Alert,Value To Be Set,Väärtuste apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Esimene tase DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Riike esindab lubatud ühes dokumendis ja roll määratud oleku muutmiseks. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Värskenda vorm @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Kas Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType nimi peab algama tähega ning see võib koosneda ainult tähti, numbreid, tühikuid ja allkriipsud" DocType: Communication,Spam,Spämm DocType: Integration Request,Integration Request,integratsiooni taotlus -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Lugupeetud +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Lugupeetud DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Kontod Kasutaja DocType: Web Page,HTML for header section. Optional,HTML päisejaotisesse. Vabatahtlik apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,See funktsioon on täiesti uus ja veel eksperimentaalse -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimaalne {0} rida lubatud +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimaalne {0} rida lubatud DocType: Email Unsubscribe,Global Unsubscribe,Global tellimine apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,See on väga levinud parool. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Vaade DocType: Communication,Assigned,Sihtotstarbelised DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Valige Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Valige Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Lühike klaviatuuri mustrid on lihtne ära arvata DocType: Portal Settings,Portal Menu,portaal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Pikkus {0} peab olema vahemikus 1 kuni 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Kasutaja ei saa otsida apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Vale vorming DocType: Custom DocPerm,Apply this rule if the User is the Owner,Rakenda see reegel kui Kasutaja on omanik -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Kas teie sisselogimise ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Kas teie sisselogimise ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Ehitamine aruanne DocType: Note,Notify users with a popup when they log in,"Teavitage kasutajatele hüpikaken, kui nad sisse logida" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ei ole olemas, vali uus siht ühendada" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,Rollid Luba apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Uuenda DocType: Error Snapshot,Snapshot View,Pildistamise Vaata apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Palun salvesta Uudiskiri enne saatmist -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Valikud peab olema kehtiv DocType eest valdkonnas {0} järjest {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} year (s) tagasi +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valikud peab olema kehtiv DocType eest valdkonnas {0} järjest {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Redigeerimine Omadused DocType: Patch Log,List of patches executed,Loetelu laigud täidetakse apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} on juba tellimata -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikatsioonivahend +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikatsioonivahend DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Palun valige teine makseviis. Razorpay ei toeta tehingud sularaha "{0}" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Järjekorras backup. See võib võtta paar minutit tunnis. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registreeri OAuth Klient App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ei saa "{2}". See peaks olema üks "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ei saa "{2}". See peaks olema üks "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} või {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Näita või Peida Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Salasõna uuendus @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Näita reavahetused pärast jaod DocType: Blogger,Short Name,Lühike nimi apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Sa valides Sync variant, sest kõik, siis resync kõik \ lugeda samuti lugemata sõnum serverist. See võib põhjustada ka dubleerimist \ teatis (kirju)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,failide suurus @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Ostujuht DocType: Custom Script,Sample,Proov apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Määramata Sildid DocType: Event,Every Week,Iga nädal +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Saatke konto seadistamine ei. Looge uus e-posti konto seadistamine> E-post> Post konto apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Vajuta siia, et näha oma kasutuse või tõusta kõrgemale kava" DocType: Custom Field,Is Mandatory Field,Kas kohustuslik väli DocType: User,Website User,Koduleht Kasutaja @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Külgriba menüü DocType: Workflow State,pencil,pliiats apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Jututuba sõnumid ja muud teated. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},"Sisesta Pärast seda ei saa määrata, kui {0}" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},"Sisesta Pärast seda ei saa määrata, kui {0}" apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,"Jaga {0}, kus" apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Post konto seadistamine Sisestage parool: DocType: Workflow State,hand-up,käsi püsti DocType: Blog Settings,Writers Introduction,Kirjanike Sissejuhatus DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Viga hindamiseks Email Alert {0}. Palun paranda oma malli. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Viga hindamiseks Email Alert {0}. Palun paranda oma malli. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Valige dokumendi tüüp või Role alustada. DocType: Contact,Passive,Passiivne DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Teie makse on tühistatud. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Valige File Type DocType: Help Article,Knowledge Base Editor,Teabebaasi Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,lehte ei leitud @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Kinnisvara tüüp DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Ainult administraator saab salvestada vormikohase aruande. Palun nimeta ja säästa. DocType: System Settings,Background Workers,Taust Töötajad +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} vasturääkiva meta objekti DocType: Deleted Document,Data,Andmed apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumendi staatus apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Olete teinud {0} {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Näita Kasutaja reeglid apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Sa pead olema sisselogitud, ja on Süsteemihaldur rolli pääse varukoopiaid." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ülejäänud -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Palun salvesta enne kinnitamist. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Palun salvesta enne kinnitamist. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Lisatud {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Vaikimisi kujundus on seatud {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ei saa muuta alates {0} kuni {1} reas {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,Süsteemi seaded apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start ebaõnnestus apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},See e-posti saadeti {0} ja kopeerida {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Palun setup vaikimisi e-posti konto seadistamine> E-post> Post konto -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Loo uus {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Loo uus {0} DocType: Email Rule,Is Spam,Kas Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Aruanne {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Avatud {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Avatud {0} DocType: OAuth Client,Default Redirect URI,Vaikimisi suunamine URI DocType: Email Alert,Recipients,Toetuse saajad DocType: Workflow State,ok-sign,ok-märk @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Abi artiklid ,Modules Setup,Moodulid Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tüüp: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Teie makse on ebaõnnestunud. DocType: Communication,Unshared,unshared DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Moodul ei leitud @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,kaubamärgi maine DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup top navigation bar, jalus ja logo." DocType: Web Form Field,Max Value,max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Sest {0} tasemel {1} on {2} järjest {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Sest {0} tasemel {1} on {2} järjest {3} DocType: Contact,All,Kõik DocType: Email Queue,Recipient,Saaja DocType: Communication,Has Attachment,Kas Attachment @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,viia paremale DocType: Auto Email Report,Email To,Saada apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} ei ole tühi DocType: Page,Roles,Rollid -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Field {0} ei ole valitav. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Viga: Väärtus kadunud {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Field {0} ei ole valitav. DocType: System Settings,Session Expiry,Session lõppemine DocType: Workflow State,ban-circle,Keeld ringi DocType: Email Flag Queue,Unread,lugemata @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Kasutaja Vaikeväärtused apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Loo uus DocType: Workflow State,chevron-down,Chevron alla -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-post ei saadeta {0} (tellimata / välja lülitatud) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-post ei saadeta {0} (tellimata / välja lülitatud) DocType: Async Task,Traceback,Jälgimise DocType: Currency,Smallest Currency Fraction Value,Väikseim Valuuta Murd Value apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Määra @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,pärit DocType: Website Theme,Google Font (Heading),Google Font (rubriik) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Vali rühm sõlme esimene. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Leia {0} on {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Leia {0} on {1} DocType: OAuth Client,Implicit,endastmõistetav DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Liida kommunikatsiooni vastu DocType (peab olema väljad, "Status", "Teema")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URId jaoks loa saamist koodi kui kasutaja lubab juurdepääsu, samuti nurjunud. Tavaliselt REST tulemusnäitaja avatud Kliendi poolt App.
nt http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ei ole lubatud muuta {0} pärast esitamist +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ei ole lubatud muuta {0} pärast esitamist DocType: Communication,Comment Type,Kommentaar Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Kasutajad @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Faili ei saa lugeda vorm {0} DocType: Auto Email Report,Filter Data,filter andmed apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Lisa silt -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Palun lisage fail esimene. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Palun lisage fail esimene. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Seal olid mõned vead, milles nime, võtke palun ühendust administraatoriga" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Saabuva e-posti konto ei ole õige apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,E-mail saadetud DocType: DocField,Ignore XSS Filter,Ignoreeri XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,eemaldatud apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox backup seaded -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Saada e-posti +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Saada e-posti DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Kasutaja {0} ei saa välja lülitada apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Lugupeetud System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Sinu riik +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Sinu riik DocType: Event,Sunday,Pühapäev apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Võrkvaates DocType: Address Template,Template,Šabloon @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP seaded apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Millega muudetakse apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal makse gateway seaded -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) saavad kärbitud, kui max lubatud tähemärkide {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) saavad kärbitud, kui max lubatud tähemärkide {2}" DocType: OAuth Client,Resource Owner Password Credentials,"Allika Omanik parooli," DocType: OAuth Client,Response Type,Vastus Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max Kasutajad @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Tabel DocType: File,File Size,Faili suurus apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Sa pead sisse logima, et seda vormi" DocType: User,Background Image,Taustapilt -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Vali oma riik, Time Zone ja Valuuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Vali oma riik, Time Zone ja Valuuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,vahel DocType: Async Task,Queued,Järjekorras @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Loo apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Vale Filter: {0} DocType: Email Account,no failed attempts,no ebaõnnestunud katseid +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Vaike Aadress Mall leitud. Looge uus üks Setup> Trükkimine ja Branding> Aadress Mall. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Access Token @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github kasutajanime DocType: DocType,Image View,Pilt Vaata apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Paistab, et midagi läks valesti tehingu käigus. Kuna me ei ole kinnitanud makse, PayPal automaatselt tagasi sa seda summat. Kui seda ei juhtu, siis kirjuta meile ja rääkimata Korrelatsioon ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Kaasa sümbolid, numbrid ja suurtähtedega parool" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sisestage Pärast valdkonnas "{0}" on mainitud Custom Field "{1}", mille silt "{2}", ei ole olemas" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Kaasa sümbolid, numbrid ja suurtähtedega parool" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sisestage Pärast valdkonnas "{0}" on mainitud Custom Field "{1}", mille silt "{2}", ei ole olemas" DocType: Workflow State,signal,signaal DocType: DocType,Show Print First,Show Print Esimene apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter postitada @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Faili '{0}' ei leitud apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Eemalda jaos DocType: User,Change Password,Muuda salasõna -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Vale Email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Tere! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Vale Email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Tere! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Sündmus lõpus peab olema pärast algust apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Sa ei pea luba saada aruande: {0} +DocType: System Settings,Apply Strict User Permissions,Ranged kasutajalubasid DocType: DocField,Allow Bulk Edit,Luba Bulk Edit DocType: Blog Post,Blog Post,Blogi Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Täpsem otsing +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Täpsem otsing apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Parooli uuendamine juhised on saadetud e-posti apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Tase 0 on dokumendi tasandil õigusi, \ kõrgem tasemed valdkonnas tasandil õigusi." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,tühistatud DocType: Web Page,Sidebar and Comments,Külgriba ja Kommentaarid apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kui Muuta dokumenti peale Loobu ja salvestada, siis saad uue numbri, mis on versioon vana number." DocType: Stripe Settings,Publishable Key,avaldatav Key -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} year (s) tagasi DocType: Workflow State,circle-arrow-left,Ringi Nool vasakule apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache server ei tööta. Palun pöörduge administraatori / Tehniline tugi apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Partei nimi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Tee uus rekord +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Tee uus rekord apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,otsimine DocType: Currency,Fraction,Murdosa DocType: LDAP Settings,LDAP First Name Field,LDAP Eesnimi Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Vali olemasolevate manuseid +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vali olemasolevate manuseid DocType: Custom Field,Field Description,Field kirjeldus apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nimi ei määra kaudu Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,postkastist @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Luba Level DocType: User,Send Notifications for Transactions I Follow,Saada teated Tehingute jälgin -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ei saa määrata Esita, Loobu, Muuta ilma kirjutamine" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ei saa määrata Esita, Loobu, Muuta ilma kirjutamine" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Olete kindel, et soovite kustutada manust?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ei saa kustutada ega tühistada, sest {0} {1} on seotud {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Tulemusi ei leitud ""

" -apps/frappe/frappe/__init__.py +1063,Thank you,Aitäh +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ei saa kustutada ega tühistada, sest {0} {1} on seotud {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Aitäh apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Salvestamine DocType: Print Settings,Print Style Preview,Trüki Style eelvaade apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,In List View DocType: Email Account,Use TLS,TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Vale kasutajanimi või parool apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Lisa custom JavaScripti vorme. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No ,Role Permissions Manager,Role reeglid Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nimi uue Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Kohustuslik: ,User Permissions Manager,Kasutaja reeglid Manager DocType: Property Setter,New value to be set,Uus väärtus tuleb määrata @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 päe apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategoriseerida blogi postitusi. DocType: Workflow State,Time,Aeg DocType: DocField,Attach,Kinnitage -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ei ole kehtiv fieldname muster. Peaks olema {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ei ole kehtiv fieldname muster. Peaks olema {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Saada tagasiside taotlus üksnes juhul, kui on olemas vähemalt üks side on olemas dokument." DocType: Custom Role,Permission Rules,Luba reeglid DocType: GSuite Settings,GSuite Settings,GSuite Seaded DocType: Address,Links,Lingid -apps/frappe/frappe/model/base_document.py +428,Value missing for,Väärtus puuduvad +apps/frappe/frappe/model/base_document.py +427,Value missing for,Väärtus puuduvad apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Lisa Child -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Esitatud Record ei saa kustutada. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Esitatud Record ei saa kustutada. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Suurus DocType: GSuite Templates,Template Name,malli nimi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Uue dokumendi tüüp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Uue dokumendi tüüp DocType: Custom DocPerm,Read,Lugema DocType: Role Permission for Page and Report,Role Permission for Page and Report,Role Luba Page ja aruanne apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Seadke Value apps/frappe/frappe/www/update-password.html +14,Old Password,vana parool -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Postitused {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Postitused {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Et formaadis sambad, annavad tulbapealkirju päringu." DocType: Has Domain,Has Domain,on Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Kas pole kontot? Registreeri -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Ei saa määrata Määra Muuta kui mitte esitatav +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Ei saa määrata Määra Muuta kui mitte esitatav DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edit Role reeglid DocType: Communication,Link DocType,link DocType @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Veenduge, et teie profiili on meiliaadress" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Sul on salvestamata muudatusi selles vormis. Palun salvesta enne jätkamist. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Vaikimisi {0} peab olema võimalus +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Vaikimisi {0} peab olema võimalus DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategooria DocType: User,User Image,Kasutaja Image apps/frappe/frappe/email/queue.py +289,Emails are muted,Kirjad on summutatud @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Järgmine DocType: Workflow State,ok,Okei DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Need väärtused uuendatakse automaatselt tehingutes ja ka on kasulik, et piirata õigusi selle kasutaja tehingute sisaldavad neid väärtusi." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Kirjastaja -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Ebaõnnestus: {0} kuni {1} {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Ebaõnnestus: {0} kuni {1} {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Vali Kohustuslik apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Sirvi apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Saadetud e-mailid @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Jooksmine apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Palun uuendage lisada rohkem kui {0} tellijatele DocType: Workflow State,hand-left,käsitsi vasakule -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} for {1} ei saa olema unikaalne +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} for {1} ei saa olema unikaalne DocType: Email Account,Use SSL,SSL DocType: Workflow State,play-circle,play-ring apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Valige Print Format Muuda @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,No Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Sisene oma LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Kui Omanik +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Kui Omanik DocType: OAuth Authorization Code,Expiration time,aegumine aeg DocType: Web Page,Website Sidebar,Koduleht Sidebar DocType: Web Form,Show Sidebar,Näita külgriba @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Ei leidnud {0} on apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Ja perekonnanimed ise on lihtne ära arvata. apps/frappe/frappe/config/website.py +93,Knowledge Base,Teadmistepagas DocType: Workflow State,briefcase,mapp -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Väärtus ei saa muuta {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Väärtus ei saa muuta {0} DocType: Feedback Request,Is Manual,Kas Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stiil tähistab nupu värvi: Edu - roheline, Danger - Red, Inverse - Must, Esmane - Dark Blue, Info - Light Blue, hoiatus - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"No aruanne Loaded. Palun kasutage päringu-report / [Aruande nimetus] aruande, milles näidatakse." @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,edu apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,poolt Role apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,puuduvad väljad apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Vale fieldname "{0}" on autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Otsing dokumendi tüüp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Otsing dokumendi tüüp apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Laske valdkonnas jääb muudetav isegi pärast selle esitamist DocType: Custom DocPerm,Role and Level,Roll ja Level DocType: File,Thumbnail URL,Pisipilt URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Rohkem informatsiooni DocType: Desktop Icon,Desktop Icon,töölaua ikoon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Teie makse on edukalt vastu võetud +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Teie makse on edukalt vastu võetud apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Sorry! Sa ei tohi selle lehe vaatamiseks. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Vihje: Topeltklõps raku muuta DocType: Workflow State,bell,kell apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Viga Saatke Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Jaga seda dokumenti +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Kasutaja reeglid Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ei saa olla lehttipuga kuna see on lapsed DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Lisa manus +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Lisa manus DocType: Communication,Email,E- apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Täname sõnum -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Saada Lugemiskinnitus +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Saada Lugemiskinnitus DocType: Stripe Settings,Stripe Settings,triip Seaded DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup kaudu Saidi Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Vale Logi Token @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Hoiatus: See Print Format on vana stiili ja ei saa tekkinud API kaudu. DocType: DocField,Print Width,Prindi Laius ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST riik number DocType: User,Allow user to login only before this hour (0-24),Luba kasutajal sisse logida ainult enne seda tund (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder on kohustuslik apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Väike tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administraator külastatud {0} kohta {1} via IP aadress {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Vastus -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valikud "Dynamic Link" tüüpi väli tuleb veel teinegi Link valdkonnas valikud "DocType" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valikud "Dynamic Link" tüüpi väli tuleb veel teinegi Link valdkonnas valikud "DocType" DocType: About Us Settings,Team Members Heading,Team liikmed Rubriik apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Vale CSV formaadis apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Määra arv Varukoopiad @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Kolmanda osapoole autentimise DocType: Website Settings,Banner is above the Top Menu Bar.,Banner on eespool ülemisel menüüribal. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Ekspordi Raport: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Ekspordi Raport: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ei eksisteeri DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,Veerg nimi DocType: Language,Based On,Põhineb apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Tee Vaikimisi apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Saate Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ja {1} ei saa indekseerida +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ja {1} ei saa indekseerida DocType: Communication,Email Account,Emaili konto DocType: Workflow State,Download,Laadi alla DocType: Blog Post,Blog Intro,Blogi tutvustus @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,Sisesta kood DocType: ToDo,Low,Madal apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Saate lisada dünaamilisi omadusi dokumendist abil Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Kehtetu piir {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Nimekiri dokumendi tüüp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Nimekiri dokumendi tüüp DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Kui teil on üleslaadimise uusi rekordeid, jäta "nimi" (ID) veerg tühjaks." DocType: Address,Chattisgarh,Chattisgarhi @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Saada Prindi PDF DocType: Web Form,Amount,Summa DocType: Workflow Transition,Allowed,Lubatud -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Seal saab olla ainult üks Fold kujul +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Seal saab olla ainult üks Fold kujul apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Ei saa kirjutada failivorming {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Taasta vaikeseaded? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Vale Esileht apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Vigane sisse. Proovi uuesti. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Options vajalik Link või tabelis tüübiväljale {0} reas {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Options vajalik Link või tabelis tüübiväljale {0} reas {1} DocType: Auto Email Report,Send only if there is any data,"Saada ainult siis, kui on olemas kõik andmed" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset filtrid -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Luba tasemel 0 tuleb kehtestada enne kõrgem tase määratakse +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Luba tasemel 0 tuleb kehtestada enne kõrgem tase määratakse apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Ülesanne suletud {0} DocType: Integration Request,Remote,kauge -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Arvutama +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Arvutama apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Palun valige DocType esimene apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Kinnita oma e- apps/frappe/frappe/www/login.html +42,Or login with,Või logige sisse DocType: Error Snapshot,Locals,Kohalikud apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kaudu edastatud {0} on {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} mainis sind kommentaar {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,nt (55 + 434) / 4 või = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,nt (55 + 434) / 4 või = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} on nõutav DocType: Integration Request,Integration Type,integratsiooni Type DocType: Newsletter,Send Attachements,Saada Kinnitused @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Sündmused Tänapäeva kalender DocType: Web Page,Web Page,Veebi lehekülg DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Global Search ole lubatud tüüpi {0} järjest {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Global Search ole lubatud tüüpi {0} järjest {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Vaata Nimekiri -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Kuupäev peab olema kujul: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Kuupäev peab olema kujul: {0} DocType: Workflow,Don't Override Status,Ära alistamisolek apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Palun andke hinnang. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Tagasiside taotlus apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Otsingusõna -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Esimene Kasutaja: Sa +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Esimene Kasutaja: Sa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Select Columns DocType: Translation,Source Text,lähteteksti apps/frappe/frappe/www/login.py +55,Missing parameters for login,Kadunud parameetrid login @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Import DocType: ToDo,Assigned By,Määratud apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Võite kasutada Kohanda vormi seada tasemele põldudel. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Vali oma piirkond +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Vali oma piirkond DocType: Custom DocPerm,Level,Level DocType: Custom DocPerm,Report,Aruanne apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Summa peab olema suurem kui 0. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,tagapõhi DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON nimekirja doctypes kasutada kohaldada Kasutaja reeglid. Kui tühi, kõik seotud doctypes kasutatakse kohaldata kasutaja õigused." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Palun lisage hinnang -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Ei saa määrata Muuta ilma Tühista +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Ei saa määrata Muuta ilma Tühista apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Kas lapse tabelis apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} peab olema üks {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,See läheb üle slaidi apps/frappe/frappe/config/setup.py +260,Install Applications.,Rakenduste installimine. DocType: Contact,Last Name,Perekonnanimi DocType: Event,Private,Private -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Ei teateid täna +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Ei teateid täna DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Saada e Prindi failid PDF (soovitatav) DocType: Web Page,Left,Vasakule DocType: Event,All Day,Terve päev @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,Saada talle meeldetuletus h DocType: Blog Post,Published On,Avaldatud DocType: Contact,Gender,Sugu apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Kohustuslik teave puudu: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Field "{0}" ei saa valida unikaalne, sest see on mitte-unikaalne väärtused" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Field "{0}" ei saa valida unikaalne, sest see on mitte-unikaalne väärtused" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Ainult 200 lisab lubatud üks taotlus DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Viide Type @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,hoiatus-märk DocType: Workflow State,User,Kasutaja DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Show tiitli brauseri akna "Eesliide - pealkiri" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,teksti dokumendi tüüp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teksti dokumendi tüüp apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,porrvitestid apps/frappe/frappe/handler.py +91,Logged Out,Välja logitud apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Rohkem ... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Praegu Kasutaja DocType: DocField,Default,Vaikimisi apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} lisati -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Otsi "{0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Otsi "{0}" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Palun aruande salvestada esimene apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} tellijatele lisatud apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ei In DocType: Workflow State,star,staar -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,väärtused komadega eraldatult -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max laius tüüp Valuuta on 100px järjest {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,väärtused komadega eraldatult +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max laius tüüp Valuuta on 100px järjest {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Palun jagage oma tagasiside {0} apps/frappe/frappe/config/website.py +13,Content web page.,Sisu veebilehel. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Lisa uus roll @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Mitte kehtiv LDAP kasutaja apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ei ole kehtiv riik apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Palun valige teine makseviis. PayPal ei toeta tehingud sularaha "{0}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Otsi valdkonnas {0} ei ole kehtiv +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Otsi valdkonnas {0} ei ole kehtiv DocType: Workflow State,ok-circle,ok ringi apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Võite leida asju, küsides "leida oranž klientide" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Sorry! Kasutaja peab olema täielik juurdepääs oma rekord. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst kuvatakse Link Web Page juhul, kui see on veebilehele. Link liinil hakkab automaatselt vastavalt sellele, `page_name` ja` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Tagasiside Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Palun määra {0} Esimene +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Palun määra {0} Esimene DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Plaaster DocType: Async Task,Failed,Ebaõnnestunud diff --git a/frappe/translations/fa.csv b/frappe/translations/fa.csv index f8d3f181ab..aa5c044f8d 100644 --- a/frappe/translations/fa.csv +++ b/frappe/translations/fa.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,فیس بوک نام کاربری DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,توجه داشته باشید: جلسات متعدد خواهد شد در صورت از دستگاه تلفن همراه اجازه apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},صندوق دریافت ایمیل فعال برای کاربران {} کاربران apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,می توانید این ایمیل ارسال کنید. شما به محدودیت ارسال ایمیل {0} برای این ماه عبور کرده اند. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,به طور دائمی ثبت کردن {0}؟ +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,به طور دائمی ثبت کردن {0}؟ DocType: Address,County,شهرستان DocType: Workflow,If Checked workflow status will not override status in list view,اگر وضعیت گردش کار بررسی خواهد شد وضعیت در نمای لیست باطل نیست apps/frappe/frappe/client.py +280,Invalid file path: {0},مسیر فایل نامعتبر: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,لطف apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} درخت DocType: User,User Emails,ایمیل های کاربر DocType: User,Username,نام کاربری -apps/frappe/frappe/model/base_document.py +581,Value too big,ارزش بیش از حد بزرگ +apps/frappe/frappe/model/base_document.py +580,Value too big,ارزش بیش از حد بزرگ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,تست اسکریپت اجرا DocType: Contact,Department,بخش @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,گزارش ها DocType: Custom DocPerm,This role update User Permissions for a user,این به روز رسانی نقش اجازه برای یک کاربر apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},تغییر نام {0} DocType: Workflow State,zoom-out,کوچک نمایی -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,نمی تواند باز {0} زمانی که به عنوان مثال آن باز است +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,نمی تواند باز {0} زمانی که به عنوان مثال آن باز است apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,جدول {0} نمی تواند خالی باشد apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,با دفاتر apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,تصاویر DocType: Communication,Reference Owner,مرجع مالک DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,کوچکترین واحد کسر گردش (coin). برای مثال 1 سنت برای USD و باید آن را به عنوان وارد 0.01 DocType: Social Login Keys,GitHub,گیتهاب -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0}، ردیف {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0}، ردیف {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,لطفا یک نام کامل بدهد. apps/frappe/frappe/model/document.py +904,Beginning with,آغاز با apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,داده الگو واردات apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,والدین DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",اگر فعال باشد، قدرت رمز عبور خواهد شد بر اساس حداقل ارزش کلمه عبور اجرا می شود. مقدار 2 که متوسط قوی و 4 بسیار قوی. DocType: About Us Settings,"""Team Members"" or ""Management""","اعضای تیم" یا "مدیریت" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',به طور پیش فرض برای چک 'نوع درست یا باید به صورت' 0 'یا' 1 'است +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',به طور پیش فرض برای چک 'نوع درست یا باید به صورت' 0 'یا' 1 'است apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,دیروز DocType: Contact,Designation,تعیین DocType: Test Runner,Test Runner,تست دونده @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,منتشر درست DocType: Email Group,Email Group,ایمیل گروه DocType: Note,Seen By,دیده شده توسط apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,اضافه کردن چند -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,نه مثل +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,نه مثل apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,تنظیم صفحه نمایش برچسب برای درست apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},مقدار نادرست: {0} باید {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",خواص تغییر درست (مخفی، فقط خواندنی، اجازه و غیره) @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,تنظی apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,خارج شده است در مدیر DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",گزینه های تماس، مانند "فروش پرس و جو، پشتیبانی پرس و جو" و غیره که هر کدام در یک خط جدید و یا از هم جدا شده توسط کاما. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. دانلود -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,درج +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,درج apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},انتخاب {0} DocType: Print Settings,Classic,کلاسیک DocType: Desktop Icon,Color,رنگ @@ -121,7 +121,7 @@ DocType: Translation,Translation,ترجمه apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,نصب apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,آقای DocType: Custom Script,Client,مشتری -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,این فرم اصلاح شده است بعد از شما آن لود شده +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,این فرم اصلاح شده است بعد از شما آن لود شده DocType: User Permission for Page and Report,User Permission for Page and Report,اجازه کاربر برای صفحه و گزارش DocType: Address,Himachal Pradesh,هیماچال پرادش DocType: System Settings,"If not set, the currency precision will depend on number format",اگر تنظیم نشود، دقت ارز در قالب شماره بستگی دارد @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,دلیل apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,لطفا کاربر مشخص DocType: Email Unsubscribe,Email Unsubscribe,ایمیل لغو DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,یک تصویر از عرض حدود 150px با پس زمینه شفاف برای بهترین نتایج را انتخاب کنید. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,اولین کاربر تبدیل خواهد شد مدیر سیستم (شما می توانید این تنظیمات را تغییر دهید). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,اولین کاربر تبدیل خواهد شد مدیر سیستم (شما می توانید این تنظیمات را تغییر دهید). ,App Installer,برنامه نصب DocType: Workflow State,circle-arrow-up,دایره-فلش-تا apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,آپلود ... DocType: Email Domain,Email Domain,دامنه ایمیل DocType: Workflow State,italic,حروف کج apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,برای همه -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: می توانید وارد مجموعه بدون ایجاد کنید +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: می توانید وارد مجموعه بدون ایجاد کنید apps/frappe/frappe/config/desk.py +26,Event and other calendars.,رویداد و دیگر تقویم. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,تمام زمینه های لازم برای ارسال نظر می باشد. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,کشیدن برای مرتب کردن ستون @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,منو نوار کناری است apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,می توانید خانه و فایل های پیوست پوشه را حذف کنید apps/frappe/frappe/config/desk.py +19,Files,فایل ها apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,مجوز های بر روی کاربران بر اساس آنچه نقش آن اختصاص داده می شود. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,لطفا حداقل 1 ستون از {0} برای مرتب کردن گروه / انتخاب +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,شما مجاز به ارسال ایمیل های مرتبط با این سند نیستید +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,لطفا حداقل 1 ستون از {0} برای مرتب کردن گروه / انتخاب DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,این چک کنید اگر شما در حال آزمایش پرداخت خود را با استفاده از API گودال ماسهبازی apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,شما مجاز به حذف یک قالب استاندارد وب سایت نیستید DocType: Feedback Trigger,Example,مثال @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,مجموع مشترکین apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",اگر یک نقش دسترسی در سطح 0 را نداشته باشند، سپس سطوح بالاتر بی معنی است. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,ذخیره به عنوان DocType: Communication,Seen,مشاهده -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,نمایش جزئیات بیشتر +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,نمایش جزئیات بیشتر DocType: System Settings,Run scheduled jobs only if checked,اجرای شغل برنامه ریزی شده تنها در صورتی چک apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,تنها نشان داده شود اگر سرفصل بخش فعال هستند apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,بایگانی @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,نمایش نم apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,ایمیل معتبر و نام مورد نیاز DocType: DocType,Hide Heading,مخفی کردن سرنویس DocType: Address,Current,جاری -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,مدارک مربوطه apps/frappe/frappe/config/core.py +17,Groups of DocTypes,گروه DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,حذف دایره @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,صافی apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} می تواند از کاراکترهای خاص مانند ندارد {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,به روز رسانی ارزش بسیاری در یک زمان. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,خطا: سند اصلاح شده است بعد از شما آن را باز کرد -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,بدون پیش فرض آدرس الگو پیدا شده است. لطفا یکی از جدید از راه اندازی> چاپ و تبلیغات تجاری> آدرس الگو ایجاد کنید. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} سیستم خارج: {1} DocType: Address,West Bengal,بنگال غربی -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص ثبت کردن اگر Submittable نمی +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص ثبت کردن اگر Submittable نمی DocType: Social Login Keys,Facebook,فیس بوک apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",فیلتر توسط "{0}" DocType: Salutation,Administrator,مدیر @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,وبلاگ عنوان apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,نقش استاندارد نمی تواند غیر فعال شود DocType: Address,Mizoram,میزورام DocType: Newsletter,Newsletter,عضویت در خبرنامه -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,می توانید زیر پرس و جو در سفارش استفاده نمی شده توسط +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,می توانید زیر پرس و جو در سفارش استفاده نمی شده توسط DocType: Web Form,Button Help,دکمه راهنما DocType: Kanban Board Column,purple,رنگ بنفش DocType: About Us Settings,Team Members,اعضای تیم @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,دریافت apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",اشتراک شما در {0} منقضی شده است. برای تمدید، {1}. DocType: Workflow State,plus-sign,به علاوه نشانه apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,راه اندازی در حال حاضر کامل -apps/frappe/frappe/__init__.py +890,App {0} is not installed,نرم افزار {0} نصب نشده است +apps/frappe/frappe/__init__.py +889,App {0} is not installed,نرم افزار {0} نصب نشده است DocType: Workflow State,Refresh,تازه کردن DocType: Event,Public,عمومی apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,هیچ چیز برای نشان دادن @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,پسندیده apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,پشتیبانی ایمیل DocType: DocField,Print Hide If No Value,چاپ مخفی کردن اگر هیچ ارزش DocType: Event,yellow,رنگ زرد -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,منتشر درست باید یک FIELDNAME معتبر +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,منتشر درست باید یک FIELDNAME معتبر apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,بارگذاری فایل پیوست DocType: Block Module,Block Module,بلوک ماژول apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,صادرات الگو @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,جس DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},یک حساب جدید را برای شما در {0} ایجاد شده است. apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,دستورالعمل ایمیل ارسال -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),را وارد کنید ایمیل دریافت کننده (بازدید کنندگان) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),را وارد کنید ایمیل دریافت کننده (بازدید کنندگان) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ایمیل صف پرچم apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,نمی تواند شناسایی باز {0}. سعی کنید چیز دیگری است. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,پیام ID DocType: Property Setter,Field Name,نام درست apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,گوگل GSuite پیکربندی نشده است. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,یا -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,نام ماژول ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ادامه +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,نام ماژول ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ادامه DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,گواهی نامه DocType: User,Tile,کاشی @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,نمایش همه نسخههای DocType: Workflow State,Print,چاپ DocType: User,Restrict IP,محدود کردن IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,داشبورد apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,قادر به ارسال ایمیل های در این زمان apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,جستجو و یا استفاده از دستور DocType: Communication,Timeline Name,نام گاهشمار @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,مدیر ارشد فروش apps/frappe/frappe/www/complete_signup.html +13,One Last Step,یکی از آخرین مرحله apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,نام نوع سند (DOCTYPE) شما می خواهید این زمینه به مرتبط هستند. به عنوان مثال با مشتری DocType: User,Roles Assigned,نقش واگذار شده -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,جستجو راهنما +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,جستجو راهنما DocType: Top Bar Item,Parent Label,پدر و مادر برچسب apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",بنا به درخواست شما دریافت شده است. ما به زودی پاسخ خواهیم داد اگر شما هر گونه اطلاعات بیشتر میخواهید، لطفا به این ایمیل پاسخ دهید apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,مجوز به طور خودکار به گزارش استاندارد و جستجوهای ترجمه شده است. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ویرایش سرنویس DocType: File,File URL,URL فایل DocType: Version,Table HTML,جدول HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

نتیجه ای یافت نشد برای '

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,اضافه کردن مشترکین apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,رویدادهای نزدیک برای امروز DocType: Email Alert Recipient,Email By Document Field,ایمیل درست سند @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,مقدار بر اساس درست apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,کاربر اشتراک الزامی است DocType: DocField,Hidden,پنهان DocType: Web Form,Allow Incomplete Forms,اجازه می دهد فرم های ناقص -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} باید اول تنطیم شود +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} باید اول تنطیم شود apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",استفاده از چند کلمه، جلوگیری از عبارات رایج است. DocType: Workflow State,plane,هواپیما -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,اوه. پرداخت خود را شکست خورده است. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",اگر شما در حال آپلود رکورد جدید "نامگذاری سری" اجباری می شود، در صورت وجود. -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,دریافت هشدار برای امروز +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,دریافت هشدار برای امروز apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE تنها می تواند توسط مدیر تغییر نام داد apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},مقدار تغییر از {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,لطفا ایمیل خود را تایید بررسی -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ریختن (فولد) نمی تواند در پایان فرم است +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ریختن (فولد) نمی تواند در پایان فرم است DocType: Communication,Bounced,منعکس DocType: Deleted Document,Deleted Name,نام حذف apps/frappe/frappe/config/setup.py +14,System and Website Users,سیستم و وب سایت کاربر @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,سند صف DocType: GSuite Templates,Destination ID,ID مقصد DocType: Desktop Icon,List,فهرست DocType: Communication,Link Name,نام لینک -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,درست {0} در ردیف {1} نمی تواند پنهان و بدون پیش فرض اجباری +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,درست {0} در ردیف {1} نمی تواند پنهان و بدون پیش فرض اجباری DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,رمز عبور نامعتبر: DocType: Print Settings,Send document web view link in email,ارسال سند لینک مشاهده وب سایت در ایمیل apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,نظرات خود را برای سند {0} است با موفقیت ذخیره شد apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,قبلی -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,پاسخ: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,پاسخ: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} ردیف برای {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",زیر ارز. برای مثال "سنت" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,انتخاب کنید فایل ارسال @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,پیوند apps/frappe/frappe/utils/file_manager.py +96,No file attached,بدون فایل پیوست DocType: Version,Version,نسخه DocType: User,Fill Screen,پر کردن صفحه -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",قادر به نمایش این گزارش درخت، با توجه به داده های از دست رفته. به احتمال زیاد، آن است که با توجه به مجوزهای فیلتر می شود. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,لطفا حساب به طور پیش فرض راه اندازی ایمیل از راه اندازی> ایمیل> حساب ایمیل +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",قادر به نمایش این گزارش درخت، با توجه به داده های از دست رفته. به احتمال زیاد، آن است که با توجه به مجوزهای فیلتر می شود. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. فایل را انتخاب کنید apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ویرایش از طریق بارگذاری -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",نوع سند ...، به عنوان مثال مشتری +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",نوع سند ...، به عنوان مثال مشتری apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,وضعیت '{0}' نامعتبر است DocType: Workflow State,barcode,بارکد apps/frappe/frappe/config/setup.py +232,Add your own translations,اضافه کردن ترجمه خود را @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,چهار شنبه apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",جدا از نقش بر قوانین اجازه، شما می توانید دسترسی کاربر بر اساس DocTypes اعمال می شود. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",این مجوز را برای تمام معاملات که در آن رکورد مجاز است در ارتباط اعمال می شود. برای مثال، اگر شرکت C به مجوز کاربر از کاربر X اضافه شده است، کاربر X تنها قادر به دیدن معاملات است که شرکت C به عنوان یک ارزش در ارتباط باشد. -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,تصویر زمینه باید یک FIELDNAME معتبر باشد +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,تصویر زمینه باید یک FIELDNAME معتبر باشد DocType: OAuth Client,Token,رمز DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (نام) نهاد که دارایی است به تنظیم شود apps/frappe/frappe/limits.py +82,"To renew, {0}.",برای تمدید، {0}. @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,موارد نوار کناری apps/frappe/frappe/installer.py +125,App {0} already installed,برنامه {0} در حال حاضر نصب DocType: Workflow State,exclamation-sign,علامت تعجب علامت apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,نمایش و ویرایش -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,درست گاهشمار باید یک لینک و یا لینک پویا +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,درست گاهشمار باید یک لینک و یا لینک پویا apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,محدوده زمانی apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,گانت apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},صفحه {0} از {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,معر apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",کلید رمزنگاری نامعتبر است، لطفا بررسی کنید site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,برای DocType: Kanban Board Column,darkgrey,خاکستری تیره -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},موفق: {0} به {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},موفق: {0} به {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,می توانید جزئیات کاربران در نسخه ی نمایشی را تغییر دهید. لطفا برای یک حساب جدید ثبت نام در https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,لطفا این تکراری برای ایجاد تغییرات apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF نسل به دلیل لینک های تصویر شکسته شکست خورده @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,پیش ساخته apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ذخیره apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,به چه نیاز دارید کمک کنیم؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,گزینه برای انتخاب. هر گزینه را در یک خط جدید است. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,به طور دائم لغو {0}؟ +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,به طور دائم لغو {0}؟ DocType: Workflow State,music,موسیقی DocType: Web Page,Settings,تنظیمات apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,لطفا DOCTYPE مشخص DocType: Print Format,Style Settings,تنظیمات سبک -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,قسمت مرتب سازی {0} باید یک FIELDNAME معتبر باشد +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,قسمت مرتب سازی {0} باید یک FIELDNAME معتبر باشد apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,بیش DocType: Contact,Sales Manager,مدیر فروش apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,تغییر نام DocType: Print Format,Format Data,فرمت داده ها -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,مانند +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,مانند DocType: Customize Form Field,Customize Form Field,سفارشی کردن فرم درست apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,اجازه می دهد کاربر DocType: OAuth Client,Grant Type,نوع گرانت apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,بررسی کنید که کدام اسناد توسط کاربر قابل خواندن هستند apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,لیست برنامه مجاز نیست -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,استفاده از درصد در جستجوی عمومی -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",دامنه ایمیل برای این حساب پیکربندی نشود، درست است؟ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,استفاده از درصد در جستجوی عمومی +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",دامنه ایمیل برای این حساب پیکربندی نشود، درست است؟ DocType: User,Reset Password Key,کلید بازیابی کلمه عبور DocType: Email Account,Enable Auto Reply,خودکار را فعال پاسخ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,دیده نمی @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,تنظیم، تنها یک بار DocType: Email Queue Recipient,Email Queue Recipient,ایمیل گیرنده صف DocType: Address,Nagaland,ناگالند apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,نام کاربری {0} حال حاضر وجود دارد -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: می تواند واردات را تنظیم کنید به عنوان {1} است واردات نه +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: می تواند واردات را تنظیم کنید به عنوان {1} است واردات نه apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},یک خطا در آدرس الگو شما وجود دارد {0} DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,هارد @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,از نام و نام خانوادگی apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},شما دسترسی ندارند به گزارش: {0} DocType: User,Send Welcome Email,ارسال ایمیل به انجمن خوش آمدید apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,آپلود فایل CSV شامل تمام اجازه در قالب همان دانلود. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,حذف فیلتر +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,حذف فیلتر DocType: Address,Daman and Diu,دامان و دیو DocType: Address,Personal,شخصی apps/frappe/frappe/config/setup.py +113,Bulk Rename,فله تغییر نام @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",استاندارد DOCTYPE نمی توانید فرمت چاپ طور پیش فرض، با استفاده از فرم سفارشی DocType: Report,Query,پرس و جو DocType: DocType,Sort Order,ترتیب -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'نمایش لیستی' برای نوع {0} در ردیف {1} مجاز نیست +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'نمایش لیستی' برای نوع {0} در ردیف {1} مجاز نیست DocType: Custom Field,Select the label after which you want to insert new field.,برچسب و پس از آن شما می خواهید برای وارد کردن زمینه های جدید را انتخاب کنید. ,Document Share Report,سند اشتراک گزارش DocType: User,Last Login,تاریخ و زمان آخرین ورود -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname در ردیف مورد نیاز است {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname در ردیف مورد نیاز است {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ستون DocType: Custom Field,Adds a custom field to a DocType,می افزاید: درست سفارشی را به یک DOCTYPE DocType: File,Is Home Folder,صفحه اصلی پوشه است @@ -583,7 +583,7 @@ DocType: File,Folder,پوشه DocType: DocField,Index,شاخص DocType: Email Group,Newsletter Manager,مدیر خبرنامه apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,انتخاب 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,تمام پست ها +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} به {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ورود به سیستم از خطا در هنگام درخواست. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} با موفقیت به ایمیل گروه اضافه شده است. DocType: Address,Uttar Pradesh,اوتار پرادش @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,شاخص DocType: DocShare,Everyone,هر کس DocType: Workflow State,backward,وارونه -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: فقط یک قاعده اجازه با همان نقش، سطح و {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: فقط یک قاعده اجازه با همان نقش، سطح و {1} DocType: Email Queue,Add Unsubscribe Link,اضافه کردن پیوند لغو اشتراک apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,بدون نظر. شروع یک بحث جدید. DocType: Workflow State,share,سهم @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,مجا apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,مشخصات مشترکین apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,خانم DocType: Website Theme,Background Color,رنگ پس زمینه -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,بودند خطاهای هنگام ارسال ایمیل وجود دارد. لطفا دوباره تلاش کنید. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,بودند خطاهای هنگام ارسال ایمیل وجود دارد. لطفا دوباره تلاش کنید. DocType: Portal Settings,Portal Settings,تنظیمات پورتال DocType: Web Page,0 is highest,0 بالاترین است apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,آیا مطمئن هستید که می خواهید به پیوند این ارتباط {0} به؟ @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,تماس با ما تنظیمات apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,جستجوکردن ... DocType: Workflow State,text-width,متن عرض -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,حداکثر فایل پیوست برای این سابقه بوده است. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,حداکثر فایل پیوست برای این سابقه بوده است. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,زمینه های اجباری زیر باید پر شود:
DocType: Email Alert,View Properties (via Customize Form),نمایش خواص (از طریق فرم سفارشی) DocType: Note Seen By,Note Seen By,توجه داشته باشید که توسط @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,راجستان apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,گزارش گزارش ساز به طور مستقیم توسط سازنده گزارش اداره می شود. کاری برای انجام دادن نیست. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,لطفا آدرس ایمیل خود را تایید کنید apps/frappe/frappe/model/document.py +903,none of,هیچکدام از -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ارسال یک کپی +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ارسال یک کپی apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,آپلود مجوز کاربر DocType: Dropbox Settings,App Secret Key,برنامه راز های کلیدی apps/frappe/frappe/config/website.py +7,Web Site,سایت اینترنتی apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,آیتم های چک خواهد شد بر روی دسکتاپ نشان داده شده است -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} نمی تواند برای انوع تکی یا مجردی تنظیم شود +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} نمی تواند برای انوع تکی یا مجردی تنظیم شود apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban و انجمن {0} وجود ندارد. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} در حال مشاهده این سند DocType: ToDo,Assigned By Full Name,اختصاص داده شده توسط نام و نام خانوادگی apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} بروز شد -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,گزارش می تواند برای انواع تنها نمی تواند تنظیم شود +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,گزارش می تواند برای انواع تنها نمی تواند تنظیم شود apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} روز پیش DocType: Email Account,Awaiting Password,در انتظار رمز عبور DocType: Address,Address Line 1,خط 1 آدرس @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",ایالات به طور (به عنوان مثال پیش نویس، مصوب، منتفی شد). DocType: Print Settings,Allow Print for Draft,اجازه چاپ برای پیش نویس apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,تنظیم تعداد -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ارسال این سند را به اعلام +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ارسال این سند را به اعلام DocType: Contact,Unsubscribed,اشتراک لغو apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,نقش تنظیم سفارشی برای صفحه و گزارش apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,رتبه: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ابزار واردات DocType: Address,Dadra and Nagar Haveli,دادرا و ناگار هاولی apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,فایل های آپلود لطفا صبر کنید برای چند ثانیه. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ضمیمه تصویر شما +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ضمیمه تصویر شما apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ارزش ردیف ها تغییر DocType: Workflow State,Stop,توقف DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,لینک به صفحه شما می خواهید برای باز کردن. خالی بگذارید اگر شما می خواهید به آن پدر و مادر گروه را. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,تراز برچسب به چپ DocType: Help Article,Expert,کارشناس DocType: Workflow State,circle-arrow-right,دایره-فلش-راست DocType: LDAP Settings,LDAP Server Url,LDAP آدرس سرور -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,می تواند به عنوان مثال باز کردن نیست که آن {0} باز است +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,می تواند به عنوان مثال باز کردن نیست که آن {0} باز است apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,منتظر در صف نصب DocType: Custom DocPerm,Custom DocPerm,DocPerm سفارشی DocType: Newsletter,Send Unsubscribe Link,ارسال پیوند لغو اشتراک @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,برنامه {0} حذف DocType: Custom DocPerm,Apply User Permissions,درخواست مجوز کاربر DocType: User,Modules HTML,ماژول HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,راه اندازی> مدیریت ویرایش کاربر apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,از دست رفتن ارزش های مورد نیاز DocType: DocType,Other Settings,سایر تنظیمات DocType: Social Login Keys,Frappe,یخ در بهشت @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth حفظ حامل رمز apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,هیچ سند انتخاب apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,دکتر DocType: Event,Event,واقعه -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",در {0}، {1} نوشته است: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",در {0}، {1} نوشته است: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,می تواند درست استاندارد را حذف کنید. شما می توانید آن را پنهان اگر شما می خواهید DocType: Top Bar Item,For top bar,برای نوار بالا apps/frappe/frappe/utils/bot.py +148,Could not identify {0},می تواند شناسایی کند {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,میز دسترسی DocType: Workflow State,minus,منهای apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,خطای سرور: لطفا سیاهههای مربوط به سرور خود را چک کنید و یا تماس با پشتیبانی فنی. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ایمیل ارسال -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,اجازه دهید سیستم آماده برای استفاده است. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,اجازه دهید سیستم آماده برای استفاده است. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,برجسته apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,قبلا ثبت نام DocType: System Settings,Float Precision,دقت شناور @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,اجازه چاپ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,هیچ برنامه نصب apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,علامت گذاری به عنوان زمینه اجباری DocType: Communication,Clicked,کلیک -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},بدون اجازه '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},بدون اجازه '{0}' {1} DocType: User,Google User ID,گوگل ID کاربر apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,برنامه ریزی به ارسال DocType: DocType,Track Seen,آهنگ دیده @@ -822,7 +821,7 @@ DocType: Address,Kerala,کرالا DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,جلسات به طور همزمان DocType: OAuth Client,Client Credentials,مدارک مشتری -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,باز کردن یک ماژول یا ابزار +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,باز کردن یک ماژول یا ابزار DocType: Communication,Delivery Status,تحویل وضعیت DocType: Module Def,App Name,نام برنامه apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,حداکثر اندازه فایل مجاز {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,ارتباطات مرجع DocType: Email Queue,Unsubscribe Method,روش لغو اشتراک DocType: GSuite Templates,Related DocType,DOCTYPE های مرتبط apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ویرایش برای اضافه کردن مطالب -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,انتخاب زبان -apps/frappe/frappe/__init__.py +510,No permission for {0},بدون اجازه برای {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,انتخاب زبان +apps/frappe/frappe/__init__.py +509,No permission for {0},بدون اجازه برای {0} DocType: DocType,Advanced,پیشرفته apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,به نظر می رسد کلید API یا API راز اشتباه است. apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},مرجع: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,را وارد کنید فرم نوع apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,هیچ پرونده برچسب. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,حذف درست DocType: User,Send Password Update Notification,ارسال هشدار از طریق رمز عبور به روز رسانی -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",اجازه می دهد DOCTYPE، DOCTYPE. مواظب باش! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",اجازه می دهد DOCTYPE، DOCTYPE. مواظب باش! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",فرمت سفارشی برای چاپ، ایمیل apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,به روز شده برای نسخه های جدید DocType: Custom Field,Depends On,بستگی دارد به @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,یکی از apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,لطفا فایل را کپی کنید را انتخاب کنید apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,چک کردن یک لحظه apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,نمایش برچسب ها +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",اگر درخواست اکید اجازه کاربر چک می شود و اجازه کاربر برای یک DOCTYPE برای یک کاربر تعریف شده است، پس از آن همه اسناد که در آن ارزش از لینک خالی است، خواهد شد که کاربر نمایش داده نمی شود DocType: Address,Billing,صدور صورت حساب DocType: Email Queue,Not Sent,ارسال نشد DocType: Web Form,Actions,عملیات @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,هر روز باید وقایع در همان روز به پایان برسد. DocType: Communication,User Tags,کاربر برچسب ها apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,واکشی تصاویر .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,راه اندازی> کاربر DocType: Workflow State,download-alt,دانلود-ALT apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},دانلود برنامه {0} DocType: Communication,Feedback Request,درخواست پاسخ به بازخورد @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,پشتیبان گیری apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,اضافه کردن تماس DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاری: همیشه به این شناسه را ارسال کنید. هر آدرس ایمیل در یک ردیف جدید -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,پنهان کردن جزئیات +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,پنهان کردن جزئیات DocType: Workflow State,Tasks,وظایف DocType: Event,Tuesday,سهشنبه DocType: Blog Settings,Blog Settings,تنظیمات وبلاگ @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ارسال فایل پایتون در همان پوشه که در آن ذخیره شده است و این بازگشت ستون و نتیجه. DocType: DocType,Sort Field,مرتب کردن بر اساس درست DocType: Razorpay Settings,Razorpay Settings,تنظیمات Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,ویرایش فیلتر -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,درست {0} از نوع {1} نمی تواند اجباری -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",مانند. اگر درخواست مجوز کاربر برای گزارش DOCTYPE بررسی اما بدون مجوز کاربر برای گزارش برای یک کاربر تعریف شده، پس از آن همه ی گزارش ها نشان داده شده است که کاربر +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,ویرایش فیلتر +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,درست {0} از نوع {1} نمی تواند اجباری apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,اضافه کردن بیشتر apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,مخفی کردن نمودار DocType: System Settings,Session Expiry Mobile,جلسه انقضاء موبایل @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,به تاخیر افتاده apps/frappe/frappe/config/setup.py +128,List of backups available for download,فهرست پشتیبان گیری برای دانلود در دسترس apps/frappe/frappe/www/login.html +89,Sign up,ثبت نام DocType: Test Runner,Output,تولید +DocType: Email Alert,Set Property After Alert,تنظیم مشخصه پس از هشدار apps/frappe/frappe/config/setup.py +226,Add fields to forms.,اضافه کردن زمینه های به اشکال. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,به نظر می رسد مانند چیزی اشتباه است با پیکربندی پی پال این سایت است. DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,برگ DocType: Portal Menu Item,Portal Menu Item,آیتم های منو را پورتال DocType: User Email,Email ID,ایمیل ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",اگر درخواست مجوز کاربر برای گزارش DOCTYPE بررسی اما هیچ مجوز کاربر برای گزارش برای یک کاربر تعریف شده است، پس از آن همه گزارش ها به آن کاربر نشان داده شده است DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,فهرستی از منابع که برنامه سرویس گیرنده دسترسی به پس از کاربر اجازه می دهد تا داشته باشد.
به عنوان مثال پروژه DocType: Translation,Translated Text,متن ترجمه شده DocType: Contact Us Settings,Query Options,گزینه های پرس و جو @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,اطلاعات تماس DocType: System Settings,Setup Complete,راه اندازی کامل apps/frappe/frappe/config/setup.py +66,Report of all document shares,گزارش تمام سهام سند apps/frappe/frappe/www/update-password.html +18,New Password,رمز عبور جدید -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,فیلتر {0} از دست رفته +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,فیلتر {0} از دست رفته apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,متاسف! شما می توانید نظرات خودکار تولید را حذف کنید DocType: Website Theme,Style using CSS,سبک با استفاده از CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DOCTYPE مرجع @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,ماژول بلوک apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,بازگشت به طول {0} برای '{1}' در '{2}'؛ تنظیم طول و {3} خواهد برشی از داده شود. DocType: Print Format,Custom CSS,CSS سفارشی apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,اضافه کردن نظر -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},نادیده گرفته: {0} به {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},نادیده گرفته: {0} به {1} DocType: Address,Gujarat,گجرات apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ورود به سیستم خطا در مورد رویداد های خودکار (زمانبندی). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),نه یک کاما از هم جدا ارزش معتبر (CSV فایل) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,به طور پیش فرض ورودی DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,پرچم DocType: Role,"If disabled, this role will be removed from all users.",اگر غیرفعال باشد، این نقش را از تمام کاربران حذف می شود. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,کمک در جستجو +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,کمک در جستجو apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,ثبت نام اما غیر فعال DocType: DocType,Hide Copy,مخفی کپی apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,پاک کردن تمام نقش @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,کشور apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,نشانی ها DocType: Communication,Shared,به اشتراک گذاشته شده -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ضمیمه کردن یک سند چاپ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ضمیمه کردن یک سند چاپ DocType: Bulk Update,Field,رشته DocType: Communication,Received,رسیده DocType: Social Login Keys,Google Client ID,گوگل کارفرما ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,گزارش پرس و جو DocType: User,Set New Password,تنظیم کلمه عبور جدید DocType: User,Github User ID,گیتهاب ID کاربر apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,اگر نوع سند -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","نمی توانید حذف و یا لغو دلیل {0} {1} با مرتبط {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","نمی توانید حذف و یا لغو دلیل {0} {1} با مرتبط {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},برنامه ناشناخته {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",٪ s از فرمت گزارش معتبر نیست. فرمت گزارش باید یکی از موارد زیر٪ S \ DocType: Communication,Chat,گپ زدن -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} به نظر می رسد چند بار در ردیف {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} به نظر می رسد چند بار در ردیف {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} از {1} به {2} در ردیف # {3} DocType: Communication,Expired,تمام شده DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),تعداد ستون ها برای یک میدان در یک شبکه (مجموع ستون در یک شبکه باید کمتر از 11 باشد) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,حساب کاربر apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},نامشخص چاپ فرمت: {0} DocType: Workflow State,arrow-down,فلش به پایین apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,سقوط -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},کاربر مجاز به حذف {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},کاربر مجاز به حذف {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,آخرین بروز رسانی در DocType: Help Article,Likes,دوست دارد DocType: Website Settings,Top Bar,بالا نوار DocType: GSuite Settings,Script Code,کد اسکریپت apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ایجاد کاربر ایمیل -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,هیچ مجوزی مشخص نشده +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,هیچ مجوزی مشخص نشده apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,تنظیمات جهانی: فقط کاربران قادر خواهد بود تا را انتخاب کنید آیکون بررسی شود apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} یافت نشد DocType: Custom Role,Custom Role,نقش سفارشی apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,صفحه اصلی / پوشه تست 2 DocType: System Settings,Ignore User Permissions If Missing,نادیده گرفتن مجوز کاربر اگر از دست رفته -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,لطفا قبل از آپلود سند را ذخیره کنید. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,لطفا قبل از آپلود سند را ذخیره کنید. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,رمز عبور خود را وارد کنید DocType: Dropbox Settings,Dropbox Access Secret,Dropbox به دسترسی راز apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,اضافه کردن یکی دیگر از نظر apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,ویرایش DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,لغو اشتراک از عضویت در خبرنامه -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ریختن (فولد) باید قبل از شکستن بخش آمده +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ریختن (فولد) باید قبل از شکستن بخش آمده apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,آخرین تغییر توسط DocType: Workflow State,hand-down,دست به پایین DocType: Address,GST State,GST دولت -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: آیا می توانم تنظیم نشده لغو بدون ارسال +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: آیا می توانم تنظیم نشده لغو بدون ارسال DocType: Website Theme,Theme,موضوع apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,خطاهایی وجود دارد. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,تغییر مسیر URI ملزم به کد تایید @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,تن DocType: Website Theme,Text Color,رنگ متن DocType: Desktop Icon,Force Show,نیروی نمایش apps/frappe/frappe/auth.py +78,Invalid Request,درخواست نامعتبر است -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,این شکل هیچ ورودی ندارد +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,این شکل هیچ ورودی ندارد apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},جلسه انقضاء باید در فرمت {0} DocType: Website Sidebar Item,Group,گروه DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",انتخاب هدف = "_blank" برای باز کردن در صفحه جدید. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,نادیده گرفتن کد خطا است. DocType: Workflow State,wrench,اچار فرانسه apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,تنظیم نشده -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,راه اندازی> کاربر DocType: Authentication Log,Date,تاریخ DocType: Website Settings,Disable Signup,غیر فعال کردن ثبت نام apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,سفت و سخت در حالی که سیستم شما در حال راه اندازی. این ممکن است چند لحظه طول بکشد. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,اضافه کردن نظر DocType: DocField,Mandatory,اجباری apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ماژول برای صادرات -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: بدون تنظیم دسترسی عمومی +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: بدون تنظیم دسترسی عمومی apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,اشتراک شما منقضی خواهد شد در {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},لینک دانلود برای خود نسخه پشتیبان تهیه خواهد شد در آدرس ایمیل زیر ایمیل فرستاده: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",معنی از ثبت، لغو، اصلاح @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,جستجوهای گزارش apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},اختصاص یافته به {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,فیلترهای ذخیره شده DocType: DocField,Percent,در صد -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,لطفا فیلتر تنظیم +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,لطفا فیلتر تنظیم apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,مرتبط با DocType: Workflow State,book,کتاب DocType: Website Settings,Landing Page,صفحه فرود -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,اشکال در سفارشی اسکریپت +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,اشکال در سفارشی اسکریپت apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} نام apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",واردات درخواست صف. این ممکن است چند لحظه طول بکشد، لطفا صبور باشید. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,بدون اجازه انتخاب این معیار. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,اجازه ورود ب apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,شما اجازه به اندازه کافی برای دسترسی به این منبع را ندارید. لطفا با مدیر شما برای دسترسی. DocType: Custom Field,Custom,رسم apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,راه اندازی ایمیل هشدار بر اساس معیارهای مختلف است. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},پست واصل تحت {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},پست واصل تحت {0} DocType: Email Alert,Send alert if date matches this field's value,ارسال هشدار در صورت عضویت مسابقات ارزش این زمینه را DocType: Workflow,Transitions,انتقال apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,حذف {0} و حذف تمام داده؟ @@ -1284,9 +1285,8 @@ DocType: User,Login After,ورود بعد از DocType: Print Format,Monospace,عرض DocType: Letter Head,Printing,چاپ DocType: Workflow State,thumbs-up,شست به بالا -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل را تنظیم کنیم. لطفا یک حساب ایمیل جدید از راه اندازی> ایمیل> حساب ایمیل ایجاد DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,دقیق باید بین 1 و 6 است +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,دقیق باید بین 1 و 6 است apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,و DocType: Error Snapshot,Frames,قاب @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,لینک تصویر DocType: Auto Email Report,Report Filters,گزارش فیلترها apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,اکنون DocType: Workflow State,step-backward,گام به گام به عقب -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,لطفا کلیدهای دسترسی Dropbox به پیکربندی در سایت خود تنظیم apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,حذف این رکورد اجازه می دهد تا ارسال به این آدرس ایمیل apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,تنها فیلدها اجباری لازم برای پرونده جدید است. شما می توانید ستون اجباری اگر شما می خواهید حذف کنید. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,فایل های پیوست پوشه است apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,بازکردن همه apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,شناسه معتبر مورد نیاز است. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,باز کردن مجدد -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,شما را از پرداخت لغو کرده اند -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,لطفا یک فایل CSV معتبر با داده را انتخاب کنید +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,لطفا یک فایل CSV معتبر با داده را انتخاب کنید apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} این سند را از حالت اشتراک با {1} خارج کرد apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,وضعیت سند انتقال از {0} به {1} مجاز نیست DocType: DocType,"Make ""name"" searchable in Global Search",را "نام" جستجو در جهانی جستجو @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ا DocType: Help Category,Help Category,راهنما رده apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,کاربر {0} غیر فعال است apps/frappe/frappe/www/404.html +8,Page missing or moved,صفحه گم شده و یا نقل مکان کرد -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,ویرایش {0} خواص DocType: DocType,Route,مسیر apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay تنظیمات دروازه پرداخت DocType: DocField,Name,نام apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,شما در فضای حداکثر {0} برای طرح خود را فراتر رفته است. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,جستجو اسناد DocType: OAuth Authorization Code,Valid,معتبر -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,لینک گسترش -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,زبان شما +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,لینک گسترش +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,زبان شما apps/frappe/frappe/desk/form/load.py +46,Did not load,بارگیری نشد apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,اضافه کردن ردیف DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,است درخ DocType: Address,Lakshadweep Islands,جزایر لکشادویپ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,می توانید بنویسید apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",اسناد خاص، مانند یک فاکتور، نباید تغییر کنند یک بار نهایی است. دولت نهایی برای چنین اسناد ارائه شده نامیده می شود. شما می توانید محدود است که نقش می توانید ارسال کنید. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,شما مجاز به خروجی گرفتن از این گزارش نیستید +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,شما مجاز به خروجی گرفتن از این گزارش نیستید apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 آیتم انتخاب شده DocType: Newsletter,Test Email Address,تست آدرس ایمیل DocType: ToDo,Sender,فرستنده @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,وبلاگ واردات apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID سند DocType: Print Settings,Letter,نامه -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,تصویر زمینه باید از این نوع باشد ضمیمه تصویر +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,تصویر زمینه باید از این نوع باشد ضمیمه تصویر DocType: DocField,Columns,ستون ها DocType: Async Task,Succeeded,پیش apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},زمینه های مورد نیاز اجباری در {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,ویرایشگر متن apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,تنظیمات برای درباره ما صفحه. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,ویرایش سفارشی HTML DocType: Error Snapshot,Error Snapshot,خطا عکس فوری -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,به +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,به DocType: Email Alert,Value Change,تغییر ارزش DocType: Standard Reply,Standard Reply,پاسخ استاندارد apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,عرض جعبه ورودی @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,با استفاده از این fieldname برای تولید عنوان apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,واردات از ایمیل apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,دعوت به عنوان کاربر -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,انتخاب فایل های پیوست +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,انتخاب فایل های پیوست apps/frappe/frappe/model/naming.py +94, for {0},برای {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,شد خطا وجود دارد. لطفا این گزارش است. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,شما مجاز به چاپ این سند نیستید +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,شما مجاز به چاپ این سند نیستید apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,لطفا مقدار فیلتر در جدول گزارش فیلتر تنظیم شده است. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,در حال بارگیری گزارش +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,در حال بارگیری گزارش apps/frappe/frappe/limits.py +72,Your subscription will expire today.,اشتراک شما امروز منقضی خواهد شد. DocType: Page,Standard,استاندارد apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ضمیمهی فایل @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ضمیمهها منطقه DocType: LDAP Settings,Base Distinguished Name (DN),پایه نام برجسته (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ترک این گفتگو -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},گزینه ها برای درست تنظیم نشده لینک {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},گزینه ها برای درست تنظیم نشده لینک {0} DocType: Customize Form,"Must be of type ""Attach Image""",باید از این نوع باشد "ضمیمه تصویر" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,لغو انتخاب همه apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},شما نمی توانید تنظیم نشده فقط خواندنی برای فیلد{0} بگذارید @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,یادداشت apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,گزارش خطا apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,شرایط فیدبک مطابقت ندارند -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,درست گاهشمار باید یک FIELDNAME معتبر باشد +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,درست گاهشمار باید یک FIELDNAME معتبر باشد DocType: Currency,Symbol,نماد -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ردیف # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ردیف # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,کلمه عبور جدید را در ایمیل فرستاده apps/frappe/frappe/auth.py +245,Login not allowed at this time,ورود در این زمان مجاز نیست DocType: Email Account,Email Sync Option,ایمیل همگام سازی گزینه @@ -1555,7 +1553,7 @@ DocType: DocField,Text,متن apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,استاندارد پاسخ ها به پرسش رایج است. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,به طور پیش فرض ارسال DocType: Workflow State,volume-off,حجم کردن -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},پسندیده شده توسط {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},پسندیده شده توسط {0} DocType: Footer Item,Footer Item,مورد بالا و پایین صفحه ,Download Backups,دانلود پشتیبان گیری apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,صفحه اصلی / پوشه آزمون 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,متن چین apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},نام می تواند شامل کاراکترهای خاص مانند {0} DocType: Contact Us Settings,Forward To Email Address,به جلو به آدرس پست الکترونیک apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,نمایش همه داده ها -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,عنوان درست باید fieldname معتبر باشد +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,عنوان درست باید fieldname معتبر باشد apps/frappe/frappe/config/core.py +7,Documents,اسناد DocType: Email Flag Queue,Is Completed,به اتمام است apps/frappe/frappe/www/me.html +22,Edit Profile,ویرایش پروفایل @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",در این زمینه به نظر می رسد تنها در صورتی که FIELDNAME تعریف شده در اینجا دارای ارزش و یا قوانین واقعی (مثال): myfield محاسبه-: doc.myfield == 'ارزش من "تابع eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,امروز +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,امروز apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",هنگامی که شما تعیین کرده اند این، کاربران تنها اسناد دسترسی قادر باشد (. به عنوان مثال وبلاگ پست) که در آن پیوند وجود دارد (به عنوان مثال بلاگر). DocType: Error Log,Log of Scheduler Errors,ورود از خطاها زمانبند DocType: User,Bio,بیوگرافی @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ستاره بودن کمترین و 5 ستاره بودن بالاترین امتیاز DocType: Event,Ref Name,نام کد عکس DocType: Web Page,Center,مرکز +DocType: Email Alert,Value To Be Set,ارزش به تنظیم شود apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,سطح اول DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,نشان دهنده ایالات مجاز در یک سند و نقش داده شده به تغییر دولت است. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,فرم تازه کردن @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,است مشاهده وب سایت apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",نام DOCTYPE باید با یک حرف شروع و آن را تنها می توانید از حروف، اعداد، فاصله و زیرین شامل DocType: Communication,Spam,هرزنامه ها DocType: Integration Request,Integration Request,درخواست پاسخ به ادغام -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,عزیز +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,عزیز DocType: Address,Maharashtra,ماهاراشترا DocType: Address,Accounts User,کاربر حسابها DocType: Web Page,HTML for header section. Optional,HTML برای بخش هدر. اختیاری apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,این قابلیت با نام تجاری جدید و هنوز هم تجربی است -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,حداکثر {0} ردیف اجازه +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,حداکثر {0} ردیف اجازه DocType: Email Unsubscribe,Global Unsubscribe,جهانی لغو عضویت apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,این رمز بسیار رایج است. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,چشم انداز DocType: Communication,Assigned,اختصاص داده DocType: Print Format,Js,جی اس -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,انتخاب قالب چاپ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,انتخاب قالب چاپ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,الگوهای صفحه کلید کوتاه به راحتی حدس زده DocType: Portal Settings,Portal Menu,منو پورتال apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,طول {0} باید بین 1 و 1000 می باشد @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,کاربر نمی تواند جستجو apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,قالب خروجی نامعتبر DocType: Custom DocPerm,Apply this rule if the User is the Owner,درخواست این قانون در صورتی که کاربر مالک است -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,همان شناسه ورود خود را +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,همان شناسه ورود خود را apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,ساخت گزارش DocType: Note,Notify users with a popup when they log in,کاربران آگاه کن با یک پنجره زمانی که آنها وارد سیستم شوید apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} وجود ندارد، انتخاب یک هدف جدید برای ادغام @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,نقش اجازه apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,به روز رسانی DocType: Error Snapshot,Snapshot View,عکس فوری دیدگاه apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,لطفا قبل از ارسال خبرنامه نجات -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},گزینه باید DOCTYPE معتبر برای درست {0} در ردیف شود {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} سال پیش +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},گزینه باید DOCTYPE معتبر برای درست {0} در ردیف شود {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ویرایش ویژگیها DocType: Patch Log,List of patches executed,فهرست تکه اعدام apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} قبلا لغو شده است -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ارتباطات متوسط +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ارتباطات متوسط DocType: Website Settings,Banner HTML,بنر HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',لطفا روش پرداخت دیگری را انتخاب کنید. Razorpay از انجام تراکنش در ارز را پشتیبانی نمی کند '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,در صف برای تهیه پشتیبان. ممکن است چند دقیقه تا یک ساعت طول می کشد. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,ثبت نام OAuth حفظ Client نرم افزار -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} نمی تواند ""{2}"" باشد. ولی میتواند یکی از ""{3}"" باشد" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} نمی تواند ""{2}"" باشد. ولی میتواند یکی از ""{3}"" باشد" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} یا {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,نمایش یا عدم نمایش آیکن های دسکتاپ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,به روز رسانی رمز عبور @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,نمایش فواصل خط بعد از بخش ها DocType: Blogger,Short Name,نام کوتاه apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},صفحه {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",شما در حال انتخاب گزینه همگام سازی به عنوان همه، آن را همه \ خواندن و همچنین پیام خوانده نشده از سرور را resync. این نیز ممکن است باعث تقلید \ ارتباطات (ایمیل). apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,فایل های حجم @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,مدیر خرید DocType: Custom Script,Sample,نمونه apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,دسته بندی نشده برچسب ها DocType: Event,Every Week,هر هفته +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,حساب ایمیل را تنظیم کنیم. لطفا یک حساب ایمیل جدید از راه اندازی> ایمیل> حساب ایمیل ایجاد apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,برای بررسی استفاده از خود را و یا ارتقاء به یک برنامه بالاتر اینجا را کلیک کنید DocType: Custom Field,Is Mandatory Field,آیا فیلد اجباری DocType: User,Website User,وب سایت کاربر @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,منو سفارشی نوار DocType: Workflow State,pencil,مداد apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,پیام های چت و دیگر اطلاعیه ها. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},قرار دادن به عنوان پس می توانید تنظیم شود {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},قرار دادن به عنوان پس می توانید تنظیم شود {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,اشتراک {0} با apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ایمیل راه اندازی حساب کاربری لطفا رمز عبور خود را وارد کنید: DocType: Workflow State,hand-up,دست تا DocType: Blog Settings,Writers Introduction,نویسندگان مقدمه DocType: Address,Phone,تلفن -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,خطا در حالی که ارزیابی ایمیل هشدار {0}. لطفا قالب خود را حل کنند. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,خطا در حالی که ارزیابی ایمیل هشدار {0}. لطفا قالب خود را حل کنند. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,انتخاب نوع سند یا نقش را آغاز کنیم. DocType: Contact,Passive,غیر فعال DocType: Contact,Accounts Manager,مدیر حساب ها +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,پرداخت شما لغو می شود. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,انتخاب نوع فایل DocType: Help Article,Knowledge Base Editor,دانش ویرایشگر پایه apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,صفحه پیدا نشد @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,نوع ملک DocType: Workflow State,screenshot,تصویر apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,تنها مدیر می تواند یک گزارش استاندارد ذخیره کنید. لطفا تغییر نام دهید و ذخیره کنید. DocType: System Settings,Background Workers,کارگران پس زمینه +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} متضاد با شی متا DocType: Deleted Document,Data,داده apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,وضعیت سند apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},شما را ساخته اند {0} از {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,مجوز نمایش این کاربر apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,شما باید به سیستم وارد شوید و نقش سیستم مدیریت قادر به دسترسی برای پشتیبان گیری داشته باشید apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,باقی مانده -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,لطفا قبل از اتصال را نجات دهد. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,لطفا قبل از اتصال را نجات دهد. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),اضافه شده {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},تم پیش فرض در مجموعه {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype می تواند از عوض نمی شوند {0} به {1} در ردیف {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,تنظیمات سیستم apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,جلسه شروع نشد apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},این ایمیل {0} به فرستاده شد و کپی شده را به {1} DocType: Workflow State,th,هفتم -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,لطفا حساب به طور پیش فرض راه اندازی ایمیل از راه اندازی> ایمیل> حساب ایمیل -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ایجاد جدید {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ایجاد جدید {0} DocType: Email Rule,Is Spam,اسپم apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},گزارش {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},گسترش {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},گسترش {0} DocType: OAuth Client,Default Redirect URI,به طور پیش فرض تغییر مسیر URI DocType: Email Alert,Recipients,دریافت کنندگان DocType: Workflow State,ok-sign,OK-علامت @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,راهنما مقاله ,Modules Setup,ماژول راه اندازی apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,نوع: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,پرداخت شما ناموفق بوده است. DocType: Communication,Unshared,اشتراک گذاشتن DocType: Address,Karnataka,کارناتاکا apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ماژول پیدا نشد @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,تصویر نام تجاری DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",راه اندازی ناوبری بار بالا، بالا و پایین صفحه و آرم. DocType: Web Form Field,Max Value,حداکثر ارزش -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},برای {0} در سطح {1} در {2} در ردیف {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},برای {0} در سطح {1} در {2} در ردیف {3} DocType: Contact,All,همه DocType: Email Queue,Recipient,گیرنده DocType: Communication,Has Attachment,دارای فایل پیوست @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,تراز راست DocType: Auto Email Report,Email To,ارسال ایمیل به apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,پوشه {0} خالی نیست DocType: Page,Roles,نقش -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,درست {0} انتخاب نیست. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},خطا: ارزش از دست رفته برای {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,درست {0} انتخاب نیست. DocType: System Settings,Session Expiry,جلسه انقضاء DocType: Workflow State,ban-circle,ممنوعیت دایره DocType: Email Flag Queue,Unread,خوانده نشده @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,به طور پیش فرض کاربر apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,ایجاد جدید DocType: Workflow State,chevron-down,شورون به پایین -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),ایمیل به ارسال {0} (لغو / غیر فعال) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),ایمیل به ارسال {0} (لغو / غیر فعال) DocType: Async Task,Traceback,ردیابی DocType: Currency,Smallest Currency Fraction Value,کوچکترین ارز ارزش کسر apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,اختصاص به @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,از DocType: Website Theme,Google Font (Heading),گوگل قلم (شماره) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,اولین انتخاب یک گره گروه. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},یافتن {0} در {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},یافتن {0} در {1} DocType: OAuth Client,Implicit,ضمنی DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",اضافه به ارتباطات در برابر این DOCTYPE (باید زمینه های، "وضعیت" داشته باشد، "موضوع") DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",URI ها برای دریافت کد مجوز یک بار که کاربر اجازه می دهد تا دسترسی، و همچنین پاسخ شکست. به طور معمول یک نقطه پایانی REST در معرض توسط برنامه مشتری.
به عنوان مثال HTTP: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,مجاز به تغییر {0} پس از ارسال +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,مجاز به تغییر {0} پس از ارسال DocType: Communication,Comment Type,نظر نوع DocType: OAuth Client,OAuth Client,OAuth حفظ مشتری apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,کاربران @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},قادر به خواندن فرمت فایل برای {0} DocType: Auto Email Report,Filter Data,فیلتر داده apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,اضافه کردن برچسب -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,لطفا ابتدا یک فایل ضمیمه کنید. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,لطفا ابتدا یک فایل ضمیمه کنید. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",برخی از خطاهای تنظیم نام وجود دارد، لطفا با مدیر تماس بگیرید apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,حساب های ایمیل های دریافتی درست نیست apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,ایمیل ارسال DocType: DocField,Ignore XSS Filter,نادیده گرفتن XSS فیلتر apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,حذف شده apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,تنظیمات پشتیبان گیری Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ارسال ایمیل +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ارسال ایمیل DocType: Website Theme,Link Color,رنگ لینک ها apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,کاربر {0} نمی تواند غیر فعال شود apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",مدیر محترم سیستم، -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,کشور شما +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,کشور شما DocType: Event,Sunday,یکشنبه apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,در شبکه نمایش DocType: Address Template,Template,قالب @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,دهلی apps/frappe/frappe/config/integrations.py +48,LDAP Settings,تنظیمات LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,اصلاح apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,پی پال تنظیمات دروازه پرداخت -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) کوتاه خواهد شد، به عنوان شخصیت های حداکثر مجاز {2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) کوتاه خواهد شد، به عنوان شخصیت های حداکثر مجاز {2} DocType: OAuth Client,Resource Owner Password Credentials,منابع مالک گذرواژه DocType: OAuth Client,Response Type,نوع پاسخ apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,حداکثر کاربر @@ -2033,7 +2037,7 @@ DocType: DocField,Table,جدول DocType: File,File Size,حجم فایل apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,شما باید برای ارسال این فرم وارد شوید DocType: User,Background Image,تصویر پس زمینه -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",انتخاب کشور خود، منطقه زمانی و ارز +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",انتخاب کشور خود، منطقه زمانی و ارز apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,بین DocType: Async Task,Queued,صف @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,ساختن apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},فیلتر نامعتبر: {0} DocType: Email Account,no failed attempts,تلاش بدون شکست خورده +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,بدون پیش فرض آدرس الگو پیدا شده است. لطفا یکی از جدید از راه اندازی> چاپ و تبلیغات تجاری> آدرس الگو ایجاد کنید. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,برنامه کلید دسترسی DocType: OAuth Bearer Token,Access Token,نشانه دسترسی @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,گیتهاب نام کاربری DocType: DocType,Image View,تصویر مشخصات apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",نظر می رسد چیزی در معامله را اشتباه رفت. از آنجا که ما پرداخت را اعلام نکرده اند، پی پال به طور خودکار شما این مقدار بازپرداخت. اگر آن را ندارد، لطفا به ما ایمیل بفرستید و ذکر ID همبستگی: {0}. -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",شامل نمادها، اعداد و حروف بزرگ در رمز عبور -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",قرار دادن بعد از میدان '{0}' ذکر شده در سفارشی درست '{1}'، با برچسب '{2}، وجود ندارد +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",شامل نمادها، اعداد و حروف بزرگ در رمز عبور +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",قرار دادن بعد از میدان '{0}' ذکر شده در سفارشی درست '{1}'، با برچسب '{2}، وجود ندارد DocType: Workflow State,signal,سیگنال DocType: DocType,Show Print First,نمایش چاپ اول apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,کلیدهای Ctrl + پست را وارد کنید @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,فایل {0} "یافت نشد apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,حذف بخش DocType: User,Change Password,تغییر رمز عبور -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},ایمیل نامعتبر است: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,سلام! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},ایمیل نامعتبر است: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,سلام! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,پایان رویداد باید بعد از شروع آن باشد apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},شما اجازه دسترسی به دریافت گزارش را ندارید: {0} +DocType: System Settings,Apply Strict User Permissions,درخواست ویرایش کاربر اکید DocType: DocField,Allow Bulk Edit,اجازه ویرایش انبوه DocType: Blog Post,Blog Post,وبلاگ پست -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,جست و جوی پیشرفته +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,جست و جوی پیشرفته apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,دستورالعمل تنظیم مجدد رمز عبور به پست الکترونیک شما ارسال شده است apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",سطح 0 است برای مجوز سطح سند، \ سطوح بالاتر برای مجوز سطح مزرعه. @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,لغو DocType: Web Page,Sidebar and Comments,نوار کناری و نظرات apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",هنگامی که شما اصلاح سند پس از لغو و ذخیره آن، آن را به یک شماره جدید این است که یک نسخه از شماره قدیمی دریافت کنید. DocType: Stripe Settings,Publishable Key,کلید انتشار -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} سال پیش DocType: Workflow State,circle-arrow-left,دایره-پیکان سمت چپ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis کش سرور در حال اجرا نیست. لطفا با Administrator / مرکز تماس apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,نام حزب -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,یک رکورد جدید +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,یک رکورد جدید apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,جستجوکردن DocType: Currency,Fraction,کسر DocType: LDAP Settings,LDAP First Name Field,LDAP نام درست -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,انتخاب کنید و از فایل پیوست موجود +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,انتخاب کنید و از فایل پیوست موجود DocType: Custom Field,Field Description,درست شرح apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,نام و نام خانوادگی از طریق فوری تنظیم نشده apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,صندوق دریافت ایمیل @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,اطلاعات: DocType: Custom Field,Permission Level,سطح اجازه DocType: User,Send Notifications for Transactions I Follow,ارسال اخبار برای انجام معاملات من دنبال می کنم -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: آیا می توانم تنظیم نشده ارسال، لغو، اصلاح بدون نوشتن +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: آیا می توانم تنظیم نشده ارسال، لغو، اصلاح بدون نوشتن apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,آیا شما مطمئن هستید که میخواهید فایل پیوست را حذف کنید؟ -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","نمی توانید حذف و یا لغو دلیل {0} {1} با مرتبط {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

نتیجه ای یافت نشد برای '

" -apps/frappe/frappe/__init__.py +1063,Thank you,متشکرم +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","نمی توانید حذف و یا لغو دلیل {0} {1} با مرتبط {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,متشکرم apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,پس انداز DocType: Print Settings,Print Style Preview,چاپ سبک پیشنمایش apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,در فهرست نمایش DocType: Email Account,Use TLS,استفاده از TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ورود یا رمز ورود نامعتبر apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,اضافه کردن سفارشی جاوا اسکریپت برای فرم. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR بدون +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR بدون ,Role Permissions Manager,مدیر دسترسی نقش apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,نام جدید فرمت چاپ -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,فایل پیوست روشن +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,فایل پیوست روشن apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,اجباری: ,User Permissions Manager,مدیر دسترسی کاربر DocType: Property Setter,New value to be set,ارزش جدید به تنظیم شود @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 رو apps/frappe/frappe/config/website.py +47,Categorize blog posts.,دسته بندی پست های وبلاگ. DocType: Workflow State,Time,زمان DocType: DocField,Attach,ضمیمه کردن -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} یک الگوی fieldname معتبر نیست. باید آن را {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} یک الگوی fieldname معتبر نیست. باید آن را {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ارسال درخواست فیدبک تنها اگر حداقل یک ارتباط برای سند دسترس وجود دارد. DocType: Custom Role,Permission Rules,مشاهده قوانین اجازه DocType: GSuite Settings,GSuite Settings,تنظیمات GSuite DocType: Address,Links,لینک -apps/frappe/frappe/model/base_document.py +428,Value missing for,ارزش از دست رفته برای +apps/frappe/frappe/model/base_document.py +427,Value missing for,ارزش از دست رفته برای apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,اضافه کردن کودک -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: رکورد ثبت شده نمی تواند حذف شود. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: رکورد ثبت شده نمی تواند حذف شود. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,اندازه نسخه پشتیبان DocType: GSuite Templates,Template Name,نام الگو -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,نوع جدیدی از سند +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,نوع جدیدی از سند DocType: Custom DocPerm,Read,خواندن DocType: Role Permission for Page and Report,Role Permission for Page and Report,اجازه نقش صفحه و گزارش apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,تراز ارزش apps/frappe/frappe/www/update-password.html +14,Old Password,رمز عبور -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},پست های {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},پست های {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",به ستون فرمت، به برچسب ستون در پرس و جو. DocType: Has Domain,Has Domain,دارای دامنه apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,هنوز حساب کاربری ندارید؟ ثبت نام -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص اصلاح اگر Submittable نمی +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: آیا می توانم تنظیم نشده اختصاص اصلاح اگر Submittable نمی DocType: Address,Bihar,بیهار apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,مجوز های ویرایش نقش DocType: Communication,Link DocType,DOCTYPE لینک @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,لطفا اطمینان حاصل شود که نمایه شما به یک آدرس ایمیل apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,تغییرات ذخیره نشدهای در این فرم. لطفا قبل از ادامه ذخیره کنید. DocType: Address,Telangana,تلنگانا -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,به طور پیش فرض برای {0} باید گزینه باشد +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,به طور پیش فرض برای {0} باید گزینه باشد DocType: Tag Doc Category,Tag Doc Category,برچسب توضیحات رده DocType: User,User Image,کاربر تصویر apps/frappe/frappe/email/queue.py +289,Emails are muted,ایمیل خاموش می @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,اقدام DocType: Workflow State,ok,خوب DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,این مقادیر به طور خودکار در معاملات روز رسانی و نیز برای محدود کردن دسترسی این کاربر در معاملات حاوی این مقادیر مفید باشد. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ناشر -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** شکست خورد: {0} به {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** شکست خورد: {0} به {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,انتخاب اجباری apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,فهرست apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ایمیل های ارسال شده @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,در حال اجرا apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,کلمه عبور apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,لطفا به ارتقاء برای اضافه کردن بیشتر از {0} مشترکین DocType: Workflow State,hand-left,دست چپ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} برای {1} نمی تواند منحصر به فرد +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} برای {1} نمی تواند منحصر به فرد DocType: Email Account,Use SSL,استفاده از SSL DocType: Workflow State,play-circle,بازی دایره apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,انتخاب قالب چاپ به ویرایش @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,بدون کپی DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,ورود LDAP DocType: Web Form,Breadcrumbs,پودرهای سوخاری -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,اگر مالک +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,اگر مالک DocType: OAuth Authorization Code,Expiration time,زمان انقضا DocType: Web Page,Website Sidebar,نوار وب سایت DocType: Web Form,Show Sidebar,نمایش نوار کناری @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},نمی تواند apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,نام و نام خانوادگی خود به خود به راحتی حدس زده. apps/frappe/frappe/config/website.py +93,Knowledge Base,دانش محور DocType: Workflow State,briefcase,کیف -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ارزش می تواند برای عوض نمی شوند {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ارزش می تواند برای عوض نمی شوند {0} DocType: Feedback Request,Is Manual,است دستی DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",سبک نشان دهنده رنگ دکمه: موفقیت - سبز، خطر - قرمز، معکوس - سیاه و سفید، اولیه - آبی تیره، اطلاعات - آبی روشن، هشدار - نارنجی apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,بدون گزارش بارگیری شد. لطفا پرس و جو گزارش استفاده / [گزارش نام] برای اجرای یک گزارش. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,پیش رف apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,توسط نقش apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,زمینه های از دست رفته apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,FIELDNAME نامعتبر '{0} در autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,جستجو در یک نوع سند +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,جستجو در یک نوع سند apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,اجازه می دهد درست به قابل ویرایش باقی می ماند و حتی پس از ارسال DocType: Custom DocPerm,Role and Level,نقش و سطح DocType: File,Thumbnail URL,URL تصویر بند انگشتی @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,اطلاعات بیشتر DocType: Desktop Icon,Desktop Icon,آیکون دسکتاپ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,پرداخت شما با موفقیت پذیرفته شد +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,پرداخت شما با موفقیت پذیرفته شد apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,با عرض پوزش! برای مشاهده این صفحه شما مجاز نیست. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,نکته: سلول دوبار کلیک کنید برای ویرایش DocType: Workflow State,bell,ناقوس apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,اشکال در ایمیل هشدار apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,به اشتراک گذاشتن این سند با +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,راه اندازی> مدیریت ویرایش کاربر apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} نمی تواند یک پیام بگذارد چون ایشان زیر مجموعه دارند DocType: Communication,Info,اطلاعات -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,پیوست را اضافه کنید +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,پیوست را اضافه کنید DocType: Communication,Email,ایمیل apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,تشکر از شما برای پیام خود را -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ارسال رسید خواندن +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ارسال رسید خواندن DocType: Stripe Settings,Stripe Settings,تنظیمات خط خطی DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox به راه اندازی از طریق سایت پیکربندی apps/frappe/frappe/www/login.py +64,Invalid Login Token,ورود رمز نامعتبر @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,مشاهده وب سایت apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,هشدار: این قالب چاپ در سبک های قدیمی است و می تواند از طریق API نمی تواند تولید شود. DocType: DocField,Print Width,چاپ عرض ,Setup Wizard,راه اندازی جادوگر +DocType: Address,GST State Number,GST تعداد دولت DocType: User,Allow user to login only before this hour (0-24),کاربر مجاز به ورود فقط قبل از این ساعت (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,پوشه الزامی است apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,متن کوچک apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,مدیر دیده {0} در {1} از طریق آدرس IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,برابر -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',نوع گزینه ها "پویا لینک از زمینه باید به دیگری درست لینک با گزینه به عنوان" DOCTYPE "اشاره +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',نوع گزینه ها "پویا لینک از زمینه باید به دیگری درست لینک با گزینه به عنوان" DOCTYPE "اشاره DocType: About Us Settings,Team Members Heading,تیم سرنویس کاربران apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,فرمت CSV نامعتبر apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,تعداد مجموعه ای از پشتیبان گیری @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,تماس DocType: User,Third Party Authentication,سوم حزب احراز هویت DocType: Website Settings,Banner is above the Top Menu Bar.,بنر بالای منوی نوار بالا. DocType: Razorpay Settings,API Secret,API راز -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,گزارش صادرات: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,گزارش صادرات: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} وجود ندارد DocType: Email Account,Port,بندر DocType: Print Format,Arial,با Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,نام ستون DocType: Language,Based On,بر اساس apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,پیش فرض قرار دادن apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,بررسی URL یخ در بهشت سرور -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} برای {1} نمی تواند نمایه می شود +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} برای {1} نمی تواند نمایه می شود DocType: Communication,Email Account,حساب کاربری ایمیل DocType: Workflow State,Download,دانلود DocType: Blog Post,Blog Intro,وبلاگ معرفی @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,قرار دادن کد DocType: ToDo,Low,کم apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,با استفاده از قالب جینجا شما میتوانید خواص حرکتی به سند اضافه کنید apps/frappe/frappe/commands/site.py +451,Invalid limit {0},حد نامعتبر {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,لیست یک نوع سند +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,لیست یک نوع سند DocType: Event,Ref Type,کد عکس نوع apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",اگر شما در حال آپلود رکورد جدید، ترک "نام" (ID) ستون خالی. DocType: Address,Chattisgarh,چتیسگر @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,ارسال چاپ به عنوان PDF DocType: Web Form,Amount,مقدار DocType: Workflow Transition,Allowed,مجاز -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,می تواند تنها یک در یک فرم ریختن (فولد) وجود دارد +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,می تواند تنها یک در یک فرم ریختن (فولد) وجود دارد apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},قادر به نوشتن فرمت فایل برای {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,بازگرداندن به تنظیمات پیش فرض؟ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,صفحه اصلی وب سایت نامعتبر apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,ورود نامعتبر است. دوباره امتحان کنید. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},گزینه های مورد نیاز برای پیوند یا زمینه نوع جدول {0} در ردیف {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},گزینه های مورد نیاز برای پیوند یا زمینه نوع جدول {0} در ردیف {1} DocType: Auto Email Report,Send only if there is any data,ارسال تنها در صورت هر گونه داده ها وجود دارد apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,فیلتر تنظیم مجدد -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: اجازه در سطح 0 باید پیش سطوح بالاتر تنظیم ها +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: اجازه در سطح 0 باید پیش سطوح بالاتر تنظیم ها apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},انتساب بسته های {0} DocType: Integration Request,Remote,از راه دور -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,محاسبه +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,محاسبه apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,لطفا ابتدا DOCTYPE را انتخاب کنید apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,تکرار ایمیل شما apps/frappe/frappe/www/login.html +42,Or login with,و یا برای ورود با DocType: Error Snapshot,Locals,مردم محلی apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ارتباط از طریق {0} در {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} شما در یک نظر در ذکر {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,به عنوان مثال (55 + 434) / 4 = OR Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,به عنوان مثال (55 + 434) / 4 = OR Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} مورد نیاز است DocType: Integration Request,Integration Type,نوع ادغام DocType: Newsletter,Send Attachements,ارسال Attachements @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,سطح پرم apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,حوادث در تقویم اقتصادی امروز، DocType: Web Page,Web Page,صفحه وب DocType: Blog Category,Blogger,وبلاگ نویس -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},«در جهانی جستجو برای نوع مجاز نیست {0} در ردیف {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},«در جهانی جستجو برای نوع مجاز نیست {0} در ردیف {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,نمایش فهرست -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},تاریخ باید در فرمت شود: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},تاریخ باید در فرمت شود: {0} DocType: Workflow,Don't Override Status,هنوز وضعیت باطل نیست apps/frappe/frappe/www/feedback.html +90,Please give a rating.,لطفا یک امتیاز می دهد. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} درخواست بازخورد apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,عبارت جستجو -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,اولین کاربر: شما +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,اولین کاربر: شما apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,انتخاب ستون DocType: Translation,Source Text,منبع متن apps/frappe/frappe/www/login.py +55,Missing parameters for login,پارامترهای از دست رفته برای ورود @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,واردات DocType: ToDo,Assigned By,تعیین شده توسط apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,شما می توانید فرم سفارشی را به مجموعه سطح در زمینه استفاده کنید. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,انتخاب کنید منطقه شما +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,انتخاب کنید منطقه شما DocType: Custom DocPerm,Level,سطح DocType: Custom DocPerm,Report,گزارش apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,مقدار باید بزرگتر از 0 باشد. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,زمینه DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",لیست JSON از DocTypes استفاده به درخواست مجوز کاربر. اگر خالی، همه DocTypes مرتبط استفاده خواهد شد به درخواست مجوز کاربر. DocType: Report,Ref DocType,کد عکس DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,لطفا اضافه کردن یک امتیاز -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: آیا می توانم تنظیم نشده اصلاح بدون لغو +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: آیا می توانم تنظیم نشده اصلاح بدون لغو apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,صفحه کامل DocType: DocType,Is Child Table,آیا میز کودک apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} باید یکی از {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,این می رود د apps/frappe/frappe/config/setup.py +260,Install Applications.,نرم افزار را نصب کنید. DocType: Contact,Last Name,نام خانوادگی DocType: Event,Private,خصوصی -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,بدون هشدار برای امروز +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,بدون هشدار برای امروز DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ارسال پیوست های ایمیل چاپ به عنوان PDF (توصیه شده) DocType: Web Page,Left,چپ DocType: Event,All Day,تمام روز @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,ارسال یک ایمیل DocType: Blog Post,Published On,منتشر شده در DocType: Contact,Gender,جنس apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,اطلاعات اجباری از دست رفته: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,درست '{0}' می تواند به عنوان منحصر به فرد تنظیم شود آن را به عنوان مقادیر غیر منحصر به فرد +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,درست '{0}' می تواند به عنوان منحصر به فرد تنظیم شود آن را به عنوان مقادیر غیر منحصر به فرد apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,تنها 200 درج مجاز در یک درخواست DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,نوع مرجع @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,علامت هشدار دهنده DocType: Workflow State,User,کاربر DocType: Website Settings,"Show title in browser window as ""Prefix - title""",نمایش عنوان در پنجره مرورگر به عنوان "پیشوند - عنوان" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,متن در نوع سند +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,متن در نوع سند apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,تست اجرا apps/frappe/frappe/handler.py +91,Logged Out,از سیستم خارج apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,بیش... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,در حال مشاهده DocType: DocField,Default,پیش فرض apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} اضافه شد -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',جستجو برای '{0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',جستجو برای '{0} apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,لطفا گزارش نجات اول apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} مشترک افزوده شد apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,نه در DocType: Workflow State,star,ستاره -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ارزش با کاما جدا شده -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},عرض حداکثر برای نوع ارز را 100px در ردیف {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ارزش با کاما جدا شده +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},عرض حداکثر برای نوع ارز را 100px در ردیف {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},لطفا نظرات خود را به اشتراک بگذارید برای {0} apps/frappe/frappe/config/website.py +13,Content web page.,صفحه وب محتوا. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,اضافه کردن یک نقش جدید @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,یک کاربر LDAP معتبر apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} نه دولت معتبر apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا روش پرداخت دیگری را انتخاب کنید. پی پال انجام تراکنش در ارز را پشتیبانی نمی کند '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,قسمت جستجو {0} معتبر نیست +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,قسمت جستجو {0} معتبر نیست DocType: Workflow State,ok-circle,OK-دایره apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',شما می توانید همه چیز را با پرسیدن 'پیدا کردن پرتقال در مشتریان پیدا apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,با عرض پوزش! کاربر باید دسترسی کامل به رکورد خود را دارند. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,فیلتر متا DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,متن را برای لینک به وب سایت نمایش داده می شود این فرم دارای یک صفحه وب است. مسیر لینک خواهد شد به صورت خودکار تولید بر اساس `` page_name` و parent_website_route` DocType: Feedback Request,Feedback Trigger,ماشه فیدبک -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,لطفا {0} برای اولین بار +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,لطفا {0} برای اولین بار DocType: Unhandled Email,Message-id,پیام-ID DocType: Patch Log,Patch,وصله DocType: Async Task,Failed,شکست خورد diff --git a/frappe/translations/fi.csv b/frappe/translations/fi.csv index cbe3c3ee2e..c956ac0acb 100644 --- a/frappe/translations/fi.csv +++ b/frappe/translations/fi.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook käyttäjänimi DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Huomio: Useat istunnot saavat tapauksessa mobiililaitteen apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Käytössä sähköpostilaatikko käyttäjän {käyttäjille} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Voi lähettää tämän sähköpostin. Olet ylittänyt lähettämisen raja {0} sähköposteja tässä kuussa. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Lähetetäänkö pysyvästi {0} +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Lähetetäänkö pysyvästi {0} DocType: Address,County,Lääni DocType: Workflow,If Checked workflow status will not override status in list view,Jos tarkastettu työnkulun tila ei ohita tilan luettelona apps/frappe/frappe/client.py +280,Invalid file path: {0},Virheellinen tiedoston polku: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Valitse apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} puu DocType: User,User Emails,Käyttäjä Sähköpostit DocType: User,Username,Käyttäjätunnus -apps/frappe/frappe/model/base_document.py +581,Value too big,Arvo liian suuri +apps/frappe/frappe/model/base_document.py +580,Value too big,Arvo liian suuri DocType: DocField,DocField,asiakirja kenttä DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Osastot @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Lokit DocType: Custom DocPerm,This role update User Permissions for a user,Tämä rooli päivittää käyttöoikeudet käyttäjälle apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Nimeä {0} DocType: Workflow State,zoom-out,loitonna -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,ei voi avata {0} sillä esimerkki on auki +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,ei voi avata {0} sillä esimerkki on auki apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Taulukko {0} ei voi olla tyhjä apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Tilikirjoissa apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,kuvat DocType: Communication,Reference Owner,Viite omistaja DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Pienin kiertävä osa yksikkö (kolikko). Esim 1 sentin USD ja se pitää syöttää 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Rivi {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Rivi {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Antakaa fullname. apps/frappe/frappe/model/document.py +904,Beginning with,Alkaa apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,tietojen tuonti/lataus mallipohja apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Vanhempi DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jos käytössä, salasanan vahvuus pannaan täytäntöön perustuu pienin salasanan Score arvoa. Arvo 2 on keskivahva ja 4 on hyvin vahva." DocType: About Us Settings,"""Team Members"" or ""Management""","""Jäsenet"" tai ""Hallinta""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"oletus tai ""täppäisyn"" tyyppi kentässä on oltava joko ""0"" tai ""1""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"oletus tai ""täppäisyn"" tyyppi kentässä on oltava joko ""0"" tai ""1""" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Eilen DocType: Contact,Designation,Puhuttelu DocType: Test Runner,Test Runner,Testi Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Julkaistaan Field DocType: Email Group,Email Group,Sähköposti Group DocType: Note,Seen By,Nähnyt apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Lisää useita -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ei niinkuin +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ei niinkuin apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Aseta kentän näyttönimike apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},virheellinen arvo : {0} täytyy olla {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","muuta kentän ominaisuuksia (piilota, vain luku, oikeus jne)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Yhteystie apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ylläpitäjä kirjautunut DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","yhteystietojen vaihtoehtomääritykset, kuten ""myyntikysely, tukikysely"" jne jokainen omalla rivillä tai pilkulla erotettuna" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Vie -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,aseta +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,aseta apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Valitse {0} DocType: Print Settings,Classic,perinteinen DocType: Desktop Icon,Color,väri @@ -121,7 +121,7 @@ DocType: Translation,Translation,Käännös apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,asenna apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,asiakas -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Tämä lomake on muutettu sen jälkeen, kun olet ladannut sen" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Tämä lomake on muutettu sen jälkeen, kun olet ladannut sen" DocType: User Permission for Page and Report,User Permission for Page and Report,Käyttöoikeus Page ja Raportti DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Jos ei ole asetettu, valuutta tarkkuus riippuu lukumuotoa" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Syy apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Ilmoitathan käyttäjä DocType: Email Unsubscribe,Email Unsubscribe,sähköposti peruuutus DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Saadaksesi parhaan tuloksen valitse n.150px leveä kuva läpinäkyvällä taustalla -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Ensimmäisestä käyttäjästä tulee järjestelmän pääkäyttäjä (voit muuttaa asetusta myöhemmin) +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Ensimmäisestä käyttäjästä tulee järjestelmän pääkäyttäjä (voit muuttaa asetusta myöhemmin) ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,kierrä-nuoli-ylös apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Tuodaan ... DocType: Email Domain,Email Domain,Sähköpostin verkkotunnus DocType: Workflow State,italic,kursiivi- apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Kaikille -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: ei voi tuoda ellei sitä luoda +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: ei voi tuoda ellei sitä luoda apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Tapahtuma ja muut kalentereita. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Kaikki kentät ovat tarpeen esittää kommentin. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,siirrä muokataksesi sarakkeita @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard sivupalkki Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Koti- ja Liitteet- kansioita ei voida poistaa apps/frappe/frappe/config/desk.py +19,Files,Tiedostoliitteet apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Käyttäjän käyttöoikeudet perustuu nimettyihin rooleihin -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Et voi lähettää sähköposteja, jotka liittyvät tähän dokumenttiin" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Valitse atleast 1 sarake {0} lajitella / ryhmä +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Et voi lähettää sähköposteja, jotka liittyvät tähän dokumenttiin" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Valitse atleast 1 sarake {0} lajitella / ryhmä DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Valitse tämä jos testaat maksun avulla Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Verkkosivuston perusteemaa ei voi poistaa DocType: Feedback Trigger,Example,esimerkki @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,alihankkijat yhteensä apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ellei roolilla ole oikeutta tasolle 0, niin korkeammat tasot eivät vaikuta" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Tallenna nimellä DocType: Communication,Seen,Nähty -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Näytä enemmän lisätietoja +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Näytä enemmän lisätietoja DocType: System Settings,Run scheduled jobs only if checked,käytä aikataulutettuja töitä täpättynä apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Näytetään vain, jos otsikoiden ovat käytössä" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archive @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Näytä Chart apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Kelvollinen sähköposti ja nimi vaaditaan DocType: DocType,Hide Heading,piilota otsikko DocType: Address,Current,nykyinen -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Liittyvät dokumentit apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Tietuetyyppiryhmät DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,poista-ympyrä @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Suodatin apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Kenttänimi {0} nimessä ei voi olla erikoismerkkejä kuten {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Päivitä monet arvot kerralla. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,virhe: asiakirja on muutettu sen jälkeen kun olet avannut sen -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ei oletusosoitetta mallia ei löytynyt. Luo uusi yksi Asetukset> Tulostus ja brändi> Osoitemallin. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} kirjautui ulos: {1} DocType: Address,West Bengal,Länsi-Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: ei voi nimetä lähetystä ellei ole lähetettävissä +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: ei voi nimetä lähetystä ellei ole lähetettävissä DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","Suodatusperuste ""{0}""" DocType: Salutation,Administrator,ylläpitäjä @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blogin otsikko apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Vakioroolit ei voi poistaa käytöstä DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Tiedote -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Ei voi käyttää osa-kyselyn mukaisessa järjestyksessä +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Ei voi käyttää osa-kyselyn mukaisessa järjestyksessä DocType: Web Form,Button Help,Painikkeen ohje DocType: Kanban Board Column,purple,violetti DocType: About Us Settings,Team Members,Tiimin jäsenet @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,hanki maailm apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",Tilauksesi päättyi {0}. Uusimaan {1}. DocType: Workflow State,plus-sign,plus-merkki apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Asennus on jo valmis -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ei ole asennettu +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ei ole asennettu DocType: Workflow State,Refresh,Päivitä DocType: Event,Public,Julkinen apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ei mitään näytettävää @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Tykkääjä(t) apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,sähköpostituki DocType: DocField,Print Hide If No Value,Tulosta Piilota Jos Ei Arvo DocType: Event,yellow,keltainen -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Julkaistaan Kenttä pitää olla kelvollinen fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Julkaistaan Kenttä pitää olla kelvollinen fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Tuo liite DocType: Block Module,Block Module,estä moduuli apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,vie mallipohja @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Uusi tili on luotu sinulle {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ohjeet sähköpostiisi -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Anna sähköpostin vastaanottaja (t) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Anna sähköpostin vastaanottaja (t) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Sähköposti Flag Jono apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Voi tunnistaa auki {0}. Kokeilla jotain muuta. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,viestin tunnus DocType: Property Setter,Field Name,Kentän nimi apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ei ole määritetty. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,tai -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,moduulin nimi... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,jatka +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,moduulin nimi... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,jatka DocType: Custom Field,Fieldname,Kenttänimi DocType: Workflow State,certificate,todistus DocType: User,Tile,Tiili @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Näytä kaikki versiot DocType: Workflow State,Print,Tulosta DocType: User,Restrict IP,Rajoita IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,kojelauta apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Sähköposteja ei voi lähettää tällä hetkellä apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,klikkaa tai paina Ctrl-G DocType: Communication,Timeline Name,Aikajanan nimi @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,"Myynninhallinta, valvonta" apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Viimeinen vaihe apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"sen tietuetyypin nimi johon haluat linkittää tämän kentän, esim. ""Asiakas""" DocType: User,Roles Assigned,Asetetut roolit -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,haku Ohje +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,haku Ohje DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Kyselysi on vastaanotettu ja vastaamme mahdollisimman pian. Mikäli haluat antaa vielä jotain lisätietoja, voit vastata tähän sähköpostiin." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Oikeudet on siirretty automaattisesti perusraporteille ja hauille @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,muokkaa ylätynniste DocType: File,File URL,Tiedoston URL DocType: Version,Table HTML,Taulukko HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ei tuloksia ei löytynyt '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,lisätä tilaajia apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Päivän tapahtumat DocType: Email Alert Recipient,Email By Document Field,sähköposti asiakirjakentän mukaan @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Laskettu määrä Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Käyttäjä vaaditaan jaettaessa DocType: DocField,Hidden,piilotettu DocType: Web Form,Allow Incomplete Forms,Salli Puutteellinen lomakkeet -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} on määritettävä ensin +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} on määritettävä ensin apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Käytä muutaman sanan, välttää yhteisiä lauseita." DocType: Workflow State,plane,taso -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oho. Maksusi on epäonnistunut. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ladatessasi uusia tietueita ""sarjan nimeäminen"" muuttuu pakolliseksi, mikäli näin on asetettu" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Hanki Kuulutukset Tänään +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Hanki Kuulutukset Tänään apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,Vain pääkäyttäjä voi uudelleennimetä tietuetyypin apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},muuttunutta arvo {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Tarkista sähköpostisi tarkastettavaksi -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Taitos ei voi olla muodon lopussa +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Taitos ei voi olla muodon lopussa DocType: Communication,Bounced,Palautettu DocType: Deleted Document,Deleted Name,poistettu Name apps/frappe/frappe/config/setup.py +14,System and Website Users,järjestelmä ja verkkosivun käyttäjät @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,asiakirja Jonossa DocType: GSuite Templates,Destination ID,määränpää tunnus DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,Linkin nimi -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Kenttää {0} rivillä {1} ei voi piilottaa ja vaaditaan ilman oletusta +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Kenttää {0} rivillä {1} ei voi piilottaa ja vaaditaan ilman oletusta DocType: System Settings,mm/dd/yyyy,pp / kk / vvvv apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Väärä salasana: DocType: Print Settings,Send document web view link in email,Lähetä asiakirja web näkymä linkki sähköpostiin apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Palautteesi asiakirjojen {0} on tallennettu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Edellinen -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rivit {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","alavaluutta esim ""sentti""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Valitse lisätty tiedosto @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Linkki apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ei tiedostoa liitteenä DocType: Version,Version,Versio DocType: User,Fill Screen,Täytä näyttö -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tätä raporttipuuta ei voi näyttää puuttuvien tietojen vuoksi, todennäköisesti käyttöoikeudet on suodatettu pois" +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ole hyvä setup oletus sähköpostitilin asetukset> Sähköposti> sähköpostitili +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tätä raporttipuuta ei voi näyttää puuttuvien tietojen vuoksi, todennäköisesti käyttöoikeudet on suodatettu pois" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Valitse tiedosto apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,muokkaa lataamalla -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","asiakirja tyyppi.., esim asiakas" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","asiakirja tyyppi.., esim asiakas" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Ehto '{0}' ei kelpaa DocType: Workflow State,barcode,viivakoodi apps/frappe/frappe/config/setup.py +232,Add your own translations,Lisää oma käännökset @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Keskiviikko apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",Rooliperustaisten käyttöoikeussääntöjen lisäksi on mahdollista asettaa käyttöoikeuksia myös tietuetyypeittäin. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Näitä käyttöoikeuksia sovelletaan kaikkiin tapahtumiin, johon sallitut tietueet on linkitetty esim, jos käyttäjällä X on yhtiön C käyttöoikeudet, käyttäjä X voi nähdä pelkästään tallenteita, johon on yritys C on linkitetty." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Kuva kentän täytyy olla kelvollinen fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Kuva kentän täytyy olla kelvollinen fieldname DocType: OAuth Client,Token,symbolinen DocType: Property Setter,ID (name) of the entity whose property is to be set,tunniste (nimi) kirjaukseen mihin omaisuutta määritetään apps/frappe/frappe/limits.py +82,"To renew, {0}.",Uusimaan {0}. @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Sivupalkki tuotteet apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} on jo asennettu DocType: Workflow State,exclamation-sign,huutomerkki apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Näytä oikeudet -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Aikajana kenttä on linkki tai Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Aikajana kenttä on linkki tai Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Ajanjakso apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Sivu {0} - {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Esitte apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Salausavain on virheellinen, tarkista site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Vastaanottaja DocType: Kanban Board Column,darkgrey,tummanharmaa -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Onnistunut: {0} on {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Onnistunut: {0} on {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Ei voi muuttaa käyttäjän tietoja demo. Ole hyvä kirjautumisen uuden tilin https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Ole hyvä ja kopioida tämän tehdä muutoksia apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF teko epäonnistui rikkoutuneiden kuvalinkkien johdosta @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Kokoontaitettava apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Tallennettu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Minkä kanssa tarvitset apua? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,"valitse vaihtoehdot, kukin vaihtoehto omalle riville" -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Pysyvästi peruuta {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Pysyvästi peruuta {0}? DocType: Workflow State,music,musiikki DocType: Web Page,Settings,Asetukset apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Ole hyvä ja aseta tietuetyyppi DocType: Print Format,Style Settings,Style Asetukset -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Lajittelu kenttä {0} täytyy olla kelvollinen fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Lajittelu kenttä {0} täytyy olla kelvollinen fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Lisää DocType: Contact,Sales Manager,Myynninhallinta apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Nimeä uudelleen DocType: Print Format,Format Data,muototiedot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,niinkuin +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,niinkuin DocType: Customize Form Field,Customize Form Field,muokkaa muotokenttää apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Salli Käyttäjä DocType: OAuth Client,Grant Type,Grant Tyyppi apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,täppää mitkä asiakirjat ovat käyttäjän katsottavissa apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing sovellus ei sallita -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,käytä % jokerina -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Sähköpostin verkkotunnus ei määritetty tälle tilille, luoda yksi?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,käytä % jokerina +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Sähköpostin verkkotunnus ei määritetty tälle tilille, luoda yksi?" DocType: User,Reset Password Key,Nollaa salasana Key DocType: Email Account,Enable Auto Reply,aktivoi automaattivastaus apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ei Seen @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Aseta vain kerran DocType: Email Queue Recipient,Email Queue Recipient,Sähköposti Jono Vastaanottaja DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Käyttäjätunnus {0} on jo olemassa -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: ei voi tuoda, {1} ei ole tuotavissa" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: ei voi tuoda, {1} ei ole tuotavissa" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Osoitemallineessasi {0} on virhe DocType: Footer Item,"target = ""_blank""","tavoite = ""_tyhjä""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Vuodesta Koko nimi apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Sinulla ei ole pääsyä raporttiin: {0} DocType: User,Send Welcome Email,Lähetä tervetuloa sähköposti apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Tuo järjestelmään .csv-tiedosto, joka sisältää kaikki käyttöoikeudet samassa muodossa kuin mallipohjassa jonka latasit" -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Poista suodatin +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Poista suodatin DocType: Address,Daman and Diu,Daman ja Diu DocType: Address,Personal,Henkilökohtainen apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE ei voi olla oletuksena painatusformaattia, käytä Muokkaa Form" DocType: Report,Query,Kysely DocType: DocType,Sort Order,Lajittelujärjestys -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Listausnäkymässä' ei voi olla asetettuna rivin {1} tyypillä {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Listausnäkymässä' ei voi olla asetettuna rivin {1} tyypillä {0} DocType: Custom Field,Select the label after which you want to insert new field.,Valitse nimike jonka jälkeen haluat lisätä uuden kentän ,Document Share Report,asiakirjanjako raportti DocType: User,Last Login,Viimeksi kirjautunut -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Kentän nimi tulee olla yhdellä rivillä {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Kentän nimi tulee olla yhdellä rivillä {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,sarake DocType: Custom Field,Adds a custom field to a DocType,Lisää oman kentän tietuetyyppiin DocType: File,Is Home Folder,On Kotikansio @@ -583,7 +583,7 @@ DocType: File,Folder,Kansio DocType: DocField,Index,indeksi DocType: Email Group,Newsletter Manager,Uutiskirje hallinta apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Vaihtoehto 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,kaikki viestit +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ja {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Kirjaudu virheen aikana pyyntöjä. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} on onnistuneesti lisätty Sähköpostiryhmä. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikaattori DocType: DocShare,Everyone,kaikki DocType: Workflow State,backward,taakse -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: vain yksi sääntö on sallittu samalla roolilla, tasolla ja {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: vain yksi sääntö on sallittu samalla roolilla, tasolla ja {1}" DocType: Email Queue,Add Unsubscribe Link,Lisää peruutuslinkki apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ei vielä kommentteja. Aloita uusi keskustelu. DocType: Workflow State,share,Jaa @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ei ole apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Näytä tilaajat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Taustan väri -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Lähetettäessä sähköpostia oli virheitä, yrita uudelleen" +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Lähetettäessä sähköpostia oli virheitä, yrita uudelleen" DocType: Portal Settings,Portal Settings,Portaalin asetukset DocType: Web Page,0 is highest,0 on korkein apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Oletko varma, että haluat linkittää tätä tiedonannon {0}?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,ota yhteyttä sivuston asetukset apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Haetaan ... DocType: Workflow State,text-width,Teksti-leveys -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,tietueen liitteide maksimiraja on saavutettu +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,tietueen liitteide maksimiraja on saavutettu apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Seuraavat pakolliset kentät on täytettävä:
DocType: Email Alert,View Properties (via Customize Form),Näytä vaihtoehdot (muokkaa lomaketta) kautta DocType: Note Seen By,Note Seen By,Huomautus nähdä @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,"Raportin hallinta, raportteja hallinnoidaan suoraan raportin rakennus kohdassa" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Vahvista sähköpostiosoite apps/frappe/frappe/model/document.py +903,none of,mikään -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Lähetä kopio minulle +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Lähetä kopio minulle apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Tuo käyttöoikeudet DocType: Dropbox Settings,App Secret Key,App salainen avain apps/frappe/frappe/config/website.py +7,Web Site,Web-sivusto apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,täpätyt tuotteet tulee näkymään työpöydällä -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ei voi asettaa yhdelle tyypille +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ei voi asettaa yhdelle tyypille apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Hallitus {0} ei ole olemassa. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} parhaillaan tarkastelevat tätä asiakirjaa DocType: ToDo,Assigned By Full Name,Määrittämä Koko nimi apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} päivitetty -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,raporttia ei voi määrittää yhdelle tyypille +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,raporttia ei voi määrittää yhdelle tyypille apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} päivää sitten DocType: Email Account,Awaiting Password,Odotetaan Salasana DocType: Address,Address Line 1,osoiterivi 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","työmäärän vaiheet (esim, luonnos, hyväksytty, peruutettu)" DocType: Print Settings,Allow Print for Draft,Salli Print for Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Aseta yksikkömäärä -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Lähetä tämä asiakirja vahvistaa +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Lähetä tämä asiakirja vahvistaa DocType: Contact,Unsubscribed,Peruutettu apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Asettaa omat roolit sivulle ja raportti apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Arvostelu: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Tietojen tuontityökalu DocType: Address,Dadra and Nagar Haveli,Dadra ja Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Lataaminen tiedostot odota muutama sekunti. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Liitä Picture +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Liitä Picture apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Rivi Arvot Muuttunut DocType: Workflow State,Stop,pysäytä DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"linkitä sivulle jonka haluat avata, jätä tyhjäksi jos haluat tehdä ryhmän" @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Kohdista etiketit vasemmalle puol DocType: Help Article,Expert,Asiantuntija DocType: Workflow State,circle-arrow-right,kierrä-nuoli-oikea DocType: LDAP Settings,LDAP Server Url,LDAP-palvelin URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,esimerkkiä ei voi avata silloin kun {0} on auki +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,esimerkkiä ei voi avata silloin kun {0} on auki apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Jonossa asentaa DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Send peruutuslinkki @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} poistettu DocType: Custom DocPerm,Apply User Permissions,"käytä, käyttäjäoikeudet" DocType: User,Modules HTML,HTML moduulit -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Asetukset> Käyttäjän Permissions Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,puuttuvat arvot vaaditaan DocType: DocType,Other Settings,Muut asetukset DocType: Social Login Keys,Frappe,Frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Asiakirjaa ei valittu apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Tri DocType: Event,Event,tapahtuma -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Käytössä {0}, {1} kirjoitti:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Käytössä {0}, {1} kirjoitti:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"peruskenttää ei voi poistaa, halutessasi voit piilottaa sen" DocType: Top Bar Item,For top bar,yläpalkkiin apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ei voitu tunnistaa {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,miinus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Palvelinvirhe: tarkista palvelimen lokit tai ota yhteyttä tekniseen tukeen apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Tervetuloa sähköposti lähetetään -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,valmistellaan järjestelmän ensimmäiseen käyttökertaan +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,valmistellaan järjestelmän ensimmäiseen käyttökertaan apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Varustellun apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,on jo rekisteröitynyt DocType: System Settings,Float Precision,Kellunta täsmäytys @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,salli Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ei Apps asennettu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Merkitse kentän Pakollinen DocType: Communication,Clicked,Napsautetaan -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Ei lupaa "{0}" {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ei lupaa "{0}" {1} DocType: User,Google User ID,Google käyttäjätunnus apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Aikataulun lähettää DocType: DocType,Track Seen,Track Seen @@ -822,7 +821,7 @@ DocType: Address,Kerala,kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,Samanaikaiset istunnot DocType: OAuth Client,Client Credentials,Client valtakirjojen -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Avaa moduuli tai työkalu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Avaa moduuli tai työkalu DocType: Communication,Delivery Status,toimituksen tila DocType: Module Def,App Name,sovelluksen nimi apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Suurin sallittu tiedostokoko on {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Viite Communication DocType: Email Queue,Unsubscribe Method,tilaus Menetelmä DocType: GSuite Templates,Related DocType,Liittyvät DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,muokkaa lisäämällä sisältöä -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Valitse Kielet -apps/frappe/frappe/__init__.py +510,No permission for {0},Ei lupaa {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Valitse Kielet +apps/frappe/frappe/__init__.py +509,No permission for {0},Ei lupaa {0} DocType: DocType,Advanced,tarkka apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Näyttäisi sovellusliittymäavain tai API Secret on väärin !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Viite: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Tietueen tyyppi apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,tietueita ei ole tagattu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Poista Field DocType: User,Send Password Update Notification,Lähetä salasanan päivitysilmoitus -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","salli tietuetyyppi, tietuetyyppi, ole varovainen!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","salli tietuetyyppi, tietuetyyppi, ole varovainen!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Räätälöidyt tulostusta, sähköposti" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Päivitetty uuteen versioon DocType: Custom Field,Depends On,riippuu @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Yksi apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Valitse kopioitava tiedosto apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Tarkistetaan yksi hetki apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Näytä tagit +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Jos sovellettava tiukkoja käyttöoikeus tarkastetaan ja käyttöoikeus on määritelty DOCTYPE varten käyttäjä, niin kaikki asiakirjat, joissa arvo linkki on tyhjä, ei näytetä kyseisen käyttäjän" DocType: Address,Billing,Laskutus DocType: Email Queue,Not Sent,Ei lähetetty DocType: Web Form,Actions,Toiminnot @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,tyhjennä apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,joka päivä tapahtumat tulee päättyä samana päivänä DocType: Communication,User Tags,Käyttäjä tagit apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Haetaan kuvia .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Asetukset> Käyttäjän DocType: Workflow State,download-alt,lataa-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Lataaminen App {0} DocType: Communication,Feedback Request,Palaute Ehdota @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,varmuuskopiot apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Lisää yhteystieto DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valinnainen: Lähetä aina nämä tunnukset. Jokainen sähköpostiosoite uudelle riville -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,piilota lisätiedot +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,piilota lisätiedot DocType: Workflow State,Tasks,Tehtävät DocType: Event,Tuesday,tiistai DocType: Blog Settings,Blog Settings,blogiasetukset @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Kirjoita dropbox python tiedosto samaan kansioon johon tämä on tallennettu, palaa sarakkeeseen pylvääseen ja lopputulokseen" DocType: DocType,Sort Field,Lajittelukenttä DocType: Razorpay Settings,Razorpay Settings,Razorpay Asetukset -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,muokkaa suodatinta -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Kenttä {0} tyyppiä {1} on valinnainen -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","esim. Jos Käytä Käyttöluvat tarkastetaan Ilmoita DOCTYPE mutta ei Käyttäjän Oikeudet määritellään raportti käyttäjä, niin kaikki raportit osoitettu, että Käyttäjä" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,muokkaa suodatinta +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Kenttä {0} tyyppiä {1} on valinnainen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Lisää enemmän apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Piilota Chart DocType: System Settings,Session Expiry Mobile,Istunto vanhenee mobiili @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Myöhässä apps/frappe/frappe/config/setup.py +128,List of backups available for download,Luettelo ladattavissa olevista varmuuskopioista apps/frappe/frappe/www/login.html +89,Sign up,Kirjaudu DocType: Test Runner,Output,ulostulo +DocType: Email Alert,Set Property After Alert,Aseta kiinteistön jälkeen Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,lisätä kenttiä lomakkeisiin apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Näyttää jotain vikaa tässä sivuston Paypal kokoonpano. DocType: File,rgt,Rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,jatko DocType: Portal Menu Item,Portal Menu Item,Portaalivalikon valinta DocType: User Email,Email ID,sähköpostitunnus +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Jos Käytä Käyttöluvat tarkastetaan Raportti Doctype mutta Käyttöluvat määritellään vuodelta käyttäjälle, niin kaikki raportit näytetään, että Käyttäjä" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Luettelo resursseja, jotka asiakkaan App on pääsy, kun käyttäjä sallii sen.
esim projekti" DocType: Translation,Translated Text,käännetty teksti DocType: Contact Us Settings,Query Options,"Kysely, vaihtoehdot" @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Yhteydet DocType: System Settings,Setup Complete,Määritys valmis apps/frappe/frappe/config/setup.py +66,Report of all document shares,raportti kaikista asiakirjan jakamisista apps/frappe/frappe/www/update-password.html +18,New Password,Uusi salasana -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Suodatin {0} puuttuu +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Suodatin {0} puuttuu apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Et voi poistaa automaattisesti luotua kommenttia DocType: Website Theme,Style using CSS,tyyli CSS käyttämällä apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Viite-tietuetyyppi @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,estä moduuleita apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Palataan pituus {0} ja {1} "in" {2} "; Asettaminen pituus kuin {3} aiheuttaa katkaisu tietoja. DocType: Print Format,Custom CSS,oma CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Lisää kommentti -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ohitetut: {0} on {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ohitetut: {0} on {1} DocType: Address,Gujarat,Gujaratin apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,virheloki automatisoiduille tapahtumille (aikataululla) apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ei kelvollinen muoto (CSV tiedosto) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,oletus saapuvat DocType: Workflow State,repeat,Toista DocType: Website Settings,Banner,Banneri DocType: Role,"If disabled, this role will be removed from all users.","Jos käytössä, tämä asema poistetaan kaikilta käyttäjiltä." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,(katso hakuohjeet) +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,(katso hakuohjeet) apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Rekisteröity mutta vammaiset DocType: DocType,Hide Copy,piilota kopio apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,tyhjennä kaikki roolit @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,maa apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,osoitteet DocType: Communication,Shared,Jaettu -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Liitä Document Tulosta +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Liitä Document Tulosta DocType: Bulk Update,Field,Ala DocType: Communication,Received,Vastaanotettu DocType: Social Login Keys,Google Client ID,Google asiakastunnus @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Raporttikysely DocType: User,Set New Password,Aseta uusi salasana DocType: User,Github User ID,Github käyttäjätunnus apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,mikäli asiakirja tyyppi -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ei voi poistaa tai peruuttaa, koska {0} {1} liittyy {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ei voi poistaa tai peruuttaa, koska {0} {1} liittyy {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Tuntematon sovellus {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S ei ole kelvollinen raportin muodossa. Raportti muoto olisi \ jokin seuraavista% s DocType: Communication,Chat,Pikaviestintä -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Kenttänimi {0} ilmestyy useita kertoja riveissä {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Kenttänimi {0} ilmestyy useita kertoja riveissä {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} alkaen {1} ja {2} rivillä # {3} DocType: Communication,Expired,vanhentunut DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Sarakkeiden määrä kentän Grid (Total sarakkeet ruudukossa tulisi olla alle 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Onko sinulla tili? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Tuntematon tulostusmuoto: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,romahdus -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Käyttäjä ei saa poistaa {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Käyttäjä ei saa poistaa {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Viimeksi päivitetty DocType: Help Article,Likes,Tykkäykset DocType: Website Settings,Top Bar,Ylävalikko DocType: GSuite Settings,Script Code,ohjelmakoodi apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Luo käyttäjä Sähköposti -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Lupia ei määritetty +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Lupia ei määritetty apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Yleiset asetukset: Käyttäjät vain voi valita valittuna kuvakkeet apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ei löytynyt DocType: Custom Role,Custom Role,Custom rooli apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Etusivu / Test-kansion 2 DocType: System Settings,Ignore User Permissions If Missing,Torju käyttäjä käyttöoikeudet Jos Puuttuu -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Tallenna asiakirja ennen lataamista +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Tallenna asiakirja ennen lataamista apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,syötä salasana DocType: Dropbox Settings,Dropbox Access Secret,Dropbox pääsy salaus apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lisää toinen kommentti apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Muokkaa tietuetyyppiä apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Perunut uutiskirje -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Taitos tulee olla ennen osanvaihtoa +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Taitos tulee olla ennen osanvaihtoa apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,muokkaaja DocType: Workflow State,hand-down,käsi-alas DocType: Address,GST State,GST State -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ei voi perua ilman lähettämistä +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ei voi perua ilman lähettämistä DocType: Website Theme,Theme,Teema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Oli virheitä DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Uudelleenohjausosoite URI Bound To Valt.koodi @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Omat DocType: Website Theme,Text Color,Tekstin väri DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,virheellinen pyyntö -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Lomakkeessa ei ole sisältöä +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Lomakkeessa ei ole sisältöä apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Tapahtuman päättyminen tulee olla muodossa {0} DocType: Website Sidebar Item,Group,ryhmä DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Valitsetavoite = ""_tyhjä"" avaa uuden sivun" @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ohita koodi virheet DocType: Workflow State,wrench,jakoavain apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Ei asetettu -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Asetukset> Käyttäjän DocType: Authentication Log,Date,päivä DocType: Website Settings,Disable Signup,poista kirjautuminen käytöstä apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Odota kunnes järjestelmä määritetty, tämä saattaa kestää hetken" @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Lisää kommentti DocType: DocField,Mandatory,Pakollinen apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Moduuli Vie -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: perusoikeuksia ei määritetty +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: perusoikeuksia ei määritetty apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Tilauksesi päättyy {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},lataa varmuuskopio linkki lähetetään sähköpostilla seuraaviin osoitteisiin {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","tarkoittaa lähetä, poista, muuta" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,Kysely-raportti apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},nimetty {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Suodattimet tallennettu DocType: DocField,Percent,Prosentti -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Aseta suodattimet +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Aseta suodattimet apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Liittyy DocType: Workflow State,book,kirja DocType: Website Settings,Landing Page,Aloitussivu -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Virhe skripti +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Virhe skripti apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nimi apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Tuo pyyntö Jonossa. Tämä saattaa kestää hetken, olkaa kärsivällisiä." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Kriteerille ei ole asetettu oikeuksia @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Salli Kirjaudu käyttä apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Sinulla ei ole tarpeeksi oikeuksia käyttääksesi tätä resurssia. Ota yhteyttä esimieheesi tai tämän verkkopalvelun ylläpitäjiin lisäoikeuksia hankkiaksesi. DocType: Custom Field,Custom,oma apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Määritä sähköpostin hälyytykset kriteerien perusteella -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Virkaa arkistoida {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Virkaa arkistoida {0} DocType: Email Alert,Send alert if date matches this field's value,Lähetä hälyytys mikäli päivä täsmää kentän arvoon DocType: Workflow,Transitions,siirtymät apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Poista {0} ja poistaa kaikki tiedot? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Kirjaudu jälkeen DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Painaminen DocType: Workflow State,thumbs-up,peukalo-ylös -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitili ole määritetty. Luo uusi sähköpostitilin asetukset> Sähköposti> sähköpostitili DocType: DocPerm,DocPerm,asiakirjaoikeus -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Tarkkuus tulee olla välillä 1 ja 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Tarkkuus tulee olla välillä 1 ja 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ja DocType: Error Snapshot,Frames,Kehykset @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,kuvalinkki DocType: Auto Email Report,Report Filters,raporttisuodattimet apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nyt DocType: Workflow State,step-backward,askel-taaksepäin -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_otsikko} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_otsikko} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Määritä Dropbox pääsyn asetukset apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Poista tämä ennätys jotta lähettämällä tähän sähköpostiosoitteeseen apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Uusille tietueille vain pakolliset kentät ovat välttämättömiä, ylimääräiset sarakkeet voidaan poistaa tarvittaessa." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,liitekansio apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Laajenna kaikki apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Hyväksytty kirjautumistunnus vaaditaan apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Avaa uudelleen -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Olet peruuttanut maksun -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Valitse kelvollinen csv tiedoston tiedot +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Valitse kelvollinen csv tiedoston tiedot apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} asiakirja on estetty {1}:lta apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,asiakirjan tila siirtymisestä {0}:stä {1}:n ei ole sallittu DocType: DocType,"Make ""name"" searchable in Global Search",Tee "name" haettavissa Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,alk DocType: Help Category,Help Category,Ohje Luokka apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Käyttäjä {0} on poistettu käytöstä apps/frappe/frappe/www/404.html +8,Page missing or moved,Sivu puuttuu tai se on siirretty -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Muokkaa {0} ominaisuudet DocType: DocType,Route,Polku apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Payment Gateway asetuksia DocType: DocField,Name,Nimi apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Olet ylittänyt max tilaa {0} oman suunnitelman. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Etsi dokumentit DocType: OAuth Authorization Code,Valid,pätevä -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Avaa linkki -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Sinun kielesi +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Avaa linkki +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Sinun kielesi apps/frappe/frappe/desk/form/load.py +46,Did not load,ei ole lanattu apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Lisää rivi DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,On palautepyy DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,voi kirjoittaa apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","tiettyjä asiakirjoja, kuten myyntilaskut ei tule enää muuttaa lähetetty tilassa, tarvittaessa voit rajoittaa lähettäjän käyttöoikeuksia rooleista" -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Raporttia ei saa ladata +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Raporttia ei saa ladata apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kohde valittu DocType: Newsletter,Test Email Address,Test Sähköpostiosoite DocType: ToDo,Sender,Lähettäjä @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Tuo zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,asiakirjan tunnus DocType: Print Settings,Letter,Kirjain -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Kuvakentän on oltava tyyppiä 'Kuvaliite' +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Kuvakentän on oltava tyyppiä 'Kuvaliite' DocType: DocField,Columns,Pylväät DocType: Async Task,Succeeded,Onnistui apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},pakolliset kentät vaaditaan {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Tekstin muokkaus apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Tietoa meistä sivun asetukset apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,muokkaa omaa HTML DocType: Error Snapshot,Error Snapshot,Virhe Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,sisältyy +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,sisältyy DocType: Email Alert,Value Change,Muuta arvoa DocType: Standard Reply,Standard Reply,Vastausmalline apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Syöttöruuduun leveys @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Käytä tätä kenttää otsikossa apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,tuo sähköposti mistä apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Kutsu Käyttäjä -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Valitse liitteet +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Valitse liitteet apps/frappe/frappe/model/naming.py +94, for {0},{0}lle apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Tapahtui virheitä. Ilmoita. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Sinulla ei ole oikeutta tulostaa tätä asiakirjaa +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Sinulla ei ole oikeutta tulostaa tätä asiakirjaa apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Määritä suodattimia arvo Report Suodatin taulukossa. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,ladataan raporttia +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ladataan raporttia apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Tilauksesi vanhenee tänään. DocType: Page,Standard,perus apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Liitä tiedosto @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Alueelliset Laajennukset DocType: LDAP Settings,Base Distinguished Name (DN),Erottuva nimi (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Poistu keskustelusta -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},vaihtoehtomäärityksiä ei ole tehty linkin kentälle {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},vaihtoehtomäärityksiä ei ole tehty linkin kentälle {0} DocType: Customize Form,"Must be of type ""Attach Image""","Täytyy olla tyyppiä ""Kuvaliite""" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Poista valinnat apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Kentän {0} ""Vain luku"" -asetusta ei voi kytkeä pois." @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Muistiinpano apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Virheraportti apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Palaute olosuhteet eivät täsmää -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Aikajana kentän täytyy olla kelvollinen fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Aikajana kentän täytyy olla kelvollinen fieldname DocType: Currency,Symbol,symbooli -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Rivi # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Rivi # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Uusi salasana lähetetty apps/frappe/frappe/auth.py +245,Login not allowed at this time,Kirjaudu kielletty tällä hetkellä DocType: Email Account,Email Sync Option,Sähköposti synkronointivaihtoehto @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Teksti apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,perusvastaukset tavallisimpiin kyselyihin apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,oletus lähtevät postilaatikko DocType: Workflow State,volume-off,volyymi-pois -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Tykkääjät: {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Tykkääjät: {0} DocType: Footer Item,Footer Item,Alatunniste tuote ,Download Backups,lataa varmuuskopiot apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Etusivu / Testi kansio 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Tekstin kohdistus apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nimi ei voi sisältää erikoismerkkejä kuten {0} DocType: Contact Us Settings,Forward To Email Address,lähetä eteenpäin sähköpostiosoitteeseen apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Näytä kaikki tiedot -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Otsikkokentän on oltava kelvollinen kenttänimi +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Otsikkokentän on oltava kelvollinen kenttänimi apps/frappe/frappe/config/core.py +7,Documents,Dokumentit DocType: Email Flag Queue,Is Completed,on valmis apps/frappe/frappe/www/me.html +22,Edit Profile,Muokkaa profiilia @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Tämä kenttä näkyy vain, jos fieldname määritelty tässä on arvo TAI säännöt ovat totta (esimerkkejä): myfield eval: doc.myfield == 'My Arvo "eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Tänään +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Tänään apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kun olet asettanut tämän, käyttäjät voivat vain tutustua asiakirjoihin (esim. Blogiviesti) jos linkki on olemassa (esim. Blogger)." DocType: Error Log,Log of Scheduler Errors,aikatauluvirheloki DocType: User,Bio,Bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 tähti on matalin ja 5 tähteä on korkein luokitus DocType: Event,Ref Name,Viite Nimi DocType: Web Page,Center,keskus +DocType: Email Alert,Value To Be Set,Asetettava arvo apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Ensimmäinen taso DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,on tila yhdessä sallitussa asiakirjassa sekä hyväksytty rooli tilan muuttamiseksi apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Päivitä muoto @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,On Verkkonäkymän apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Tietuetyypin nimen tulee alkaa kirjaimella, ja nimi voi sisältää vain kirjaimia, numeroita, välilyöntejä ja alaviivoja." DocType: Communication,Spam,roskapostin DocType: Integration Request,Integration Request,integraatio pyyntö -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,hyvä +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,hyvä DocType: Address,Maharashtra,Maharashtran DocType: Address,Accounts User,tilien käyttäjä DocType: Web Page,HTML for header section. Optional,"HTML otsikko-osaan, valinnainen" apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Tämä ominaisuus on uusi ja vielä kokeiluvaiheessa -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Suurin {0} rivit sallittu +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Suurin {0} rivit sallittu DocType: Email Unsubscribe,Global Unsubscribe,Globaali tilaus apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Tämä on hyvin yleinen salasana. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Näkymä DocType: Communication,Assigned,sidotut DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Valitse tulostusmuoto +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Valitse tulostusmuoto apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Lyhyet näppäimistö kuviot on helppo arvata DocType: Portal Settings,Portal Menu,Portaalivalikko apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Pituus {0} on välillä 1 ja 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Käyttäjä ei voi hakea apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Virheellinen Esitysmuoto DocType: Custom DocPerm,Apply this rule if the User is the Owner,"käytä tätä sääntöä, jos käyttäjä on omistaja" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Tulee olemaan käyttäjätunnuksesi tunnus +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Tulee olemaan käyttäjätunnuksesi tunnus apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,tee raportti DocType: Note,Notify users with a popup when they log in,Ilmoita käyttäjille popup kun he kirjautuvat apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ei löydy, valitse uusi yhdistettävä tavoite" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,roolit Käyttöoik apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Muuta DocType: Error Snapshot,Snapshot View,Tilannekuvanäkymä apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Säilytä uutiskirje ennen lähettämistä -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Valinnan tulee olla rivillä {1} kentälle {0} hyväksytty tietuetyyppi +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} year (s) sitten +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valinnan tulee olla rivillä {1} kentälle {0} hyväksytty tietuetyyppi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,muokkaa ominaisuuksia DocType: Patch Log,List of patches executed,Luettelo laastaria teloitettiin apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} on jo jääneet -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,viestintä medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,viestintä medium DocType: Website Settings,Banner HTML,Banneri HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Valitse toinen maksutapa. Razorpay ei tue käteisrahaan '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Jonossa varmuuskopiointia. Se voi kestää muutamasta minuutista tuntiin. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Rekisteröidy OAuth-asiakkaan App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ei voi olla ""{2}"" sen tulisi olla yksi ""{3}"":sta" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ei voi olla ""{2}"" sen tulisi olla yksi ""{3}"":sta" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} tai {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Näytä tai piilota työpöydän kuvakkeet apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Salasanan päivitys @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Näytä rivinvaihdot jälkeen pääluokat DocType: Blogger,Short Name,Lyhyt nimi apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Sivu {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",Valitset synkronointivaihtoehto kuten kaikkea se synkronoi kaikki \ lukea sekä lukemattoman viestin palvelimelta. Tämä voi myös aiheuttaa päällekkäistä \ tiedonannon (sähköpostit). apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Tiedostot Koko @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Ostojenhallinta DocType: Custom Script,Sample,Näyte apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Tunnisteet DocType: Event,Every Week,joka viikko +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Sähköpostitili ole määritetty. Luo uusi sähköpostitilin asetukset> Sähköposti> sähköpostitili apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klikkaa tästä tarkistaa oman käytön tai päivittää suurempaan sopimukseen DocType: Custom Field,Is Mandatory Field,kenttä vaaditaan DocType: User,Website User,Verkkosivuston käyttäjä @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom sivupalkki Menu DocType: Workflow State,pencil,lyijykynä apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat-viestien ja muut ilmoitukset. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Aseta jälkeen ei voida asettaa {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Aseta jälkeen ei voida asettaa {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Jaa {0} kanssa apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Sähköposti Tiliasetusten kirjoita salasana: DocType: Workflow State,hand-up,käsi-ylös DocType: Blog Settings,Writers Introduction,Kirjoittajan esittely DocType: Address,Phone,Puhelin -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Virhe arvioidaan sähköpostihälytys {0}. Korjaa malliin. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Virhe arvioidaan sähköpostihälytys {0}. Korjaa malliin. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Aloita valitsemalla asiakirjan tyyppi tai rooli DocType: Contact,Passive,Passiivinen DocType: Contact,Accounts Manager,Tilien hallinta +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Maksu on peruutettu. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Valitse tiedostotyyppi DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Sivua ei löytynyt @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Omaisuus tyyppi DocType: Workflow State,screenshot,kuvankaappaus apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Ainoastaan ylläpitäjä voi tallentaa perusraportin. Nimeä uudelleen ja tallenna. DocType: System Settings,Background Workers,taustaa Työntekijät +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} ristiriidassa metaolion DocType: Deleted Document,Data,tiedot apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,asiakirjan tila apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Olet tehnyt {0} {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Näytä käyttöoikeudet apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Sinun tulee kirjautua sisään järjestelmänhallitsijan roolissa jotta voit käyttää varmuuskopioita. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,jäljellä oleva -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Tallenna ennen kiinnittämistä. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Tallenna ennen kiinnittämistä. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),lisätty {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Alkuperäinen ulkoasu on asetettu {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Kenttätyyppiä {0} ei voi muuttaa {1}:si rivillä {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,järjestelmäasetukset apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start epäonnistui apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Tämä sähköposti lähetettiin {0} ja kopioidaan {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ole hyvä setup oletus sähköpostitilin asetukset> Sähköposti> sähköpostitili -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Lisää uusi {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Lisää uusi {0} DocType: Email Rule,Is Spam,roskaposti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Raportti {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Default uudelleenohjaus URI DocType: Email Alert,Recipients,Vastaanottajat DocType: Workflow State,ok-sign,ok-sign @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Ohje Artikkelit ,Modules Setup,moduuli määritykset apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,tyyppi: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Maksu on epäonnistunut. DocType: Communication,Unshared,Jakamaton DocType: Address,Karnataka,Karnatakan apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,moduulia ei löydy @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Tuotekuva DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Määritä ylänavigointipalkki, alatunniste ja logo" DocType: Web Form Field,Max Value,max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},"{0} tasolle {1}, {2} rivillä {3}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},"{0} tasolle {1}, {2} rivillä {3}" DocType: Contact,All,Kaikki DocType: Email Queue,Recipient,Vastaanottaja DocType: Communication,Has Attachment,on liitteitä @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,tasaa-oikea DocType: Auto Email Report,Email To,Email To apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Kansio {0} ei ole tyhjä DocType: Page,Roles,Roolit -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Kenttä {0} ei ole valittavissa +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Virhe: arvo puuttuu {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Kenttä {0} ei ole valittavissa DocType: System Settings,Session Expiry,Istunto vanhenee DocType: Workflow State,ban-circle,kielto-ympyrä DocType: Email Flag Queue,Unread,Lukemattomat @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Käyttäjä-oletusarvot apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Lisää uusi DocType: Workflow State,chevron-down,välimerkki-alas -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email ei lähetetty {0} (jääneitä / vammaiset) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email ei lähetetty {0} (jääneitä / vammaiset) DocType: Async Task,Traceback,Jäljittää DocType: Currency,Smallest Currency Fraction Value,Pienin Valuutta bråkdelsvärdet apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Aseta vastuuhenkilö @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,alkaen DocType: Website Theme,Google Font (Heading),Google Font (ylätunniste) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Valitse ensin ryhmä sidos -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},"Etsi {0}, {1}:sta" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},"Etsi {0}, {1}:sta" DocType: OAuth Client,Implicit,Implisiittinen DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","liitä tiedonanto tähän tietuetyyppiin (vaatii kentät ""tila"" ja ""otsikko"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",URI vastaanottamiseksi lupakoodin kun käyttäjä sallii pääsyn sekä epäonnistuminen vastauksia. Tyypillisesti REST päätepisteen paljastamat Client App.
esimerkiksi http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Eivät saa muuttaa {0} toimittamisen jälkeen +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Eivät saa muuttaa {0} toimittamisen jälkeen DocType: Communication,Comment Type,Kommentin tyyppi DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Käyttäjät @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Ei voi lukea tiedostomuotoon {0} DocType: Auto Email Report,Filter Data,suodatintiedot apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Lisää tagi -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Liitä tiedosto ensin. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Liitä tiedosto ensin. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Nimen asennuksessa ilmeni virheitä, ota yhteyttä järjestelmähallintaan" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Saapuvat sähköpostitili ole oikein apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,sähköposti lähetetty DocType: DocField,Ignore XSS Filter,Ohita XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,poistettu apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox varmuuskopiointiasetukset -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Lähetä sähköpostina +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Lähetä sähköpostina DocType: Website Theme,Link Color,Linkin väri apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Käyttäjää {0} ei voi poistaa apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","järjestelmänhallito," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Maasi +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Maasi DocType: Event,Sunday,sunnuntai apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Ruudukkonäkymässä DocType: Address Template,Template,Mallipohja @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-asetukset apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,muuttamisesta apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal maksu yhdyskäytävä asetukset -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) katkaistaan, koska sallittujen merkkien enimmäismäärä on {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) katkaistaan, koska sallittujen merkkien enimmäismäärä on {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resource omistajan salasana valtakirjojen DocType: OAuth Client,Response Type,vastaustyyppi apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max Käyttäjät @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Taulukko DocType: File,File Size,Tiedoston koko apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Sinun pitää kirjautua sisään lähettääksesi lomakkeen DocType: User,Background Image,Taustakuva -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Valitse maa, aikavyöhyke ja valuutta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Valitse maa, aikavyöhyke ja valuutta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Välillä DocType: Async Task,Queued,Jonossa @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,u DocType: Custom DocPerm,Create,tee apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},virheellinen suodatus: {0} DocType: Email Account,no failed attempts,no epäonnistunut +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ei oletusosoitetta mallia ei löytynyt. Luo uusi yksi Asetukset> Tulostus ja brändi> Osoitemallin. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Access Token @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Käyttäjätunnus DocType: DocType,Image View,kuvanäkymä apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Näyttää jotain meni pieleen tapahtuman aikana. Koska emme ole vahvistaneet maksu, Paypal automaattisesti palautamme tämän määrän. Jos näin ei ole, lähetä meille sähköpostia ja mainita korrelaatio ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Sisältyä merkkejä, numeroita ja isoja kirjaimia salasanaa" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Aseta jälkeen kenttä '{0}' mainitaan Oma kenttä "{1}", jossa merkintä "{2}", ei ole olemassa" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Sisältyä merkkejä, numeroita ja isoja kirjaimia salasanaa" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Aseta jälkeen kenttä '{0}' mainitaan Oma kenttä "{1}", jossa merkintä "{2}", ei ole olemassa" DocType: Workflow State,signal,Signaali DocType: DocType,Show Print First,Näytä tulosta ensimmäinen apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter lähettää @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Tiedosto {0} 'ei löytynyt apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,poista jakso DocType: User,Change Password,Vaihda salasana -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},virheellinen sähköposti: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hei! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},virheellinen sähköposti: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hei! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,tapahtuman loppu tulee olla aloituksen jälkeen apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Sinulla ei ole käyttöoikeuksia tehdä raporttia: {0} +DocType: System Settings,Apply Strict User Permissions,Levitä Tiukka Käyttöluvat DocType: DocField,Allow Bulk Edit,Salli erämuokkauksen DocType: Blog Post,Blog Post,Blogikirjoitukset -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,tarkka haku +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,tarkka haku apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Salasanan palautusohjeet on lähetetty sähköpostiisi apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Taso 0 on dokumenttien tason käyttöoikeuksia, \ korkeammat tasot kenttätasolla käyttöoikeudet." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,peruutettu DocType: Web Page,Sidebar and Comments,Sivupalkki ja kommentit apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",Mikäli muutat ja tallennat asiakirjaa peruutuksen jäjleen saa se uuden numeron jossa on sidos vanhaan numeroon DocType: Stripe Settings,Publishable Key,julkaisukelpoisia Key -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} year (s) sitten DocType: Workflow State,circle-arrow-left,kierrä-nuoli-vasen apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"palvelin ei ole käytössä, ota yhteyttä järjestelmänvalvojaan / tekniseen tukeen" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Osapuolen nimi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,tee uusi tietue +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,tee uusi tietue apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,tutkiva DocType: Currency,Fraction,jako DocType: LDAP Settings,LDAP First Name Field,LDAP etunimi Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Valitse järjestelmään tuoduista liitteistä +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Valitse järjestelmään tuoduista liitteistä DocType: Custom Field,Field Description,Kentän kuvaus apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nimeä ei ole asetettu kautta Kysy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Sähköposti Saapuneet @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,info: DocType: Custom Field,Permission Level,Käyttöoikeustaso DocType: User,Send Notifications for Transactions I Follow,Lähetä ilmoituksia tapahtumista joita seuraan -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ei voi lähettää, perua tai muuttaa ilman kirjoitusta" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ei voi lähettää, perua tai muuttaa ilman kirjoitusta" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Oletko varma, että haluat poistaa liitetiedoston?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ei voi poistaa tai peruuttaa, koska {0} {1} liittyy {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ei tuloksia ei löytynyt '

-apps/frappe/frappe/__init__.py +1063,Thank you,Kiitos +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ei voi poistaa tai peruuttaa, koska {0} {1} liittyy {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Kiitos apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Tallennetaan... DocType: Print Settings,Print Style Preview,Tulosta Style esikatselu apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,luettelonäkymänä DocType: Email Account,Use TLS,Käytä TLS:ää apps/frappe/frappe/email/smtp.py +24,Invalid login or password,virheellinen kirjautuminen tai salasana apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,lisää omia javascript lomakkeisiin/muotoihin -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,srj nro +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,srj nro ,Role Permissions Manager,Roolien oikeuksienhallinta apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,nimeä uusi tulostusmuoto -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Pakollinen: ,User Permissions Manager,Käyttäjien oikeuksien hallinta DocType: Property Setter,New value to be set,Uusi arvo asetettava @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 päi apps/frappe/frappe/config/website.py +47,Categorize blog posts.,luokittele blogikirjoituksia DocType: Workflow State,Time,Aika DocType: DocField,Attach,liite -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ei ole kelvollinen fieldname kuvio. Sen pitäisi olla {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ei ole kelvollinen fieldname kuvio. Sen pitäisi olla {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Lähetä palautetta Kysely vain, jos on ainakin yksi viestintä on käytettävissä dokumentin." DocType: Custom Role,Permission Rules,Käyttöoikeus säännöt DocType: GSuite Settings,GSuite Settings,GSuite Asetukset DocType: Address,Links,Linkit -apps/frappe/frappe/model/base_document.py +428,Value missing for,Arvo puuttuu +apps/frappe/frappe/model/base_document.py +427,Value missing for,Arvo puuttuu apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,lisää alasidos -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: lähetystietuetta ei voi poistaa. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: lähetystietuetta ei voi poistaa. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Koko DocType: GSuite Templates,Template Name,Mallin nimi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,uudentyyppinen asiakirja +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,uudentyyppinen asiakirja DocType: Custom DocPerm,Read,Luettu DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rooli Lupa Sivu ja Raportti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Kohdista Arvo apps/frappe/frappe/www/update-password.html +14,Old Password,Vanha Salasana -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Viestit käyttäjältä {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Viestit käyttäjältä {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Jos haluat muotoilla sarakkeita, anna nimi saraketunnisteelle" DocType: Has Domain,Has Domain,on Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Ei ole tiliä? Kirjaudu -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: ei voi nimetä mutosta ellei ole lähetettävissä +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: ei voi nimetä mutosta ellei ole lähetettävissä DocType: Address,Bihar,Biharin apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,muokkaa rooli oikeuksia DocType: Communication,Link DocType,Linkki-tietuetyyppi @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Varmista, että profiilisi on sähköpostiosoite" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Tekemiäsi muutoksia ei ole tallennettu. Tallenna ennen kuin jatkat. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,oletus {0}:lle tulee olla vaihtoehto +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,oletus {0}:lle tulee olla vaihtoehto DocType: Tag Doc Category,Tag Doc Category,Tag Doc Luokka DocType: User,User Image,Käyttäjän kuva apps/frappe/frappe/email/queue.py +289,Emails are muted,sähköpostit on mykistetty @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Seuraava t DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Arvot päivittyvät tapahtumissa automaattisesti, on hyödyllistä rajoittaa tapahtumien käyttäjien käyttöoikeudet siltä osin mikä osa sisältää näitä arvoja" apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Julkaisija -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Epäonnistui: {0} on {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Epäonnistui: {0} on {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Valitse Pakollinen apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,selaa apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Lähetetyt sähköpostiviestit @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Nollaa salasana apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Ole hyvä ja päivitä lisätä yli {0} tilaajien DocType: Workflow State,hand-left,käsi-vasen -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Kenttätyyppi {0} on {1} ei voi olla uniikki +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Kenttätyyppi {0} on {1} ei voi olla uniikki DocType: Email Account,Use SSL,Käytä SSL:ää DocType: Workflow State,play-circle,Play-ympyrä apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Valitse muokattava tulostusmuoto @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,Ei Kopiota DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Kirjaudu LDAP DocType: Web Form,Breadcrumbs,muruset -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,mikäli omistaja +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,mikäli omistaja DocType: OAuth Authorization Code,Expiration time,vanhentumisaika DocType: Web Page,Website Sidebar,Verkkosivu sivupalkki DocType: Web Form,Show Sidebar,Näytä sivupalkki @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Ei löytänyt {0} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Ja sukunimet itse on helppo arvata. apps/frappe/frappe/config/website.py +93,Knowledge Base,Tietopohja DocType: Workflow State,briefcase,salkku -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Kohteen {0} arvoa ei voi muuttaa +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Kohteen {0} arvoa ei voi muuttaa DocType: Feedback Request,Is Manual,on Manuaalinen DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","tyyli muuttaa painikken väriä: voitto-vihreä, palo-punainen, kääntö-musta, tavallinen-tummansininen, vinkki-vaaleansininen, ongelma-oranssi" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"raportteja ei ole ladattu, suorita raportti käyttämällä raporttikyselyä / [raportin_nimi]" @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Edistyminen apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,Rooli apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,kenttiä puuttuu apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Virheellinen fieldname '{0}' in autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Haku asiakirjatyypit +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Haku asiakirjatyypit apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Salli kenttä jäädä muokattavissa vielä toimittamisen jälkeen DocType: Custom DocPerm,Role and Level,Rooli ja Level DocType: File,Thumbnail URL,Pikkukuvan URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Lisää tietoa DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Maksusuorituksesi on vastaanotettu +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Maksusuorituksesi on vastaanotettu apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Sinulla ei ole käyttöoikeutta tämän sivun tarkasteluun apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Vihje: Tuplaklikkaa solu muokata DocType: Workflow State,bell,soittokello apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Virhe sähköpostihälytys apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Jaa tämä asiakirja +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Asetukset> Käyttäjän Permissions Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ei voi olla jatkosidos koska sillä on alasidoksia DocType: Communication,Info,info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Lisää LIITE +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Lisää LIITE DocType: Communication,Email,sähköposti apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Kiitos viestistäsi -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Lähetä Lukukuittaus +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Lähetä Lukukuittaus DocType: Stripe Settings,Stripe Settings,raita Asetukset DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup kautta Site Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Virheellinen Kirjaudu Token @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,Web-näkymä apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,"Varoitus: Tämä tulostusformaatti on vanhaa tyyliä, eikä sitä voi muodostaa API:n kautta" DocType: DocField,Print Width,Tulosta Leveys ,Setup Wizard,Määritys työkalu +DocType: Address,GST State Number,GST valtio lukumäärä DocType: User,Allow user to login only before this hour (0-24),Salli käyttäjän kirjautua sisään vain ennen tätä tunti (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Kansio on pakollinen apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Pieni teksti apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,ylläpitäjän kirjautuminen {0} {1}:llä IP-osoiteella {2} apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,yhtäsuuri -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Valinnan ""Dynaaminen linkki"" -tyyppisen kentän tulee viitata toiseen linkkityyppiin jonka käytetty valinta on ""tietuetyyppi""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Valinnan ""Dynaaminen linkki"" -tyyppisen kentän tulee viitata toiseen linkkityyppiin jonka käytetty valinta on ""tietuetyyppi""" DocType: About Us Settings,Team Members Heading,Tiimin jäsenet otsikko apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Virheellinen CSV Format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Aseta määrä Varmuuskopiot @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Yhteystieto DocType: User,Third Party Authentication,Kolmannen osapuolen todennus DocType: Website Settings,Banner is above the Top Menu Bar.,Banneri on Päävalikon yllä. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Vie raportti: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Vie raportti: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ei ole olemassa DocType: Email Account,Port,Portti DocType: Print Format,Arial,Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,sarakken nimi DocType: Language,Based On,perustuu apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Laita oletusarvoksi apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Tarkista Frappe Palvelimen URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Kenttätyyppi {0}:ä {1} ei voi indeksoida +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Kenttätyyppi {0}:ä {1} ei voi indeksoida DocType: Communication,Email Account,sähköpostitili DocType: Workflow State,Download,Vie DocType: Blog Post,Blog Intro,Blogi Intro @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,aseta koodi DocType: ToDo,Low,Alhainen apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,voit lisätä asiakirjan dynaamisia ominaisuuksia käyttämällä Jinja mallinnusta apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Virheellinen raja {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,asiakirja tyyppi luettelo +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,asiakirja tyyppi luettelo DocType: Event,Ref Type,Viite tyyppi apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","sarake ""nimi"" (tunnus) tulee olla tyhjä mikäli ladatessasi uusia tietueita" DocType: Address,Chattisgarh,Chattisgarhin @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,U DocType: Print Settings,Send Print as PDF,Lähetä PDF tuloste DocType: Web Form,Amount,määrä DocType: Workflow Transition,Allowed,Sallittu -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Lomakkeessa voi olla vain yksi supistus +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Lomakkeessa voi olla vain yksi supistus apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Ei voi kirjoittaa tiedostomuotoon {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Palauta oletusasetukset? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,virheellinen kotisivu apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Virheellinen kirjautuminen. Yritä uudelleen. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Vaihtoehtoja tarvitaan Link tai taulukossa tyypin kenttä {0} rivillä {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Vaihtoehtoja tarvitaan Link tai taulukossa tyypin kenttä {0} rivillä {1} DocType: Auto Email Report,Send only if there is any data,"Lähetä vain, jos on mitään tietoa" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Nollaa suodattimet -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: oikeudet tasolla 0 on asetettava ennen ylempien tasojen asettamista +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: oikeudet tasolla 0 on asetettava ennen ylempien tasojen asettamista apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},tehtävä suljettu {0}:sta DocType: Integration Request,Remote,Etä -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,laske +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,laske apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Valitse ensin tietuetyyppi apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,vahvista sähköposti apps/frappe/frappe/www/login.html +42,Or login with,Tai sisään DocType: Error Snapshot,Locals,Paikalliset apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Viestitään {0} on {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} mainitsi sinut kommentin {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"esim, (55 + 434) / 4 tai = math.sin (Math.PI / 2) ..." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"esim, (55 + 434) / 4 tai = math.sin (Math.PI / 2) ..." apps/frappe/frappe/model/naming.py +44,{0} is required,{0} on pakollinen DocType: Integration Request,Integration Type,integraatio Tyyppi DocType: Newsletter,Send Attachements,Send Liitteet @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,Pysyvä taso apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,tapahtuma tämän päivän kalenterissa DocType: Web Page,Web Page,Verkkosivu DocType: Blog Category,Blogger,Kirjoittaja -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Global haku' kielletty tyyppi {0} rivillä {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Global haku' kielletty tyyppi {0} rivillä {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Katso List -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},päivän on oltava muodossa: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},päivän on oltava muodossa: {0} DocType: Workflow,Don't Override Status,Älä poikkeuta tilaa apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Antakaa luokitus. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} palaute pyyntö apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Hakusana -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Ensimmäinen käyttäjä: sinä +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Ensimmäinen käyttäjä: sinä apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Valitse sarakkeet DocType: Translation,Source Text,Lähde teksti apps/frappe/frappe/www/login.py +55,Missing parameters for login,Puuttuvat parametrit kirjautuminen @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Tuominen DocType: ToDo,Assigned By,nimeäjä apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,voit asettaa kentälle tasoja käyttämällä muokkaa muotoa -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Valitse alue +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Valitse alue DocType: Custom DocPerm,Level,taso DocType: Custom DocPerm,Report,Raportti apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Määrä on oltava suurempi kuin 0. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,Tausta DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON-tietuetyyppiluetteloa käytetään käyttäjien käyttöoikeuksien asettamiseen. Jos se on tyhjä, kaikkia linkitettyjä tietuetyyppejä käytetään käytetään käyttöoikeuksien asettamisessa." DocType: Report,Ref DocType,Viitetyyppi apps/frappe/frappe/www/feedback.py +42,Please add a rating,Lisätkää luokitus -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: ei voi muuttaa ilman perumista +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: ei voi muuttaa ilman perumista apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,kokosivu DocType: DocType,Is Child Table,alasidos taulukko apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} on oltava yksi {1}:sta @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Tämä menee diaesityk apps/frappe/frappe/config/setup.py +260,Install Applications.,asenna sovellukset DocType: Contact,Last Name,Sukunimi DocType: Event,Private,Yksityinen -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Ei ilmoituksia tänään +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Ei ilmoituksia tänään DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Tulosta liitteet PDF:nä (suositus) DocType: Web Page,Left,Ei työsuhteessa DocType: Event,All Day,(1/1 päivä) @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,Lähetä sähköposti muist DocType: Blog Post,Published On,Julkaistu DocType: Contact,Gender,sukupuoli apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Pakolliset tiedot puuttuvat: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Kenttä "{0}" ei voi asettaa niin ainutlaatuinen, koska se on ei-ainutlaatuinen arvot" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Kenttä "{0}" ei voi asettaa niin ainutlaatuinen, koska se on ei-ainutlaatuinen arvot" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Vain 200 lisäystä on sallittu yhdessä pyynnössä DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Viite tyyppi @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Varoitusmerkki DocType: Workflow State,User,Käyttäjä DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Näytä otsikko selainikkunassa muodossa ""etuliite - otsikko""" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Asiakirjatyypin teksti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Asiakirjatyypin teksti apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Suorita testit apps/frappe/frappe/handler.py +91,Logged Out,Kirjautunut ulos apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Lisää... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Tuote DocType: DocField,Default,oletus apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} lisätty -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Etsi "{0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Etsi "{0} apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Ole hyvä tallentaa raportin ensimmäinen apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} luettelo lisätty apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ei sisälly DocType: Workflow State,star,tähtimerkki -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Arvot pilkulla erotettuna -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},max leveys valuutta tyypille on 100px rivillä {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Arvot pilkulla erotettuna +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},max leveys valuutta tyypille on 100px rivillä {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Ole hyvä ja jaa palautetta {0} apps/frappe/frappe/config/website.py +13,Content web page.,"sisältö, verkkosivu" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Lisää uusi rooli @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ei kelvollinen LDAP käyttäjä apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ei sallittu tila apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Valitse toinen maksutapa. PayPal ei tue käteisrahaan '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Hakukenttä {0} ei kelpaa +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Hakukenttä {0} ei kelpaa DocType: Workflow State,ok-circle,ok-ympyrä apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Voit löytää asioita kysymällä "löytää oranssi asiakkaiden apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Käyttäjällä tulee olla täysi pääsy omiin tietueisiin @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Teksti linkki verkkosivulle näytetään jos tällä lomakkeella on verkkosivu, linkin reitti muodostuu automaattisesti tyyliin `sivu_nimi` ja` emo_verkkosivu_reitti`" DocType: Feedback Request,Feedback Trigger,Palaute Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Aseta {0} Ensimmäinen +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Aseta {0} Ensimmäinen DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Korjauspäivitys DocType: Async Task,Failed,Epäonnistui diff --git a/frappe/translations/fr.csv b/frappe/translations/fr.csv index 953696cbed..70ef8ae653 100644 --- a/frappe/translations/fr.csv +++ b/frappe/translations/fr.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Nom d'Utilisateur Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Remarque : Plusieurs sessions seront autorisées en cas d'appareil mobile apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Activer boîte de réception Email pour l'utilisateur {users} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossible d'envoyer cet E-mail. Vous avez franchi la limite d'envoi de {0} E-mails pour ce mois. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Soumettre de Manière Permanente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Soumettre de Manière Permanente {0} ? DocType: Address,County,Canton DocType: Workflow,If Checked workflow status will not override status in list view,Si Cochée le statut du flux de travail ne remplacera pas le statut de la vue en liste apps/frappe/frappe/client.py +280,Invalid file path: {0},Chemin de fichier invalide : {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Veuille apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Arbre DocType: User,User Emails,Les Emails de l'Utilisateur DocType: User,Username,Nom d'Utilisateur -apps/frappe/frappe/model/base_document.py +581,Value too big,Valeur trop grande +apps/frappe/frappe/model/base_document.py +580,Value too big,Valeur trop grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Exécuter un Script de Test DocType: Contact,Department,Département @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Journaux DocType: Custom DocPerm,This role update User Permissions for a user,Ce rôle met à jour les Autorisations Utilisateur pour un utilisateur apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Renommer {0} DocType: Workflow State,zoom-out,Réduire -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Impossible d'ouvrir {0} quand son instance est ouverte +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Impossible d'ouvrir {0} quand son instance est ouverte apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,La Table {0} ne peut pas être vide apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Avec Livres apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Images DocType: Communication,Reference Owner,Responsable de la Référence DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"La plus petite unité de fraction de circulation (pièce de monnaie). E.g. 1 centime pour l'EUR et il devrait être saisi 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Ligne {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Ligne {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Veuillez donner un nom complet. apps/frappe/frappe/model/document.py +904,Beginning with,Commençant par apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Modèle d'Importation de Données apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Si activé, la force du mot de passe sera appliquée en fonction de la Valeur Minimale du Score du Mot de Passe. Une valeur de 2 étant moyennement forte et 4 très forte." DocType: About Us Settings,"""Team Members"" or ""Management""","""Membres de l'Équipe"" ou ""Management""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1','Vérifier’ le type de champ doit être ‘0’ ou ‘1’ par Défaut +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1','Vérifier’ le type de champ doit être ‘0’ ou ‘1’ par Défaut apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Hier DocType: Contact,Designation,Désignation DocType: Test Runner,Test Runner,Exécuteur de Test @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Est un Champ Publié DocType: Email Group,Email Group,Groupe Email DocType: Note,Seen By,Vu Par apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Ajout Multiple -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Pas Comme +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Pas Comme apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Réglez l'étiquette d'affichage pour le champ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valeur incorrecte : {0} doit être {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Modification des propriétés de champ (masquer , en lecture seule , permission etc )" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Réglages apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrateur Connecté DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Les options de contact, comme ""Demande de Ventes, Demande d'Aide"" etc., doivent être chacune sur une nouvelle ligne ou séparées par des virgules." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Télécharger -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insérer +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insérer apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Sélectionner {0} DocType: Print Settings,Classic,Classique DocType: Desktop Icon,Color,Couleur @@ -121,7 +121,7 @@ DocType: Translation,Translation,Traduction apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installer apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,M. DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Ce formulaire a été modifié après que vous l'ayez chargé +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Ce formulaire a été modifié après que vous l'ayez chargé DocType: User Permission for Page and Report,User Permission for Page and Report,Autorisation de l'Utilisateur pour la Page et le Rapport DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Si elle n'est pas définie, la précision de la devise dépend du format de nombre" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Raison apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Veuillez spécifier l'utilisateur DocType: Email Unsubscribe,Email Unsubscribe,Se Désabonner Email DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Sélectionner une image d'une largeur d'environ 150px avec un fond transparent pour de meilleurs résultats. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Le premier utilisateur deviendra le Responsable Système (vous pouvez changer cela plus tard). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Le premier utilisateur deviendra le Responsable Système (vous pouvez changer cela plus tard). ,App Installer,Installateur d’App DocType: Workflow State,circle-arrow-up,flèche-cercle-haut apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Chargement ... DocType: Email Domain,Email Domain,Nom de Domaine Email DocType: Workflow State,italic,italique apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Pour Tout le Monde -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Impossible de choisir Import sans Créer +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Impossible de choisir Import sans Créer apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Événement et autres calendriers. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Tous les champs sont nécessaires pour soumettre le commentaire apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Faites glisser pour trier les colonnes @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Menu Standard de la Barre Latéra apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Impossible de supprimer les dossiers d’accueil et les pièces jointes apps/frappe/frappe/config/desk.py +19,Files,Fichiers apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Autorisations sont appliqués aux utilisateurs en fonction des Rôles qui leurs sont affectés. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Vous n'êtes pas autorisé à envoyer un email en relation avec ce document -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Vous n'êtes pas autorisé à envoyer un email en relation avec ce document +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Veuillez sélectionner au moins 1 colonne de {0} pour trier / grouper DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Cochez cette case si vous testez votre paiement en utilisant l'API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Vous n'êtes pas autorisé à supprimer un Thème standard du Site Web DocType: Feedback Trigger,Example,Exemple @@ -204,7 +204,7 @@ DocType: Email Group,Total Subscribers,Total d'Abonnés apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Si un Rôle n'a pas accès au niveau 0, les niveaux plus élevés n'ont pas de sens." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Enregistrer Sous DocType: Communication,Seen,Vu -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Montrer plus de détails +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Montrer plus de détails DocType: System Settings,Run scheduled jobs only if checked,Les tâches planifiées ne sont exécutées que si la case est cochée. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Ne seront montrés que si les titres de section sont activés apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archiver @@ -220,7 +220,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Afficher le Grap apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Email et nom valides requis DocType: DocType,Hide Heading,Masquer l'En-Tête DocType: Address,Current,Actuel -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documents Liés apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Groupes de DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,retirez-cercle @@ -236,10 +235,9 @@ DocType: Workflow State,Filter,Filtre apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Nom du Champ {0} ne peut pas avoir des caractères spéciaux comme {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Mettre à jour plusieurs valeurs en même temps. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Erreur : le document a été modifié après que vous l'ayez ouvert -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut trouvé. Créez une nouvelle version de Configuration> Impression et Marquage> Modèle d'adresse. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} déconnecté: {1} DocType: Address,West Bengal,Bengal Ouest -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : Impossible de définir ‘Assigner Soumettre’ si non Soumissible +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : Impossible de définir ‘Assigner Soumettre’ si non Soumissible DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","Filtré par ""{0}""" DocType: Salutation,Administrator,Administrateur @@ -249,7 +247,7 @@ DocType: Blog Settings,Blog Title,Titre du Blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Les rôles standard ne peuvent pas être désactivées DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Impossible d'utiliser la sous-requête dans l'ordre demandé +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Impossible d'utiliser la sous-requête dans l'ordre demandé DocType: Web Form,Button Help,Aide du Bouton DocType: Kanban Board Column,purple,violet DocType: About Us Settings,Team Members,Membres de l'Équipe @@ -263,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Obtenir votr apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Votre abonnement a expiré le {0}. Pour le renouveler, {1}." DocType: Workflow State,plus-sign,signe plus apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuration déjà terminée -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} n'est pas installée +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} n'est pas installée DocType: Workflow State,Refresh,Actualiser DocType: Event,Public,Public apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Rien à montrer @@ -271,7 +269,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Aimé par apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Support Email DocType: DocField,Print Hide If No Value,Cacher à l’Impression si Aucune Valeur DocType: Event,yellow,jaune -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Le Champ Publié doit-il être un nom de champ valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Le Champ Publié doit-il être un nom de champ valide apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Charger une Pièce Jointe DocType: Block Module,Block Module,Bloquer le Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Exporter le Modèle @@ -290,7 +288,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Rech DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Un nouveau compte a été créé pour vous à {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instructions Envoyées par Email -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Entrez Email du(des) Destinataire(s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Entrez Email du(des) Destinataire(s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Liste d'Attente des d'Emails Marqués apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Impossible d'identifier les {0} ouvertes. Essayez autre chose. @@ -304,8 +302,8 @@ DocType: Communication,Message ID,ID de Message DocType: Property Setter,Field Name,Nom du Champ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite n'est pas configuré apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ou -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Nom du module ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continuer +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Nom du module ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuer DocType: Custom Field,Fieldname,Nom du Champ DocType: Workflow State,certificate,certificat DocType: User,Tile,Mosaïque @@ -314,6 +312,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Afficher toutes les Versions DocType: Workflow State,Print,Imprimer DocType: User,Restrict IP,Restreindre l'IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Tableau de bord apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Impossible d'envoyer des emails en ce moment apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Rechercher ou taper une commande DocType: Communication,Timeline Name,Nom de la Chronologie @@ -324,7 +323,7 @@ DocType: Contact,Sales Master Manager,Directeur des Ventes apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Une Dernière Étape apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nom du Type de Document (DocType) auquel vous souhaitez que ce champ soit lié. e.g. Client DocType: User,Roles Assigned,Rôles Assignés -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Aide de Recherche +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Aide de Recherche DocType: Top Bar Item,Parent Label,Étiquette Parente apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Votre requête a été reçue. Nous vous répondrons au plus vite. Si vous avez des informations supplémentaires, veuillez répondre à cet email." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Les autorisations sont automatiquement converties pour les Rapports Standard et les Recherches . @@ -341,6 +340,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Modifier Rubrique DocType: File,File URL,URL du fichier DocType: Version,Table HTML,HTML de Table +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Aucun résultat trouvé pour '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Ajouter des Abonnés apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Événements À Venir Aujourd'hui DocType: Email Alert Recipient,Email By Document Field,Email Par Champ de Document @@ -360,17 +360,16 @@ DocType: Web Form,Amount Based On Field,Montant Basé sur le Champ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,L'utilisateur est obligatoire pour Partager DocType: DocField,Hidden,Masqué DocType: Web Form,Allow Incomplete Forms,Autoriser les Formulaires Incomplets -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} doit être défini en premier +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} doit être défini en premier apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Utiliser quelques mots, éviter les phrases courantes." DocType: Workflow State,plane,plan -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oups. Votre paiement a échoué. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Si vous téléchargez de nouveaux rapports, ""Nommer Séries"" devient obligatoire, si présent." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Obtenir les Alertes d'Aujourd'hui +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Obtenir les Alertes d'Aujourd'hui apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType ne peut être renommé que par l'Administrateur apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},valeur de {0} changée DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Veuillez vérifier votre email pour validation -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Un Pli ne peut pas être à la fin du formulaire +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Un Pli ne peut pas être à la fin du formulaire DocType: Communication,Bounced,Refusés DocType: Deleted Document,Deleted Name,Nom Supprimé apps/frappe/frappe/config/setup.py +14,System and Website Users,Utilisateurs Système et Site Web @@ -389,13 +388,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Document en Attente DocType: GSuite Templates,Destination ID,ID de Destination DocType: Desktop Icon,List,Liste DocType: Communication,Link Name,Nom du Lien -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Champ {0} en ligne {1} ne peut pas être caché et obligatoire sans valeur par défaut +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Champ {0} en ligne {1} ne peut pas être caché et obligatoire sans valeur par défaut DocType: System Settings,mm/dd/yyyy,mm/jj/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Mot de Passe Incorrect: DocType: Print Settings,Send document web view link in email,Envoyer le lien de l'affichage web du document dans l'email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Votre Retour d'Expérience pour le document {0} est enregistré avec succès apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Précedent -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} lignes pour {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sous-monnaie. E.g. : ""Cent""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Sélectionner le fichier téléchargé @@ -406,10 +405,11 @@ DocType: Desktop Icon,Link,Lien apps/frappe/frappe/utils/file_manager.py +96,No file attached,Pas de fichier joint DocType: Version,Version,Version DocType: User,Fill Screen,Remplir l'Écran -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Impossible d'afficher ce rapport en arborescence, en raison de données manquantes. Très probablement, il est filtré sur la base des autorisations." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configurez le compte de messagerie par défaut à partir de la configuration> Courriel> Compte de messagerie +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Impossible d'afficher ce rapport en arborescence, en raison de données manquantes. Très probablement, il est filtré sur la base des autorisations." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Sélectionner un fichier apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Modifier via Chargement -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","type de document ..., ex. client" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","type de document ..., ex. client" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La Condition '{0}' est invalide DocType: Workflow State,barcode,Code Barre apps/frappe/frappe/config/setup.py +232,Add your own translations,Ajoutez vos propres traductions @@ -419,7 +419,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Mercredi apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Outre les Règles d'Autorisation basées sur un Rôle, vous pouvez appliquer des Autorisations Utilisateurs basées sur des DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ces autorisations s'appliquent pour toutes les transactions où l’enregistrement permis est lié. Par exemple, si la Société C est ajoutée aux Autorisations Utilisateur de l’utilisateur X, l’utilisateur X ne pourra voir que les transactions liées à la Société C." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Champ de l'image doit être un champ valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Champ de l'image doit être un champ valide DocType: OAuth Client,Token,Jeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nom) de l'entité dont la propriété doit être définie apps/frappe/frappe/limits.py +82,"To renew, {0}.","Pour renouveler, {0}." @@ -428,7 +428,7 @@ DocType: Web Form,Sidebar Items,Articles de la Barre Latérale apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} déjà installée DocType: Workflow State,exclamation-sign,point-d'exclamation apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Afficher les Autorisations -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Le champ Chronologie doit être une Lien ou un Champ Dynamique +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Le champ Chronologie doit être une Lien ou un Champ Dynamique apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Intervalle de Date apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} sur {1} @@ -436,7 +436,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Prése apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","La clé de cryptage n'est pas valide, veuillez vérifier site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,À DocType: Kanban Board Column,darkgrey,gris foncé -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Succès : {0} au {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Succès : {0} au {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Vous ne pouvez pas changer les détails utilisateur dans la démo. Veuillez créer un nouveau compte sur https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Veuillez créer un duplicata pour faire des changements apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,La génération du PDF a échoué en raison de liens invalides vers une/des image(s) @@ -453,24 +453,24 @@ DocType: DocField,Collapsible,Réductible apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Enregistré apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Avec quoi avez vous besoin d'aide ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Options pour sélectionner. Chaque option sur une nouvelle ligne. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Annuler de Manière Permanente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Annuler de Manière Permanente {0} ? DocType: Workflow State,music,musique DocType: Web Page,Settings,Réglages apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Veuillez indiquer un doctype DocType: Print Format,Style Settings,Réglages de Style -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Champ de tri {0} doit être un nom de champ valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Champ de tri {0} doit être un nom de champ valide apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Plus DocType: Contact,Sales Manager,Responsable des Ventes apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Renommer DocType: Print Format,Format Data,Format des Données -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Comme +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Comme DocType: Customize Form Field,Customize Form Field,Personnaliser un Champ de Formulaire apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Autoriser l'Utilisateur DocType: OAuth Client,Grant Type,Type de Subvention apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Vérifier quels Documents sont lisibles par un Utilisateur apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Application non autorisée -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,utiliser % comme joker -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Nom de Domain de l'Email non configuré pour ce compte, En créer un ?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,utiliser % comme joker +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Nom de Domain de l'Email non configuré pour ce compte, En créer un ?" DocType: User,Reset Password Key,Réinitialiser le Mot de Passe DocType: Email Account,Enable Auto Reply,Activer la Réponse Automatique apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Non Vu @@ -513,7 +513,7 @@ DocType: DocField,Set Only Once,Ne Définir qu'une Seule Fois DocType: Email Queue Recipient,Email Queue Recipient,Destinataire de la Liste d'Attente d'Emails DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nom d'Utilisateur {0} existe déjà -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Impossible de choisir import car {1} n'est pas importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Impossible de choisir import car {1} n'est pas importable apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Il y a une erreur dans votre Modèle d'Adresse {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -525,7 +525,7 @@ DocType: Communication,From Full Name,Nom de l’Expéditeur apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Vous n'avez pas accès au Rapport : {0} DocType: User,Send Welcome Email,Envoyer un Email de Bienvenue apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Chargement d'un fichier CSV contenant toutes les autorisations de l'utilisateur dans le même format que le fichier Téléchargé. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Supprimer le filtre +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Supprimer le filtre DocType: Address,Daman and Diu,Daman and Diu DocType: Address,Personal,Personnel apps/frappe/frappe/config/setup.py +113,Bulk Rename,Renommer en Masse @@ -555,11 +555,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Un DocType standard ne peut pas avoir de format d'impression par défaut, veuillez utiliser ""Personnaliser le formulaire""" DocType: Report,Query,Requête DocType: DocType,Sort Order,Ordre de Tri -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Dans La Vue En Liste’ n'est pas permis pour le type {0} à la ligne {1} DocType: Custom Field,Select the label after which you want to insert new field.,Sélectionner le libellé après lequel vous voulez insérer un nouveau champ. ,Document Share Report,Rapport de Partage de Document DocType: User,Last Login,Dernière Connexion -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nom du Champ est nécessaire dans la ligne {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nom du Champ est nécessaire dans la ligne {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Colonne DocType: Custom Field,Adds a custom field to a DocType,Ajoute d'un champ personnalisé à un DocType DocType: File,Is Home Folder,Est le Dossier d'Accueil @@ -584,7 +584,7 @@ DocType: File,Folder,Dossier DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Responsable de la Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Option 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Tous les Messages +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} à {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Journal d'erreur lors des requêtes. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} a été ajouté avec succès au Groupe d’Email. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -594,7 +594,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicateur DocType: DocShare,Everyone,Tout le monde DocType: Workflow State,backward,Revenir en arrière -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : Une seule règle est permise avec le même Rôle, Niveau et {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : Une seule règle est permise avec le même Rôle, Niveau et {1}" DocType: Email Queue,Add Unsubscribe Link,Ajouter le Lien Se Désinscrire apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Aucun commentaire pour l'instant. Démarrer une nouvelle discussion. DocType: Workflow State,share,part @@ -612,7 +612,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,n'est apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Voir Abonnés apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Mme DocType: Website Theme,Background Color,Couleur d’Arrière-plan -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Il y a eu des erreurs lors de l'envoi d’emails. Veuillez essayer à nouveau. DocType: Portal Settings,Portal Settings,Réglages du Portail DocType: Web Page,0 is highest,0 est le plus élevé apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Êtes-vous sûr de vouloir relier cette communication à {0} ? @@ -639,7 +639,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Réglages de Contactez Nous. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Recherche ... DocType: Workflow State,text-width,largeur-text -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Taille maximale des Pièces Jointes pour cet enregistrement est atteint. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Taille maximale des Pièces Jointes pour cet enregistrement est atteint. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Les champs obligatoires suivants doivent être remplis:
DocType: Email Alert,View Properties (via Customize Form),Voir Les Propriétés (via Personnaliser le formulaire) DocType: Note Seen By,Note Seen By,Note Vue Par @@ -649,17 +649,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Les rapports de l’Éditeur de Rapports sont gérés directement par l’Éditeur de Rapports. Vous n’avez rien à faire. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Veuillez vérifier votre adresse e-mail apps/frappe/frappe/model/document.py +903,none of,aucun des -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,M'Envoyer Une Copie +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,M'Envoyer Une Copie apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Charger les Autorisations des Utilisateurs DocType: Dropbox Settings,App Secret Key,Clé Secrète de l'App apps/frappe/frappe/config/website.py +7,Web Site,Site Internet apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Les éléments sélectionnés seront affichés sur le bureau -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ne peut pas être réglé pour les Types Uniques +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ne peut pas être réglé pour les Types Uniques apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Tableau Kanban {0} n'existe pas. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} sont en train de regarder ce document DocType: ToDo,Assigned By Full Name,Assigné Par Nom complet apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} mis(e) à jour -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Le Rapport ne peut pas être défini pour les types Uniques +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Le Rapport ne peut pas être défini pour les types Uniques apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Il y a {0} jours DocType: Email Account,Awaiting Password,En attente Mot de Passe DocType: Address,Address Line 1,Adresse Ligne 1 @@ -669,7 +669,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","États pour flux de travail (par exemple, Brouillons , Approuvé, Annulé)." DocType: Print Settings,Allow Print for Draft,Autoriser l'Impression si Brouillon apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Définir Quantité -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Soumettre ce document pour confirmer +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Soumettre ce document pour confirmer DocType: Contact,Unsubscribed,Désinscrit apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Définissez des rôles personnalisés pour la page et le rapport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Évaluation : @@ -677,7 +677,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Outil d'Importation de Données DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Chargement de fichiers veuillez patienter quelques secondes. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Joindre Votre Photo +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Joindre Votre Photo apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valeurs de Lignes Modifiées DocType: Workflow State,Stop,Arrêter DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Lien vers la page que vous souhaitez ouvrir. Laissez ce champ vide si vous voulez faire un parent de groupe. @@ -692,7 +692,7 @@ DocType: Print Format,Align Labels to the Left,Aligner les Étiquettes à Gauche DocType: Help Article,Expert,Expert DocType: Workflow State,circle-arrow-right,flèche-cercle-droite DocType: LDAP Settings,LDAP Server Url,Url du Serveur LDAP -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Impossible d'ouvrir une instance quand son {0} est ouverte +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Impossible d'ouvrir une instance quand son {0} est ouverte apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Mis en File d'Attente pour l'installation DocType: Custom DocPerm,Custom DocPerm,Permission de Document Personnalisé DocType: Newsletter,Send Unsubscribe Link,Envoyer le Lien de Désabonnement @@ -709,7 +709,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} supprimée DocType: Custom DocPerm,Apply User Permissions,Appliquer les Autorisations Utilisateurs DocType: User,Modules HTML,Modules HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuration> Gestionnaire des autorisations utilisateur apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Valeurs Manquantes Requises DocType: DocType,Other Settings,Autres Réglages DocType: Social Login Keys,Frappe,Frappe @@ -727,7 +726,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,Jeton de Détention OAuth apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Aucun document sélectionné apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Événement -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Sur {0}, {1} a écrit :" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Sur {0}, {1} a écrit :" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Suppression de champ standard impossible. Vous pouvez le cacher si vous voulez DocType: Top Bar Item,For top bar,Pour la barre supérieure apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Impossible d'identifier {0} @@ -741,7 +740,7 @@ DocType: Role,Desk Access,Accès au Bureau DocType: Workflow State,minus,moins apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Erreur de serveur : Veuillez vérifier vos logs du serveur ou contacter le support technique. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Email de bienvenue envoyé -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Préparons le système pour la première utilisation. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Préparons le système pour la première utilisation. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Présenté apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Déjà Inscrit DocType: System Settings,Float Precision,Nombre de Décimales @@ -754,7 +753,7 @@ DocType: Web Form,Allow Print,Autoriser l'Impression apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Aucunes Applications Installées apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marquez le champ comme Obligatoire DocType: Communication,Clicked,Cliqué -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Pas d'autorisation pour '{0}' {1} DocType: User,Google User ID,ID Utilisateur Google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Prévu pour envoyer DocType: DocType,Track Seen,Suivre les Vues @@ -823,7 +822,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,Sessions Simultanées DocType: OAuth Client,Client Credentials,Identifiants du Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Ouvrir un module ou un outil +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Ouvrir un module ou un outil DocType: Communication,Delivery Status,Statut de la Livraison DocType: Module Def,App Name,Nom de l'App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Taille max de fichier autorisée est {0} Mo @@ -835,8 +834,8 @@ DocType: Feedback Request,Reference Communication,Communication de Référence DocType: Email Queue,Unsubscribe Method,Méthode de Désinscription DocType: GSuite Templates,Related DocType,DocType Lié apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Modifier pour ajouter du contenu -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Sélectionner les Langues -apps/frappe/frappe/__init__.py +510,No permission for {0},Pas d'autorisation pour {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Sélectionner les Langues +apps/frappe/frappe/__init__.py +509,No permission for {0},Pas d'autorisation pour {0} DocType: DocType,Advanced,Avancé apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Il semble que la Clé API ou le Secret API soit faux !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Référence : {0} {1} @@ -858,7 +857,7 @@ DocType: Customize Form,Enter Form Type,Entrez le Type de Formulaire apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Aucun enregistrement étiqueté. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Supprimer le Champ DocType: User,Send Password Update Notification,Envoyer la Notification de Changement de Mot de Passe -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Autorisation de DocType, DocType. Soyez prudent !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Autorisation de DocType, DocType. Soyez prudent !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formats Personnalisés pour l'Impression, l'Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Mis à Jour vers la Nouvelle Version DocType: Custom Field,Depends On,Dépend De @@ -952,6 +951,7 @@ apps/frappe/frappe/model/document.py +902,one of,l'un des apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Veuillez sélectionner un fichier à copier apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Vérification un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Afficher les Balises +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Si Appliquer l'autorisation d'utilisateur stricte est cochée et que l'autorisation d'utilisateur est définie pour un DocType pour un utilisateur, tous les documents où la valeur du lien est vide ne seront pas affichés à cet utilisateur" DocType: Address,Billing,Facturation DocType: Email Queue,Not Sent,Non Envoyé DocType: Web Form,Actions,Actions @@ -981,6 +981,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,effacer apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Les événements quotidiens devrait se terminer le même jour. DocType: Communication,User Tags,Balise Utilisateur apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Récupération des Images... +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuration> Utilisateur DocType: Workflow State,download-alt,Télécharger-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Téléchargement de l’App {0} DocType: Communication,Feedback Request,Demande de Retour d'Expérience @@ -997,7 +998,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Sauvegardes apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Ajouter le Contact DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optionel : Toujours envoyer à ces ids. Chaque Adresse Email sera sur une nouvelle ligne -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Masquer les Détails +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Masquer les Détails DocType: Workflow State,Tasks,Tâches DocType: Event,Tuesday,Mardi DocType: Blog Settings,Blog Settings,Paramètres du Blog @@ -1017,10 +1018,9 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Écrire un fichier Python dans le même dossier où cela est sauvegardé et retourner la colonne et le résultat. DocType: DocType,Sort Field,Champ de Tri DocType: Razorpay Settings,Razorpay Settings,Réglages Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Modifier le Filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Champ {0} de type {1} ne peut pas être obligatoire -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","e.g. si Appliquer les Permissions Utilisateurs est coché pour un Rapport DocType mais qu'aucune Autorisation Utilisateur n'est définie pour un Rapport pour un utilisateur, alors tous les Rapports seront visibles pour cet Utilisateur." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Ajouter plus +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Modifier le Filtre +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Champ {0} de type {1} ne peut pas être obligatoire +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Ajouter Plus apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Masquer le Graphique DocType: System Settings,Session Expiry Mobile,Expiration de Session Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Résultats de recherche pour @@ -1034,6 +1034,7 @@ DocType: Communication,Delayed,Différé apps/frappe/frappe/config/setup.py +128,List of backups available for download,Liste des sauvegardes disponibles au téléchargement apps/frappe/frappe/www/login.html +89,Sign up,S'inscrire DocType: Test Runner,Output,Sortie +DocType: Email Alert,Set Property After Alert,Définir la propriété après l'alerte apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Ajouter des champs aux formulaires. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Il semble qu'il y ait une erreur avec la configuration Paypal de ce site. DocType: File,rgt,rgt @@ -1041,6 +1042,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,feuille DocType: Portal Menu Item,Portal Menu Item,Article du Menu Portail DocType: User Email,Email ID,ID Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Si Appliquer les autorisations utilisateur est vérifiée pour Report DocType mais aucune autorisation utilisateur n'est définie pour un rapport pour un utilisateur, tous les rapports sont affichés à cet utilisateur" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Une liste des ressources que l'App client aura accès à après que l'utilisateur le permet.
par exemple projet DocType: Translation,Translated Text,Texte Traduit DocType: Contact Us Settings,Query Options,Options de Requête @@ -1058,7 +1060,7 @@ DocType: Address,Contacts,Contacts DocType: System Settings,Setup Complete,Configuration Terminée apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapport de tous les partages de documents apps/frappe/frappe/www/update-password.html +18,New Password,Nouveau Mot de Passe -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtre {0} manquant +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtre {0} manquant apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Désolé ! Vous ne pouvez pas supprimer les commentaires générés automatiquement DocType: Website Theme,Style using CSS,Style en utilisant CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType de la Référence @@ -1110,7 +1112,7 @@ DocType: User,Block Modules,Bloquer les Modules apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Retour à la longueur {0} pour '{1}' dans '{2}'; Le réglage de la longueur comme {3} provoque la troncature des données. DocType: Print Format,Custom CSS,CSS Personnalisé apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Ajouter un commentaire -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignoré : {0} à {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoré : {0} à {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Registre d'erreur sur les événements automatiques (planificateur) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Valeurs Séparées par des Virgules non valides (Fichier CSV) @@ -1119,7 +1121,7 @@ DocType: Email Account,Default Incoming,Entrant par Défaut DocType: Workflow State,repeat,répéter DocType: Website Settings,Banner,Bannière DocType: Role,"If disabled, this role will be removed from all users.","Si désactivé, ce rôle sera retiré de tous les utilisateurs." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Aide lors de la Recherche +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Aide lors de la Recherche apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Enregistré mais Désactivé DocType: DocType,Hide Copy,Masquer la Copie apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Effacer tous les rôles @@ -1151,7 +1153,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Pays apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresses DocType: Communication,Shared,Partagé -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Joindre l'Impression de Document +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Joindre l'Impression de Document DocType: Bulk Update,Field,Champ DocType: Communication,Received,Reçu DocType: Social Login Keys,Google Client ID,ID Client Google @@ -1172,12 +1174,12 @@ DocType: Report,Query Report,Rapport de Requête DocType: User,Set New Password,Définir un Nouveau Mot de Passe DocType: User,Github User ID,ID Utilisateur GitHub apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Si Type de Document -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Vous ne pouvez pas supprimer ou annuler parce que {0} {1} est liée à {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Vous ne pouvez pas supprimer ou annuler parce que {0} {1} est liée à {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Application inconnue {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s n’est pas un format de rapport valide. Le format de Rapport devrait \ l'un des %s suivants DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Nom du Champ {0} apparaît plusieurs fois dans les lignes {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Nom du Champ {0} apparaît plusieurs fois dans les lignes {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} de {1} à {2} dans la ligne #{3} DocType: Communication,Expired,Expiré DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Nombre de colonnes pour un champ dans une Grille (Total des colonnes dans une grille doit être inférieur à 11) @@ -1187,29 +1189,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Vous avez déjà un apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Format d'Impression Inconnu : {0} DocType: Workflow State,arrow-down,flèche-bas apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Réduire -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Utilisateur non autorisé à supprimer {0} : {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Utilisateur non autorisé à supprimer {0} : {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Dernière Mise à Jour DocType: Help Article,Likes,Aime DocType: Website Settings,Top Bar,Barre Supérieure DocType: GSuite Settings,Script Code,Code du Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Créer un Email Utilisateur -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Aucune Autorisation Spécifiée +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Aucune Autorisation Spécifiée apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Paramètres Globaux : Les utilisateurs ne pourront que choisir les icônes sélectionnées apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} introuvable DocType: Custom Role,Custom Role,Rôle Personnalisé apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Accueil / Dossier Test 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorer les Autorisations des Utilisateurs si Manquant -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Veuillez enregistrer le document avant de le charger. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Veuillez enregistrer le document avant de le charger. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Entrez votre mot de passe DocType: Dropbox Settings,Dropbox Access Secret,Secret d’Accès Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Ajouter un Autre Commentaire apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Modifier le DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Désinscrit de la Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Un Pli doit être avant un Saut de Section +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Un Pli doit être avant un Saut de Section apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Dernière Modification Par DocType: Workflow State,hand-down,main vers le bas DocType: Address,GST State,État GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Impossible de choisir Annuler sans Soumettre +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Impossible de choisir Annuler sans Soumettre DocType: Website Theme,Theme,Thème apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Il y a eu des erreurs. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de Redirection Lié au Code Auth @@ -1228,7 +1230,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mes P DocType: Website Theme,Text Color,Couleur du Texte DocType: Desktop Icon,Force Show,Forcer l'Affichage apps/frappe/frappe/auth.py +78,Invalid Request,Requête Invalide -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ce formulaire n'a aucune entrée +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ce formulaire n'a aucune entrée apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Expiration de Session doit être au format {0} DocType: Website Sidebar Item,Group,Groupe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Sélectionner target = ""_blank"" pour ouvrir dans une nouvelle page." @@ -1237,7 +1239,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorer les erreurs d'encodage. DocType: Workflow State,wrench,clé apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Non Défini -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuration> Utilisateur DocType: Authentication Log,Date,Date DocType: Website Settings,Disable Signup,Désactiver Inscription apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Veuillez patienter pendant l’installation. L’opération peut prendre quelques minutes. @@ -1248,12 +1249,12 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Ajouter un Commentaire DocType: DocField,Mandatory,Obligatoire apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module à Exporter -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : Aucune autorisation de base définie +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : Aucune autorisation de base définie apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Votre abonnement expirera le {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Le lien de téléchargement pour votre sauvegarde sera envoyé sur l'adresse email suivante: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Signification de Soumettre, Annuler, Modifier" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Tâche à Faire -DocType: Test Runner,Module Path,Chemin du module +DocType: Test Runner,Module Path,Chemin du Module apps/frappe/frappe/core/page/user_permissions/user_permissions.js +133,Any existing permission will be deleted / overwritten.,Toute autorisation existante sera supprimée / écrasée. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +667,Then By (optional),Puis Par (facultatif) DocType: File,Preview HTML,Aperçu HTML @@ -1261,11 +1262,11 @@ DocType: Desktop Icon,query-report,rapport-requête apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Attribué à {0} : {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtres sauvegardés DocType: DocField,Percent,Pourcent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Veuillez définir des filtres +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Veuillez définir des filtres apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Lié avec DocType: Workflow State,book,livre DocType: Website Settings,Landing Page,Page d'Accueil -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Erreur dans le Script Personnalisé +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Erreur dans le Script Personnalisé apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nom apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Demande d'Import en Attente. Cela peut prendre quelques instants, veuillez patienter." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Aucune Autorisations définies pour ce critère. @@ -1277,7 +1278,7 @@ DocType: System Settings,Allow Login using Mobile Number,Autoriser la Connexion apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Vous ne disposez pas de suffisamment d'autorisations pour accéder à cette ressource. Veuillez contacter votre responsable pour obtenir l'accès. DocType: Custom Field,Custom,Personnaliser apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Configuration Alerte Email basée sur différents critères. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Messages déposés en vertu de {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Messages déposés en vertu de {0} DocType: Email Alert,Send alert if date matches this field's value,Envoyer alerte si la date correspond à la valeur de ce champ DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Retirer {0} et supprimer toutes les données ? @@ -1286,9 +1287,8 @@ DocType: User,Login After,Connexion à Partir de DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Impression DocType: Workflow State,thumbs-up,pouces-vers-le-haut -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Créez un nouveau compte de messagerie à partir de la configuration> Courriel> Compte de messagerie DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,La précision doit être comprise entre 1 et 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,La précision doit être comprise entre 1 et 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,et DocType: Error Snapshot,Frames,Cadres @@ -1297,7 +1297,7 @@ DocType: About Us Team Member,Image Link,Lien vers l'Image DocType: Auto Email Report,Report Filters,Filtres du Rapport apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,maintenant DocType: Workflow State,step-backward,vers-larrière -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Veuillez définir les clés d'accès Dropbox dans la configuration de votre site apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Supprimer cet enregistrement pour permettre l'envoi à cette adresse Email apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Seuls les champs obligatoires sont nécessaires pour les nouveaux enregistrements. Vous pouvez supprimer des colonnes non obligatoires si vous le souhaitez. @@ -1319,8 +1319,7 @@ DocType: File,Is Attachments Folder,Est Dossier de Pièces Jointes apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Développer Tout apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Un Identifiant de Connexion valide est nécéssaire. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Ré-ouvrir -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Vous avez annulé le paiement -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Veuillez sélectionner un fichier CSV valide contenant des données +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Veuillez sélectionner un fichier CSV valide contenant des données apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ne partage plus ce document avec {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Changement de Statut du Document de {0} à {1} n'est pas autorisé DocType: DocType,"Make ""name"" searchable in Global Search","Rendre ""nom"" cherchable dans la Recherche Globale" @@ -1333,15 +1332,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Val DocType: Help Category,Help Category,Catégorie d’Aide apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Utilisateur {0} est désactivé apps/frappe/frappe/www/404.html +8,Page missing or moved,Page manquante ou déplacée -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Modifier les propriétés {0} DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Réglages de la Passerelle de Paiement Razorpay DocType: DocField,Name,Nom apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Vous avez dépassé l'espace maximum de {0} pour votre plan. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Recherchez les documents DocType: OAuth Authorization Code,Valid,Valide -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Ouvrir Lien -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Votre langue +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Ouvrir Lien +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Votre Langue apps/frappe/frappe/desk/form/load.py +46,Did not load,N'a pas été chargé apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Ajouter une Ligne DocType: Tag Category,Doctypes,Doctypes @@ -1356,7 +1354,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,La demande de DocType: Address,Lakshadweep Islands,Îles Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Peut Écrire apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Certains documents, comme une Facture, ne devraient pas être modifiés une fois finalisés. L'état final de ces documents est appelée Soumis. Vous pouvez limiter les rôles pouvant Soumettre." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Vous n'êtes pas autorisé à exporter ce rapport. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Vous n'êtes pas autorisé à exporter ce rapport. apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 article sélectionné DocType: Newsletter,Test Email Address,Adresse Email de Test DocType: ToDo,Sender,Expéditeur @@ -1391,7 +1389,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Importer .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID de Document DocType: Print Settings,Letter,Lettre -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Champ de l'image doit être du type Image Jointe +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Champ de l'image doit être du type Image Jointe DocType: DocField,Columns,Colonnes DocType: Async Task,Succeeded,Réussi apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Champs Obligatoires Requis : {0} @@ -1442,7 +1440,7 @@ DocType: DocField,Text Editor,Éditeur de Texte apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Réglages de la page A Propos ... apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Modifier HTML Personnalisé DocType: Error Snapshot,Error Snapshot,Instantané d'Erreur -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Dans +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Dans DocType: Email Alert,Value Change,Modification de Valeur DocType: Standard Reply,Standard Reply,Réponse Standard apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Largeur de la boîte d'entrée @@ -1458,12 +1456,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilisez ce nom de champ pour générer le titre apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importer Email Depuis apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Inviter en tant qu'Utilisateur -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Sélectionner Pièces Jointes +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Sélectionner Pièces Jointes apps/frappe/frappe/model/naming.py +94, for {0},pour {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Il y a eu des erreurs. Veuillez nous le signaler. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Vous n'êtes pas autorisé à imprimer ce document +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Vous n'êtes pas autorisé à imprimer ce document apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Veuillez définir la valeur des filtres dans le Tableau des Filtres de Rapport. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Chargement du Rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Chargement du Rapport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Votre abonnement expirera aujourd'hui. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Joindre un Fichier @@ -1493,7 +1491,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensions Régionales DocType: LDAP Settings,Base Distinguished Name (DN),"""Distinguished Name"" (DN) de base" apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Se désinscrire -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Options non définis pour le champ lié {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Options non définis pour le champ lié {0} DocType: Customize Form,"Must be of type ""Attach Image""","Doit être de type ""Joindre l'Image""" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Tout Déselectionner apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Vous ne pouvez pas désactiver 'Lecture Seule' pour le champ {0}""" @@ -1534,9 +1532,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Note apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Rapport d'Erreurs apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Les conditions du Retour d'Expérience ne correspondent pas -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Le champ Chronologie doit être un champ valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Le champ Chronologie doit être un champ valide DocType: Currency,Symbol,Symbole -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Ligne # {0} : +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Ligne # {0} : apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nouveau mot de passe envoyé par courriel apps/frappe/frappe/auth.py +245,Login not allowed at this time,Connexion non autorisée pour le moment DocType: Email Account,Email Sync Option,Option de Synchronisation d'Email @@ -1558,7 +1556,7 @@ DocType: DocField,Text,Texte apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Réponse standard aux questions communes. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Envoi par Défaut DocType: Workflow State,volume-off,couper-son -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Aimé par {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Aimé par {0} DocType: Footer Item,Footer Item,Élément du Pied de page ,Download Backups,Télécharger les Sauvegardes apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Accueil / Dossier Test 1 @@ -1591,7 +1589,7 @@ DocType: Web Page,Text Align,Aligner le Texte apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Le Nom ne peut contenir des caractères spéciaux tels que {0} DocType: Contact Us Settings,Forward To Email Address,Transférer à l'Adresse Email apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Afficher toutes les données -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Champ Titre doit être un nom de champ valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Champ Titre doit être un nom de champ valide apps/frappe/frappe/config/core.py +7,Documents,Documents DocType: Email Flag Queue,Is Completed,Est Complété apps/frappe/frappe/www/me.html +22,Edit Profile,Modifier le Profil @@ -1601,7 +1599,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ce champ apparaît uniquement si le nom de champ défini ici a une valeur OU les règles sont vérifiées. -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Aujourd'hui +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Aujourd'hui apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Une fois que vous avez défini ceci, les utilisateurs ne pourront accèder qu'aux documents (e.g. Article de Blog) où le lien existe (e.g. Blogger) ." DocType: Error Log,Log of Scheduler Errors,Journal des Erreurs du Planificateur DocType: User,Bio,Biographie @@ -1625,6 +1623,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 étoile étant la pire note et 5 étoiles étant la meilleure note DocType: Event,Ref Name,Nom de Réf. DocType: Web Page,Center,Centre +DocType: Email Alert,Value To Be Set,Valeur à définir apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Premier niveau DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Représente les états permis dans un document et le rôle assigné pour changer cet état. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Actualiser le Formulaire @@ -1645,18 +1644,18 @@ DocType: DocType,Has Web View,A Une Vue Web apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Le nom du DocType doit commencer par une lettre et il peut uniquement se composer de lettres, des chiffres, d’espaces et du tiret bas (underscore)" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Demande d'Intégration -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Cher/Chère +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Cher/Chère DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Comptes Utilisateur DocType: Web Page,HTML for header section. Optional,HTML pour la section d'en-tête. Optionnel apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Cette fonctionnalité est toute nouvelle et encore expérimentale -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximum {0} lignes autorisés +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximum {0} lignes autorisés DocType: Email Unsubscribe,Global Unsubscribe,Se Désabonner Globalement apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,C’est un mot de passe très commun. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Vue DocType: Communication,Assigned,Attribué DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Sélectionner le Format d'Impression +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Sélectionner le Format d'Impression apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Modèles de clavier courts sont faciles à deviner DocType: Portal Settings,Portal Menu,Menu Portail apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Longueur de {0} doit être comprise entre 1 et 1000 @@ -1694,7 +1693,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,L'utilisateur ne peut pas Rechercher apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format de Sortie Invalide DocType: Custom DocPerm,Apply this rule if the User is the Owner,Appliquer cette règle si l'Utilisateur est le Responsable -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Sera votre identifiant de connexion +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Sera votre identifiant de connexion apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Créer un Rapport DocType: Note,Notify users with a popup when they log in,Informer les utilisateurs avec un popup quand ils se connectent apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} n'existe pas, veuillez sélectionner une nouvelle cible à fusionner" @@ -1713,17 +1712,18 @@ DocType: User Permission for Page and Report,Roles Permission,Autorisations de R apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Mettre à Jour DocType: Error Snapshot,Snapshot View,Vue Snapshot apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Veuillez sauvegarder la Newsletter avant de l'envoyer -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Les options doivent être un DocType valide pour le champ {0} à la ligne {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} année (s) depuis +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Les options doivent être un DocType valide pour le champ {0} à la ligne {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Modifier les Propriétés DocType: Patch Log,List of patches executed,Liste des correctifs exécutés apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} déjà désinscrit -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Moyen de Communication +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Moyen de Communication DocType: Website Settings,Banner HTML,Bannière HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Veuillez choisir un autre mode de paiement. Razorpay ne supporte pas les transactions en monnaie ‘{0}’ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Mis en File d'Attente pour la sauvegarde. Cela peut prendre de quelques minutes jusqu'à une heure. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Inscrire App Client OAuth -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ne peut pas être ""{2}"". Il devrait être l'un de ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ne peut pas être ""{2}"". Il devrait être l'un de ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ou {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Afficher ou Cacher les Icônes du Bureau apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Mise à Jour du Mot de Passe @@ -1749,7 +1749,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Afficher les Sauts de Ligne après Sections DocType: Blogger,Short Name,Nom Court apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Vous sélectionnez l'Option Sync avec TOUS, cela resynchronisera tout les message lu et non lu à partir du serveur. Cela peut également provoquer la duplication de Communication (emails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Taille des Fichiers @@ -1761,6 +1761,7 @@ DocType: Contact,Purchase Manager,Responsable des Achats DocType: Custom Script,Sample,Échantillon apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Mots-clefs Non Catégorisés DocType: Event,Every Week,Chaque Semaine +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Compte de messagerie non configuré. Créez un nouveau compte de messagerie à partir de la configuration> Courriel> Compte de messagerie apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Cliquez ici pour vérifier votre usage ou passer à un plan supérieur DocType: Custom Field,Is Mandatory Field,Est Champ obligatoire DocType: User,Website User,Utilisateur du Site Web @@ -1783,16 +1784,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Barre Latérale Personnalisée DocType: Workflow State,pencil,crayon apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Discuter des messages et d'autres notifications. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Insérer Après ne peut être défini en tant que {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Insérer Après ne peut être défini en tant que {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Partager {0} avec apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Configuration du Compte Email veuillez entrer votre mot de passe pour : DocType: Workflow State,hand-up,main vers le haut DocType: Blog Settings,Writers Introduction,Présentation des Rédacteurs DocType: Address,Phone,Téléphone -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Erreur lors de l'évaluation de l'Alerte Email {0}. Veuillez corriger votre modèle. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Erreur lors de l'évaluation de l'Alerte Email {0}. Veuillez corriger votre modèle. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Sélectionner le Rôle ou le Type de Document pour démarrer. DocType: Contact,Passive,Passif DocType: Contact,Accounts Manager,Responsable des Comptes +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Votre paiement est annulé. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Sélectionner le Type de Fichier DocType: Help Article,Knowledge Base Editor,Éditeur de la Base de Connaissance apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Page non trouvée @@ -1819,6 +1821,7 @@ DocType: Property Setter,Property Type,Type de Propriété DocType: Workflow State,screenshot,capture d'écran apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Seul l'Administrateur peut enregistrer un rapport standard. Merci de renommer et sauvegarder. DocType: System Settings,Background Workers,Exécution d'Opérations en Arrière-Plan +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nom de champ {0} en conflit avec méta objet DocType: Deleted Document,Data,Données apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Statut du Document apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vous avez fait {0} de {1} @@ -1843,7 +1846,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Afficher les Autorisations de l'utilisateur apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Vous devez être connecté et avoir le Role Responsable Système pour pouvoir accéder aux sauvegardes. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Restant -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Veuillez enregistrer avant de joindre une pièce. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Veuillez enregistrer avant de joindre une pièce. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ajouté {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Le Thème par défaut est défini dans {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},"FieldType ne peut pas être modifié de {0} à {1}, à la ligne {2}" @@ -1863,11 +1866,10 @@ DocType: System Settings,System Settings,Réglages Système apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Le Démarrage de la Session a Échoué apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Cet email a été envoyé à {0} et une copie à {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configurez le compte de messagerie par défaut à partir de la configuration> Courriel> Compte de messagerie -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Créer un(e) nouveau(elle) {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Créer un(e) nouveau(elle) {0} DocType: Email Rule,Is Spam,Est Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapport {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Ouvrir {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Ouvrir {0} DocType: OAuth Client,Default Redirect URI,URI de Redirection par Défaut DocType: Email Alert,Recipients,Destinataires DocType: Workflow State,ok-sign,ok-signe @@ -1885,6 +1887,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Articles d'Aide ,Modules Setup,Modules d'Installation apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type : +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Votre paiement a échoué. DocType: Communication,Unshared,Non Partagé DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module Introuvable @@ -1930,7 +1933,7 @@ DocType: Website Settings,Brand Image,Logo DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuration de la barre de navigation en haut, du pied de page et du logo." DocType: Web Form Field,Max Value,Valeur Max -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Pour {0} au niveau {1} dans {2} à la ligne {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Pour {0} au niveau {1} dans {2} à la ligne {3} DocType: Contact,All,Tous DocType: Email Queue,Recipient,Destinataire DocType: Communication,Has Attachment,A Une Pièce Jointe @@ -1947,7 +1950,8 @@ DocType: Workflow State,align-right,aligné-droite DocType: Auto Email Report,Email To,Email À apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Dossier {0} n’est pas vide DocType: Page,Roles,Rôles -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Champ {0} n'est pas sélectionnable. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Erreur: Valeur absente pour {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Champ {0} n'est pas sélectionnable. DocType: System Settings,Session Expiry,Expiration de Session DocType: Workflow State,ban-circle,Interdiction (ban-circle) DocType: Email Flag Queue,Unread,Non Lus @@ -1962,7 +1966,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Profil par Défaut apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Créer Nouveau(elle) DocType: Workflow State,chevron-down,chevron vers le bas -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email pas envoyé à {0} (désabonné / désactivé) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email pas envoyé à {0} (désabonné / désactivé) DocType: Async Task,Traceback,Retraçage DocType: Currency,Smallest Currency Fraction Value,Plus Petite Valeur Fractionée de la Devise apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Attribuer À @@ -1973,12 +1977,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,À partir de DocType: Website Theme,Google Font (Heading),Police Google (titre) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Sélectionner d'abord un noeud de groupe -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Trouver {0} dans {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Trouver {0} dans {1} DocType: OAuth Client,Implicit,Implicite DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Ajouter en tant que communication pour ce DocType (doit avoir des champs, ""État"", ""Objet"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs pour recevoir le code d'autorisation une fois que l'utilisateur autorise l'accès, ainsi que des réponses d'échec. Typiquement, un point de terminaison REST exposée par le Client App.
par exemple, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Non autorisé à changer {0} après la soumission +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Non autorisé à changer {0} après la soumission DocType: Communication,Comment Type,Type de Commentaire DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Utilisateurs @@ -1992,7 +1996,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Impossible de lire le format de fichier pour {0} DocType: Auto Email Report,Filter Data,Filtrer les Données apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Ajouter un tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Veuillez d’abord joindre un fichier. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Veuillez d’abord joindre un fichier. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Il y a eu des erreurs lors de la configuration du nom, veuillez contacter l'administrateur" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Compte Email entrant incorrect apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2007,11 +2011,11 @@ DocType: Blog Post,Email Sent,Email Envoyé DocType: DocField,Ignore XSS Filter,Ignorer le Filtre XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,retiré apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Réglages de sauvegarde Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Envoyer Comme Email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Envoyer Comme Email DocType: Website Theme,Link Color,Couleur du Lien apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Utilisateur {0} ne peut pas être désactivé apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Cher Administrateur Système ," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Votre pays +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Votre Pays DocType: Event,Sunday,Dimanche apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Vue en Grille DocType: Address Template,Template,Modèle @@ -2019,7 +2023,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Paramètres LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Modification apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Paramètres de la Passerelle de Paiement PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0} : {1} '({3}) sera tronqué car le nombre de caractères max est {2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0} : {1} '({3}) sera tronqué car le nombre de caractères max est {2} DocType: OAuth Client,Resource Owner Password Credentials,Mot de Passe du Responsable de la Ressource DocType: OAuth Client,Response Type,Type de Réponse apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Nombre Max d'Utilisateurs @@ -2036,7 +2040,7 @@ DocType: DocField,Table,Table DocType: File,File Size,Taille du Fichier apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Vous devez vous connecter pour soumettre ce formulaire DocType: User,Background Image,Image d’Arrière-plan -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Sélectionner votre Pays, Fuseau Horaire et Devise" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Sélectionner votre Pays, Fuseau Horaire et Devise" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mr apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Entre DocType: Async Task,Queued,File d'Attente @@ -2045,6 +2049,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Créer apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtre Invalide : {0} DocType: Email Account,no failed attempts,aucune tentative ratée +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Aucun modèle d'adresse par défaut trouvé. Créez une nouvelle version de Configuration> Impression et Marquage> Modèle d'adresse. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Clé d'Accès de l'App DocType: OAuth Bearer Token,Access Token,Jeton d'Accès @@ -2062,8 +2067,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Nom d'Utilisateur GitHub DocType: DocType,Image View,Voir l'Image apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","On dirait que quelque chose s’est mal déroulé lors de la transaction. Puisque nous avons pas confirmé le paiement, PayPal vous remboursera automatiquement ce montant. Si ce n’est pas le cas, envoyez-nous un email et mentionnez l'ID de Corrélation: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inclure les symboles, les chiffres et les lettres majuscules dans le mot de passe" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Insérer Après le champ '{0}' mentionné dans un Champ Personnalisé '{1}', avec l'étiquette '{2}', n'existe pas" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inclure des symboles, des chiffres et des lettres majuscules dans le mot de passe" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Insérer Après le champ '{0}' mentionné dans un Champ Personnalisé '{1}', avec l'étiquette '{2}', n'existe pas" DocType: Workflow State,signal,signaler DocType: DocType,Show Print First,Afficher Imprimer en Premier apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Entrée pour poster @@ -2093,13 +2098,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Fichier '{0}' introuvable apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Retirer la Section DocType: User,Change Password,Changez le Mot de Passe -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email Invalide : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,salut! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email Invalide : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Bonjour ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Fin de l'événement doit être après le début apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Vous n'avez pas l'autorisation d'obtenir un rapport sur : {0} +DocType: System Settings,Apply Strict User Permissions,Appliquer des autorisations d'utilisateur strictes DocType: DocField,Allow Bulk Edit,Autoriser la Modification en Masse DocType: Blog Post,Blog Post,Article de Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Recherche Avancée +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Recherche Avancée apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Les Instructions de réinitialisation du mot de passe ont été envoyés à votre adresse Email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Le niveau 0 est pour les autorisations au niveau du document, \ les niveaux supérieurs pour les autorisations au niveau des champs." @@ -2117,15 +2123,14 @@ DocType: OAuth Bearer Token,Revoked,Révoqué DocType: Web Page,Sidebar and Comments,Barre Latérale et Commentaires apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Lorsque vous Modifiez un document après l'avoir Annulé et que vous l'enregistrez, il va obtenir un nouveau numéro qui est une version de l'ancien numéro." DocType: Stripe Settings,Publishable Key,Clé Publiable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} année (s) depuis DocType: Workflow State,circle-arrow-left,flèche-cercle-gauche apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Le serveur de cache Redis ne fonctionne pas. Veuillez contacter l'administrateur / le support technique apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nom de la Partie -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Faire un nouveau enregistrement +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Faire un nouveau enregistrement apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Recherche DocType: Currency,Fraction,Fraction DocType: LDAP Settings,LDAP First Name Field,Champ Prénom LDAP -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Choisir parmi les pièces jointes existantes +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Choisir parmi les pièces jointes existantes DocType: Custom Field,Field Description,Description du Champ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nom non défini via l’Invite apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Boîte de Réception @@ -2171,11 +2176,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info : DocType: Custom Field,Permission Level,Niveau d'Autorisation DocType: User,Send Notifications for Transactions I Follow,Envoyer des notifications pour les Transactions que je Suis -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Envoyer, Annuler, Modifier sans Écrire" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Vous ne pouvez pas choisir Envoyer, Annuler, Modifier sans Écrire" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Êtes-vous sûr de vouloir supprimer la pièce jointe? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Vous ne pouvez pas supprimer ou annuler parce que {0} {1} est liée à {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Aucun résultat trouvé pour '

-apps/frappe/frappe/__init__.py +1063,Thank you,Merci +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Vous ne pouvez pas supprimer ou annuler parce que {0} {1} est liée à {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Merci apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,En Cours d'Enregistrement DocType: Print Settings,Print Style Preview,Aperçu Style d'Impression apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Dossier_Test @@ -2187,10 +2191,10 @@ DocType: DocField,In List View,En Vue en Liste DocType: Email Account,Use TLS,Utiliser TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Identifiant ou mot de passe invalide apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Ajouter du javascript aux formulaires. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,N° Série +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,N° Série ,Role Permissions Manager,Gestionnaire d’Autorisations du Rôle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nom du nouveau Format d'Impression -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Effacer la Pièce Jointe +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Effacer la Pièce Jointe apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatoire : ,User Permissions Manager,Gestionnaire des Autorisations des Utilisateurs DocType: Property Setter,New value to be set,Nouvelle valeur à définir @@ -2219,26 +2223,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Il y a apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Catégoriser les posts de blog. DocType: Workflow State,Time,Temps DocType: DocField,Attach,Joindre -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} n'est pas un motif de nom de champ valide. Il devrait être {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Envoyer une Demande de Retour d'Expérience que s'il y a au moins une communication disponible pour le document. DocType: Custom Role,Permission Rules,Règles d'Autorisation DocType: GSuite Settings,GSuite Settings,Paramètres GSuite DocType: Address,Links,Liens -apps/frappe/frappe/model/base_document.py +428,Value missing for,Valeur manquante pour +apps/frappe/frappe/model/base_document.py +427,Value missing for,Valeur manquante pour apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Ajouter une Sous-Catégorie -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Enregistrement Soumis ne peut pas être supprimé. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Enregistrement Soumis ne peut pas être supprimé. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Taille de la Sauvegarde DocType: GSuite Templates,Template Name,Nom du Modèle -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nouveau type de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nouveau type de document DocType: Custom DocPerm,Read,Lire DocType: Role Permission for Page and Report,Role Permission for Page and Report,Autorisation du Rôle pour la Page et le Rapport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Aligner la Valeur apps/frappe/frappe/www/update-password.html +14,Old Password,Ancien Mot De Passe -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Messages de {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Messages de {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Pour formater des colonnes, donnez des étiquettes de colonne dans la requête." DocType: Has Domain,Has Domain,A un Domaine apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Vous n’avez pas encore de compte ? Inscrivez-vous -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : Impossible de définir ‘Assigner Modifier’ si non Soumissible +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : Impossible de définir ‘Assigner Modifier’ si non Soumissible DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Modifier les Autorisations de Rôle DocType: Communication,Link DocType,DocType du Lien @@ -2338,7 +2342,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Veuillez vous assurer que votre profil a une adresse email apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Vous avez des modifications non enregistrées dans ce formulaire. Veuillez enregistrer avant de continuer. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} doit être une option par Défaut +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} doit être une option par Défaut DocType: Tag Doc Category,Tag Doc Category,Catégorie Doc de Tag DocType: User,User Image,Photo de Profil apps/frappe/frappe/email/queue.py +289,Emails are muted,Les Emails sont mis en sourdine @@ -2371,7 +2375,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Prochaines DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Ces valeurs seront automatiquement mises à jour dans les transactions et sera également utile pour restreindre les autorisations pour cet utilisateur sur les transactions contenant ces valeurs. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Éditeur -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Échec: {0} à {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Échec: {0} à {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Sélectionner Obligatoirement apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Parcourir apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Emails envoyés @@ -2383,7 +2387,7 @@ DocType: Async Task,Running,En Fonctionnement apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Réinitialiser Mot de Passe apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Veuillez choisir un Forfait supérieur pour ajouter plus que {0} abonnés DocType: Workflow State,hand-left,main-gauche -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} pour {1} ne peut pas être unique +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} pour {1} ne peut pas être unique DocType: Email Account,Use SSL,Utiliser SSL DocType: Workflow State,play-circle,cercle-jouer apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Sélectionner le Format d'Impression à Éditer @@ -2438,7 +2442,7 @@ DocType: DocField,No Copy,Aucune Copie DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Se connecter avec LDAP DocType: Web Form,Breadcrumbs,Fil d’Ariane (Breadcrumbs) -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Si Responsable +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Si Responsable DocType: OAuth Authorization Code,Expiration time,Date d'Expiration DocType: Web Page,Website Sidebar,Barre Latérale du Site Web DocType: Web Form,Show Sidebar,Afficher la Barre Latérale @@ -2458,7 +2462,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Impossible de tro apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Les noms et prénoms par eux-mêmes sont faciles à deviner. apps/frappe/frappe/config/website.py +93,Knowledge Base,Base de Connaissances DocType: Workflow State,briefcase,malette (briefcase) -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Valeur ne peut pas être modifiée pour {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Valeur ne peut pas être modifiée pour {0} DocType: Feedback Request,Is Manual,Est Manuel DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style représente la couleur du bouton : Succès - Vert, Danger - Rouge, Inverse - Noir, Primaire - Bleu Foncé, Info - Bleu Clair, Avertissement - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Aucun Rapport Chargé. Veuillez utiliser rapport-requête / [Nom du rapport] pour exécuter un rapport. @@ -2497,7 +2501,7 @@ DocType: Stripe Settings,Secret Key,Clef Secrète DocType: Email Alert,Send alert if this field's value changes,Envoyer une alerte si la valeur de ce champ change apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +108,Select a DocType to make a new format,Sélectionner un DocType pour faire un nouveau format apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +45,just now,juste maintenant -apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Appliquer +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Postuler DocType: Footer Item,Policy,Politique apps/frappe/frappe/integrations/utils.py +76,{0} Settings not found,{0} Réglages introuvables DocType: Module Def,Module Def,Module Def @@ -2535,7 +2539,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Progression apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,par Rôle apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Champs Manquants apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Champ invalide '{0}' dans nom automatique -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Rechercher dans un type de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Rechercher dans un type de document apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,"Autoriser la modification des champs, même après la soumission" DocType: Custom DocPerm,Role and Level,Rôle et Niveau DocType: File,Thumbnail URL,URL de la Vignette @@ -2552,18 +2556,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Informations Complémentaires DocType: Desktop Icon,Desktop Icon,Icône du Bureau -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Votre paiement a été accepté avec succès +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Votre paiement a été accepté avec succès apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Désolé ! Vous n'êtes pas autorisé à consulter cette page. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Astuce : Double cliquez dans une cellule pour l’éditer DocType: Workflow State,bell,cloche (bell) apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Erreur dans l'Alerte Email apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Partager ce document avec +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuration> Gestionnaire des autorisations utilisateur apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ne peut pas être un nœud feuille car elle a des enfants DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Ajouter une Pièce Jointe +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Ajouter une Pièce Jointe DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Merci pour votre message -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Envoyer Accusé de Réception +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Envoyer Accusé de Réception DocType: Stripe Settings,Stripe Settings,Paramètres Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Paramétrage Dropbox via les Paramètrages du Site apps/frappe/frappe/www/login.py +64,Invalid Login Token,Jeton de Connexion invalide @@ -2640,6 +2645,7 @@ DocType: DocType,Web View,Vue Web apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Attention : Ce Format d'Impression est dans un style ancien et ne peut pas être généré via l'API. DocType: DocField,Print Width,Largeur d'Impression ,Setup Wizard,Assistant de Configuration +DocType: Address,GST State Number,Numéro d'état de la TPS DocType: User,Allow user to login only before this hour (0-24),Autoriser l'utilisateur à se connecter seulement après cette heure (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Dossier est obligatoire apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2665,7 +2671,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Petit Texte apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,L'administrateur a accedé à {0} sur {1} avec l'Adresse IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Égal à -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Les champs de type Options 'Lien Dynamique' doivent pointer vers un autre Champ Lié avec 'Doctype' pour options +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Les champs de type Options 'Lien Dynamique' doivent pointer vers un autre Champ Lié avec 'Doctype' pour options DocType: About Us Settings,Team Members Heading,Titre des Membres de l’Équipe apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Format CSV Invalide apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Définir Nombre de Sauvegardes @@ -2676,7 +2682,7 @@ DocType: Contact,Contact,Contact DocType: User,Third Party Authentication,Authentification Tierce DocType: Website Settings,Banner is above the Top Menu Bar.,La Bannière est au-dessus de la Barre de Menu Supérieure. DocType: Razorpay Settings,API Secret,Secret API -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Rapport d'Exportation : +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Rapport d'Exportation : apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} n'existe pas DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2699,7 +2705,7 @@ DocType: Kanban Board Column,Column Name,Nom de la Colonne DocType: Language,Based On,Basé Sur apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Rendre Défaut apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Vérifiez l'URL du Serveur Frappe -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} pour {1} ne peut pas être indexé +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} pour {1} ne peut pas être indexé DocType: Communication,Email Account,Compte Email DocType: Workflow State,Download,Télécharger DocType: Blog Post,Blog Intro,Intro du Blog @@ -2710,7 +2716,7 @@ DocType: Web Page,Insert Code,Insérez le Code DocType: ToDo,Low,Bas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Vous pouvez ajouter des propriétés dynamiques au document à l'aide des modèles Jinja. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limite {0} invalide -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Listez un type de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listez un type de document DocType: Event,Ref Type,Type de Réf. apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Si vous chargez de nouveaux enregistrements, laissez la colonne ""nom"" (ID) vide." DocType: Address,Chattisgarh,Chattisgarh @@ -2732,25 +2738,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Envoyer Imprimer en PDF DocType: Web Form,Amount,Montant DocType: Workflow Transition,Allowed,Autorisé -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Il ne peut y avoir qu'un seul Pli dans un formulaire +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Il ne peut y avoir qu'un seul Pli dans un formulaire apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Impossible d'écrire le format de fichier pour {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restaurer les réglages par défaut ? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Page d'Accueil Invalide apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Login Invalide. Réessayer. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Options requises pour le champ de type Lien ou Tableau {0} dans la ligne {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Options requises pour le champ de type Lien ou Tableau {0} dans la ligne {1} DocType: Auto Email Report,Send only if there is any data,Envoyer seulement s'il y a des données apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Réinitialiser les Filtres -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : L'Autorisation au niveau 0 doit être définie avant que les niveaux plus élevés soient parametrés +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : L'Autorisation au niveau 0 doit être définie avant que les niveaux plus élevés soient parametrés apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Affectation fermé par {0} DocType: Integration Request,Remote,À Distance -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calculer +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calculer apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Veuillez d’abord sélectionner un DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirmez Votre Email apps/frappe/frappe/www/login.html +42,Or login with,Ou connectez-vous avec DocType: Error Snapshot,Locals,Locaux apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Communiquée par {0} sur {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} vous a mentionné dans un commentaire dans {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,e.g. (55 + 434) / 4 ou = Math.sin(Math.PI/2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,e.g. (55 + 434) / 4 ou = Math.sin(Math.PI/2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} est nécessaire DocType: Integration Request,Integration Type,Type d'Intégration DocType: Newsletter,Send Attachements,Envoyer Pièces Jointes @@ -2760,14 +2766,14 @@ DocType: DocField,Perm Level,Niveau d'Autorisation apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Événements dans le Calendrier d'Aujourd'hui DocType: Web Page,Web Page,Page Web DocType: Blog Category,Blogger,Blogueur -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la ligne {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Dans la Recherche Globale' n'est pas autorisé pour le type {0} dans la ligne {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Voir La Liste -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Les Dates doivent être au format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Les Dates doivent être au format: {0} DocType: Workflow,Don't Override Status,Ne pas Remplacer le Statut apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Veuillez donner une note. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Demande de Retour d'Expérience apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Terme de recherche -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Le Premier Utilisateur : Vous +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Le Premier Utilisateur : Vous apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Sélectionner des Colonnes DocType: Translation,Source Text,Texte Source apps/frappe/frappe/www/login.py +55,Missing parameters for login,Paramètres manquants pour la connexion @@ -2789,7 +2795,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importation DocType: ToDo,Assigned By,Attribué Par apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Vous pouvez utiliser Personaliser le Formulaire pour définir les niveaux de champs. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Choisissez votre région +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Sélectionnez Votre Région DocType: Custom DocPerm,Level,Niveau DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Le montant doit être supérieur à 0. @@ -2809,7 +2815,7 @@ DocType: Website Theme,Background,Arrière-plan DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Liste JSON des DocTypes utilisés pour appliquer les autorisations des utilisateurs. S’il est vide, tous les DocTypes liés seront utilisés pour appliquer les autorisations des utilisateurs." DocType: Report,Ref DocType,Doctype de Réf. apps/frappe/frappe/www/feedback.py +42,Please add a rating,Veuillez ajouter une évaluation -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Impossible de choisir Modifier sans Annuler +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Impossible de choisir Modifier sans Annuler apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Pleine Page DocType: DocType,Is Child Table,Est Table Enfant apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} doit être l'un des {1} @@ -2824,7 +2830,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ceci va au-dessus du d apps/frappe/frappe/config/setup.py +260,Install Applications.,Installer des Applications. DocType: Contact,Last Name,Nom de Famille DocType: Event,Private,Privé -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Aucune alerte pour aujourd'hui +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Aucune alerte pour aujourd'hui DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Envoyer les Pièces Jointes Imprimées de l'Email au format PDF (recommandé) DocType: Web Page,Left,Gauche DocType: Event,All Day,Toute la Journée @@ -2838,7 +2844,7 @@ DocType: Event,Send an email reminder in the morning,Envoyer un email de rappel DocType: Blog Post,Published On,Publié le DocType: Contact,Gender,Sexe apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Renseignements Obligatoires manquants : -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Le champ '{0}' ne peut pas être défini comme Unique, car il a des valeurs non-uniques" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Le champ '{0}' ne peut pas être défini comme Unique, car il a des valeurs non-uniques" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Seuls 200 inserts autorisés dans une requête DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Type de Référence @@ -2851,8 +2857,8 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,signe-avertissement DocType: Workflow State,User,Utilisateur DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Afficher le titre dans la fenêtre du navigateur comme "Prefix - titre" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Texte dans le type de document -apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Exécuter des tests +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Texte dans le type de document +apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Exécuter les Tests apps/frappe/frappe/handler.py +91,Logged Out,Déconnecté apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Plus... DocType: System Settings,User can login using Email id or Mobile number,L'utilisateur peut se connecter en utilisant l'identifiant de messagerie ou le numéro de téléphone mobile @@ -2876,13 +2882,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Affichage Actuel DocType: DocField,Default,Par Défaut apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ajouté(e) -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Rechercher '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Rechercher '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Veuillez d’abord enregistrer le rapport apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnés ajoutés apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Non Inclus DocType: Workflow State,star,étoile -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valeurs séparées par des virgules -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Largeur max pour le type Devise est 100px dans la ligne {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valeurs séparées par des virgules +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Largeur max pour le type Devise est 100px dans la ligne {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Veuillez partager votre retour d’expérience pour {0} apps/frappe/frappe/config/website.py +13,Content web page.,Contenu de la page web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Ajouter un Nouveau Rôle @@ -2900,7 +2906,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Utilisateur LDAP non valide apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} pas un État valide apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Veuillez choisir un autre mode de paiement. PayPal ne supporte pas les transactions en monnaie ‘{0}’ -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Champ de recherche {0} n'est pas valide +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Champ de recherche {0} n'est pas valide DocType: Workflow State,ok-circle,ok-cercle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Vous pouvez trouver des choses en demandant 'trouver orange dans clients' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Désolé ! Les utilisateurs devraient avoir un accès complet à leur propre dossier. @@ -2959,7 +2965,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Meta de Filtre DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Texte à afficher pour le lien vers la Page Web si ce formulaire dispose d'une page web. Le chemin du lien sera automatiquement généré sur la base des éléments `page_name` et `parent_website_route` DocType: Feedback Request,Feedback Trigger,Générateur de Retour d’Expérience -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Veuillez d'abord mettre {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Veuillez d'abord mettre {0} DocType: Unhandled Email,Message-id,Id-message DocType: Patch Log,Patch,Correctif DocType: Async Task,Failed,Échoué diff --git a/frappe/translations/gu.csv b/frappe/translations/gu.csv index b5c31d74e8..500ed626b8 100644 --- a/frappe/translations/gu.csv +++ b/frappe/translations/gu.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ફેસબુક વપરાશકર્ત DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,નોંધ: બહુવિધ સત્રો મોબાઇલ ઉપકરણ કિસ્સામાં મંજૂરી આપવામાં આવશે apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},આ વપરાશકર્તા માટે સક્ષમ ઇમેઇલ ઇનબૉક્સ {વપરાશકર્તાઓ} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,આ ઇમેઇલ મોકલી શકતા નથી. તમે આ મહિના માટે {0} ઇમેઇલ્સ મોકલવા મર્યાદા ઓળંગી દીધી છે. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,કાયમ {0} સબમિટ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,કાયમ {0} સબમિટ? DocType: Address,County,કાઉન્ટી DocType: Workflow,If Checked workflow status will not override status in list view,ચેક વર્કફ્લો સ્થિતિ યાદી જુઓ સ્થિતિ પર ફરીથી લખી નહીં તો apps/frappe/frappe/client.py +280,Invalid file path: {0},અમાન્ય ફાઈલ પાથ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ફા apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} વૃક્ષ DocType: User,User Emails,વપરાશકર્તા ઇમેઇલ્સ DocType: User,Username,વપરાશકર્તા નામ -apps/frappe/frappe/model/base_document.py +581,Value too big,ભાવ ખૂબ મોટી +apps/frappe/frappe/model/base_document.py +580,Value too big,ભાવ ખૂબ મોટી DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ચલાવો સ્ક્રિપ્ટ ટેસ્ટ DocType: Contact,Department,વિભાગ @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,લોગ DocType: Custom DocPerm,This role update User Permissions for a user,વપરાશકર્તા માટે આ ભૂમિકા સુધારો વપરાશકર્તા પરવાનગીઓ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},નામ બદલો {0} DocType: Workflow State,zoom-out,ઝૂમ આઉટ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,‧ ખોલી શકાતી નથી {0} તેના ઉદાહરણ ખુલ્લું છે જ્યારે +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,‧ ખોલી શકાતી નથી {0} તેના ઉદાહરણ ખુલ્લું છે જ્યારે apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,કોષ્ટક {0} ખાલી ન હોઈ શકે apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Ledgers સાથે apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,છબીઓ DocType: Communication,Reference Owner,સંદર્ભ માલિક DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,નાના ફરતા અપૂર્ણાંક યુનિટ (સિક્કો). તે 0.01 તરીકે દાખલ કરી શકાય છે અને યુએસડી માટે દા.ત. 1 ટકા DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, રો {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, રો {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,એક FULLNAME આપો. apps/frappe/frappe/model/document.py +904,Beginning with,સાથે શરુ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ડેટા આયાત ઢાંચો apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,પિતૃ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","જો સક્ષમ હોય, તો પાસવર્ડ તાકાત ન્યુનત્તમ પાસવર્ડ સ્કોર કિંમત પર આધારિત લાગુ કરવામાં આવશે. 2 મૂલ્ય મધ્યમ મજબૂત છે અને 4 ખૂબ જ મજબૂત છે." DocType: About Us Settings,"""Team Members"" or ""Management""","ટીમ સભ્યો" અથવા "મેનેજમેન્ટ" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',ક્ષેત્રમાં 'તપાસો' પ્રકાર માટે મૂળભૂત ક્યાં તો '0' અથવા '1' હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',ક્ષેત્રમાં 'તપાસો' પ્રકાર માટે મૂળભૂત ક્યાં તો '0' અથવા '1' હોવા જ જોઈએ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ગઈ કાલે DocType: Contact,Designation,હોદ્દો DocType: Test Runner,Test Runner,ટેસ્ટ રનર @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,પ્રકાશિત ક્ષેત્ DocType: Email Group,Email Group,ઇમેઇલ ગ્રુપ DocType: Note,Seen By,દ્વારા જોઈ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,મલ્ટીપલ ઉમેરો -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ન ગમે +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ન ગમે apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,આ ક્ષેત્ર માટે આ પ્રદર્શન લેબલ સેટ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ખોટો કિંમત: {0} હોવા જ જોઈએ {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","બદલો ક્ષેત્ર ગુણધર્મો (છુપાવો, ફક્ત વાંચવા, પરવાનગી વગેરે)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,અમા apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,સંચાલક લૉગ માં DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","વગેરે "સેલ્સ ક્વેરી, આધાર ક્વેરી" જેવા સંપર્ક વિકલ્પો, નવી લીટી પર દરેક અથવા અલ્પવિરામ દ્વારા અલગ થયેલ છે." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2 ડાઉનલોડ -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,સામેલ કરો +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,સામેલ કરો apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},પસંદ કરો {0} DocType: Print Settings,Classic,ઉત્તમ નમૂનાના DocType: Desktop Icon,Color,રંગ @@ -121,7 +121,7 @@ DocType: Translation,Translation,અનુવાદ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,સ્થાપિત apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,શ્રીમાન DocType: Custom Script,Client,ક્લાઈન્ટ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,તમે તેને લોડ કર્યા પછી આ સ્વરૂપ સુધારાઈ ગયેલ છે +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,તમે તેને લોડ કર્યા પછી આ સ્વરૂપ સુધારાઈ ગયેલ છે DocType: User Permission for Page and Report,User Permission for Page and Report,પેજ અને રિપોર્ટ માટે વપરાશકર્તા પરવાનગી DocType: Address,Himachal Pradesh,હિમાચલ પ્રદેશ DocType: System Settings,"If not set, the currency precision will depend on number format","જો તે સેટ નથી, ચલણ ચોકસાઇ સંખ્યા ફોર્મેટ પર આધારિત છે" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,કારણ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,વપરાશકર્તા સ્પષ્ટ કરો DocType: Email Unsubscribe,Email Unsubscribe,ઇમેઇલ ઉમેદવારી દૂર કરો DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,શ્રેષ્ઠ પરિણામો માટે એક પારદર્શક પૃષ્ઠભૂમિ સાથે આશરે પહોળાઈ 150px એક છબી પસંદ કરો. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,સિસ્ટમ વ્યવસ્થાપક બનશે પ્રથમ વપરાશકર્તા (જો તમે આ બદલી શકો છો). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,સિસ્ટમ વ્યવસ્થાપક બનશે પ્રથમ વપરાશકર્તા (જો તમે આ બદલી શકો છો). ,App Installer,એપ્લિકેશન સ્થાપક DocType: Workflow State,circle-arrow-up,વર્તુળ તીર અપ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,અપલોડ ... DocType: Email Domain,Email Domain,ઇમેઇલ ડોમેન DocType: Workflow State,italic,ઇટાલિક apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,દરેક માટે -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: બનાવો વગર આયાત સેટ કરી શકાતો નથી +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: બનાવો વગર આયાત સેટ કરી શકાતો નથી apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ઇવેન્ટ અને અન્ય કૅલેન્ડર્સ. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,બધી ફીલ્ડ્સ ટિપ્પણી સબમિટ કરવા માટે જરૂરી છે. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,કૉલમ સૉર્ટ ખેંચો @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,સ્ટાન્ડર્ડ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ઘર અને જોડાણો ફોલ્ડર્સ કાઢી શકાતો નથી apps/frappe/frappe/config/desk.py +19,Files,ફાઈલો apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,પરવાનગીઓ તેઓ સોંપેલ છે શું ભૂમિકા પર આધારિત વપરાશકર્તાઓ પર લાગુ મળે છે. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,તમે આ દસ્તાવેજ સંબંધિત ઇમેઇલ્સ મોકલવા માટે પરવાનગી નથી -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,કૃપા કરીને {0} સૉર્ટ / જૂથ માંથી ઓછામાં ઓછા 1 કૉલમ પસંદ +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,તમે આ દસ્તાવેજ સંબંધિત ઇમેઇલ્સ મોકલવા માટે પરવાનગી નથી +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,કૃપા કરીને {0} સૉર્ટ / જૂથ માંથી ઓછામાં ઓછા 1 કૉલમ પસંદ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"આ તપાસો તમે તમારા ચુકવણી સેન્ડબોક્સ API નો ઉપયોગ કરીને પરીક્ષણ કરવામાં આવે છે, તો" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,તમે પ્રમાણભૂત વેબસાઇટ થીમ કાઢી કરવાની પરવાનગી નથી DocType: Feedback Trigger,Example,ઉદાહરણ @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,કુલ ઉમેદવારો apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","એક રોલ સ્તર 0 ઍક્સેસ નથી, તો પછી ઊંચા સ્તરો અર્થહીન છે." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,તરીકે જમા કરવુ DocType: Communication,Seen,દેખાય -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,વધુ વિગતો બતાવો +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,વધુ વિગતો બતાવો DocType: System Settings,Run scheduled jobs only if checked,ચકાસાયેલ તો માત્ર સુનિશ્ચિત નોકરી ચલાવો apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,માત્ર જો વિભાગ મથાળાની સક્ષમ છે બતાવવામાં આવશે apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,આર્કાઇવ @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,ચાર્ટ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,માન્ય ઇમેઇલ અને નામ જરૂરી DocType: DocType,Hide Heading,છુપાવો મથાળું DocType: Address,Current,વર્તમાન -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,સંબંધિત દસ્તાવેજો apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes જૂથો DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,દૂર વર્તુળ @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,ફિલ્ટર apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} જેવા વિશિષ્ટ અક્ષરો હોઈ શકે નહિં {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,એક સમયે ઘણા સુધારા કિંમતો. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ભૂલ: તમે તેને ખોલી છે પછી દસ્તાવેજ સુધારાઈ ગયેલ છે -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,કોઈ ડિફોલ્ટ સરનામું ટેમ્પલેટ મળ્યાં નથી. સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં નમૂનામાંથી એક નવું બનાવો. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} લૉગ આઉટ: {1} DocType: Address,West Bengal,પશ્ચિમ બંગાળ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: સોંપો Submittable જો નહિં, તો સબમિટ સેટ કરી શકાતો નથી" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: સોંપો Submittable જો નહિં, તો સબમિટ સેટ કરી શકાતો નથી" DocType: Social Login Keys,Facebook,ફેસબુક apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",દ્વારા ફિલ્ટર "{0}" DocType: Salutation,Administrator,સંચાલક @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,બ્લોગ શીર્ષક apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,સ્ટાન્ડર્ડ ભૂમિકા નિષ્ક્રિય કરી શકાય નહિં DocType: Address,Mizoram,મિઝોરમ DocType: Newsletter,Newsletter,ન્યૂઝલેટર -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,દ્વારા ક્રમમાં પેટા ક્વેરી ઉપયોગ કરી શકતાં નથી +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,દ્વારા ક્રમમાં પેટા ક્વેરી ઉપયોગ કરી શકતાં નથી DocType: Web Form,Button Help,બટન મદદ DocType: Kanban Board Column,purple,જાંબલી DocType: About Us Settings,Team Members,ટીમના સભ્યો @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","તમારી ઉમેદવારી {0} પર સમાપ્ત થઈ છે. રિન્યૂ કરવા માટે, {1}." DocType: Workflow State,plus-sign,પ્લસ-સાઇન apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,સેટઅપ પહેલેથી સંપૂર્ણ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,એપ્લિકેશન {0} સ્થાપિત થયેલ નથી +apps/frappe/frappe/__init__.py +889,App {0} is not installed,એપ્લિકેશન {0} સ્થાપિત થયેલ નથી DocType: Workflow State,Refresh,પુનઃતાજું DocType: Event,Public,જાહેર apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,કંઇ દર્શાવે છે @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,દ્વાર apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ઇમેઇલ આધાર DocType: DocField,Print Hide If No Value,પ્રિંટ છુપાવો તો કોઈ કિંમત DocType: Event,yellow,પીળા -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,પ્રકાશિત કરવામાં આવે છે ફિલ્ડ જોઈએ માન્ય FIELDNAME હોઈ +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,પ્રકાશિત કરવામાં આવે છે ફિલ્ડ જોઈએ માન્ય FIELDNAME હોઈ apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,અપલોડ કરો જોડાણ DocType: Block Module,Block Module,બ્લોક મોડ્યુલ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,નિકાસ ઢાંચો @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,વ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},એક નવું એકાઉન્ટ પર તમારા માટે બનાવવામાં આવ્યું છે {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,સૂચનાઓ ઇમેઇલ -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),દાખલ કરો ઇમેઇલ પ્રાપ્તકર્તા (ઓ) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),દાખલ કરો ઇમેઇલ પ્રાપ્તકર્તા (ઓ) DocType: Print Format,Verdana,વરદાના DocType: Email Flag Queue,Email Flag Queue,ઇમેઇલ ધ્વજ કતાર apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ઓપન ઓળખી શકો છો {0}. કંઈક બીજું પ્રયાસ કરો. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,સંદેશ ID ને DocType: Property Setter,Field Name,ફીલ્ડ નામ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ગૂગલ GSuite ગોઠવેલું નથી. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,અથવા -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,મોડ્યુલ નામ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ચાલુ રાખો +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,મોડ્યુલ નામ ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ચાલુ રાખો DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,પ્રમાણપત્ર DocType: User,Tile,ટાઇલ @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,બધા આવૃત્તિઓ બતાવો DocType: Workflow State,Print,પ્રિંટ DocType: User,Restrict IP,IP નિયંત્રિત +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ડેશબોર્ડ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,આ સમયે ઇમેઇલ્સ મોકલવા માટે અસમર્થ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,શોધ અથવા આદેશ લખો DocType: Communication,Timeline Name,સમયરેખા નામ @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,સેલ્સ માસ્ટર વ્ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,એક છેલ્લું પગલું apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,આ દસ્તાવેજ પ્રકારની (Doctype) જો તમે આ ક્ષેત્રમાં સાથે લિંક કરી કરવા માંગો છો શાળાના નામ. દા.ત. ગ્રાહક DocType: User,Roles Assigned,ભૂમિકા ભજવતા -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,શોધ સહાય +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,શોધ સહાય DocType: Top Bar Item,Parent Label,પિતૃ લેબલ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","તમારી ક્વેરી પ્રાપ્ત કરવામાં આવ્યો છે. અમે ટૂંક સમયમાં પાછા જવાબ આવશે. જો તમે કોઇ વધારાની માહિતી હોય, તો આ મેલ જવાબ આપો." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,પરવાનગીઓ આપોઆપ પ્રમાણભૂત અહેવાલો અને શોધ માટે અનુવાદ છે. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,સંપાદિત કરો મથાળું DocType: File,File URL,ફાઈલ URL DocType: Version,Table HTML,કોષ્ટક HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

કોઈ પરિણામો નથી 'મળી

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ઉમેદવારો ઉમેરો apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,આજે આવનારી પ્રવૃત્તિઓ DocType: Email Alert Recipient,Email By Document Field,દસ્તાવેજ ક્ષેત્ર દ્વારા ઇમેઇલ @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,રકમ ક્ષેત્ર પર apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,વપરાશકર્તા શેર માટે ફરજિયાત છે DocType: DocField,Hidden,હિડન DocType: Web Form,Allow Incomplete Forms,અપૂર્ણ સ્વરૂપો માટે પરવાનગી આપે છે -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} પ્રથમ સુયોજિત થવુ જ જોઇએ +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} પ્રથમ સુયોજિત થવુ જ જોઇએ apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","થોડા શબ્દો વાપરો, સામાન્ય શબ્દસમૂહો ટાળવા." DocType: Workflow State,plane,વિમાન -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,અરે. તમારી ચૂકવણી કરવામાં નિષ્ફળ જાય છે. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","તમે નવા વિક્રમો અપલોડ કરી રહ્યાં છે, તો જો હાજર હોય તો, "સિરીઝ નામકરણ", ફરજિયાત બની જાય છે." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,આજે માટે ચેતવણીઓ વિચાર +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,આજે માટે ચેતવણીઓ વિચાર apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,Doctype માત્ર સંચાલક દ્વારા નામ આપવામાં આવ્યું શકાય apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},બદલ્યાં કિંમત {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,ચકાસણી માટે તમારા ઇમેઇલ તપાસો -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ગણો ફોર્મ ઓવરને અંતે ન હોઈ શકે +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ગણો ફોર્મ ઓવરને અંતે ન હોઈ શકે DocType: Communication,Bounced,Bounced DocType: Deleted Document,Deleted Name,ડિલીટ નામ apps/frappe/frappe/config/setup.py +14,System and Website Users,સિસ્ટમ અને વેબસાઇટ વપરાશકર્તાઓ @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,દસ્તાવે DocType: GSuite Templates,Destination ID,ગંતવ્ય ID DocType: Desktop Icon,List,યાદી DocType: Communication,Link Name,લિંક નામ -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ક્ષેત્ર {0} પંક્તિ માં {1} છુપાયેલા કરી શકો છો અને મૂળભૂત વગર ફરજિયાત +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ક્ષેત્ર {0} પંક્તિ માં {1} છુપાયેલા કરી શકો છો અને મૂળભૂત વગર ફરજિયાત DocType: System Settings,mm/dd/yyyy,mm / dd / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,અમાન્ય પાસવર્ડ: DocType: Print Settings,Send document web view link in email,મોકલો ઇમેઇલ દસ્તાવેજ વેબ દૃશ્ય લિંક apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,દસ્તાવેજ માટે તમારો અભિપ્રાય {0} સફળતાપૂર્વક સાચવવામાં આવે છે apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Next અગાઉના આગળ -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} માટે પંક્તિઓ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",પેટા ચલણ. દા.ત. "સેન્ટ" માટે apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,અપલોડ કરેલી ફાઇલ પસંદ કરો @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,લિંક apps/frappe/frappe/utils/file_manager.py +96,No file attached,જોડાયેલ કોઈ ફાઇલ DocType: Version,Version,આવૃત્તિ DocType: User,Fill Screen,સ્ક્રીન ભરો -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","કારણે ગુમ માહિતી માટે, આ વૃક્ષ અહેવાલ પ્રદર્શિત કરવા માટે અસમર્થ છે. મોટે ભાગે, તે કારણે પરવાનગીઓ બહાર ફિલ્ટર કરવામાં આવી રહી છે." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી સેટઅપ મૂળભૂત ઇમેઇલ એકાઉન્ટ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","કારણે ગુમ માહિતી માટે, આ વૃક્ષ અહેવાલ પ્રદર્શિત કરવા માટે અસમર્થ છે. મોટે ભાગે, તે કારણે પરવાનગીઓ બહાર ફિલ્ટર કરવામાં આવી રહી છે." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ફાઇલ પસંદ કરો apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,અપલોડ દ્વારા સંપાદિત કરો -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",દસ્તાવેજ પ્રકારની ... દા.ત. ગ્રાહક +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",દસ્તાવેજ પ્રકારની ... દા.ત. ગ્રાહક apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,સ્થિતિ '{0}' અમાન્ય છે DocType: Workflow State,barcode,બારકોડ apps/frappe/frappe/config/setup.py +232,Add your own translations,તમારા પોતાના અનુવાદો ઉમેરી @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,બુધવારે apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","ઉપરાંત ભૂમિકા આધારિત પરવાનગી નિયમો થી, તમે DocTypes પર આધારિત વપરાશકર્તા પરવાનગીઓ અરજી કરી શકો છો." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","આ પરવાનગીઓ પરવાનગી રેકોર્ડ સાથે કડી થયેલ છે, જ્યાં બધા વ્યવહારો માટે લાગુ પડશે. કંપની સી વપરાશકર્તા X વપરાશકર્તા પરવાનગીઓ માટે ઉમેરવામાં આવે છે ઉદાહરણ તરીકે, જો વપરાશકર્તા એક્સ માત્ર એક કડી થયેલ કિંમત તરીકે કંપની સી હોય છે કે વ્યવહારો જોવા માટે સમર્થ હશે." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,છબી ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,છબી ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ DocType: OAuth Client,Token,ટોકન DocType: Property Setter,ID (name) of the entity whose property is to be set,જેની મિલકત એન્ટિટી ID ને (નામ) સુયોજિત કરી શકાય છે apps/frappe/frappe/limits.py +82,"To renew, {0}.","રિન્યૂ કરવા માટે, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,સાઇડબાર વસ્તુઓ apps/frappe/frappe/installer.py +125,App {0} already installed,એપ્લિકેશન {0} પહેલાથી જ ઇન્સ્ટોલ કરેલું DocType: Workflow State,exclamation-sign,ઉદ્ગારવાચક સાઇન apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,પરવાનગીઓ બતાવો -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,સમયરેખા ક્ષેત્ર એક લિંક અથવા ડાયનેમિક લિંક હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,સમયરેખા ક્ષેત્ર એક લિંક અથવા ડાયનેમિક લિંક હોવા જ જોઈએ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,તારીખ રેંજ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,ગેન્ટ apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},પેજમાં {0} ના {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,વે apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","એન્ક્રિપ્શન કી અમાન્ય છે, કૃપા કરીને site_config.json ચેક" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,માટે DocType: Kanban Board Column,darkgrey,ઘાટોરાખોડી color -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},સફળ: {0} માટે {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},સફળ: {0} માટે {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ડેમો વપરાશકર્તા વિગતો બદલી શકતા નથી. https://erpnext.com ખાતે નવા એકાઉન્ટ માટે સાઇન અપ કૃપા કરીને apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,ફેરફારો કરવા માટે આ ડુપ્લિકેટ કરો apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,પીડીએફ પેઢી કારણ કે ભાંગી છબી લિંક્સ નિષ્ફળ @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,સંકેલી શકાય એવું apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,સાચવેલા apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,શું તમે સાથે મદદ જરૂર છે? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,પસંદ માટે વિકલ્પો. એક નવી લાઇન પર દરેક વિકલ્પ. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,કાયમ રદ {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,કાયમ રદ {0}? DocType: Workflow State,music,સંગીત DocType: Web Page,Settings,સેટિંગ્સ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Doctype સ્પષ્ટ કરો DocType: Print Format,Style Settings,પ્રકાર સેટિંગ્સ -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,સૉર્ટ ક્ષેત્ર {0} માન્ય FIELDNAME હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,સૉર્ટ ક્ષેત્ર {0} માન્ય FIELDNAME હોવા જ જોઈએ apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,વધુ DocType: Contact,Sales Manager,વેચાણ મેનેજર apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,નામ બદલો DocType: Print Format,Format Data,બંધારણમાં માહિતી -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,જેમ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,જેમ DocType: Customize Form Field,Customize Form Field,ફોર્મ ક્ષેત્ર કસ્ટમાઇઝ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,વપરાશકર્તા માટે પરવાનગી આપે છે DocType: OAuth Client,Grant Type,ગ્રાન્ટ પ્રકાર apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,વપરાશકર્તા દ્વારા વાંચી શકાય છે જે દસ્તાવેજો તપાસો apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,લિસ્ટિંગ એપ્લિકેશન મંજૂરી નથી -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,વાઇલ્ડકાર્ડ તરીકે% નો ઉપયોગ -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","ઇમેઇલ ડોમેન આ એકાઉન્ટ માટે રૂપરેખાંકિત થયેલ નથી, એક બનાવો?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,વાઇલ્ડકાર્ડ તરીકે% નો ઉપયોગ +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ઇમેઇલ ડોમેન આ એકાઉન્ટ માટે રૂપરેખાંકિત થયેલ નથી, એક બનાવો?" DocType: User,Reset Password Key,પાસવર્ડ રીસેટ કરો કી DocType: Email Account,Enable Auto Reply,ઓટો જવાબ સક્ષમ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,જોઇ ન @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,ફક્ત એકવાર સેટ DocType: Email Queue Recipient,Email Queue Recipient,ઇમેઇલ કતાર મેળવનાર DocType: Address,Nagaland,નાગાલેન્ડ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,વપરાશકર્તા નામ {0} પહેલેથી હાજર જ છે -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} આયાત નથી તરીકે આયાત સેટ કરી શકાતો નથી +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} આયાત નથી તરીકે આયાત સેટ કરી શકાતો નથી apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},તમારા સરનામું ઢાંચો એક ભૂલ છે {0} DocType: Footer Item,"target = ""_blank""",લક્ષ્ય = "_blank" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,પૂર્ણ નામ પ્રતિ apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},તમે જાણ કરવા ઍક્સેસ નથી: {0} DocType: User,Send Welcome Email,સ્વાગત ઇમેઇલ મોકલો apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ડાઉનલોડ તરીકે સમાન બંધારણના બધા વપરાશકર્તા પરવાનગીઓ સમાવતી CSV ફાઈલ અપલોડ કરો. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ફિલ્ટર દૂર +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ફિલ્ટર દૂર DocType: Address,Daman and Diu,દમણ અને દીવ DocType: Address,Personal,વ્યક્તિગત apps/frappe/frappe/config/setup.py +113,Bulk Rename,બલ્ક નામ બદલો @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","સ્ટાન્ડર્ડ Doctype મૂળભૂત પ્રિન્ટ ફોર્મેટ ધરાવે છે કરી શકતા નથી, કસ્ટમાઇઝ ફોર્મનો ઉપયોગ" DocType: Report,Query,ક્વેરી DocType: DocType,Sort Order,સૉર્ટ કરો ઓર્ડર -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'યાદી દૃશ્યમાં' પંક્તિ પ્રકાર {0} માટે મંજૂરી નથી {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'યાદી દૃશ્યમાં' પંક્તિ પ્રકાર {0} માટે મંજૂરી નથી {1} DocType: Custom Field,Select the label after which you want to insert new field.,"તમે નવા ક્ષેત્ર દાખલ કરવા માંગો છો, જે પછી લેબલ પસંદ કરો." ,Document Share Report,દસ્તાવેજ શેર રિપોર્ટ DocType: User,Last Login,છેલ્લું લૉગિન -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME પંક્તિ જરૂરી છે {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME પંક્તિ જરૂરી છે {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,કૉલમ DocType: Custom Field,Adds a custom field to a DocType,એક Doctype માટે વૈવિધ્યપૂર્ણ ક્ષેત્ર ઉમેરે છે DocType: File,Is Home Folder,મુખ્ય પૃષ્ઠ ફોલ્ડર છે @@ -583,7 +583,7 @@ DocType: File,Folder,ફોલ્ડર DocType: DocField,Index,ઈન્ડેક્સ DocType: Email Group,Newsletter Manager,ન્યૂઝલેટર વ્યવસ્થાપક apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,વિકલ્પ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,બધા પોસ્ટ્સ +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} પર {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,વિનંતીઓ દરમિયાન ભૂલ લોગ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} સફળતાપૂર્વક ઇમેઇલ ગ્રુપ ઉમેરી દેવામાં આવ્યુ છે. DocType: Address,Uttar Pradesh,ઉત્તરપ્રદેશ @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,સૂચક DocType: DocShare,Everyone,દરેક વ્યક્તિને DocType: Workflow State,backward,પછાત -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: આ જ ભૂમિકા, સ્તર અને સાથે મંજૂરી માત્ર એક જ નિયમ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: આ જ ભૂમિકા, સ્તર અને સાથે મંજૂરી માત્ર એક જ નિયમ {1}" DocType: Email Queue,Add Unsubscribe Link,ઉમેરો અનસબ્સ્ક્રાઇબ લિંક apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,હજુ સુધી કોઈ ટિપ્પણીઓ. નવી ચર્ચા શરૂ કરો. DocType: Workflow State,share,શેર @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,મં apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,જુઓ ઉમેદવારો apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,પૃષ્ઠભૂમિ રંગ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ઇમેઇલ મોકલતી વખતે ભૂલો આવી હતી. ફરી પ્રયત્ન કરો. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ઇમેઇલ મોકલતી વખતે ભૂલો આવી હતી. ફરી પ્રયત્ન કરો. DocType: Portal Settings,Portal Settings,પોર્ટલ સેટિંગ્સ DocType: Web Page,0 is highest,0 સૌથી વધુ છે apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,તમે ખાતરી કરો કે તમે કરવા માટે {0} આ સંચાર ફરીથી લિંક કરવા માંગો છો? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,અમારો સંપર્ક કરો સેટિંગ્સ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,શોધી રહ્યું છે ... DocType: Workflow State,text-width,લખાણ-પહોળાઈ -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,આ રેકોર્ડ મહત્તમ જોડાણ મર્યાદા સુધી પહોંચી હતી. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,આ રેકોર્ડ મહત્તમ જોડાણ મર્યાદા સુધી પહોંચી હતી. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,નીચેના ફરજિયાત ક્ષેત્રો ભરવામાં હોવું જ જોઈએ:
DocType: Email Alert,View Properties (via Customize Form),(કસ્ટમાઇઝ ફોર્મ મારફતે) જુઓ ગુણધર્મો DocType: Note Seen By,Note Seen By,દ્વારા જોઈ નોંધ @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,રાજસ્થાન apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,રિપોર્ટ બિલ્ડર અહેવાલો અહેવાલ બિલ્ડર દ્વારા સીધા વ્યવસ્થાપિત થાય છે. નવરાશ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,તમારું ઇમેઇલ સરનામું ચકાસો apps/frappe/frappe/model/document.py +903,none of,કંઈ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,મારા એક કૉપિ મોકલો +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,મારા એક કૉપિ મોકલો apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,વપરાશકર્તા પરવાનગીઓ અપલોડ કરો DocType: Dropbox Settings,App Secret Key,એપ્લિકેશન ગુપ્ત કી apps/frappe/frappe/config/website.py +7,Web Site,વેબ સાઇટ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ચેક વસ્તુઓ ડેસ્કટોપ પર બતાવવામાં આવશે -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} એક પ્રકારો માટે સેટ કરી શકાય છે +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} એક પ્રકારો માટે સેટ કરી શકાય છે apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban બોર્ડ {0} અસ્તિત્વમાં નથી. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} હાલમાં આ દસ્તાવેજ જોઈ રહ્યા છે DocType: ToDo,Assigned By Full Name,આખું નામ દ્વારા સોંપાયેલ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} સુધારાશે -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,રિપોર્ટ એક પ્રકારો માટે સેટ કરી શકાય છે +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,રિપોર્ટ એક પ્રકારો માટે સેટ કરી શકાય છે apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} દિવસ પહેલા DocType: Email Account,Awaiting Password,પ્રતીક્ષામાં પાસવર્ડ DocType: Address,Address Line 1,સરનામાં રેખા 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","વર્કફ્લો માટે સ્ટેટસ (દા.ત. ડ્રાફ્ટ મંજૂર, રદ)." DocType: Print Settings,Allow Print for Draft,ડ્રાફ્ટ માટે િ ટ કરો પરવાનગી આપે છે apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,સેટ જથ્થો -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,તેની ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,તેની ખાતરી કરવા માટે આ દસ્તાવેજ સબમિટ DocType: Contact,Unsubscribed,અનસબ્સ્ક્રાઇબ્ડ apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,પાનું અને અહેવાલ માટે કસ્ટમ ભૂમિકાઓ સેટ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,રેટિંગ: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ડેટા આયાત કરો સાધન DocType: Address,Dadra and Nagar Haveli,દાદરા અને નગર હવેલી apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,અપલોડ કરેલી ફાઇલો થોડી સેકન્ડો માટે કૃપા કરીને રાહ જુઓ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,તમારા ચિત્ર જોડો +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,તમારા ચિત્ર જોડો apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,રો મૂલ્યો બદલી DocType: Workflow State,Stop,બંધ કરો DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,તમે ખોલવા માંગો છો પૃષ્ઠ પર લિંક. તમે તેને એક જૂથ પિતૃ બનાવવા માંગો છો તો ખાલી છોડી મૂકો. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,ડાબે સંરેખિ DocType: Help Article,Expert,નિષ્ણાત DocType: Workflow State,circle-arrow-right,વર્તુળ તીર અધિકાર DocType: LDAP Settings,LDAP Server Url,LDAP સર્વર URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,તેના {0} ખુલ્લું છે જ્યારે ઉદાહરણ ખોલી શકાતી નથી +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,તેના {0} ખુલ્લું છે જ્યારે ઉદાહરણ ખોલી શકાતી નથી apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,સ્થાપિત કરવા માટે કતારબદ્ધ DocType: Custom DocPerm,Custom DocPerm,કસ્ટમ DocPerm DocType: Newsletter,Send Unsubscribe Link,મોકલો અનસબ્સ્ક્રાઇબ લિંક @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,એપ્લિકેશન {0} દૂર DocType: Custom DocPerm,Apply User Permissions,વપરાશકર્તા પરવાનગીઓ લાગુ DocType: User,Modules HTML,મોડ્યુલો HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,સેટઅપ> વપરાશકર્તા પરવાનગીઓ મેનેજર apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ગુમ કિંમતો જરૂરી DocType: DocType,Other Settings,અન્ય સેટિંગ્સ DocType: Social Login Keys,Frappe,frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,ઑથ બેરર ટોકન apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,પસંદ કોઈ દસ્તાવેજ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ડૉ DocType: Event,Event,ઇવેન્ટ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} પર, {1} લખ્યું:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} પર, {1} લખ્યું:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ધોરણ ક્ષેત્ર કાઢી શકાતું નથી. તમે ઇચ્છો તો તમે તેને છુપાવી શકો છો DocType: Top Bar Item,For top bar,ટોચ બાર apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ઓળખી {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,ડેસ્ક ઍક્સેસ DocType: Workflow State,minus,ઓછા apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,સર્વર ભૂલ: તમારા સર્વર લોગ શકો છો ટેક સપોર્ટ સંપર્ક કરો. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,આપનું સ્વાગત છે ઇમેઇલ મોકલવામાં -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,પ્રથમ વાપરવા માટે સિસ્ટમને તૈયાર કરીએ. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,પ્રથમ વાપરવા માટે સિસ્ટમને તૈયાર કરીએ. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ફીચર્ડ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,પહેલાથી જ રજીસ્ટર DocType: System Settings,Float Precision,ફ્લોટ શુદ્ધતા @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,પ્રિન્ટ માટે પરવાન apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,કોઈ એપ્લિકેશન ઇન્સ્ટોલ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ફરજિયાત ક્ષેત્રમાં માર્ક DocType: Communication,Clicked,વાપરો -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},કોઈ પરવાનગી '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},કોઈ પરવાનગી '{0}' {1} DocType: User,Google User ID,Google વપરાશકર્તા ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,મોકલવા માટે અનુસૂચિત DocType: DocType,Track Seen,ટ્રેક દેખાય @@ -822,7 +821,7 @@ DocType: Address,Kerala,કેરળ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,એક સાથે સત્રો DocType: OAuth Client,Client Credentials,ક્લાઈન્ટ ઓળખપત્રો -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,મોડ્યુલ અથવા સાધન ખોલો +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,મોડ્યુલ અથવા સાધન ખોલો DocType: Communication,Delivery Status,વિતરણ સ્થિતિ DocType: Module Def,App Name,એપ્લિકેશન નામ apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,મેક્સ ફાઈલ માપ માન્ય છે {0} એમબી @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,સંદર્ભ કોમ DocType: Email Queue,Unsubscribe Method,ઉમેદવારી દૂર કરો પદ્ધતિ DocType: GSuite Templates,Related DocType,સંબંધિત Doctype apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,સામગ્રી ઉમેરવા માટે સંપાદિત કરો -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ભાષા પસંદ કરો -apps/frappe/frappe/__init__.py +510,No permission for {0},માટે કોઈ પરવાનગી {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ભાષા પસંદ કરો +apps/frappe/frappe/__init__.py +509,No permission for {0},માટે કોઈ પરવાનગી {0} DocType: DocType,Advanced,ઉન્નત apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API કી લાગે છે કે API સિક્રેટ ખોટું છે !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},સંદર્ભ: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,ફોર્મ પ્રકાર દ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,કોઈ રેકોર્ડ ટૅગ કર્યા છે. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ક્ષેત્ર દૂર DocType: User,Send Password Update Notification,પાસવર્ડ અપડેટ સૂચન મોકલો -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Doctype, Doctype પરવાનગી આપે છે. સાવચેત રહો!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Doctype, Doctype પરવાનગી આપે છે. સાવચેત રહો!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","પ્રિન્ટિંગ, ઇમેઇલ માટે વૈવિધ્યપૂર્ણ ફોર્મેટ્સ" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,નવા સંસ્કરણ પર અપડેટ DocType: Custom Field,Depends On,પર આધાર રાખે છે @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,માનૂ એક apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,કૃપા કરીને તેને કોપી કરવા માટે ફાઇલ પસંદ કરી apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,એક ક્ષણ તપાસી apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,બતાવો ટૅગ્સ +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","લાગુ સખત વપરાશકર્તા પરવાનગી ચકાસાયેલ છે અને વપરાશકર્તા પરવાનગી વપરાશકર્તા માટે doctype માટે વ્યાખ્યાયિત કરવામાં આવે છે, તો પછી બધા દસ્તાવેજો જ્યાં લિંક કિંમત ખાલી છે, કે જે વપરાશકર્તાને બતાવવામાં આવશે નહીં" DocType: Address,Billing,બિલિંગ DocType: Email Queue,Not Sent,મોકલવામાં આવ્યો ન DocType: Web Form,Actions,ક્રિયાઓ @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,સ્પષ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,દરરોજ ઘટનાઓ જ દિવસે સમાપ્ત કરીશું. DocType: Communication,User Tags,વપરાશકર્તા ટૅગ્સ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,આનયન છબીઓ .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,સેટઅપ> વપરાશકર્તા DocType: Workflow State,download-alt,ડાઉનલોડ કરો-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},એપ્લિકેશન ડાઉનલોડ {0} DocType: Communication,Feedback Request,પ્રતિસાદ વિનંતી @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,બેકઅપ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,સંપર્ક ઉમેરો DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,વૈકલ્પિક: હંમેશા આ ID મોકલો. એક નવી પંક્તિ પર દરેક ઇમેઇલ સરનામું -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,વિગતો છુપાવો +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,વિગતો છુપાવો DocType: Workflow State,Tasks,કાર્યો DocType: Event,Tuesday,મંગળવારે DocType: Blog Settings,Blog Settings,બ્લોગ સેટિંગ્સ @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,આ સાચવવામાં અને સ્તંભ અને પરિણામ પાછી આવે છે જ્યાં એક જ ફોલ્ડરમાં એ Python ફાઈલ લખી. DocType: DocType,Sort Field,સૉર્ટ કરો ફીલ્ડ DocType: Razorpay Settings,Razorpay Settings,Razorpay સેટિંગ્સ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,સંપાદિત કરો ફિલ્ટર -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ક્ષેત્ર {0} પ્રકારની {1} ફરજિયાત ન હોઈ શકે -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","દા.ત.. રિપોર્ટ Doctype માટે ચકાસેલ છે પરંતુ કોઈ વપરાશકર્તા પરવાનગીઓ વપરાશકર્તા માટે રિપોર્ટ માટે વ્યાખ્યાયિત કરવામાં આવે છે વપરાશકર્તા પરવાનગીઓ લાગુ પડે છે, પછી બધા અહેવાલો છે કે વપરાશકર્તાને બતાવવામાં આવે છે" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,સંપાદિત કરો ફિલ્ટર +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ક્ષેત્ર {0} પ્રકારની {1} ફરજિયાત ન હોઈ શકે apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,વધુ ઉમેરો apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ચાર્ટ છુપાવો DocType: System Settings,Session Expiry Mobile,સત્ર સમાપ્તિ મોબાઇલ @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,વિલંબિત apps/frappe/frappe/config/setup.py +128,List of backups available for download,ડાઉનલોડ માટે ઉપલબ્ધ બેકઅપ યાદી apps/frappe/frappe/www/login.html +89,Sign up,સાઇન અપ કરો DocType: Test Runner,Output,આઉટપુટ +DocType: Email Alert,Set Property After Alert,ચેતવણી પછી ગુણધર્મ સેટ apps/frappe/frappe/config/setup.py +226,Add fields to forms.,સ્વરૂપો ક્ષેત્રો ઉમેરો. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,કંઈક લાગે છે કે આ સાઇટના પેપલ રૂપરેખાંકન સાથે ખોટું છે. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,પર્ણ DocType: Portal Menu Item,Portal Menu Item,પોર્ટલ મેનુ વસ્તુ DocType: User Email,Email ID,ઇમેઇલ ને +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","જો વપરાશકર્તા પરવાનગીઓ લાગુ રિપોર્ટ Doctype માટે ચકાસવામાં આવે છે, પરંતુ કોઈ વપરાશકર્તા પરવાનગીઓ વપરાશકર્તા માટે રિપોર્ટ માટે વ્યાખ્યાયિત કરવામાં આવે છે, તો પછી તમામ અહેવાલો કે જે વપરાશકર્તાને બતાવવામાં આવે છે" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,સંસાધનો યાદી કે જે ક્લાઈન્ટ એપ્લિકેશન વપરાશકર્તા તેને પરવાનગી આપે છે પછી ઍક્સેસ હશે.
દા.ત. પ્રોજેક્ટ DocType: Translation,Translated Text,અનુવાદિત ટેક્સ્ટ DocType: Contact Us Settings,Query Options,ક્વેરી વિકલ્પો @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,સંપર્કો DocType: System Settings,Setup Complete,સેટઅપ પૂર્ણ apps/frappe/frappe/config/setup.py +66,Report of all document shares,બધા દસ્તાવેજ સરવાળો રિપોર્ટ apps/frappe/frappe/www/update-password.html +18,New Password,નવો પાસવર્ડ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ફિલ્ટર {0} ગુમ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ફિલ્ટર {0} ગુમ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,માફ કરશો! તમે ઓટો પેદા ટિપ્પણીઓ કાઢી શકતા નથી DocType: Website Theme,Style using CSS,સીએસએસ મદદથી પ્રકાર apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,સંદર્ભ Doctype @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,બ્લોક મોડ્યુલો apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,માટે આ બોલ પર પલટાવી {0} માટે '{1}' માં '{2}; લંબાઈ સેટિંગ {3} માહિતી કાપી નાંખવાની રીત કારણ બનશે. DocType: Print Format,Custom CSS,કસ્ટમ CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,એક ટિપ્પણી ઉમેરો -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},અવગણેલ: {0} માટે {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},અવગણેલ: {0} માટે {1} DocType: Address,Gujarat,ગુજરાત apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ઓટોમેટેડ ઘટનાઓ (સુનિશ્ચિત) પર ભૂલ પ્રવેશ કરો. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),માન્ય અલ્પવિરામથી અલગ ભાવ (CSV ફાઈલ) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,મૂળભૂત ઇનકમિંગ DocType: Workflow State,repeat,વારંવાર DocType: Website Settings,Banner,બૅનર DocType: Role,"If disabled, this role will be removed from all users.","જો અક્ષમ છે, આ ભૂમિકા બધા વપરાશકર્તાઓ દૂર કરવામાં આવશે." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,શોધ પર મદદ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,શોધ પર મદદ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,રજિસ્ટર્ડ પરંતુ વિકલાંગ DocType: DocType,Hide Copy,કૉપિ કરો છુપાવો apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,બધા ભૂમિકા સાફ @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,દેશ apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,સરનામાંઓ DocType: Communication,Shared,વહેંચાયેલ -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,દસ્તાવેજને છાપવા જોડો +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,દસ્તાવેજને છાપવા જોડો DocType: Bulk Update,Field,ક્ષેત્ર DocType: Communication,Received,પ્રાપ્ત DocType: Social Login Keys,Google Client ID,Google ક્લાઈન્ટ ને @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,ક્વેરી રિપોર્ટ DocType: User,Set New Password,ન્યૂ પાસવર્ડને સુયોજિત કરો DocType: User,Github User ID,Github વપરાશકર્તા ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,દસ્તાવેજ પ્રકારની તો -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","કાઢી નાખો અથવા કારણ કે {0} રદ કરી શકાતું નથી {1} સાથે કડી થયેલ છે {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","કાઢી નાખો અથવા કારણ કે {0} રદ કરી શકાતું નથી {1} સાથે કડી થયેલ છે {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},અજ્ઞાત એપ્લિકેશન {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S માન્ય અહેવાલ બંધારણમાં નથી. રિપોર્ટ બંધારણમાં \ જોઈએ% s નીચેનામાંથી એક DocType: Communication,Chat,ચેટ -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} પંક્તિઓ ઘણી વખત દેખાય {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} પંક્તિઓ ઘણી વખત દેખાય {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} થી {1} માટે {2} પંક્તિ # {3} DocType: Communication,Expired,સમાપ્ત DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),એક ક્ષેત્ર માટે કૉલમ સંખ્યા ગ્રીડ (ગ્રીડ કુલ સ્તંભોને કરતાં ઓછી 11 હોવી જોઈએ) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,એક એકાઉ apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},અજ્ઞાત પ્રિંટ ફોર્મેટ: {0} DocType: Workflow State,arrow-down,ડાઉન તીરને apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,સંકુચિત -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},વપરાશકર્તાને કાઢવા માટે મંજૂરી નથી {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},વપરાશકર્તાને કાઢવા માટે મંજૂરી નથી {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,છેલ્લા અપડેટ DocType: Help Article,Likes,પસંદ DocType: Website Settings,Top Bar,ટોચના બાર DocType: GSuite Settings,Script Code,સ્ક્રિપ્ટ કોડ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,વપરાશકર્તા ઇમેઇલ બનાવો -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,કોઈ પરવાનગીઓ ઉલ્લેખિત +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,કોઈ પરવાનગીઓ ઉલ્લેખિત apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,વૈશ્વિક સેટિંગ્સ: વપરાશકર્તાઓ માત્ર ચકાસાયેલ ચિહ્નો પસંદ કરવા માટે સક્ષમ હશે apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} મળ્યું નથી DocType: Custom Role,Custom Role,કસ્ટમ ભૂમિકા apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ઘર / ટેસ્ટ ફોલ્ડરમાં 2 DocType: System Settings,Ignore User Permissions If Missing,ખૂટે જો વપરાશકર્તા પરવાનગીઓ અવગણો -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,અપલોડ કરતા પહેલા આ દસ્તાવેજ સાચવી કરો. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,અપલોડ કરતા પહેલા આ દસ્તાવેજ સાચવી કરો. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,તમારો પાસવર્ડ દાખલ કરો DocType: Dropbox Settings,Dropbox Access Secret,ડ્રૉપબૉક્સ ઍક્સેસ સિક્રેટ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,અન્ય એક ટિપ્પણી ઉમેરો apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Doctype સંપાદિત કરો apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ન્યૂઝલેટરમાંથી અનસબ્સ્ક્રાઇબ -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,વિભાગ બ્રેક પહેલા થવું જોઈએ ગડી +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,વિભાગ બ્રેક પહેલા થવું જોઈએ ગડી apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,દ્વારા છેલ્લે સંશોધિત DocType: Workflow State,hand-down,હાથ નીચે DocType: Address,GST State,જીએસટી રાજ્ય -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: વગર સબમિટ રદ સેટ કરી શકાતો નથી +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: વગર સબમિટ રદ સેટ કરી શકાતો નથી DocType: Website Theme,Theme,થીમ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,ભૂલો આવી હતી. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,પુનઃદિશામાન યુઆરઆઇ ઑથ કોડ બંધાયેલ @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,મ DocType: Website Theme,Text Color,ટેક્સ્ટ રંગ DocType: Desktop Icon,Force Show,ફોર્સ બતાવો apps/frappe/frappe/auth.py +78,Invalid Request,અમાન્ય વિનંતી -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,આ ફોર્મ કોઈપણ ઇનપુટ નથી +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,આ ફોર્મ કોઈપણ ઇનપુટ નથી apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},સત્ર સમાપ્તિ બંધારણમાં જ હોવી જોઈએ {0} DocType: Website Sidebar Item,Group,ગ્રુપ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",પસંદ લક્ષ્ય = "_blank" એક નવું પાનું ખોલો. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ભૂલો એન્કોડિંગ અવગણો. DocType: Workflow State,wrench,સાધન apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,સેટ નથી -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,સેટઅપ> વપરાશકર્તા DocType: Authentication Log,Date,તારીખ DocType: Website Settings,Disable Signup,સાઇનઅપ અક્ષમ કરો apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"તમારી સિસ્ટમ સુયોજિત રહી છે, જ્યારે ચુસ્ત બેસો. આ થોડો સમય લાગી શકે છે." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,ટિપ્પણી ઉમેરો DocType: DocField,Mandatory,ફરજિયાત apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,મોડ્યુલ નિકાસ કરવા માટે -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: કોઈ મૂળભૂત પરવાનગીઓ સુયોજિત +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: કોઈ મૂળભૂત પરવાનગીઓ સુયોજિત apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,તમારી ઉમેદવારી પર સમાપ્ત થશે {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},તમારા બેકઅપ ડાઉનલોડ લિંક નીચેના ઇમેઇલ સરનામા પર ઇમેઇલ કરવામાં આવશે: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","રદ કરો, સબમિટ અર્થ સુધારો" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,ક્વેરી અહેવાલ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},સોંપાયેલ {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ગાળકો સાચવી DocType: DocField,Percent,ટકા -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ફિલ્ટર્સ સેટ કરો +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ફિલ્ટર્સ સેટ કરો apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,સાથે જોડાયેલા DocType: Workflow State,book,પુસ્તક DocType: Website Settings,Landing Page,લેન્ડિંગ પેજમાં -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,કસ્ટમ સ્ક્રિપ્ટ ભૂલ +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,કસ્ટમ સ્ક્રિપ્ટ ભૂલ apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} નામ apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","આયાત વિનંતી Queued. આ થોડો સમય લાગી શકે છે, કૃપા કરીને ધીરજ." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,કોઈ પરવાનગીઓ આ માપદંડ માટે સુયોજિત કરો. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,લૉગિન મો apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,તમે આ સાધન વાપરવાની પૂરતી પરવાનગી નથી. ઍક્સેસ મેળવવા માટે તમારા સંચાલકનો સંપર્ક કરો. DocType: Custom Field,Custom,કસ્ટમ apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,વિવિધ માપદંડો પર આધારિત સેટઅપ ઇમેઇલ ચેતવણી. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},હેઠળ દાખલ પોસ્ટ્સ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},હેઠળ દાખલ પોસ્ટ્સ {0} DocType: Email Alert,Send alert if date matches this field's value,"તારીખ આ ક્ષેત્ર કિંમત સાથે બંધબેસે, તો ચેતવણી મોકલી" DocType: Workflow,Transitions,અનુવાદ apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,દૂર {0} અને બધા ડેટા કાઢી નાખીએ? @@ -1284,9 +1285,8 @@ DocType: User,Login After,લૉગિન પછી DocType: Print Format,Monospace,વાળા DocType: Letter Head,Printing,પ્રિન્ટિંગ DocType: Workflow State,thumbs-up,"ઉત્તમ, શ્રેષ્ઠ" -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ નથી સેટઅપ. સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટ તરફથી એક નવી ઇમેઇલ એકાઉન્ટ બનાવવા કૃપા કરીને DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,શુદ્ધતા 1 અને 6 વચ્ચે પ્રયત્ન કરીશું +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,શુદ્ધતા 1 અને 6 વચ્ચે પ્રયત્ન કરીશું apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,અને DocType: Error Snapshot,Frames,ફ્રેમ્સ @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,છબી લિંક DocType: Auto Email Report,Report Filters,રિપોર્ટ ગાળકો apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,હવે DocType: Workflow State,step-backward,પગલું પછાત -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,તમારી સાઇટ રૂપરેખા ડ્રૉપબૉક્સ વપરાશ કીઓ સુયોજિત કરો apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,આ ઈમેઈલ સરનામાને મોકલવા માટે પરવાનગી આપે છે આ રેકોર્ડ કાઢી નાખો apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,માત્ર ફરજિયાત ક્ષેત્રો નવા વિક્રમો માટે જરૂરી છે. જો તમે ઈચ્છો તો તમે બિન-ફરજિયાત કૉલમ કાઢી શકો છો. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,જોડાણો ફોલ્ડર છે apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,તમામ વિસ્તૃત કરો apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,માન્ય લૉગિન આઈડી જરૂરી છે. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,ફરીથી ખોલો -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,તમે ચુકવણી રદ કરી -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,માહિતી સાથે માન્ય CSV ફાઈલ પસંદ કરો +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,માહિતી સાથે માન્ય CSV ફાઈલ પસંદ કરો apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} યુએન-શેર કરેલી સાથે આ દસ્તાવેજ {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} {1} મંજૂરી નથી માટે દસ્તાવેજ સ્થિતિ સંક્રમણ DocType: DocType,"Make ""name"" searchable in Global Search",બનાવો "નામ" માં વૈશ્વિક શોધ શોધી @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,મ DocType: Help Category,Help Category,મદદ વર્ગ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,વપરાશકર્તા {0} અક્ષમ છે apps/frappe/frappe/www/404.html +8,Page missing or moved,ખૂટે છે અથવા ખસેડવામાં પેજમાં -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,સંપાદિત કરો {0} ગુણધર્મો DocType: DocType,Route,રૂટ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ચુકવણી ગેટવે સેટિંગ્સ DocType: DocField,Name,નામ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,તમે તમારી યોજના માટે {0} મહત્તમ જગ્યા વટાવી દીધી છે. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,દસ્તાવેજ શોધો DocType: OAuth Authorization Code,Valid,માન્ય -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,લિંક ખોલો -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,તમારી ભાષામાં +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,લિંક ખોલો +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,તમારી ભાષામાં apps/frappe/frappe/desk/form/load.py +46,Did not load,લોડ થઈ નહોતી apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,પંક્તિ ઉમેરો DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,પ્રત DocType: Address,Lakshadweep Islands,લક્ષદ્વીપ ટાપુમાં apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,લખી શકો છો apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","કેટલાક દસ્તાવેજો, એક ભરતિયું જેમ કે એક વખત અંતિમ બદલી ન હોવી જોઇએ. આવા દસ્તાવેજો માટે અંતિમ રાજ્ય સબમિટ કહેવામાં આવે છે. તમે ભૂમિકા સબમિટ કરી શકો છો કે જે પ્રતિબંધિત કરી શકો છો." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,તમે આ અહેવાલ નિકાસ કરવાની પરવાનગી નથી +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,તમે આ અહેવાલ નિકાસ કરવાની પરવાનગી નથી apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 આઇટમ પસંદ DocType: Newsletter,Test Email Address,પરીક્ષણ ઇમેઇલ સરનામું DocType: ToDo,Sender,પ્રેષક @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,આયાત ઝિપ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,દસ્તાવેજ ID ને DocType: Print Settings,Letter,પત્ર -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,છબી ફીલ્ડ પ્રકાર હોવા જ જોઈએ છબી જોડે +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,છબી ફીલ્ડ પ્રકાર હોવા જ જોઈએ છબી જોડે DocType: DocField,Columns,કૉલમ DocType: Async Task,Succeeded,સફળ apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},જરૂરી ફરજિયાત ક્ષેત્રો {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,લખાણ સંપાદક apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,અમારા વિશે પેજમાં માટે સુયોજનો. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,સંપાદિત કરો કસ્ટમ HTML DocType: Error Snapshot,Error Snapshot,ભૂલ સ્નેપશોટ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,માં +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,માં DocType: Email Alert,Value Change,કિંમત બદલો DocType: Standard Reply,Standard Reply,સ્ટાન્ડર્ડ જવાબ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ઇનપુટ બોક્સ પહોળાઈ @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,શીર્ષક પેદા કરવા માટે આ વાપરો FIELDNAME apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,આયાત ઇમેઇલ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,વપરાશકર્તા તરીકે આમંત્રણ આપો -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,પસંદ જોડાણો +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,પસંદ જોડાણો apps/frappe/frappe/model/naming.py +94, for {0},માટે {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,ત્યાં ભૂલો હતા. આ જાણ કરો. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,તમે આ દસ્તાવેજને છાપવા માટે પરવાનગી નથી +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,તમે આ દસ્તાવેજને છાપવા માટે પરવાનગી નથી apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,રિપોર્ટ ફિલ્ટર ટેબલ ગાળકો કિંમત સુયોજિત કરો. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,લોડ કરી રહ્યું છે રિપોર્ટ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,લોડ કરી રહ્યું છે રિપોર્ટ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,તમારી ઉમેદવારી આજે સમાપ્ત થઈ જશે. DocType: Page,Standard,સ્ટાન્ડર્ડ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ફાઇલ જોડવાનો @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,પ્રાદેશિક એક્સ્ટેન્શન્સ DocType: LDAP Settings,Base Distinguished Name (DN),મૂળ નામાંકિત નામ (ડીએન) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,આ વાતચીત છોડો -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},વિકલ્પો લિંક ક્ષેત્ર માટે સેટ નથી {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},વિકલ્પો લિંક ક્ષેત્ર માટે સેટ નથી {0} DocType: Customize Form,"Must be of type ""Attach Image""",પ્રકાર હોવા જ જોઈએ "છબી જોડો" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,બધા નાપસંદ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},તમે ક્ષેત્ર માટે સેટ કરેલી નથી 'ફક્ત વાંચવા માટે' કરી શકો છો {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,નૉૅધ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ભૂલ રિપોર્ટ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,પ્રતિસાદ શરતો મેળ ખાતા નથી -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,સમયરેખા ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,સમયરેખા ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ DocType: Currency,Symbol,નિશાનીનો -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ROW # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ROW # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,નવો પાસવર્ડ ઇમેઇલ apps/frappe/frappe/auth.py +245,Login not allowed at this time,આ સમય પર માન્ય નથી લૉગિન DocType: Email Account,Email Sync Option,ઇમેઇલ સમન્વયન વિકલ્પ @@ -1555,7 +1553,7 @@ DocType: DocField,Text,લખાણ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,પ્રમાણભૂત સામાન્ય પ્રશ્નો જવાબ આપ્યો. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,મૂળભૂત મોકલી રહ્યું છે DocType: Workflow State,volume-off,વોલ્યુંમ-બંધ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},દ્વારા ગમ્યું {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},દ્વારા ગમ્યું {0} DocType: Footer Item,Footer Item,ફૂટર વસ્તુ ,Download Backups,ડાઉનલોડ કરો બેકઅપ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ઘર / ટેસ્ટ ફોલ્ડરમાં 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,લખાણ સંરેખિત apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},નામ જેવા વિશિષ્ટ અક્ષરો સમાવી શકે નહિં {0} DocType: Contact Us Settings,Forward To Email Address,ફોરવર્ડ ઇમેઇલ સરનામું apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,બધા માહિતી બતાવો -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,શીર્ષક ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,શીર્ષક ક્ષેત્ર માન્ય FIELDNAME હોવા જ જોઈએ apps/frappe/frappe/config/core.py +7,Documents,દસ્તાવેજો DocType: Email Flag Queue,Is Completed,પૂર્ણ થાય છે apps/frappe/frappe/www/me.html +22,Edit Profile,પ્રોફાઇલ સંપાદિત કરો @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",આ ક્ષેત્ર દેખાશે તો જ FIELDNAME અહીં વ્યાખ્યાયિત મૂલ્ય ધરાવે છે અથવા નિયમો સાચા (ઉદાહરણો) છે: myfield eval: doc.myfield == 'મારું કિંમત' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,આજે +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,આજે apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","તમે આ સમૂહ છે એકવાર, વપરાશકર્તાઓ સક્ષમ વપરાશ દસ્તાવેજો હશે. (દા.ત. પોસ્ટ બ્લોગ) લિંક (દા.ત.. બ્લોગર) અસ્તિત્વમાં છે." DocType: Error Log,Log of Scheduler Errors,નિયોજક ભૂલો લોગ DocType: User,Bio,બાયો @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 સ્ટાર હોવા નીચો & 5 તારા સૌથી વધુ રેટિંગ હોવા DocType: Event,Ref Name,સંદર્ભ નામ DocType: Web Page,Center,કેન્દ્ર +DocType: Email Alert,Value To Be Set,કિંમત સેટ થવા દો apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,પ્રથમ સ્તર DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,રાજ્ય બદલવા માટે સોંપેલ એક દસ્તાવેજ અને ભૂમિકા મંજૂરી સ્ટેટ્સ પ્રતિનિધિત્વ કરે છે. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,પુનઃતાજું ફોર્મ @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,વેબ દૃશ્ય છે apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Doctype નામ એક પત્ર સાથે શરૂ થવું જોઈએ અને તે માત્ર અક્ષરો, નંબરો, જગ્યાઓ અને underscores ધરાવે છે" DocType: Communication,Spam,સ્પામ DocType: Integration Request,Integration Request,એકત્રિકરણ વિનંતી -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,પ્રિય +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,પ્રિય DocType: Address,Maharashtra,મહારાષ્ટ્ર DocType: Address,Accounts User,વપરાશકર્તા એકાઉન્ટ્સ DocType: Web Page,HTML for header section. Optional,હેડર વિભાગ માટે એચટીએમએલ. વૈકલ્પિક apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,આ લક્ષણ બ્રાન્ડ નવી અને હજુ પણ પ્રાયોગિક છે -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,મહત્તમ {0} પંક્તિઓ મંજૂરી +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,મહત્તમ {0} પંક્તિઓ મંજૂરી DocType: Email Unsubscribe,Global Unsubscribe,વૈશ્વિક ઉમેદવારી દૂર કરો apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,આ એક ખૂબ જ સામાન્ય પાસવર્ડ છે. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,જુઓ DocType: Communication,Assigned,એસાઈન્ડ DocType: Print Format,Js,જેએસ -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,પસંદ કરો પ્રિંટ ફોર્મેટ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,પસંદ કરો પ્રિંટ ફોર્મેટ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,લઘુ કીબોર્ડ પેટર્ન ધારી માટે સરળ હોય છે DocType: Portal Settings,Portal Menu,પોર્ટલ મેનુ apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} લંબાઈ 1 અને 1000 વચ્ચે પ્રયત્ન કરીશું @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,વપરાશકર્તા શોધ નથી કરી શકો છો apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,અમાન્ય આઉટપુટ ફોર્મેટ DocType: Custom DocPerm,Apply this rule if the User is the Owner,"વપરાશકર્તા માલિક છે, તો આ નિયમ લાગુ" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,તમારા લૉગિન આઈડી હશે +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,તમારા લૉગિન આઈડી હશે apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,રિપોર્ટ બનાવો DocType: Note,Notify users with a popup when they log in,જ્યારે તેઓ પ્રવેશ વપરાશકર્તાઓ પોપઅપ સાથે સૂચિત apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} અસ્તિત્વમાં નથી, મર્જ કરવા માટે એક નવી લક્ષ્ય ને પસંદ કરો" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,ભૂમિકા apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,સુધારો DocType: Error Snapshot,Snapshot View,સ્નેપશોટ જુઓ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,મોકલતા પહેલા ન્યૂઝલેટર સેવ કરો -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},વિકલ્પો પંક્તિ માં ક્ષેત્ર {0} માટે માન્ય Doctype હોવા જ જોઈએ {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલા +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},વિકલ્પો પંક્તિ માં ક્ષેત્ર {0} માટે માન્ય Doctype હોવા જ જોઈએ {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ગુણધર્મોમાં ફેરફાર કરો DocType: Patch Log,List of patches executed,પેચો યાદી ચલાવવામાં apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} પહેલાથી જ ઉમેદવારી દૂર -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,સંદેશાવ્યવહાર માધ્યમ +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,સંદેશાવ્યવહાર માધ્યમ DocType: Website Settings,Banner HTML,બેનર HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',કૃપા કરીને બીજી ચુકવણી પદ્ધતિ પસંદ કરો. Razorpay ચલણ વ્યવહારો ટેકો આપતાં નથી '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,બેકઅપ માટે કતારબદ્ધ. તે એક કલાક માટે થોડી મિનિટો લાગી શકે છે. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,નોંધણી ઑથ ક્લાઈન્ટ એપ્લિકેશન -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ન હોઈ શકે "{2}". તે એક પ્રયત્ન કરીશું "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ન હોઈ શકે "{2}". તે એક પ્રયત્ન કરીશું "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} અથવા {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,બતાવો અથવા ડેસ્કટોપ ચિહ્નો છુપાવવા apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,પાસવર્ડ અપડેટ @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,બતાવો લાઇન વિભાગો પછી તોડે DocType: Blogger,Short Name,ટૂંકા નામ apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},પેજમાં {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","તમારે સમન્વય વિકલ્પ પસંદ કરવામાં આવે છે કારણ કે બધા, તે સર્વરમાંથી તમામ \ વાંચવા તેમજ વાંચ્યા વગરનો સંદેશ રીસિંક કરશે. આ પણ કોમ્યુનિકેશન (ઇમેઇલ્સ) ની નકલ \ થઇ શકે છે." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ફાઈલો માપ @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,ખરીદી વ્યવસ્થાપક DocType: Custom Script,Sample,નમૂના apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,uncategorised ટૅગ્સ DocType: Event,Every Week,દર અઠવાડિયે +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ઇમેઇલ એકાઉન્ટ નથી સેટઅપ. સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટ તરફથી એક નવી ઇમેઇલ એકાઉન્ટ બનાવવા કૃપા કરીને apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,અહીં ક્લિક કરો તમારા વપરાશ તપાસો અથવા ઊંચી યોજના સુધારો કરવા DocType: Custom Field,Is Mandatory Field,ફરજિયાત ફીલ્ડ છે DocType: User,Website User,વેબસાઈટ @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,કસ્ટમ સાઇડબાર મેનુ DocType: Workflow State,pencil,પેન્સિલ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,"સંદેશાઓ, અને અન્ય સૂચનો ચેટ કરો." -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},તરીકે સેટ કરી શકાય છે પછી દાખલ કરો {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},તરીકે સેટ કરી શકાય છે પછી દાખલ કરો {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,શેર {0} સાથે apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ઇમેઇલ એકાઉન્ટ સેટઅપ માટે તમારો પાસવર્ડ દાખલ કરો: DocType: Workflow State,hand-up,હાથ ઉપર DocType: Blog Settings,Writers Introduction,લેખકો પરિચય DocType: Address,Phone,ફોન -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ભૂલ જ્યારે મૂલ્યાંકન ઇમેઇલ ચેતવણી {0}. તમારા નમૂના નક્કી કરો. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ભૂલ જ્યારે મૂલ્યાંકન ઇમેઇલ ચેતવણી {0}. તમારા નમૂના નક્કી કરો. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,પસંદ કરો દસ્તાવેજ પ્રકારની અથવા ભૂમિકા શરૂ કરવા માટે. DocType: Contact,Passive,નિષ્ક્રીય DocType: Contact,Accounts Manager,એકાઉન્ટ્સ વ્યવસ્થાપક +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,તમારી ચુકવણી રદ કરી છે. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,પસંદ કરો ફાઇલ પ્રકાર DocType: Help Article,Knowledge Base Editor,નોલેજ બેઝ સંપાદક apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,પેજ નથી મળ્યું @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,સંપત્તિ પ્રકાર DocType: Workflow State,screenshot,સ્ક્રીનશૉટ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,માત્ર સંચાલક પ્રમાણભૂત અહેવાલ બચાવી શકો છો. નામ બદલો અને સેવ કરો. DocType: System Settings,Background Workers,પૃષ્ઠભૂમિ કામદાર +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} મેટા પદાર્થ સાથે વિરોધાભાસી DocType: Deleted Document,Data,ડેટા apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,દસ્તાવેજ સ્થિતિ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},તમે કરેલા {0} ના {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,બતાવો વપરાશકર્તા પરવાનગીઓ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,તમે લૉગ ઇન અને બેકઅપ ઍક્સેસ કરવા માટે સક્ષમ હોઈ સિસ્ટમ વ્યવસ્થાપક ભૂમિકા હોય છે કરવાની જરૂર છે. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,બાકી -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,જોડાણ પહેલા સેવ કરો. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,જોડાણ પહેલા સેવ કરો. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ઉમેરાયેલ {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ડિફૉલ્ટ થીમ માં સુયોજિત થયેલ છે {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype થી બદલી શકાતું નથી {0} માટે {1} પંક્તિ માં {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,સિસ્ટમ ગોઠવણી apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,સત્ર શરૂ કરવામાં નિષ્ફળ apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},આ ઇમેઇલ {0} મોકલવામાં આવે છે અને નકલ કરવામાં આવી હતી {1} DocType: Workflow State,th,મી -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,કૃપા કરીને સેટઅપ> ઇમેઇલ> ઇમેઇલ એકાઉન્ટમાંથી સેટઅપ મૂળભૂત ઇમેઇલ એકાઉન્ટ -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},બનાવેલા નવા {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},બનાવેલા નવા {0} DocType: Email Rule,Is Spam,સ્પામ છે apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},રિપોર્ટ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ઓપન {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ઓપન {0} DocType: OAuth Client,Default Redirect URI,મૂળભૂત રીડાયરેક્ટ યુઆરઆઇ DocType: Email Alert,Recipients,મેળવનારા DocType: Workflow State,ok-sign,બરાબર સાઇન @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,મદદ લેખો ,Modules Setup,મોડ્યુલો સેટઅપ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,પ્રકાર: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,તમારી ચૂકવણી નિષ્ફળ રહી છે. DocType: Communication,Unshared,સહિયારા DocType: Address,Karnataka,કર્ણાટક apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,મોડ્યુલ મળ્યો નથી @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,બ્રાન્ડ છબી DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ટોચની સંશોધક પટ્ટીમાં, ફૂટર અને લોગો સેટઅપ." DocType: Web Form Field,Max Value,મેક્સ ભાવ -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},માટે {0} સ્તર {1} પર {2} પંક્તિ માં {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},માટે {0} સ્તર {1} પર {2} પંક્તિ માં {3} DocType: Contact,All,બધા DocType: Email Queue,Recipient,પ્રાપ્તકર્તા DocType: Communication,Has Attachment,જોડાણ ધરાવે @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,સંરેખિત અધિકાર DocType: Auto Email Report,Email To,ઇમેલ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ફોલ્ડર {0} ખાલી નથી DocType: Page,Roles,ભૂમિકાઓ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ક્ષેત્ર {0} પસંદ કરેલ નથી. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},ભૂલ: VALUE ખૂટે {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ક્ષેત્ર {0} પસંદ કરેલ નથી. DocType: System Settings,Session Expiry,સત્ર સમાપ્તિ DocType: Workflow State,ban-circle,પ્રતિબંધ વર્તુળ DocType: Email Flag Queue,Unread,ન વાંચેલ @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,વપરાશકર્તા ડિફૉલ્ટ્સ apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,ન્યૂ બનાવો DocType: Workflow State,chevron-down,શેવરોન ડાઉન -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),માટે મોકલવામાં આવ્યો ન ઇમેઇલ {0} (અક્ષમ કરેલું / ઉમેદવારી દૂર) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),માટે મોકલવામાં આવ્યો ન ઇમેઇલ {0} (અક્ષમ કરેલું / ઉમેદવારી દૂર) DocType: Async Task,Traceback,ટ્રેસબેક DocType: Currency,Smallest Currency Fraction Value,નાના કરન્સી અપૂર્ણાંક ભાવ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,માટે સોંપી @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,પ્રતિ DocType: Website Theme,Google Font (Heading),Google ફોન્ટ (મથાળું) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,પ્રથમ જૂથ નોડ પસંદ કરો. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},શોધો {0} માં {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},શોધો {0} માં {1} DocType: OAuth Client,Implicit,અભિપ્રેત DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(ક્ષેત્રો, "સ્થિતિ" હોવી જ જોઈએ "વિષય") આ Doctype સામે સંચાર તરીકે જોડો" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","વપરાશકર્તા વપરાશ પરવાનગી આપે છે એક વખત અધિકૃતિ કોડ પ્રાપ્ત, તેમજ નિષ્ફળતા જવાબો માટે યુઆરઆઇને. ખાસ કરીને આરામ એન્ડપોઇંટ ક્લાઈન્ટ એપ્લિકેશન દ્વારા ખુલ્લી.
દા.ત. HTTP: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,સબમિશન પછી {0} બદલવાની મંજૂરી નથી +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,સબમિશન પછી {0} બદલવાની મંજૂરી નથી DocType: Communication,Comment Type,ટિપ્પણી લખો DocType: OAuth Client,OAuth Client,ઑથ ક્લાઈન્ટ apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,વપરાશકર્તાઓ @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},માટે ફાઇલ ફોર્મેટ વાંચવામાં અસમર્થ {0} DocType: Auto Email Report,Filter Data,ફિલ્ટર ડેટા apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ટેગ ઉમેરો -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,પ્રથમ ફાઇલ જોડવાનો કરો. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,પ્રથમ ફાઇલ જોડવાનો કરો. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","આ નામને સુયોજિત કરી તેમાં કેટલીક ભૂલો હતી, સંચાલકનો સંપર્ક કરો" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ઇનકમિંગ ઇમેઇલ એકાઉન્ટ યોગ્ય નથી apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,ઇમેઇલ મોકલ્યો છે DocType: DocField,Ignore XSS Filter,એક્સએસએસ ફિલ્ટર અવગણો apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,દૂર apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ડ્રૉપબૉક્સ બેકઅપ સેટિંગ્સ -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ઈમેઈલ મોકલો +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ઈમેઈલ મોકલો DocType: Website Theme,Link Color,લિંક રંગ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,વપરાશકર્તા {0} નિષ્ક્રિય કરી શકાય નહિં apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","પ્રિય સિસ્ટમ વ્યવસ્થાપક," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,તમારો દેશ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,તમારો દેશ DocType: Event,Sunday,રવિવારે apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ગ્રિડ દૃશ્ય માં DocType: Address Template,Template,ઢાંચો @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,દિલ્હી apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP સેટિંગ્સ apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,સુધારો apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,પેપાલ ચુકવણી ગેટવે સેટિંગ્સ -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) કાપવામાં મળશે, કારણ મંજૂરી મેક્સ અક્ષરો છે {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) કાપવામાં મળશે, કારણ મંજૂરી મેક્સ અક્ષરો છે {2}" DocType: OAuth Client,Resource Owner Password Credentials,સ્ત્રોત માલિક પાસવર્ડ ઓળખપત્રો DocType: OAuth Client,Response Type,પ્રતિભાવ પ્રકાર apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,મેક્સ વપરાશકર્તાઓ @@ -2033,7 +2037,7 @@ DocType: DocField,Table,કોષ્ટક DocType: File,File Size,ફાઈલ માપ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,તમે આ ફોર્મ સબમિટ કરવા પ્રવેશ જ જોઈએ DocType: User,Background Image,પૃષ્ઠભૂમિ છબી -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","તમારો દેશ, ટાઈમ ઝોન અને કરન્સી પસંદ કરો" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","તમારો દેશ, ટાઈમ ઝોન અને કરન્સી પસંદ કરો" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,વચ્ચે DocType: Async Task,Queued,કતારબદ્ધ @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,બનાવો apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},અમાન્ય ફિલ્ટર કરો: {0} DocType: Email Account,no failed attempts,કોઈ નિષ્ફળ પ્રયાસો +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,કોઈ ડિફોલ્ટ સરનામું ટેમ્પલેટ મળ્યાં નથી. સેટઅપ> પ્રિન્ટિંગ અને બ્રાંડિંગ> સરનામાં નમૂનામાંથી એક નવું બનાવો. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,એપ્લિકેશન ઍક્સેસ કી DocType: OAuth Bearer Token,Access Token,ઍક્સેસ ટોકન @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github વપરાશકર્તા નામ DocType: DocType,Image View,છબી જુઓ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","લાગે છે કે કંઈક વ્યવહાર દરમિયાન ખોટું થયું હતું. અમે ચુકવણી પુષ્ટિ કરી નથી કારણ કે, પેપલ આપોઆપ તમે આ રકમ રિફંડ કરશે. તે ન હોય તો, કૃપા કરીને અમને એક ઇમેઇલ મોકલો અને સહસંબંધ આઈડી ઉલ્લેખ: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","પાસવર્ડ પ્રતિકો, સંખ્યાઓ અને મૂડી અક્ષરો શામેલ" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ક્ષેત્ર '{0}' વૈવિધ્યપૂર્ણ ક્ષેત્રમાં ઉલ્લેખ કર્યા પછી દાખલ કરો '{1}' લેબલ સાથે '{2}' અસ્તિત્વમાં નથી +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","પાસવર્ડ પ્રતિકો, સંખ્યાઓ અને મૂડી અક્ષરો શામેલ" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ક્ષેત્ર '{0}' વૈવિધ્યપૂર્ણ ક્ષેત્રમાં ઉલ્લેખ કર્યા પછી દાખલ કરો '{1}' લેબલ સાથે '{2}' અસ્તિત્વમાં નથી DocType: Workflow State,signal,સંકેત DocType: DocType,Show Print First,બતાવો પ્રિન્ટ પ્રથમ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,માટે Ctrl + પોસ્ટ દાખલ કરો @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ફાઇલ '{0}' મળી નથી apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,વિભાગ દૂર DocType: User,Change Password,પાસવર્ડ બદલો -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},અમાન્ય ઇમેઇલ: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,હેલો! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},અમાન્ય ઇમેઇલ: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,હેલો! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ઇવેન્ટ અંત શરૂઆત પછી જ હોવી જોઈએ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},તમે પર અહેવાલ મેળવવા માટે પરવાનગી નથી: {0} +DocType: System Settings,Apply Strict User Permissions,સખત વપરાશકર્તા પરવાનગીઓ લાગુ DocType: DocField,Allow Bulk Edit,બલ્ક સંપાદન માટે પરવાનગી આપે છે DocType: Blog Post,Blog Post,બ્લોગ પોસ્ટ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,અદ્યતન શોધ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,અદ્યતન શોધ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,પાસવર્ડ રીસેટ સૂચનાઓ તમારા ઇમેઇલ પર મોકલવામાં આવ્યા છે apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",સ્તર 0 દસ્તાવેજ સ્તર પરવાનગીઓ \ ક્ષેત્ર સ્તર પરવાનગીઓ માટે ઉચ્ચ સ્તર છે. @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,રદ DocType: Web Page,Sidebar and Comments,સાઇડબાર અને ટિપ્પણીઓ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","તમે એક દસ્તાવેજ પછી તે રદ કરો અને સેવ સુધારો હોય ત્યારે, તે જૂના નંબર ની આવૃત્તિ છે કે જે નવા સંખ્યા મળશે." DocType: Stripe Settings,Publishable Key,publishable કી -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} વર્ષ (ઓ) પહેલા DocType: Workflow State,circle-arrow-left,વર્તુળ તીર છોડી apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis કેશ સર્વર ચાલી રહ્યું નથી. સંચાલક / ટેક સપોર્ટ સંપર્ક કરો apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,પાર્ટી નામ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,નવી રેકોર્ડ કરો +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,નવી રેકોર્ડ કરો apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,શોધી DocType: Currency,Fraction,અપૂર્ણાંક DocType: LDAP Settings,LDAP First Name Field,LDAP પ્રથમ નામ ક્ષેત્ર -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,હાલની જોડાણો માંથી પસંદ કરો +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,હાલની જોડાણો માંથી પસંદ કરો DocType: Custom Field,Field Description,ક્ષેત્ર વર્ણન apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,પ્રોમ્પ્ટ મારફતે સુયોજિત નથી Name apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ઇમેઇલ ઇનબૉક્સ @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,માહિતી: DocType: Custom Field,Permission Level,પરવાનગી સ્તર DocType: User,Send Notifications for Transactions I Follow,હું અનુસરો વ્યવહારો માટે સૂચનો મોકલવા -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: સબમિટ રદ, લખો વગર સુધારો સેટ કરી શકાતો નથી" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: સબમિટ રદ, લખો વગર સુધારો સેટ કરી શકાતો નથી" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,તમે જોડાણ કાઢી નાખવા માંગો છો તમને ખાતરી છે? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","કાઢી નાખો અથવા કારણ કે {0} રદ કરી શકાતું નથી {1} સાથે કડી થયેલ છે {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

કોઈ પરિણામો નથી 'મળી

-apps/frappe/frappe/__init__.py +1063,Thank you,આભાર +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","કાઢી નાખો અથવા કારણ કે {0} રદ કરી શકાતું નથી {1} સાથે કડી થયેલ છે {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,આભાર apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,સાચવી DocType: Print Settings,Print Style Preview,શૈલી પૂર્વાવલોકન છાપો apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,યાદી દૃશ્યમાં DocType: Email Account,Use TLS,ઉપયોગ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,અમાન્ય લૉગિન અથવા પાસવર્ડ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,સ્વરૂપો કરવા માટે વૈવિધ્યપૂર્ણ Javascript ઉમેરો. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,કર્મ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,કર્મ ,Role Permissions Manager,ભૂમિકા પરવાનગીઓ વ્યવસ્થાપક apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,નવી પ્રિંટ ફોર્મેટ નામ -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,જોડાણ સ્પષ્ટ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,જોડાણ સ્પષ્ટ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ફરજિયાત: ,User Permissions Manager,વપરાશકર્તા પરવાનગીઓ વ્યવસ્થાપક DocType: Property Setter,New value to be set,નવી કિંમત સુયોજિત કરવા @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 દ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,બ્લોગ પોસ્ટ્સ વર્ગીકૃત કરો. DocType: Workflow State,Time,સમય DocType: DocField,Attach,જોડો -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} માન્ય FIELDNAME પેટર્ન નથી. તે પ્રયત્ન કરીશું {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} માન્ય FIELDNAME પેટર્ન નથી. તે પ્રયત્ન કરીશું {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"પ્રતિસાદ વિનંતી મોકલો તો જ ત્યાં છે, ઓછામાં ઓછા એક સંચાર દસ્તાવેજ માટે ઉપલબ્ધ છે." DocType: Custom Role,Permission Rules,પરવાનગી નિયમો DocType: GSuite Settings,GSuite Settings,GSuite સેટિંગ્સ DocType: Address,Links,કડીઓ -apps/frappe/frappe/model/base_document.py +428,Value missing for,કિંમત માટે ગુમ +apps/frappe/frappe/model/base_document.py +427,Value missing for,કિંમત માટે ગુમ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,બાળ ઉમેરો -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: અહેવાલ શાળાના કુલ રેકોર્ડ કાઢી શકાતી નથી. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: અહેવાલ શાળાના કુલ રેકોર્ડ કાઢી શકાતી નથી. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,બેકઅપ માપ DocType: GSuite Templates,Template Name,નમૂના નામ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,દસ્તાવેજ નવી પ્રકાર +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,દસ્તાવેજ નવી પ્રકાર DocType: Custom DocPerm,Read,વાંચો DocType: Role Permission for Page and Report,Role Permission for Page and Report,પેજ અને રિપોર્ટ માટે રોલ પરવાનગી apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,સંરેખિત કરો ભાવ apps/frappe/frappe/www/update-password.html +14,Old Password,જુનો પાસવર્ડ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},દ્વારા પોસ્ટ્સ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},દ્વારા પોસ્ટ્સ {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","બંધારણમાં સ્તંભો, ક્વેરી માં કૉલમ લેબલ્સ આપો." DocType: Has Domain,Has Domain,ડોમેનની apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,એક એકાઉન્ટ નથી? સાઇન અપ કરો -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Submittable જો નહિં, તો સોંપો સુધારો સેટ કરી શકાતો નથી" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Submittable જો નહિં, તો સોંપો સુધારો સેટ કરી શકાતો નથી" DocType: Address,Bihar,બિહાર apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,સંપાદિત કરો ભૂમિકા પરવાનગીઓ DocType: Communication,Link DocType,લિંક Doctype @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,તમારી પ્રોફાઇલ ઇમેઇલ સરનામું છે કે જે ખાતરી કરો apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,તમે આ ફોર્મ સંગ્રહ ન કરેલા ફેરફારો છે. તમે આ ચાલુ રાખવા પહેલાં સેવ કરો. DocType: Address,Telangana,તેલંગાણા -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} એક વિકલ્પ હોઈ જ જોઈએ માટે મૂળભૂત +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} એક વિકલ્પ હોઈ જ જોઈએ માટે મૂળભૂત DocType: Tag Doc Category,Tag Doc Category,ટેગ ડૉક વર્ગ DocType: User,User Image,વપરાશકર્તા છબી apps/frappe/frappe/email/queue.py +289,Emails are muted,ઇમેઇલ્સ મ્યૂટ છે @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,આગા DocType: Workflow State,ok,ઠીક છે DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,આ કિંમતો આપોઆપ વ્યવહારો અપડેટ કરવામાં આવશે અને એ પણ આ કિંમતો સમાવતી વ્યવહારો પર આ વપરાશકર્તા માટે પરવાનગીઓ મર્યાદિત કરવા ઉપયોગી થશે. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,પ્રકાશક -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** નિષ્ફળ: {0} માટે {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** નિષ્ફળ: {0} માટે {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,મેન્ડેટરી પસંદ કરો apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,બ્રાઉઝ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ઇમેઇલ્સ મોકલી @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,ચાલી રહેલ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,પાસવર્ડ રીસેટ કરો apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,કૃપા કરીને વધુ કરતાં {0} ગ્રાહકો ઉમેરવા માટે સુધારો DocType: Workflow State,hand-left,હાથ છોડી -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} અનન્ય કરી શકાય નહીં +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} અનન્ય કરી શકાય નહીં DocType: Email Account,Use SSL,ઉપયોગ SSL DocType: Workflow State,play-circle,નાટક વર્તુળ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,ફેરફાર કરવા માટે પ્રિન્ટ ફોર્મેટ પસંદ @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,કોઈ નકલ DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP સાથે પ્રવેશ DocType: Web Form,Breadcrumbs,બ્રેડક્રમ્સમાં -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,માલિક તો +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,માલિક તો DocType: OAuth Authorization Code,Expiration time,સમાપ્તિ સમય DocType: Web Page,Website Sidebar,વેબસાઇટ સાઇડબાર DocType: Web Form,Show Sidebar,બતાવો સાઇડબાર @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},શોધી શ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,નામો અને પોતાને દ્વારા અટક ધારી સરળ હોય છે. apps/frappe/frappe/config/website.py +93,Knowledge Base,જ્ઞાન પૃષ્ટ DocType: Workflow State,briefcase,બ્રીફકેસ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},કિંમત માટે બદલી શકાતું નથી {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},કિંમત માટે બદલી શકાતું નથી {0} DocType: Feedback Request,Is Manual,મેન્યુઅલ છે DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","પ્રકાર બટન રંગ રજૂ: સફળતા - લીલા, ભય - લાલ, વ્યસ્ત - બ્લેક, પ્રાથમિક - ડાર્ક બ્લ્યુ, માહિતી - આછો વાદળી, ચેતવણી - નારંગી" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,કોઈ રિપોર્ટ લોડ. / [રિપોર્ટ નામ] એક અહેવાલ ચલાવવા માટે ક્વેરી અહેવાલ નો ઉપયોગ કરો. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,પ્રગ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ભૂમિકા દ્વારા apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ખૂટે ક્ષેત્રો apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname અમાન્ય FIELDNAME '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,દસ્તાવેજ પ્રકારની શોધ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,દસ્તાવેજ પ્રકારની શોધ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ક્ષેત્રમાં પણ સબમિશન પછી સંપાદનયોગ્ય રહેવા માટે પરવાનગી આપે DocType: Custom DocPerm,Role and Level,ભૂમિકા અને સ્તર DocType: File,Thumbnail URL,થંબનેલ URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(CTRL + G) DocType: Contact,More Information,વધુ મહિતી DocType: Desktop Icon,Desktop Icon,ડેસ્કટોપ ચિહ્ન -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,તમારી ચુકવણી સફળતાપૂર્વક સ્વીકારવામાં આવી હતી +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,તમારી ચુકવણી સફળતાપૂર્વક સ્વીકારવામાં આવી હતી apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,માફ કરશો! તમે આ પાનું જોવા માટે પરવાનગી નથી. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ટીપ: ડબલ ક્લિક કરો સેલ ફેરફાર કરવા માટે DocType: Workflow State,bell,બેલ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ઇમેઇલ ચેતવણી ભૂલ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,સાથે આ દસ્તાવેજને શેર +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,સેટઅપ> વપરાશકર્તા પરવાનગીઓ મેનેજર apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,તે બાળકો ધરાવે છે {0} {1} પાંદડાના નોડ ન હોઈ શકે DocType: Communication,Info,માહિતી -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,જોડાણ ઉમેરો +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,જોડાણ ઉમેરો DocType: Communication,Email,ઇમેઇલ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,તમારા સંદેશ માટે આભાર -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,વાંચેલી રસીદ મોકલો +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,વાંચેલી રસીદ મોકલો DocType: Stripe Settings,Stripe Settings,ગેરુનો સેટિંગ્સ DocType: Dropbox Settings,Dropbox Setup via Site Config,સાઇટ રૂપરેખા મારફતે ડ્રૉપબૉક્સ સેટઅપ apps/frappe/frappe/www/login.py +64,Invalid Login Token,અમાન્ય લૉગિન ટોકન @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,વેબ દૃશ્ય apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ચેતવણી: આ પ્રિંટ ફોર્મેટ જૂની શૈલી છે અને API દ્વારા પેદા કરી શકાતી નથી. DocType: DocField,Print Width,પ્રિન્ટ પહોળાઈ ,Setup Wizard,સેટઅપ વિઝાર્ડ +DocType: Address,GST State Number,જીએસટી રાજ્ય નંબર DocType: User,Allow user to login only before this hour (0-24),વપરાશકર્તા માત્ર આ કલાક પહેલાં પ્રવેશ કરવા માટે (0-24) માટે પરવાનગી આપે છે apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ફોલ્ડર ફરજિયાત છે apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,નાની ટેક્સ્ટ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,સંચાલક ઍક્સેસ {0} પર {1} IP સરનામું મારફતે {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,સમકક્ષ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ક્ષેત્રમાં વિકલ્પો 'ડાયનેમિક કડી' પ્રકાર 'Doctype' તરીકે વિકલ્પો સાથે અન્ય લિંક ક્ષેત્ર માટે નિર્દેશ જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ક્ષેત્રમાં વિકલ્પો 'ડાયનેમિક કડી' પ્રકાર 'Doctype' તરીકે વિકલ્પો સાથે અન્ય લિંક ક્ષેત્ર માટે નિર્દેશ જ જોઈએ DocType: About Us Settings,Team Members Heading,મથાળું ટીમના સભ્યો apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,અમાન્ય CSV ફોર્મેટ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,સેટ બેકઅપ સંખ્યા @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,સંપર્ક DocType: User,Third Party Authentication,થર્ડ પાર્ટી સત્તાધિકરણ DocType: Website Settings,Banner is above the Top Menu Bar.,બૅનર ટોચની મેનૂ બાર ઉપર છે. DocType: Razorpay Settings,API Secret,API સિક્રેટ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,નિકાસ રિપોર્ટ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,નિકાસ રિપોર્ટ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} અસ્તિત્વમાં નથી DocType: Email Account,Port,પોર્ટ DocType: Print Format,Arial,એરિયલ @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,સ્તંભ નામ DocType: Language,Based On,પર આધારિત apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ડિફૉલ્ટ બનાવો apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,તપાસો Frappe સર્વર URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} અનુક્રમિત કરી શકાય નહીં +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} અનુક્રમિત કરી શકાય નહીં DocType: Communication,Email Account,ઇમેઇલ એકાઉન્ટ DocType: Workflow State,Download,ડાઉનલોડ કરો DocType: Blog Post,Blog Intro,પ્રસ્તાવના બ્લોગ @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,સામેલ કરો કોડ DocType: ToDo,Low,લો apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,તમે Jinja templating ઉપયોગ કરીને દસ્તાવેજ ગતિશીલ ગુણધર્મો ઉમેરી શકો છો. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},અમાન્ય મર્યાદા {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,દસ્તાવેજ પ્રકારની યાદી +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,દસ્તાવેજ પ્રકારની યાદી DocType: Event,Ref Type,સંદર્ભ પ્રકાર apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","તમે નવા વિક્રમો અપલોડ કરી રહ્યાં છો, તો "નામ" (ID) કોલમ ખાલી છોડી દો." DocType: Address,Chattisgarh,છત્તીસગઢ @@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,પીડીએફ તરીકે છાપો મોકલો DocType: Web Form,Amount,રકમ DocType: Workflow Transition,Allowed,મંજૂર -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,એક સ્વરૂપ માં માત્ર એક ગડી હોઈ શકે છે +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,એક સ્વરૂપ માં માત્ર એક ગડી હોઈ શકે છે apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},માટે ફાઇલ ફોર્મેટ લખવા માટે અસમર્થ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,મૂળભૂત સુયોજનો પુનઃસ્થાપિત? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,અમાન્ય મુખ્ય પૃષ્ઠ પેજમાં apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,અમાન્ય લૉગિન. ફરીથી પ્રયત્ન કરો. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},લિંક અથવા પંક્તિ ટેબલ પ્રકાર ક્ષેત્ર {0} માટે જરૂરી વિકલ્પો {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},લિંક અથવા પંક્તિ ટેબલ પ્રકાર ક્ષેત્ર {0} માટે જરૂરી વિકલ્પો {1} DocType: Auto Email Report,Send only if there is any data,માત્ર મોકલો જો ત્યાં કોઈપણ માહિતી છે apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,રીસેટ ગાળકો -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: ઉચ્ચ સ્તરો સેટ થાય તે પહેલા સ્તર 0 પરવાનગી સુયોજિત થયેલ હોવું જ જોઈએ +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: ઉચ્ચ સ્તરો સેટ થાય તે પહેલા સ્તર 0 પરવાનગી સુયોજિત થયેલ હોવું જ જોઈએ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},સોંપણી દ્વારા બંધ {0} DocType: Integration Request,Remote,દૂરસ્થ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,ગણતરી +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ગણતરી apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,પ્રથમ Doctype પસંદ કરો apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,તમારા ઇમેઇલ ખાતરી apps/frappe/frappe/www/login.html +42,Or login with,અથવા પ્રવેશ DocType: Error Snapshot,Locals,સ્થાનિક apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},દ્વારા વાતચીત {0} પર {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} એક ટિપ્પણી માં તમારો ઉલ્લેખ કર્યો {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,દા.ત. (55 + 434) / 4 અથવા = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,દા.ત. (55 + 434) / 4 અથવા = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} જરૂરી છે DocType: Integration Request,Integration Type,એકત્રિકરણ પ્રકાર DocType: Newsletter,Send Attachements,attachements મોકલો @@ -2745,14 +2751,14 @@ DocType: DocField,Perm Level,પર્મ સ્તર apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,આજે કૅલેન્ડર ઘટનાઓ DocType: Web Page,Web Page,વેબ પેજ DocType: Blog Category,Blogger,બ્લોગર -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},ગ્લોબલ સર્ચ 'પ્રકાર માટે મંજૂરી નથી {0} પંક્તિમાં {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},ગ્લોબલ સર્ચ 'પ્રકાર માટે મંજૂરી નથી {0} પંક્તિમાં {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,યાદી જુઓ -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},તારીખ બંધારણમાં જ હોવી જોઈએ: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},તારીખ બંધારણમાં જ હોવી જોઈએ: {0} DocType: Workflow,Don't Override Status,સ્થિતિ પર ફરીથી કરો apps/frappe/frappe/www/feedback.html +90,Please give a rating.,રેટિંગ આપો. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} પ્રતિસાદ વિનંતી apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,શોધ શબ્દ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,પ્રથમ વપરાશકર્તા: તમે +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,પ્રથમ વપરાશકર્તા: તમે apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,પસંદ સ્તંભોને DocType: Translation,Source Text,સોર્સ લખાણ apps/frappe/frappe/www/login.py +55,Missing parameters for login,પ્રવેશ માટે ગુમ પરિમાણો @@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,આયાત DocType: ToDo,Assigned By,દ્વારા સોંપાયેલ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,તમે ક્ષેત્રો પર સ્તરો સેટ કરવા માટે કસ્ટમાઇઝ ફોર્મ વાપરી શકો છો. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,તમારો પ્રદેશ પસંદ કરો +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,તમારો પ્રદેશ પસંદ કરો DocType: Custom DocPerm,Level,સ્તર DocType: Custom DocPerm,Report,રિપોર્ટ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,રકમ 0 કરતાં મોટી હોવી જ જોઈએ. @@ -2794,7 +2800,7 @@ DocType: Website Theme,Background,પૃષ્ઠભૂમિ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","વપરાશકર્તા પરવાનગીઓ લાગુ કરવા માટે વપરાય DocTypes JSON યાદી. ખાલી હોય તો, બધા કડી DocTypes વપરાશકર્તા પરવાનગીઓ લાગુ કરવા માટે ઉપયોગ કરવામાં આવશે." DocType: Report,Ref DocType,સંદર્ભ Doctype apps/frappe/frappe/www/feedback.py +42,Please add a rating,રેટિંગ ઉમેરો -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: વિના રદ સુધારો સેટ કરી શકાતો નથી +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: વિના રદ સુધારો સેટ કરી શકાતો નથી apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,સંપૂર્ણ પેજમાં DocType: DocType,Is Child Table,બાળ ટેબલ છે apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} એક હોવો જ જોઈએ {1} @@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,આ સ્લાઇડ apps/frappe/frappe/config/setup.py +260,Install Applications.,કાર્યક્રમો સ્થાપિત. DocType: Contact,Last Name,છેલ્લું નામ DocType: Event,Private,ખાનગી -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,આજે કોઈ ચેતવણીઓ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,આજે કોઈ ચેતવણીઓ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),પીડીએફ તરીકે ઇમેઇલ પ્રિંટ જોડાણો મોકલો (ભલામણ કરેલ) DocType: Web Page,Left,ડાબે DocType: Event,All Day,બધા દિવસ @@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,સવારે એક ઇ DocType: Blog Post,Published On,પર પ્રકાશિત DocType: Contact,Gender,જાતિ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,મેન્ડેટરી માહિતી ગુમ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ફીલ્ડ '{0}' તે બિન અનન્ય કિંમતો છે કે અનન્ય તરીકે સેટ કરી શકાય છે +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ફીલ્ડ '{0}' તે બિન અનન્ય કિંમતો છે કે અનન્ય તરીકે સેટ કરી શકાય છે apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,માત્ર 200 દાખલ એક વિનંતી માન્ય DocType: Footer Item,URL,URL ને DocType: ToDo,Reference Type,સંદર્ભ પ્રકાર @@ -2836,7 +2842,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ચેતવણી સાઇન DocType: Workflow State,User,વપરાશકર્તા DocType: Website Settings,"Show title in browser window as ""Prefix - title""",તરીકે બ્રાઉઝર વિન્ડો બતાવો શીર્ષક "ઉપસર્ગ - શીર્ષક" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,દસ્તાવેજ પ્રકારની લખાણ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,દસ્તાવેજ પ્રકારની લખાણ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,ચલાવો ટેસ્ટ apps/frappe/frappe/handler.py +91,Logged Out,લૉગ આઉટ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,વધુ ... @@ -2861,13 +2867,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,હાલમાં જોઈ રહ્યા છીએ DocType: DocField,Default,મૂળભૂત apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ઉમેરવામાં -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',માટે શોધ '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',માટે શોધ '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,કૃપા કરીને અહેવાલ પ્રથમ સેવ apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ગ્રાહકો ઉમેર્યા apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,નથી DocType: Workflow State,star,સ્ટાર -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,કિંમતો અલ્પવિરામ દ્વારા અલગ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},પ્રકાર કરન્સી માટે મહત્તમ પહોળાઈ પંક્તિ માં 100 પીએક્સ છે {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,કિંમતો અલ્પવિરામ દ્વારા અલગ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},પ્રકાર કરન્સી માટે મહત્તમ પહોળાઈ પંક્તિ માં 100 પીએક્સ છે {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},માટે તમારા પ્રતિભાવ શેર કરો {0} apps/frappe/frappe/config/website.py +13,Content web page.,સામગ્રી વેબ પાનું. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,એક નવી ભૂમિકા ઉમેરો @@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,માન્ય LDAP વપરાશકર્તા apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} માન્ય રાજ્ય apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',કૃપા કરીને બીજી ચુકવણી પદ્ધતિ પસંદ કરો. પેપાલ ચલણ વ્યવહારો ટેકો આપતાં નથી '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,શોધ ક્ષેત્ર {0} માન્ય નથી +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,શોધ ક્ષેત્ર {0} માન્ય નથી DocType: Workflow State,ok-circle,બરાબર વર્તુળ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',તમે પૂછવા 'ગ્રાહકો નારંગી શોધવા' દ્વારા વસ્તુઓ શોધી શકો છો apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,માફ કરશો! વપરાશકર્તા તેમની પોતાની રેકોર્ડ સંપૂર્ણ વપરાશ હોવો જોઈએ. @@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,ફિલ્ટર મેટા DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"આ ફોર્મ વેબ પાનું છે, તો લખાણ વેબ પૃષ્ઠ પર લિંક માટે પ્રદર્શિત કરવા માટે. લિંક માર્ગ આપોઆપ page_name` અને `parent_website_route`` પર આધારિત પેદા થશે" DocType: Feedback Request,Feedback Trigger,પ્રતિસાદ ટ્રિગર -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,પ્રથમ {0} સુયોજિત કરો +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,પ્રથમ {0} સુયોજિત કરો DocType: Unhandled Email,Message-id,સંદેશ- ID DocType: Patch Log,Patch,પેચ DocType: Async Task,Failed,નિષ્ફળ diff --git a/frappe/translations/he.csv b/frappe/translations/he.csv index 0efd13370e..c93c44d017 100644 --- a/frappe/translations/he.csv +++ b/frappe/translations/he.csv @@ -10,7 +10,7 @@ DocType: About Us Settings,Website,אתר DocType: User,Facebook Username,שם משתמש פייסבוק DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,הערה: מספר הפעלות תתאפשר במקרה של מכשיר נייד apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,לא ניתן לשלוח דוא"ל זה. אתה חצית את גבול השליחה של {0} מיילים לחודש זה. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,באופן קבוע שלח {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,באופן קבוע שלח {0}? DocType: Address,County,מָחוֹז apps/frappe/frappe/client.py +280,Invalid file path: {0},דרך לא חוקית קובץ: {0} DocType: Workflow State,eye-open,עין-פתוחה @@ -31,18 +31,18 @@ apps/frappe/frappe/config/core.py +42,Logs,יומנים DocType: Custom DocPerm,This role update User Permissions for a user,הרשאות משתמש תפקיד עדכון זה עבור משתמש apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},שינוי שם {0} DocType: Workflow State,zoom-out,זום-אאוט -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,לא יכול לפתוח {0} כאשר למשל פתוח +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,לא יכול לפתוח {0} כאשר למשל פתוח apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,שולחן {0} לא יכול להיות ריק apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,עם פנקסים DocType: Communication,Reference Owner,בעלי ההפניה DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,היחידה הקטנה ביותר במחזור החלק (מטבע). לדוגמא 1 סנט לדולר וזה צריך להיות נכנס כ0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} שורה" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} שורה" apps/frappe/frappe/model/document.py +904,Beginning with,החל מ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,נתוני יבוא תבנית apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,הורה DocType: About Us Settings,"""Team Members"" or ""Management""","""חברי צוות"" או ""ניהול""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"ברירת מחדל עבור סוג השדה ""בדוק"" חייבת להיות או '0' '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"ברירת מחדל עבור סוג השדה ""בדוק"" חייבת להיות או '0' '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,אתמול DocType: Contact,Designation,ייעוד DocType: Test Runner,Test Runner,המבחן ראנר @@ -54,7 +54,7 @@ DocType: Workflow State,th-large,ה-גדול DocType: Communication,Unread Notification Sent,הודעה שלא נקראה נשלחה apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You need {0} role to export.,יצוא אסור. אתה צריך {0} תפקיד ליצוא. DocType: Email Group,Email Group,קבוצת דוא"ל -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,לא כמו +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,לא כמו apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,הגדר את תווית התצוגה עבור השדה apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ערך שגוי: {0} חייב להיות {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","מאפייני שדה שינוי (להסתיר, לקריאה בלבד, וכו 'רשות)" @@ -62,7 +62,7 @@ DocType: Workflow State,lock,לנעול apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,הגדרות לצורו קשר דף. apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,מנהל מחובר DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","אפשרויות לתקשר, כמו ""שאילתת מכירות, תמיכת שאילתה"" וכו 'כל בשורה חדשה או מופרד בפסיקים." -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,הכנס +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,הכנס apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},בחר {0} DocType: Print Settings,Classic,קלאסי DocType: Desktop Icon,Color,צבע @@ -96,7 +96,7 @@ DocType: Translation,Translation,תִרגוּם apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,התקן apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,מר DocType: Custom Script,Client,הלקוח -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,טופס זה השתנה לאחר שהעמסת אותו +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,טופס זה השתנה לאחר שהעמסת אותו apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,מצגות טבע תמונה בדפי אתר. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,שלח DocType: Workflow Action,Workflow Action Name,שם Workflow פעולה @@ -116,13 +116,13 @@ DocType: Unhandled Email,Reason,סיבה apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,נא לציין את משתמשים DocType: Email Unsubscribe,Email Unsubscribe,דוא"ל ביטול מנוי DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,בחר תמונה של רוחב כ 150px עם רקע שקוף לתוצאות הטובות ביותר. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,המשתמש הראשון יהפוך את מנהל המערכת (אתה יכול לשנות את זה בהמשך). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,המשתמש הראשון יהפוך את מנהל המערכת (אתה יכול לשנות את זה בהמשך). ,App Installer,אפליקציה מתקין DocType: Workflow State,circle-arrow-up,המעגל-חץ-עד apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,מעלה ... DocType: Workflow State,italic,נטוי apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,לכולם -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: לא ניתן להגדיר יבוא ללא יצירה +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: לא ניתן להגדיר יבוא ללא יצירה apps/frappe/frappe/config/desk.py +26,Event and other calendars.,אירוע ולוחות שנה אחרת. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,גרור כדי למיין עמודות apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,ניתן להגדיר רוחב בpx או%. @@ -131,7 +131,7 @@ DocType: Contact,First Name,שם פרטים apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,לא יכול למחוק את התיקיות וקבצים מצורפים בית apps/frappe/frappe/config/desk.py +19,Files,קבצים apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,הרשאות לקבל מוחלות על משתמשים על סמך מה תפקידים שהם מוקצים. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,אין באפשרותך לשלוח מיילים הקשורים למסמך זה +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,אין באפשרותך לשלוח מיילים הקשורים למסמך זה apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,אסור לך למחוק את נושא אתר סטנדרטי DocType: Feedback Trigger,Example,דוגמא DocType: Workflow State,gift,מתנה @@ -154,7 +154,7 @@ DocType: Email Group,Total Subscribers,סה"כ מנויים apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","אם לא יש להם תפקיד גישה ברמה 0, רמות גבוהות יותר ואז הן חסרות משמעות." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,שמור כ DocType: Communication,Seen,נראה -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,הצג פרטים נוספים +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,הצג פרטים נוספים DocType: System Settings,Run scheduled jobs only if checked,הפעל עבודות מתוכננות רק אם בדקתי DocType: User,"Enter default value fields (keys) and values. If you add multiple values for a field, the first one will be picked. These defaults are also used to set ""match"" permission rules. To see list of fields, go to ""Customize Form"".","הזן שדות ערך ברירת מחדל (מקשים) וערכים. אם תוסיף ערכים מרובים עבור שדה, הראשון יהיה נטל. ברירת מחדל אלה משמשים גם לקביעת כללי רשות "התאמה". כדי לראות רשימה של שדות, ללכת "טופס התאמה אישית"." DocType: Communication,Message,הודעה @@ -177,7 +177,7 @@ DocType: Workflow State,Filter,מסנן apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} לא יכול להיות תווים מיוחדים כמו {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,עדכון ערכים רבים בבת אחת. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,שגיאה: המסמך השתנה לאחר שפתחת אותו -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: לא ניתן להגדיר הקצאה שלח אם לא Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: לא ניתן להגדיר הקצאה שלח אם לא Submittable DocType: Social Login Keys,Facebook,פייסבוק apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",מסונן על ידי "{0}" DocType: Salutation,Administrator,מנהל @@ -196,7 +196,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,קבל גל apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","המנוי שלך פג ב {0}. כדי לחדש, {1}." DocType: Workflow State,plus-sign,תוספת-סימן apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,התקנה כבר מלאה -apps/frappe/frappe/__init__.py +890,App {0} is not installed,האפליקציה {0} אינה מותקנת +apps/frappe/frappe/__init__.py +889,App {0} is not installed,האפליקציה {0} אינה מותקנת DocType: Workflow State,Refresh,רענן DocType: Event,Public,ציבור apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,מה להראות @@ -215,7 +215,7 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start DocType: Customize Form,Is Table,האם לוח DocType: Website Settings,Set Banner from Image,באנר להגדיר מתמונה apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},חשבון חדש נוצר עבורך {0} -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),נמען הזן דואר אלקטרוני (ים) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),נמען הזן דואר אלקטרוני (ים) DocType: Print Format,Verdana,Verdana apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,אין אפשרות לזהות פתוחה {0}. נסה משהו אחר. apps/frappe/frappe/core/doctype/user/user.py +292,User {0} cannot be deleted,משתמש {0} לא ניתן למחוק @@ -224,8 +224,8 @@ DocType: DocType,App,App DocType: Communication,Attachment,קובץ מצורף DocType: Property Setter,Field Name,שם שדה apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,או -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,שם מודול ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,המשך +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,שם מודול ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,המשך DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,תעודה DocType: User,Tile,אריח @@ -265,14 +265,14 @@ DocType: Communication,Type,סוג DocType: Authentication Log,Subject,נושא apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,המשתמש הוא חובה עבור שתף DocType: DocField,Hidden,מוסתר -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} יש להגדיר ראשון +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} יש להגדיר ראשון apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","השתמש כמה מילים, להימנע ביטויים נפוצים." DocType: Workflow State,plane,מטוס apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","אם אתה מעלה שיאים חדשים, ""שמות סדרה"" הופך חובה, אם קיימים." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,קבל התראות עבור היום +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,קבל התראות עבור היום apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,ניתן לשנות את שם DOCTYPE רק על ידי מנהל DocType: Report,JSON,JSON -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,קיפול לא יכול להיות בסופו של הטופס +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,קיפול לא יכול להיות בסופו של הטופס DocType: Communication,Bounced,קיפץ apps/frappe/frappe/config/setup.py +14,System and Website Users,משתמשי מערכת ואתר DocType: Workflow Document State,Doc Status,סטטוס דוק @@ -284,11 +284,11 @@ DocType: About Us Settings,Website Manager,מנהל אתר apps/frappe/frappe/model/document.py +1044,Document Queued,מסמך בתור DocType: Desktop Icon,List,רשימה DocType: Communication,Link Name,שם קישור -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,שדה {0} בשורת {1} לא ניתן להסתיר וחובה ללא ברירת מחדל +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,שדה {0} בשורת {1} לא ניתן להסתיר וחובה ללא ברירת מחדל DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy DocType: Print Settings,Send document web view link in email,שלח האינטרנט במסמך בתצוגת הקישור המופיע בדוא"ל apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,קודם -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: DocType: Currency,"Sub-currency. For e.g. ""Cent""","תת מטבע. ל"" סנט ""למשל" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,בחר את הקובץ שהועלה DocType: Letter Head,Check this to make this the default letter head in all prints,לבדוק את זה כדי להפוך את ראש מכתב ברירת המחדל זה בכל ההדפסים @@ -297,9 +297,9 @@ DocType: Desktop Icon,Link,קישור apps/frappe/frappe/utils/file_manager.py +96,No file attached,אין קובץ המצורף DocType: Version,Version,גרסה DocType: User,Fill Screen,מלא מסך -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","לא ניתן להציג דו"ח העץ הזה, עקב נתונים חסרים. סביר להניח, שהוא שסונן עקב הרשאות." +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","לא ניתן להציג דו"ח העץ הזה, עקב נתונים חסרים. סביר להניח, שהוא שסונן עקב הרשאות." apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,עריכה באמצעות העלאה -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","סוג מסמך ..., למשל לקוח" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","סוג מסמך ..., למשל לקוח" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,התנאי '{0}' אינו חוקי DocType: Workflow State,barcode,ברקוד apps/frappe/frappe/config/setup.py +232,Add your own translations,הוספת תרגומים משלך @@ -309,19 +309,19 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,יום רביעי apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","מלבד כללי רשות מבוססות תפקידים, אתה יכול להחיל הרשאות משתמשים בהתבסס על DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","הרשאות אלה יחולו על כל העסקות שבי השיא מותר קשור. לדוגמא, אם חברת C מתווספת להרשאות משתמש של X למשתמש, X המשתמש רק להיות מסוגל לראות את העסקות שיש C החברה כערך מדד." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,שדה תמונה חייב להיות fieldname תקף +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,שדה תמונה חייב להיות fieldname תקף DocType: Property Setter,ID (name) of the entity whose property is to be set,מזהה (שם) של הישות שרכושו כדי להיות מוגדר apps/frappe/frappe/limits.py +82,"To renew, {0}.","כדי לחדש, {0}." DocType: Website Settings,Website Theme Image Link,קישור לתמונת נושא אתר DocType: Web Form,Sidebar Items,פריטים Sidebar DocType: Workflow State,exclamation-sign,קריאה-סימן apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,הרשאות צג -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,שדה ציר הזמן חייב להיות קישור או קישור דינמי +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,שדה ציר הזמן חייב להיות קישור או קישור דינמי apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,גנט apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},דף {0} של {1} DocType: About Us Settings,Introduce your company to the website visitor.,להציג את החברה שלך למבקר באתר. apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ל -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},מוצלח: {0} {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},מוצלח: {0} {1} apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,אנא לשכפל זה לבצע שינויים apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,דור PDF נכשל בגלל קישורי תמונה שבורות DocType: Print Settings,Font Size,גודל גופן @@ -334,7 +334,7 @@ DocType: Email Account,Send Notification to,שלח הודעה ל DocType: DocField,Collapsible,מתקפל apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,הציל apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,אפשרויות לבחירה. כל אפשרות בשורה חדשה. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,באופן קבוע לבטל {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,באופן קבוע לבטל {0}? DocType: Workflow State,music,מוסיקה DocType: Web Page,Settings,הגדרות apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,נא לציין doctype @@ -343,11 +343,11 @@ apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,יותר DocType: Contact,Sales Manager,מנהל מכירות apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,שינוי שם DocType: Print Format,Format Data,נתונים בפורמט -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,כמו +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,כמו DocType: Customize Form Field,Customize Form Field,התאמה אישית של טופס מולא apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,לאפשר למשתמש apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,בדוק מהם המסמכים הניתנים לקריאה על ידי משתמש -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,להשתמש% ככלליים +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,להשתמש% ככלליים DocType: User,Reset Password Key,מפתח איפוס סיסמא DocType: Email Account,Enable Auto Reply,אפשר מענה אוטומטי apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,לא נראה @@ -384,7 +384,7 @@ apps/frappe/frappe/core/doctype/user/user.py +689,Cannot Update: Incorrect / Exp apps/frappe/frappe/utils/password_strength.py +58,Better add a few more letters or another word,עדיף להוסיף עוד כמה מכתבים או כל מילה אחרת DocType: DocField,Set Only Once,להגדיר רק פעם אחת apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,שם משתמש {0} כבר קיים -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: לא ניתן להגדיר ערך בשעה {1} הוא לא יביא +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: לא ניתן להגדיר ערך בשעה {1} הוא לא יביא apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},יש שגיאת תבנית הכתובת שלך {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -394,7 +394,7 @@ DocType: Communication,From Full Name,משמו המלא apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},"אין לך גישה לדו""ח: {0}" DocType: User,Send Welcome Email,שלח ברוכים הבאים apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,העלה קובץ CSV המכיל את כל הרשאות המשתמש בתבנית זהה להורדה. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,הסר סינון +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,הסר סינון DocType: Address,Personal,אישי apps/frappe/frappe/config/setup.py +113,Bulk Rename,שינוי שם גורף DocType: DocField,Heading,כותרת @@ -416,11 +416,11 @@ apps/frappe/frappe/desk/like.py +89,Liked,אהבתי apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,שלח עכשיו DocType: Report,Query,שאילתא DocType: DocType,Sort Order,סדר מיון -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""ברשימת צפייה 'לא אפשר לסוג {0} בשורת {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""ברשימת צפייה 'לא אפשר לסוג {0} בשורת {1}" DocType: Custom Field,Select the label after which you want to insert new field.,בחר את התווית לאחר שרצונך להוסיף שדה חדש. ,Document Share Report,מסמך שתף דווח DocType: User,Last Login,הביקור אחרון -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname נדרש בשורת {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname נדרש בשורת {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,טור DocType: Custom Field,Adds a custom field to a DocType,מוסיף שדה מותאם אישית לDOCTYPE DocType: File,Is Home Folder,האם בית התיקייה @@ -441,7 +441,7 @@ apps/frappe/frappe/config/setup.py +89,Log of error during requests.,יומן ש apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send to {0},מתוכנן לשלוח {0} DocType: DocShare,Everyone,כולם DocType: Workflow State,backward,אחורה -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: רק כלל אחד אפשר באותו התפקיד, ורמה {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: רק כלל אחד אפשר באותו התפקיד, ורמה {1}" DocType: Workflow State,share,מניות apps/frappe/frappe/limits.py +33,"Your subscription expired on {0}. To renew, please send an email to {1}.","המנוי שלך פג ב {0}. כדי לחדש, שלח מייל אל {1}." apps/frappe/frappe/config/setup.py +107,Set numbering series for transactions.,הגדר מספור סדרה לעסקות. @@ -455,7 +455,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,אינ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,צפה מנויים apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,גב ' DocType: Website Theme,Background Color,צבע רקע -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,היו שגיאות בעת שליחת דואר אלקטרוני. אנא נסה שוב. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,היו שגיאות בעת שליחת דואר אלקטרוני. אנא נסה שוב. DocType: Portal Settings,Portal Settings,הגדרות Portal DocType: Web Page,0 is highest,0 הוא גבוהה ביותר apps/frappe/frappe/www/login.html +104,Send Password,שלח סיסמא @@ -476,19 +476,19 @@ apps/frappe/frappe/templates/emails/new_user.html +5,Click on the link below to apps/frappe/frappe/core/page/permission_manager/permission_manager.js +408,Did not add,לא להוסיף DocType: Contact Us Settings,Contact Us Settings,צור קשר הגדרות DocType: Workflow State,text-width,text-רוחב -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,הגיעה למגבלה מרבי של קובץ מצורף לאלבום הזה. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,הגיעה למגבלה מרבי של קובץ מצורף לאלבום הזה. DocType: Email Alert,View Properties (via Customize Form),צג נכסים (באמצעות טופס התאמה אישית) apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard pattern with more turns,נסה להשתמש דפוס מקלדת כבר עם סיבובים יותר apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,"דיווחי Builder דווח מנוהלים ישירות על ידי קבלן הדו""ח. אין מה לעשות." apps/frappe/frappe/model/document.py +903,none of,אף אחד מ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,שלח לי עותק +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,שלח לי עותק apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,העלה הרשאות משתמש apps/frappe/frappe/config/website.py +7,Web Site,אתר אינטרנט apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,פריטים מסומנים יוצגו בשולחן עבודה -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} לא ניתן להגדיר עבור סוגים בודדים +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} לא ניתן להגדיר עבור סוגים בודדים apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} צופים כרגע מסמך זה apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} מעודכן -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,לא ניתן להגדיר דווח לסוגים יחיד +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,לא ניתן להגדיר דווח לסוגים יחיד apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ימים לפני DocType: Address,Address Line 1,שורת כתובת 1 DocType: Custom DocPerm,Role,תפקיד @@ -496,10 +496,10 @@ apps/frappe/frappe/utils/data.py +441,Cent,סנט apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","הברית לעבודה (למשל טיוטה, מאושר, בוטל)." DocType: Print Settings,Allow Print for Draft,אפשר הדפסה עבור טיוטה apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,כמות שנקבעה -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,שלח את המסמך הזה כדי לאשר +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,שלח את המסמך הזה כדי לאשר DocType: Contact,Unsubscribed,רישום בוטל ,Data Import Tool,נתוני יבוא כלי -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,צרף התמונה שלך +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,צרף התמונה שלך DocType: Workflow State,Stop,להפסיק DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,קישור לדף שברצונך לפתוח. שאר ריק אם אתה רוצה לעשות את זה הורה קבוצה. DocType: DocType,Is Single,בודדת @@ -507,7 +507,7 @@ apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2}, DocType: Blogger,User ID of a Blogger,זיהוי משתמש של Blogger apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,לא צריך להישאר מנהל מערכת אחת לפחות DocType: Workflow State,circle-arrow-right,המעגל-חץ ימני -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,לא יכול לפתוח למשל כאשר {0} הוא פתוח +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,לא יכול לפתוח למשל כאשר {0} הוא פתוח DocType: Email Alert,Method,שיטה DocType: Report,Script Report,התסריט דווח DocType: About Us Settings,Company Introduction,חברת מבוא @@ -529,7 +529,7 @@ DocType: DocType,Search Fields,שדות חיפוש apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,אין מסמך שנבחר apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,"ד""ר" DocType: Event,Event,אירוע -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","על {0}, {1} כתב:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","על {0}, {1} כתב:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,לא יכול למחוק את השדה סטנדרטי. אתה יכול להסתיר את זה אם אתה רוצה DocType: Top Bar Item,For top bar,לבר העליון apps/frappe/frappe/utils/bot.py +148,Could not identify {0},לא ניתן היה לזהות {0} @@ -539,7 +539,7 @@ DocType: Workflow State,heart,לב DocType: Workflow State,minus,מינוס apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,שגיאת שרת: אנא בדוק את יומני השרת או פנה תמיכה טכנית. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,דואר אלקטרוני שנשלח ברוכים הבאים -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,בואו להכין את המערכת לשימוש ראשון. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,בואו להכין את המערכת לשימוש ראשון. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,מאופיין apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,רשום כבר DocType: System Settings,Float Precision,Precision Float @@ -550,7 +550,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +222,Select Us apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,אין יישומים מותקנים apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,סמן את השדה מנדטורי כ DocType: Communication,Clicked,לחץ -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},אין הרשאות ל'{0} '{1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},אין הרשאות ל'{0} '{1} DocType: User,Google User ID,זיהוי משתמש Google DocType: DocType,Track Seen,מסלול בבלוג apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,שיטה זו יכולה רק לשמש ליצירת תגובה @@ -602,14 +602,14 @@ DocType: Feedback Trigger,Condition,מצב DocType: Contact,User ID,זיהוי משתמש DocType: Communication,Sent,נשלח DocType: File,Lft,LFT -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,פתח מודול או כלי +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,פתח מודול או כלי DocType: Communication,Delivery Status,סטטוס משלוח DocType: Module Def,App Name,שם אפליקציה DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","שדה שמייצג את מדינת Workflow של העסקה (אם השדה אינו נוכח, שדה מותאם אישית נסתר חדש ייווצר)" apps/frappe/frappe/utils/oauth.py +194,Email not verified with {1},"דוא""ל לא אומת עם {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ערוך להוסיף תוכן -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,שפות בחרו -apps/frappe/frappe/__init__.py +510,No permission for {0},אין הרשאה {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,שפות בחרו +apps/frappe/frappe/__init__.py +509,No permission for {0},אין הרשאה {0} DocType: DocType,Advanced,מתקדם apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},התייחסות: {0} {1} DocType: File,Attached To Name,מצורף לשם @@ -626,7 +626,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +27,"These wil DocType: Customize Form,Enter Form Type,הזן טופס סוג apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,לא רשומות מתויג. DocType: User,Send Password Update Notification,שלח הודעת עדכון סיסמא -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","מאפשר DOCTYPE, DOCTYPE. היזהר!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","מאפשר DOCTYPE, DOCTYPE. היזהר!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","פורמטים מותאמים להדפסה, דוא"ל" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,עדכון לגרסה חדשה DocType: Custom Field,Depends On,תלוי ב @@ -726,7 +726,7 @@ DocType: Page,Icon,אייקון apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +55,to filter values between 5 & 10,כדי לסנן ערכים בין 5 & 10 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +85,PDF,PDF DocType: System Settings,dd/mm/yyyy,dd / mm / yyyy -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,פרטי הסתרה +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,פרטי הסתרה DocType: Workflow State,Tasks,משימות DocType: Event,Tuesday,יום שלישי DocType: Blog Settings,Blog Settings,הגדרות בלוג @@ -740,9 +740,8 @@ DocType: Social Login Keys,Google Client Secret,סוד לקוח Google DocType: Website Settings,Hide Footer Signup,הסתר תחתונה הרשמה apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,הוסף קובץ פייתון באותה התיקייה שבה זה נשמר ולחזור טור ותוצאה. DocType: DocType,Sort Field,שדה מיין -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,סינון עריכה -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,שדה {0} מסוג {1} לא יכול להיות חובה -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","למשל. אם להחיל הרשאות משתמש מסומן בדוח DOCTYPE אך אין הרשאות משתמש מוגדרות בדוח למשתמש, ולאחר מכן מוצגים כל הדיווחים למשתמש ש" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,סינון עריכה +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,שדה {0} מסוג {1} לא יכול להיות חובה DocType: System Settings,Session Expiry Mobile,מושב תפוגה נייד apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,תוצאות חיפוש עבור apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,Select To Download:,בחר להורדה: @@ -773,7 +772,7 @@ DocType: Address,Contacts,מגעים DocType: System Settings,Setup Complete,התקנה מלאה apps/frappe/frappe/config/setup.py +66,Report of all document shares,דוח של כל מניות המסמך apps/frappe/frappe/www/update-password.html +18,New Password,סיסמא חדשה -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,חסר סנן {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,חסר סנן {0} apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,מצטער! אתה לא יכול למחוק הערות שנוצרו באופן אוטומטי DocType: Website Theme,Style using CSS,סגנון באמצעות CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DOCTYPE התייחסות @@ -812,7 +811,7 @@ DocType: User,Block Modules,מודולים בלוק apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,החזרה למצב אורך {0} עבור '{1}' ב '{2}'; הגדרת האורך כמו {3} תגרום עיצור של נתונים. DocType: Print Format,Custom CSS,CSS המותאם אישית apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,הוסף ביקורת -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},להתעלם ממנו: {0} {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},להתעלם ממנו: {0} {1} apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,יומן רישום של שגיאה על אירועים אוטומטיים (מתזמן). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),לא ערך פסיק תקף פרוד (קובץ CSV) DocType: Address,Postal,דואר @@ -820,7 +819,7 @@ DocType: Email Account,Default Incoming,ברירת מחדל נכנסים DocType: Workflow State,repeat,חזור DocType: Website Settings,Banner,באנר DocType: Role,"If disabled, this role will be removed from all users.","אם מושבת, התפקיד הזה יוסר מכל המשתמשים." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,עזרה בחיפוש +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,עזרה בחיפוש DocType: DocType,Hide Copy,הסתר העתקה apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,לנקות את כל התפקידים apps/frappe/frappe/model/base_document.py +361,{0} must be unique,{0} חייב להיות ייחודי @@ -846,7 +845,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,מדינה apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,כתובות DocType: Communication,Shared,מְשׁוּתָף -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,צרף הדפסת מסמך +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,צרף הדפסת מסמך DocType: Bulk Update,Field,שדה DocType: Communication,Received,קיבלתי DocType: Social Login Keys,Google Client ID,לקוח זיהוי Google @@ -867,29 +866,29 @@ DocType: User,Github User ID,זיהוי משתמש GitHub apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,אם סוג המסמך apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},אפליקציה לא ידועה {0} DocType: Communication,Chat,צ'אט -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} מופיע מספר פעמים בשורות {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} מופיע מספר פעמים בשורות {1} DocType: Communication,Expired,פג תוקף DocType: DocType,System,מערכת apps/frappe/frappe/www/login.html +93,Have an account? Login,יש לך חשבון? התחבר apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},פורמט לא ידוע הדפסה: {0} DocType: Workflow State,arrow-down,חץ למטה apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,קריסה -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},משתמש לא מורשה למחוק {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},משתמש לא מורשה למחוק {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,עדכון אחרון ביום DocType: Help Article,Likes,אוהב DocType: Website Settings,Top Bar,Top בר apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,הגדרות גלובליות: משתמשים יוכלו רק לבחור סמלים בדקו apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,דף בית / מבחן תיקייה 2 DocType: System Settings,Ignore User Permissions If Missing,להתעלם הרשאות משתמש אם חסר -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,אנא שמור את המסמך לפני ההעלאה. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,אנא שמור את המסמך לפני ההעלאה. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,הכנס את הסיסמה שלך DocType: Dropbox Settings,Dropbox Access Secret,Dropbox גישה חשאי apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,להוסיף עוד הערה apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,ערוך DOCTYPE -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,מקפלים חייבת לבוא לפני הפסקת סעיף +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,מקפלים חייבת לבוא לפני הפסקת סעיף apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,תאריך השינוי האחרון DocType: Workflow State,hand-down,יד למטה -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: לא ניתן להגדיר ביטול ללא הגשה +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: לא ניתן להגדיר ביטול ללא הגשה DocType: Website Theme,Theme,נושא apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,היו שגיאות. DocType: DocType,Is Submittable,האם Submittable @@ -906,7 +905,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,הג DocType: Website Theme,Text Color,צבע טקסט DocType: Desktop Icon,Force Show,צג חיל apps/frappe/frappe/auth.py +78,Invalid Request,בקשה לא חוקית -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,צורה זו אין כל קלט +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,צורה זו אין כל קלט apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},מושב תפוגה חייבת להיות בפורמט {0} DocType: Website Sidebar Item,Group,קבוצה DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","target = ""_blank"" בחר לפתוח בדף חדש." @@ -922,7 +921,7 @@ DocType: Email Queue,Email Queue,תור דוא"ל apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,ניתן להגדיר תפקידים עבור משתמשים מדף המשתמש שלהם. apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,הוסף תגובה DocType: DocField,Mandatory,חובה -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: לא להגדיר הרשאות בסיסיות +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: לא להגדיר הרשאות בסיסיות apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,המנוי שלך יפוג ב {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},"קישור להורדה לגיבוי שלך יישלחו לכתובת הדוא""ל הבאה: {0}" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","משמעות של הגשה, לבטל, לשנות" @@ -933,7 +932,7 @@ DocType: File,Preview HTML,התצוגה המקדימה של HTML DocType: Desktop Icon,query-report,שאילתה דיווח apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},מוקצה {0}: {1} DocType: DocField,Percent,אחוזים -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,אנא הגדר מסננים +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,אנא הגדר מסננים apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,מקושר עם DocType: Workflow State,book,ספר DocType: Website Settings,Landing Page,דף נחיתה @@ -945,7 +944,7 @@ DocType: Address Template,This format is used if country specific format is not apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,אין לך מספיק הרשאות כדי לגשת למשאב זה. צור קשר עם מנהל המערכת כדי לקבל גישה. DocType: Custom Field,Custom,מותאם אישית apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,הגדרת דואר אלקטרוני התראה על פי קריטריונים שונים. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},הודעות הגישו תחת {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},הודעות הגישו תחת {0} DocType: Email Alert,Send alert if date matches this field's value,שלח התראה אם תאריך מתאים הערך של תחום זה DocType: Workflow,Transitions,מעברים DocType: User,Login After,כניסה לאחר @@ -953,13 +952,13 @@ DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,הדפסה DocType: Workflow State,thumbs-up,אגודלים מורמים DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision צריך להיות בין 1 ל 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision צריך להיות בין 1 ל 6 apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ו DocType: Error Snapshot,Frames,מסגרות apps/frappe/frappe/patches/v6_19/comment_feed_communication.py +131,Assignment,מְשִׁימָה DocType: About Us Team Member,Image Link,תמונת קישור DocType: Workflow State,step-backward,צעד אחורה -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{} App_title +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{} App_title apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,אנא הגדר מקשי גישת Dropbox בconfig האתר שלך apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,למחוק רשומה זו כדי לאפשר שליחה לכתובת דוא"ל זו apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"רק שדות חובה נחוצים לשיאים חדשים. אתה יכול למחוק את העמודות שאינן חובה, אם תרצה." @@ -975,7 +974,7 @@ DocType: Custom DocPerm,Amend,לתקן DocType: File,Is Attachments Folder,האם תיקיית קבצים מצורפים apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,id כניסה חוקי חובה. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-פתוח -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,אנא בחר קובץ CSV תקף עם הנתונים +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,אנא בחר קובץ CSV תקף עם הנתונים apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},"{0} מסמך זה עם-משותף של האו""ם {1}" apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,סטטוס מסמך המעבר מ- {0} {1} אסור apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +130,Setting Up,הגדרה @@ -984,11 +983,10 @@ apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically apps/frappe/frappe/model/document.py +526,Record does not exist,רשומה לא קיימת apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,משתמש {0} אינו זמין apps/frappe/frappe/www/404.html +8,Page missing or moved,דף חסר או עבר -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,עריכת מאפיינים {0} DocType: DocType,Route,מַסלוּל DocType: DocField,Name,שם apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,חרגת שטח המקסימאלי של {0} עבור התכנית שלך. {1}. -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,פתח קישור +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,פתח קישור apps/frappe/frappe/desk/form/load.py +46,Did not load,לא לטעון apps/frappe/frappe/desk/query_report.py +87,Query must be a SELECT,שאילתא חייבת להיות SELECT DocType: Integration Request,Completed,הושלם @@ -999,7 +997,7 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +186,Created On,נוצר ב DocType: Workflow State,align-center,ליישר-מרכז apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,יכול לכתוב apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","סוגים מסוימים של מסמכים, כמו חשבונית, לא צריכים להיות שונה ברגע אחרון. המצב הסופי עבור מסמכים כזה נקרא הוגש. אתה יכול להגביל את התפקידים יכולים להגיש." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,אין באפשרותך לייצא דוח זה +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,אין באפשרותך לייצא דוח זה DocType: ToDo,Sender,שולח apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,השאר תגובה DocType: Web Page,Description for search engine optimization.,תיאור לקידום במנועי חיפוש. @@ -1019,7 +1017,7 @@ apps/frappe/frappe/desk/page/activity/activity_row.html +13,Logged in,ביקור apps/frappe/frappe/core/page/desktop/desktop.js +38,Explore,לַחקוֹר apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,ברירת מחדל שליחה ותיבת הדואר הנכנס DocType: Print Settings,Letter,מכתב -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,שדה תמונה חייב להיות מסוג צרף תמונה +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,שדה תמונה חייב להיות מסוג צרף תמונה DocType: Async Task,Succeeded,הצליח apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},שדות חובה הנדרשים {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?,איפוס הרשאות עבור {0}? @@ -1053,7 +1051,7 @@ DocType: DocField,Text Editor,עורך טקסט apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,הגדרות עבור אודות הדף. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,עריכה המותאמת אישית HTML DocType: Error Snapshot,Error Snapshot,תמונת מצב שגיאה -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ב +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ב DocType: Email Alert,Value Change,שינוי הערך DocType: Standard Reply,Standard Reply,תגובה סטנדרטית apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,רוחב של תיבת הקלט @@ -1068,10 +1066,10 @@ DocType: File,Preview,תצוגה מקדימה DocType: Customize Form,Use this fieldname to generate title,השתמש fieldname זה כדי ליצור כותרת apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,דוא"ל יבוא מ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,הזמן כמשתמש -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,קבצים מצורפים בחרו +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,קבצים מצורפים בחרו apps/frappe/frappe/model/naming.py +94, for {0},עבור {0} -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,"אין באפשרותך להדפיס את המסמך הזה," -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,דווח טעינה +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,"אין באפשרותך להדפיס את המסמך הזה," +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,דווח טעינה apps/frappe/frappe/limits.py +72,Your subscription will expire today.,המנוי שלך בתוקף עד היום. DocType: Page,Standard,סטנדרטי apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,לצרף קובץ @@ -1097,7 +1095,7 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js +229,Verify,ודא DocType: Workflow Document State,Update Field,עדכון שדה apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,הרחבות אזוריות apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,השאר את השיחה הזאת -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},אפשרויות לא נקבעו לקישור שדה {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},אפשרויות לא נקבעו לקישור שדה {0} DocType: Customize Form,"Must be of type ""Attach Image""",חייב להיות מסוג "צרף תמונה" apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},אתה לא יכול לבטל את הגדרה של 'קריאה בלבד' לשדה {0} apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,התקנה מלאה @@ -1125,9 +1123,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38 DocType: Workflow State,bookmark,סימנייה DocType: Note,Note,הערה apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,דוח שגיאות -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,שדה ציר הזמן חייב להיות fieldname תקף +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,שדה ציר הזמן חייב להיות fieldname תקף DocType: Currency,Symbol,סמל -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,# השורה {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,# השורה {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,"דוא""ל סיסמא חדשה" apps/frappe/frappe/auth.py +245,Login not allowed at this time,התחברות לא מותר בשלב זה DocType: Async Task,Runtime,זמן ריצה @@ -1146,7 +1144,7 @@ DocType: DocField,Text,טקסט apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,סטנדרטי משיב לשאלות נפוצות. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ברירת מחדל שליחה DocType: Workflow State,volume-off,נפח-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},אהבתי על ידי {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},אהבתי על ידי {0} DocType: Footer Item,Footer Item,פריט תחתון ,Download Backups,גיבויים להורדה apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,דף בית / מבחן תיקיית 1 @@ -1171,7 +1169,7 @@ DocType: Workflow State,flag,דגל DocType: Web Page,Text Align,טקסט יישור apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},שם אינו יכול להכיל תווים מיוחדים כמו {0} DocType: Contact Us Settings,Forward To Email Address,"קדימה To כתובת דוא""ל" -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,כותרת שדה חייב להיות תקף fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,כותרת שדה חייב להיות תקף fieldname apps/frappe/frappe/config/core.py +7,Documents,מסמכים apps/frappe/frappe/www/me.html +22,Edit Profile,ערוך פרופיל DocType: Kanban Board Column,Archived,ארכיון @@ -1215,17 +1213,17 @@ DocType: Standard Reply,Standard Reply Help,עזרת תגובה רגילה DocType: Blogger,Avatar,תמונה DocType: Blogger,Posts,הודעות apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","שמו של DOCTYPE צריך להתחיל באות והוא יכול להכיל רק אותיות, מספרים, רווחים וסימני קו תחתון" -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,יקר +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,יקר DocType: Address,Accounts User,חשבונות משתמשים DocType: Web Page,HTML for header section. Optional,HTML לסעיף כותרת. אופציונאלי apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,תכונה זו היא חדשה ועדיין ניסיונית -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,{0} שורות המרביות מוותרות +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,{0} שורות המרביות מוותרות DocType: Email Unsubscribe,Global Unsubscribe,גלובל ביטול מנוי apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,זוהי סיסמה נפוצה מאוד. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,נוֹף DocType: Communication,Assigned,שהוקצה DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,פורמט הדפסה בחר +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,פורמט הדפסה בחר apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,דפוסי מקלדת קצרים קלים לנחש DocType: Portal Settings,Portal Menu,תפריט פורטל DocType: DocField,Print Hide,הסתר הדפסה @@ -1268,14 +1266,14 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,ל apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,עדכון DocType: Error Snapshot,Snapshot View,צלם תצוגה apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,אנא שמור עלון לפני השליחה -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},אפשרויות חייבת להיות DOCTYPE חוקי בשדה {0} בשורת {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},אפשרויות חייבת להיות DOCTYPE חוקי בשדה {0} בשורת {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ערוך מאפיינים DocType: Patch Log,List of patches executed,רשימה של תיקונים שבוצעה apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} מנוי כבר -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,תקשורת בינונית +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,תקשורת בינונית DocType: Website Settings,Banner HTML,באנר HTML DocType: Error Snapshot,Pyver,Pyver -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} לא יכול להיות ""{2}"". זה צריך להיות אחד מ"" {3} """ +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} לא יכול להיות ""{2}"". זה צריך להיות אחד מ"" {3} """ apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} או {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,הצג או הסתר סמלים בשולחן העבודה apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,עדכון סיסמא @@ -1321,12 +1319,12 @@ apps/frappe/frappe/modules/utils.py +202,App not found,אפליקציה לא נ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create a {0} against a child document: {1},לא ניתן ליצור {0} נגד מסמך הילד: {1} DocType: Workflow State,pencil,עיפרון apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,הודעות צ'אט והודעות אחרות. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},הכנס לאחר לא יכול להיות מוגדר בתור {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},הכנס לאחר לא יכול להיות מוגדר בתור {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,שתף {0} עם DocType: Workflow State,hand-up,יד-עד DocType: Blog Settings,Writers Introduction,סופרי מבוא DocType: Address,Phone,טלפון -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,שגיאה בעת הערכת דוא"ל התראה {0}. תקן את התבנית שלך. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,שגיאה בעת הערכת דוא"ל התראה {0}. תקן את התבנית שלך. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,סוג המסמך בחר או תפקיד כדי להתחיל. DocType: Contact,Passive,פסיבי DocType: Contact,Accounts Manager,מנהל חשבונות @@ -1368,7 +1366,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,הרשאות משתמש הצג apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,אתה צריך להיות מחובר ויש לי תפקיד מנהל מערכת כדי שתוכל לגשת לגיבויים. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,נוֹתָר -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,אנא שמור לפני הצמדה. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,אנא שמור לפני הצמדה. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),הוסיף {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype לא יכול להיות שונה מ {0} {1} בשורה {2} apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,הרשאות תפקיד @@ -1384,9 +1382,9 @@ DocType: Event,Starts on,מתחיל ב DocType: System Settings,System Settings,הגדרות מערכת apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},האימייל הזה נשלח ל {0} והעתיק {1} DocType: Workflow State,th,ה -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},צור חדש {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},צור חדש {0} apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},דווח {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},להרחיב {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},להרחיב {0} DocType: Email Alert,Recipients,מקבלי DocType: Workflow State,ok-sign,בסדר-סימן apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,לשכפל @@ -1429,7 +1427,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 2,אפ apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} משותף מסמך זה עם {1} DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","התקנה של סרגל ניווט העליון, תחתונה ולוגו." -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},עבור {0} ברמת {1} {2} בשורת {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},עבור {0} ברמת {1} {2} בשורת {3} DocType: Contact,All,כל DocType: Email Queue,Recipient,נמען DocType: Address,Sales User,משתמש מכירות @@ -1440,7 +1438,7 @@ DocType: Workflow State,align-right,ליישר ימני DocType: Auto Email Report,Email To,דוא"ל ל apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,תיקיית {0} אינו ריק DocType: Page,Roles,תפקידים -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,שדה {0} הוא לא לבחירה. +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,שדה {0} הוא לא לבחירה. DocType: System Settings,Session Expiry,מושב תפוגה DocType: Workflow State,ban-circle,איסור העיגול DocType: Bulk Update,Desk,שולחן @@ -1451,7 +1449,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ברירות מחדל משתמש apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,צור חדש DocType: Workflow State,chevron-down,שברון למטה -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),דוא"ל לא נשלח {0} (לא רשום / נכים) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),דוא"ל לא נשלח {0} (לא רשום / נכים) DocType: Async Task,Traceback,להתחקות DocType: Currency,Smallest Currency Fraction Value,ערך שבר מטבע הקטן ביותר apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,להקצות ל @@ -1462,9 +1460,9 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,מ DocType: Website Theme,Google Font (Heading),Google גופן (כותרת) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,בחר צומת קבוצה ראשונה. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},מצא {0} ב {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},מצא {0} ב {1} DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","צרף כתקשורת נגד DOCTYPE זה (חייב להיות שדות, ""סטטוס"", ""נושא"")" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,אסור לשנות {0} לאחר הגשה +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,אסור לשנות {0} לאחר הגשה DocType: Communication,Comment Type,סוג התגובה apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,משתמשים DocType: Report,Report Type,סוג הדוח @@ -1473,13 +1471,13 @@ apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,שתף עם apps/frappe/frappe/core/page/permission_manager/permission_manager.js +136,Loading,Loading apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Facebook, Google, GitHub.","הזן מפתחות כדי לאפשר התחברות באמצעות פייסבוק, גוגל, GitHub." apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,הוסף תג -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,נא לצרף קובץ ראשון. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,נא לצרף קובץ ראשון. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","היו כמה טעויות הגדרה שם, אנא צור קשר עם המנהל" DocType: Website Slideshow Item,Website Slideshow Item,פריט מצגת אתר DocType: DocType,Title Case,כותרת Case DocType: Blog Post,Email Sent,"דוא""ל שנשלח" DocType: DocField,Ignore XSS Filter,התעלם מסנן XSS -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,שלח כדואר אלקטרוני +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,שלח כדואר אלקטרוני DocType: Website Theme,Link Color,צבע קישור apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,משתמש {0} אינו יכול להיות מבוטל apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","מנהל מערכת יקר," @@ -1499,7 +1497,7 @@ DocType: DocField,Table,שולחן DocType: File,File Size,גודל קובץ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,עליך להתחבר לישלח את הטופס הזה DocType: User,Background Image,תמונת רקע -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","בחר את המדינה, אזור הזמן ומטבע" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","בחר את המדינה, אזור הזמן ומטבע" DocType: Async Task,Queued,בתור apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,פורמט הדפסה מותאמת אישית חדש DocType: Custom DocPerm,Create,צור @@ -1516,7 +1514,7 @@ apps/frappe/frappe/desk/form/save.py +25,{0} {1} already exists,{0} {1} כבר apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To can be one of {0},צרף ליכול להיות אחד {0} DocType: User,Github Username,שם משתמש GitHub DocType: DocType,Image View,צפה בתמונה -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","הכנס לאחר שדה '{0}' המוזכר בשדה מותאם אישית '{1}', עם התווית '{2}', אינו קיים" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","הכנס לאחר שדה '{0}' המוזכר בשדה מותאם אישית '{1}', עם התווית '{2}', אינו קיים" DocType: Workflow State,signal,אות DocType: DocType,Show Print First,הדפסת תכנית ראשונה apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter כדי לפרסם @@ -1539,11 +1537,11 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,קובץ '{0}' לא נמצא apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,הסר סעיף DocType: User,Change Password,שנה סיסמא -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},"דוא""ל לא חוקי: {0}" +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},"דוא""ל לא חוקי: {0}" apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,סוף האירוע חייב להיות לאחר ההתחלה apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},אין לך הרשאה על מנת לקבל דיווח על: {0} DocType: Blog Post,Blog Post,בלוג הודעה -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,חיפוש מתקדם +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,חיפוש מתקדם apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,"הוראות לאיפוס סיסמא נשלחו לדוא""ל שלך" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +661,Sort By,מיין לפי DocType: Workflow,States,הברית @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/user/user.js +49,Set Desktop Icons,גדר סמל apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","כאשר אתה לתקן מסמך לאחר לבטל ולשמור אותו, הוא יקבל מספר חדש שהוא גרסה של המספר הישן." DocType: Workflow State,circle-arrow-left,המעגל לשמאל חץ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,שרת מטמון Redis אינו פועל. אנא פנה למנהל / תמיכה טכנית -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,לעשות תקליט חדש +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,לעשות תקליט חדש DocType: Currency,Fraction,חלק -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,בחר מלצרף קבצים קיימים +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,בחר מלצרף קבצים קיימים DocType: Custom Field,Field Description,שדה תיאור apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,שם לא קבע באמצעות שורת DocType: Website Theme,Top Bar Color,למעלה בר צבע @@ -1593,9 +1591,9 @@ apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,מידע: DocType: Custom Field,Permission Level,רמת הרשאה DocType: User,Send Notifications for Transactions I Follow,שלח הודעות לעסקות אני בצע -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: לא ניתן להגדיר שלח, לבטל, לשנות ללא כתיבה" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: לא ניתן להגדיר שלח, לבטל, לשנות ללא כתיבה" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,האם אתה בטוח שאתה רוצה למחוק את הקובץ המצורף? -apps/frappe/frappe/__init__.py +1063,Thank you,תודה לך +apps/frappe/frappe/__init__.py +1062,Thank you,תודה לך apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,שמירה DocType: Print Settings,Print Style Preview,להדפיס תצוגה מקדימה של סגנון apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -1606,10 +1604,10 @@ DocType: DocField,In List View,בצפה ברשימה DocType: Email Account,Use TLS,השימוש TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,התחברות או סיסמא לא חוקיות apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,להוסיף מותאם אישית JavaScript לצורות. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR לא +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR לא ,Role Permissions Manager,מנהל הרשאות התפקיד apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,שמו של פורמט ההדפסה החדש -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Attachment נקה +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Attachment נקה apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,חובה: ,User Permissions Manager,מנהל הרשאות משתמש DocType: Property Setter,New value to be set,ערך חדש שיוקם @@ -1631,19 +1629,19 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,לפנ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,לסווג ההודעות שנכתבו על בלוג. DocType: Workflow State,Time,זמן DocType: DocField,Attach,צרף -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} הוא לא דפוס fieldname תקף. זה צריך להיות {{}} FIELD_NAME. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} הוא לא דפוס fieldname תקף. זה צריך להיות {{}} FIELD_NAME. DocType: Custom Role,Permission Rules,כללי רשות DocType: Address,Links,קישורים -apps/frappe/frappe/model/base_document.py +428,Value missing for,הערך חסר ל +apps/frappe/frappe/model/base_document.py +427,Value missing for,הערך חסר ל apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,הוסף לילדים -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: שיא הוגש לא ניתן למחוק. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: שיא הוגש לא ניתן למחוק. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,גודל גיבוי -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,סוג חדש של מסמך +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,סוג חדש של מסמך DocType: Custom DocPerm,Read,קראו apps/frappe/frappe/www/update-password.html +14,Old Password,סיסמא הישנה -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},הודעות של {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},הודעות של {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","לעמודים בפורמט, לתת תוויות עמודה בשאילתא." -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: לא ניתן להגדיר הקצאת תיקון אם לא Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: לא ניתן להגדיר הקצאת תיקון אם לא Submittable apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,הרשאות תפקיד עריכה DocType: Communication,Link DocType,DOCTYPE קישור DocType: Social Login Keys,Social Login Keys,חברתי מפתחות כניסה @@ -1719,7 +1717,7 @@ DocType: Contact Us Settings,Pincode,Pincode apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure that there are no empty columns in the file.,אנא ודא שאין עמודות ריקות בקובץ. apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,ודא שיש לך פרופיל את כתובת הדוא"ל של apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,יש לך שינויים שלא נשמרו בצורה זו. אנא שמור לפני שתמשיך. -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,ברירת מחדל עבור {0} חייב להיות אופציה +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,ברירת מחדל עבור {0} חייב להיות אופציה DocType: User,User Image,תמונת משתמש apps/frappe/frappe/email/queue.py +289,Emails are muted,מיילים מושתקים apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up @@ -1746,7 +1744,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,הפעול DocType: Workflow State,ok,בסדר DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ערכים אלה יהיו מעודכנים באופן אוטומטי בעסקות וגם יהיה שימושי כדי להגביל הרשאות למשתמש זה על עסקות המכילות את הערכים הללו. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Publisher -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** נכשל: {0} {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** נכשל: {0} {1}: {2} apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,חפש ב apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,הודעות הדוא"ל שנשלחו apps/frappe/frappe/utils/password_strength.py +32,"No need for symbols, digits, or uppercase letters.","אין צורך סימנים, ספרות, או אותיות רישיות." @@ -1756,7 +1754,7 @@ DocType: Async Task,Running,ריצה apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,איפוס סיסמא apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,שדרג להוסיף יותר {0} מנויים DocType: Workflow State,hand-left,יד שמאל -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} עבור {1} לא יכול להיות ייחודי +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} עבור {1} לא יכול להיות ייחודי DocType: Email Account,Use SSL,השתמש ב- SSL DocType: Workflow State,play-circle,משחק-המעגל apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,בחר פורמט להדפסה לעריכה @@ -1796,7 +1794,7 @@ DocType: ToDo,ToDo,ToDo DocType: DocField,No Copy,לא העתק DocType: Workflow State,qrcode,QRCode DocType: Web Form,Breadcrumbs,פירורי לחם -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,אם בעלים +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,אם בעלים apps/frappe/frappe/website/doctype/web_form/web_form.py +130,You need to be logged in to access this {0}.,אתה צריך להיות מחובר כדי לגשת זה {0}. apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +142,Complete By,שלם על ידי apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} על ידי {1} @@ -1809,7 +1807,7 @@ DocType: Desktop Icon,Page,דף apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},לא ניתן למצוא {0} ב {1} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,שמות ושמות משפחה בעצמם קלים לניחוש. DocType: Workflow State,briefcase,תיק -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ערך לא ניתן לשנות עבור {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ערך לא ניתן לשנות עבור {0} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","סגנון מייצג את צבען: הצלחה - ירוק, סכנה - אדום, הפוך - שחור, יסודי - כחול כהה, מידע - Light Blue, אזהרה - אורנג '" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,לא דווח על טעון. אנא השתמש בשאילתא-דו"ח / [שם דוח] לרוץ דו"ח. DocType: Workflow Transition,Workflow Transition,מעבר זרימת עבודה @@ -1865,7 +1863,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +21,Select A apps/frappe/frappe/config/setup.py +230,Custom Translations,תרגומים אישית apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,התקדמות apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,על ידי תפקיד -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,חיפוש בסוג מסמך +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,חיפוש בסוג מסמך apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,שדה 'אפשר להישאר לעריכה גם לאחר הגשה DocType: Custom DocPerm,Role and Level,תפקיד ורמה DocType: File,Thumbnail URL,כתובת תמונה ממוזערת @@ -1954,7 +1952,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,טקסט קטן apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,מנהל נצפה {0} על {1} באמצעות כתובת IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,שווה -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"הסוג של שדה אפשרויות 'הקישור דינמי ""חייב להצביע על עוד קישור שדה עם אפשרויות כמו' DOCTYPE '" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"הסוג של שדה אפשרויות 'הקישור דינמי ""חייב להצביע על עוד קישור שדה עם אפשרויות כמו' DOCTYPE '" DocType: About Us Settings,Team Members Heading,חברי צוות בראש apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,פורמט CSV חוקי DocType: DocField,Do not allow user to change after set the first time,אל תאפשר למשתמש לשנות להגדיר לאחר הפעם הראשונה @@ -1980,7 +1978,7 @@ DocType: Print Settings,PDF Settings,הגדרות PDF DocType: Kanban Board Column,Column Name,שם עמודה DocType: Language,Based On,המבוסס על apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,הפוך לברירת מחדל -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} עבור {1} לא ניתן באינדקס +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} עבור {1} לא ניתן באינדקס DocType: Communication,Email Account,"חשבון דוא""ל" DocType: Workflow State,Download,הורדה DocType: Blog Post,Blog Intro,בלוג Intro @@ -1990,7 +1988,7 @@ DocType: DocField,Display Depends On,התצוגה תלויה DocType: Web Page,Insert Code,הכנס קוד DocType: ToDo,Low,נמוך apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,אתה יכול להוסיף תכונות דינמיות מהמסמך באמצעות בניית תבנית ג'ינג'ה. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,רשימת סוג מסמך +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,רשימת סוג מסמך DocType: Event,Ref Type,"סוג נ""צ" apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","אם אתה מעלה שיאים חדשים, לעזוב את ריק עמודת ""שם"" (ID)." apps/frappe/frappe/config/core.py +47,Errors in Background Events,שגיאות באירועי רקע @@ -2008,20 +2006,20 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,שלח הדפסה כקובץ PDF DocType: Web Form,Amount,הסכום DocType: Workflow Transition,Allowed,מחמד -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,לא יכול להיות רק אחד מקפלים בצורה +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,לא יכול להיות רק אחד מקפלים בצורה apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,שחזור להגדרות ברירת המחדל? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,דף בית לא חוקי apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,מסנני איפוס -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: GNU ברמה 0 חייבים להיות מוגדר לפני רמות גבוהות יותר מוגדרות +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: GNU ברמה 0 חייבים להיות מוגדר לפני רמות גבוהות יותר מוגדרות apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},משימה נסגרה על ידי {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,לחשב +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,לחשב apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,אנא בחר DOCTYPE ראשון apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,אשר הדואר האלקטרוני שלך apps/frappe/frappe/www/login.html +42,Or login with,או התחבר עם DocType: Error Snapshot,Locals,המקומיים apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},הודעה דרך {0} על {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} הזכיר אותך בהערה ב {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,למשל (55 + 434) / 4 או = מתמטיקה.חטא (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,למשל (55 + 434) / 4 או = מתמטיקה.חטא (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} נדרש DocType: Social Login Keys,GitHub Client ID,GitHub Client ID DocType: Contact Us Settings,City,עיר @@ -2030,8 +2028,8 @@ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,א DocType: Web Page,Web Page,דף האינטרנט DocType: Blog Category,Blogger,Blogger apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,רשימת צפייה -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},תאריך חייב להיות בפורמט: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,המשתמש הראשון: אתה +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},תאריך חייב להיות בפורמט: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,המשתמש הראשון: אתה apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,בחרו עמודות apps/frappe/frappe/www/login.py +55,Missing parameters for login,פרמטרים חסרים להתחברות DocType: Workflow State,folder-open,תיקייה פתוחה @@ -2060,7 +2058,7 @@ apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Expo DocType: Website Theme,Background,רקע DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","רשימת JSON של DocTypes משמש להחיל הרשאות משתמש. אם ריק, כל DocTypes קשור ישמש להחיל הרשאות משתמש." DocType: Report,Ref DocType,"נ""צ DOCTYPE" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: לא ניתן להגדיר לתקן בלי לבטל +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: לא ניתן להגדיר לתקן בלי לבטל apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,דף מלא DocType: DocType,Is Child Table,האם ילד של הטבלה apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} חייב להיות אחד {1} @@ -2075,7 +2073,7 @@ DocType: Website Slideshow,This goes above the slideshow.,זה הולך מעל apps/frappe/frappe/config/setup.py +260,Install Applications.,התקנת יישומים. DocType: Contact,Last Name,שם משפחה DocType: Event,Private,פרטי -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,אין התראות להיום +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,אין התראות להיום DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),"שלח קבצים מצורפים הדפסת דוא""ל כקובץ PDF (מומלץ)" DocType: Web Page,Left,עזב DocType: Event,All Day,כל היום @@ -2085,7 +2083,7 @@ DocType: Workflow Action,Workflow Action,פעולה זרימת עבודה DocType: Event,Send an email reminder in the morning,"שלח תזכורת בדוא""ל בבוקר" DocType: Blog Post,Published On,פורסם ב DocType: Contact,Gender,מין -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,שדה '{0}' לא ניתן להגדיר כייחודי שכן יש ערכים שאינם ייחודיים +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,שדה '{0}' לא ניתן להגדיר כייחודי שכן יש ערכים שאינם ייחודיים DocType: Footer Item,URL,כתובת האתר DocType: ToDo,Reference Type,סוג ההתייחסות DocType: Event,Repeat On,חזור על פעולה ב @@ -2097,7 +2095,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,אזהרה-סימן DocType: Workflow State,User,משתמש DocType: Website Settings,"Show title in browser window as ""Prefix - title""",כותרת הצג בחלון דפדפן כמו "קידומת - כותרת" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,טקסט בסוג המסמך +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,טקסט בסוג המסמך DocType: Bulk Update,Update Value,עדכון ערך apps/frappe/frappe/public/js/frappe/request.js +137,Something went wrong,משהו השתבש DocType: System Settings,Number Format,פורמט המספר @@ -2116,8 +2114,8 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ה apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} מנויים הוסיפו apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,לא ב DocType: Workflow State,star,כוכב -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ערכים מופרדים בפסיקים -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},רוחב מרבי למטבע סוג הוא 100px בשורת {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ערכים מופרדים בפסיקים +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},רוחב מרבי למטבע סוג הוא 100px בשורת {0} apps/frappe/frappe/config/website.py +13,Content web page.,דף אינטרנט תוכן. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,הוסף תפקיד חדש apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went wrong,אופס! משהו השתבש @@ -2128,7 +2126,7 @@ DocType: Address,Office,משרד apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,דוחות סטנדרטיים DocType: User,Email Settings,הגדרות דואר אלקטרוני apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} לא חוקי מדינה -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,שדה חיפוש {0} אינו חוקי +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,שדה חיפוש {0} אינו חוקי DocType: Workflow State,ok-circle,בסדר-המעגל apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',אתה יכול למצוא דברים בשאלה 'למצוא כתום לקוחות' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,סליחה! משתמש צריך להיות גישה מלאה לשיא שלהם. @@ -2176,7 +2174,7 @@ DocType: User,Security Settings,הגדרות אבטחה apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +863,Add Column,להוסיף טור ,Desktop,שולחן עבודה DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,טקסט שיוצג לקישור לדף אינטרנט אם טופס זה יש דף אינטרנט. מסלול קישור יהיה באופן אוטומטי המבוסס על `` page_name` וparent_website_route` -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,אנא הגדר {0} ראשון +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,אנא הגדר {0} ראשון DocType: Patch Log,Patch,תיקון DocType: Async Task,Failed,נכשל apps/frappe/frappe/core/page/data_import_tool/importer.py +54,No data found,לא נמצאו נתונים diff --git a/frappe/translations/hi.csv b/frappe/translations/hi.csv index b8913fdf3d..705ab7ac57 100644 --- a/frappe/translations/hi.csv +++ b/frappe/translations/hi.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,फेसबुक यूजर का नाम DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,नोट: कई सत्रों मोबाइल डिवाइस के मामले में अनुमति दी जाएगी apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},उपयोगकर्ता के लिए सक्षम ईमेल इनबॉक्स {} उपयोगकर्ताओं apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,इस ईमेल भेजने के लिए नहीं कर सकते हैं। आप इस महीने के लिए {0} ईमेल भेजने की सीमा को पार कर चुके हैं। -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,स्थायी रूप से {0} सबमिट करें ? DocType: Address,County,काउंटी DocType: Workflow,If Checked workflow status will not override status in list view,जाँचा वर्कफ़्लो स्थिति सूची दृश्य में स्थिति पर हावी नहीं होगा तो apps/frappe/frappe/client.py +280,Invalid file path: {0},अवैध फाइल पथ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,एक apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ट्री DocType: User,User Emails,उपयोगकर्ता ईमेल DocType: User,Username,यूजर का नाम -apps/frappe/frappe/model/base_document.py +581,Value too big,मूल्य भी बड़ा +apps/frappe/frappe/model/base_document.py +580,Value too big,मूल्य भी बड़ा DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,स्क्रिप्ट टेस्ट चलाएं DocType: Contact,Department,विभाग @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,लॉग को DocType: Custom DocPerm,This role update User Permissions for a user,एक उपयोगकर्ता के लिए यह भूमिका अद्यतन उपयोगकर्ता अनुमतियाँ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},नाम बदलें {0} DocType: Workflow State,zoom-out,ज़ूम आउट -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,इसके उदाहरण खुला है जब {0} नहीं खोल सकता +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,इसके उदाहरण खुला है जब {0} नहीं खोल सकता apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,टेबल {0} खाली नहीं हो सकता apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,बहीखाते के साथ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,इमेजिस DocType: Communication,Reference Owner,संदर्भ मालिक DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,सबसे छोटा घूम अंश इकाई (सिक्का)। यह 0.01 के रूप में दर्ज किया जाना चाहिए और अमरीकी डालर के लिए उदाहरण के 1 प्रतिशत के लिए DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, पंक्ति {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, पंक्ति {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,एक पूरा नाम दे। apps/frappe/frappe/model/document.py +904,Beginning with,इसके साथ शुरुआत apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,डेटा आयात खाका apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,माता-पिता DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","सक्षम होने पर, न्यूनतम पासवर्ड स्कोर मान के आधार पर पासवर्ड की ताकत को लागू किया जाएगा। 2 का मतलब मध्यम मजबूत और 4 बहुत मजबूत है।" DocType: About Us Settings,"""Team Members"" or ""Management""","टीम के सदस्यों" या "प्रबंधन" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',क्षेत्र की 'चेक' प्रकार के लिए डिफ़ॉल्ट या तो '0' या '1' होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',क्षेत्र की 'चेक' प्रकार के लिए डिफ़ॉल्ट या तो '0' या '1' होना चाहिए apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,कल DocType: Contact,Designation,पदनाम DocType: Test Runner,Test Runner,टेस्ट धावक @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,प्रकाशित क्षेत् DocType: Email Group,Email Group,ईमेल समूह DocType: Note,Seen By,द्वारा देखा गया apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,मल्टीपल जोड़ें -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,उसके जैसा नहीं +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,उसके जैसा नहीं apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,क्षेत्र के लिए प्रदर्शन लेबल सेट apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},गलत मूल्य: {0} होना चाहिए {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","बदले क्षेत्र गुण (छुपाने , केवल पढ़ने के लिए , अनुमति आदि )" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,के apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,प्रशासक लॉग में DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","संपर्क विकल्प, आदि एक नई लाइन पर प्रत्येक "बिक्री प्रश्न, प्रश्न समर्थन" कोमा से विभाजित." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. डाउनलोड -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,सम्मिलित करें +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,सम्मिलित करें apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},चयन करें {0} DocType: Print Settings,Classic,क्लासिक DocType: Desktop Icon,Color,रंग @@ -121,7 +121,7 @@ DocType: Translation,Translation,अनुवाद apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,स्थापित करें apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,श्री DocType: Custom Script,Client,ग्राहक -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,आप इसे लोड करने के बाद यह फार्म संशोधित किया गया है +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,आप इसे लोड करने के बाद यह फार्म संशोधित किया गया है DocType: User Permission for Page and Report,User Permission for Page and Report,पृष्ठ और रिपोर्ट के लिए उपयोगकर्ता की अनुमति DocType: Address,Himachal Pradesh,हिमाचल प्रदेश DocType: System Settings,"If not set, the currency precision will depend on number format","यदि सेट नहीं है, तो मुद्रा सटीक संख्या प्रारूप पर निर्भर करेगा" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,कारण apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,उपयोगकर्ता निर्दिष्ट करें DocType: Email Unsubscribe,Email Unsubscribe,ईमेल सदस्यता रद्द DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,अच्छे परिणाम के लिए एक पारदर्शी पृष्ठभूमि के साथ लगभग चौड़ाई 150px की एक छवि का चयन करें. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,सिस्टम मैनेजर बन जाएगा पहले उपयोगकर्ता (आप इस पर बाद में बदल सकते हैं)। +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,सिस्टम मैनेजर बन जाएगा पहले उपयोगकर्ता (आप इस पर बाद में बदल सकते हैं)। ,App Installer,अनुप्रयोग इंस्टालर DocType: Workflow State,circle-arrow-up,वृत्त - तीर अप apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,अपलोड हो रहा है ... DocType: Email Domain,Email Domain,ईमेल डोमेन DocType: Workflow State,italic,तिरछा apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,सभी के लिए -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : बनाएँ बिना आयात सेट नहीं कर सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : बनाएँ बिना आयात सेट नहीं कर सकता apps/frappe/frappe/config/desk.py +26,Event and other calendars.,घटना और अन्य कैलेंडरों। apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,टिप्पणी सबमिट करने के लिए सभी फ़ील्ड आवश्यक हैं apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,तरह स्तंभों को खींचें @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,स्टैंडर्ड स apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,घर और संलग्नक फ़ोल्डरों नष्ट नहीं कर सकते apps/frappe/frappe/config/desk.py +19,Files,फ़ाइलें apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,अनुमतियां वे आवंटित कर रहे हैं क्या भूमिका के आधार पर उपयोगकर्ताओं पर लागू हो . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,आप इस दस्तावेज़ से संबंधित ईमेल भेजने की अनुमति नहीं है -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,कृपया {0} सॉर्ट करने के लिए / समूह से कम से कम 1 स्तंभ का चयन करें +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,आप इस दस्तावेज़ से संबंधित ईमेल भेजने की अनुमति नहीं है +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,कृपया {0} सॉर्ट करने के लिए / समूह से कम से कम 1 स्तंभ का चयन करें DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,इस जाँच करें कि आप अपने भुगतान सैंडबॉक्स एपीआई का उपयोग कर परीक्षण कर रहे हैं apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,आप एक मानक वेबसाइट के विषय को नष्ट करने की अनुमति नहीं है DocType: Feedback Trigger,Example,उदाहरण @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,कुल ग्राहकों apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","एक रोल 0 स्तर पर पहुँच नहीं है , तो उच्च स्तर व्यर्थ कर रहे हैं ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,के रूप में सहेजें DocType: Communication,Seen,देखा -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,अधिक जानकारी के दिखाओ +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,अधिक जानकारी के दिखाओ DocType: System Settings,Run scheduled jobs only if checked,जाँच केवल अगर अनुसूचित नौकरियों भागो apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,अगर केवल अनुभाग शीर्षकों सक्षम हैं दिखाया जाएगा apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,संग्रह @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,दिखाए apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,आवश्यक मान्य ईमेल और नाम DocType: DocType,Hide Heading,शीर्षक छिपाएँ DocType: Address,Current,वर्तमान -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,संबंधित दस्तावेज apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Doctypes का समूह DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,Remove-वृत्त @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,फिल्टर apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} की तरह विशेष वर्ण नहीं हो सकता है {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,एक समय में कई मूल्यों को अद्यतन करें। apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,त्रुटि: आप इसे खोल दिया है के बाद दस्तावेज़ संशोधित किया गया है -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट पाया नहीं कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> पता टेम्पलेट से एक नया बनाएं। apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} लॉग आउट: {1} DocType: Address,West Bengal,पश्चिम बंगाल -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : असाइन सबमिट सेट नहीं कर सकता Submittable यदि नहीं +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : असाइन सबमिट सेट नहीं कर सकता Submittable यदि नहीं DocType: Social Login Keys,Facebook,फेसबुक apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",छानने का आधार "{0}" DocType: Salutation,Administrator,प्रशासक @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,ब्लॉग शीर्षक apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,स्टैंडर्ड भूमिकाओं निष्क्रिय नहीं किया जा सकता है DocType: Address,Mizoram,मिजोरम DocType: Newsletter,Newsletter,न्यूज़लैटर -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,द्वारा क्रम में उप क्वेरी का उपयोग नहीं किया जा सकता +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,द्वारा क्रम में उप क्वेरी का उपयोग नहीं किया जा सकता DocType: Web Form,Button Help,बटन की मदद DocType: Kanban Board Column,purple,बैंगनी DocType: About Us Settings,Team Members,टीम के सदस्यों को @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","आपकी सदस्यता {0} को समाप्त हो गई। नवीनीकृत करने के लिए, {1}।" DocType: Workflow State,plus-sign,प्लस पर हस्ताक्षर apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,सेटअप पहले से ही पूरा -apps/frappe/frappe/__init__.py +890,App {0} is not installed,अनुप्रयोग {0} स्थापित नहीं है +apps/frappe/frappe/__init__.py +889,App {0} is not installed,अनुप्रयोग {0} स्थापित नहीं है DocType: Workflow State,Refresh,ताज़ा करना DocType: Event,Public,सार्वजनिक apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,दिखाने के लिए कुछ भी नहीं @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,द्वार apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ई - मेल समर्थन DocType: DocField,Print Hide If No Value,प्रिंट छिपाने का कोई मूल्य नहीं DocType: Event,yellow,पीला -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,प्रकाशित किया जाता है फील्ड चाहिए एक वैध FIELDNAME हो +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,प्रकाशित किया जाता है फील्ड चाहिए एक वैध FIELDNAME हो apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,अनुलग्नक अपलोड करें DocType: Block Module,Block Module,ब्लॉक मॉड्यूल apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,निर्यात खाका @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,व DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},एक नया खाता में आप के लिए बनाया गया है {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,निर्देश ईमेल -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),दर्ज ईमेल प्राप्तकर्ता (ओं) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),दर्ज ईमेल प्राप्तकर्ता (ओं) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ईमेल करें कतार apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,खुला पहचान नहीं कर सकते {0}। कुछ और प्रयास करें। @@ -303,8 +301,8 @@ DocType: Communication,Message ID,संदेश ID DocType: Property Setter,Field Name,फ़ील्ड का नाम apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite कॉन्फ़िगर नहीं है apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,या -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,मोड्यूल का नाम ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,जारी रखें +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,मोड्यूल का नाम ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,जारी रखें DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,प्रमाणपत्र DocType: User,Tile,टाइल @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,सभी संस्करणों दिखाएँ DocType: Workflow State,Print,छाप DocType: User,Restrict IP,आईपी प्रतिबंधित करें +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,डैशबोर्ड apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,इस समय ईमेल भेजने में असमर्थ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,आज्ञा खोजें या लिखें DocType: Communication,Timeline Name,इस समय नाम @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,बिक्री मास्टर प apps/frappe/frappe/www/complete_signup.html +13,One Last Step,एक अंतिम कदम apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,इस फील्ड को लिंक करने के लिए दस्तावेज़ प्रकार (DocType) का नाम दर्ज या चयन करे। उदाहरण: Customer DocType: User,Roles Assigned,निरुपित भूमिकाओं -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,खोज सहायता +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,खोज सहायता DocType: Top Bar Item,Parent Label,माता - पिता लेबल apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","आपकी क्वेरी से प्राप्त किया गया है। हम जल्द ही वापस जवाब देंगे। आप किसी भी अतिरिक्त जानकारी है, तो इस मेल का जवाब दें।" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,अनुमतियाँ स्वतः मानक रिपोर्टों और खोजों के लिए अनुवाद कर रहे हैं . @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,संपादन शीर्षक DocType: File,File URL,फ़ाइल URL DocType: Version,Table HTML,टेबल HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'के लिए कोई परिणाम नहीं मिला'

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,सदस्य जोड़ें apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,आज के लिए आगामी घटनाएँ DocType: Email Alert Recipient,Email By Document Field,दस्तावेज़ क्षेत्र द्वारा ईमेल @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,राशि क्षेत्र क apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,उपयोगकर्ता शेयर के लिए अनिवार्य है DocType: DocField,Hidden,छुपा DocType: Web Form,Allow Incomplete Forms,दो या दो रूपों की अनुमति दें -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} पहले सेट किया जाना चाहिए +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} पहले सेट किया जाना चाहिए apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","कुछ शब्दों का प्रयोग करें, आम वाक्यांशों से बचें।" DocType: Workflow State,plane,विमान -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,उफ़। आपका भुगतान में नाकाम रही है। apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","आप नए रिकॉर्ड अपलोड कर रहे हैं, तो मौजूद है, ""सीरीज का नामकरण"", अनिवार्य हो जाता है।" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,आज के लिए अलर्ट प्राप्त करें +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,आज के लिए अलर्ट प्राप्त करें apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,Doctype केवल प्रशासक द्वारा नाम दिया जा सकता apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},की परिवर्तित मान {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,सत्यापन के लिए अपने ईमेल की जाँच करें -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,मोड़ो फार्म के अंत में नहीं किया जा सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,मोड़ो फार्म के अंत में नहीं किया जा सकता DocType: Communication,Bounced,बाउंस DocType: Deleted Document,Deleted Name,हटाए गए नाम apps/frappe/frappe/config/setup.py +14,System and Website Users,सिस्टम और वेबसाइट के उपयोगकर्ताओं @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,दस्तावे DocType: GSuite Templates,Destination ID,गंतव्य आईडी DocType: Desktop Icon,List,लिस्ट DocType: Communication,Link Name,लिंक का नाम -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,फ़ील्ड {0} पंक्ति में {1} डिफ़ॉल्ट बिना छिपा हुआ है और अनिवार्य नहीं किया जा सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,फ़ील्ड {0} पंक्ति में {1} डिफ़ॉल्ट बिना छिपा हुआ है और अनिवार्य नहीं किया जा सकता DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,अवैध पासवर्ड: DocType: Print Settings,Send document web view link in email,भेजें ईमेल में दस्तावेज़ वेब दृश्य लिंक apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,दस्तावेज़ के लिए अपनी प्रतिक्रिया {0} सफलतापूर्वक सहेजा गया है apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,पिछला -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,पुन: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,पुन: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} के लिए पंक्तियों {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",उप - मुद्रा. उदाहरण के लिए "प्रतिशत" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,अपलोड की गई फ़ाइल का चयन करें @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,लिंक apps/frappe/frappe/utils/file_manager.py +96,No file attached,नहीं जुड़े फाइल DocType: Version,Version,संस्करण DocType: User,Fill Screen,स्क्रीन को भरने -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","कारण लापता डेटा के लिए, इस पेड़ की रिपोर्ट प्रदर्शित करने में असमर्थ। सबसे अधिक संभावना है, यह कारण अनुमतियों के लिए बाहर फ़िल्टर्ड किया जा रहा है।" +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाता से डिफ़ॉल्ट ईमेल खाता सेटअप करें +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","कारण लापता डेटा के लिए, इस पेड़ की रिपोर्ट प्रदर्शित करने में असमर्थ। सबसे अधिक संभावना है, यह कारण अनुमतियों के लिए बाहर फ़िल्टर्ड किया जा रहा है।" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. फ़ाइल का चयन करें apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,अपलोड के माध्यम से संपादित करें -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","दस्तावेज़ प्रकार ..., जैसे ग्राहक" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","दस्तावेज़ प्रकार ..., जैसे ग्राहक" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,स्थिति '{0}' अमान्य है DocType: Workflow State,barcode,बारकोड apps/frappe/frappe/config/setup.py +232,Add your own translations,अपने खुद के अनुवाद जोड़े @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,बुधवार apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","इसके अलावा रोल आधारित अनुमति नियमों से , आप doctypes के आधार पर उपयोगकर्ता अनुमतियाँ लागू कर सकते हैं ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","यह अनुमतियाँ उन सभी लेनदेन दस्तावेजो पर लागू होंगे जहां अनुमतीत अभिलेख शृंखलित है। मिसाल के तौर पर, यदि कंपनी-सी यूजर-क्ष के यूजर्स पेर्मिशन्स के द्वारा जोड़े जाने पर, यूजर-क्ष सिर्फ उसी लेनदेन दस्तावेजो को देख पायेगा जो कंपनी-सी से जुडी होगी।" -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,छवि क्षेत्र एक वैध FIELDNAME होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,छवि क्षेत्र एक वैध FIELDNAME होना चाहिए DocType: OAuth Client,Token,टोकन DocType: Property Setter,ID (name) of the entity whose property is to be set,इकाई जिनकी संपत्ति को सेट किया जा रहा है की आईडी (नाम) apps/frappe/frappe/limits.py +82,"To renew, {0}.","नवीनीकृत करने के लिए, {0}।" @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,साइडबार आइटम apps/frappe/frappe/installer.py +125,App {0} already installed,ऐप {0} पहले से स्थापित है DocType: Workflow State,exclamation-sign,विस्मयादिबोधक हस्ताक्षर apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,शो अनुमतियां -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,इस समय क्षेत्र एक लिंक या गतिशील लिंक होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,इस समय क्षेत्र एक लिंक या गतिशील लिंक होना चाहिए apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,तिथि सीमा apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,गैंट apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},पृष्ठ {0} {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,वे apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","एन्क्रिप्शन कुंजी अमान्य है, कृपया site_config.json जांचें" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,को DocType: Kanban Board Column,darkgrey,गहरा भूरा -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},सफल: {0} को {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},सफल: {0} को {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,डेमो में उपयोगकर्ता विवरण बदल नहीं सकते कृपया https://erpnext.com पर एक नए खाते के लिए साइनअप करें apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,परिवर्तन करने के लिए इस दोहरे कृपया apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,छवियों के खंडित लिंक के कारण PDF उत्पादन असफल हुआ @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,खुलने और बंधनेवाला apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,सहेजा गया apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,तुम्हें किसमें मदद चाहिए? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,चयन के लिए विकल्प। एक नई लाइन पर प्रत्येक विकल्प। -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,स्थायी रूप से {0} रद्द करें? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,स्थायी रूप से {0} रद्द करें? DocType: Workflow State,music,संगीत DocType: Web Page,Settings,सेटिंग्स apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,टैग निर्दिष्ट करें DocType: Print Format,Style Settings,शैली सेटिंग्स -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,क्रमबद्ध क्षेत्र {0} एक वैध FIELDNAME होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,क्रमबद्ध क्षेत्र {0} एक वैध FIELDNAME होना चाहिए apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,अधिक DocType: Contact,Sales Manager,बिक्री प्रबंधक apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,नाम बदलें DocType: Print Format,Format Data,स्वरूप डेटा -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,जैसा +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,जैसा DocType: Customize Form Field,Customize Form Field,प्रपत्र फ़ील्ड अनुकूलित apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,उपयोगकर्ता की अनुमति DocType: OAuth Client,Grant Type,अनुदान के प्रकार apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,दस्तावेज़ किसी उपयोगकर्ता द्वारा पठनीय हैं जो जांच करें apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,लिस्टिंग ऐप को अनुमति नहीं है -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,वाइल्डकार्ड के रूप में% का उपयोग -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","ईमेल डोमेन इस खाते के लिए नियोजित नहीं है, एक बनाएँ?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,वाइल्डकार्ड के रूप में% का उपयोग +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ईमेल डोमेन इस खाते के लिए नियोजित नहीं है, एक बनाएँ?" DocType: User,Reset Password Key,पासवर्ड को रीसेट DocType: Email Account,Enable Auto Reply,ऑटो जवाब सक्षम करें apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,नहीं देखा @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,केवल एक बार सेट DocType: Email Queue Recipient,Email Queue Recipient,ईमेल कतार प्राप्तकर्ता DocType: Address,Nagaland,नगालैंड apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,प्रयोक्ता नाम {0} पहले से ही मौजूद है -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} {1} आयात योग्य नहीं है के रूप में आयात सेट नहीं कर सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} {1} आयात योग्य नहीं है के रूप में आयात सेट नहीं कर सकता apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},अपनी पता टेम्पलेट में कोई त्रुटि है {0} DocType: Footer Item,"target = ""_blank""",लक्ष्य = "_blank" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,पूरा नाम से apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},आप रिपोर्ट के लिए पहुँच नहीं है: {0} DocType: User,Send Welcome Email,स्वागत ईमेल भेजें apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,डाउनलोड के रूप में एक ही प्रारूप में सभी उपयोगकर्ता अनुमतियाँ युक्त सीएसवी फाइल अपलोड करें. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,फ़िल्टर निकालें +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,फ़िल्टर निकालें DocType: Address,Daman and Diu,दमन और दीव DocType: Address,Personal,व्यक्तिगत apps/frappe/frappe/config/setup.py +113,Bulk Rename,थोक नाम बदलें @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","मानक डॉकटाइप डिफ़ॉल्ट प्रिंट प्रारूप नहीं हो सकता, कस्टमाइज़ फ़ॉर्म का उपयोग करें" DocType: Report,Query,प्रश्न DocType: DocType,Sort Order,सॉर्ट क्रम -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},' सूची दृश्य में ' की अनुमति नहीं प्रकार के लिए {0} पंक्ति में {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},' सूची दृश्य में ' की अनुमति नहीं प्रकार के लिए {0} पंक्ति में {1} DocType: Custom Field,Select the label after which you want to insert new field.,लेबल का चयन करें जिसके बाद आप नए क्षेत्र सम्मिलित करना चाहते हैं. ,Document Share Report,दस्तावेज़ को साझा रिपोर्ट DocType: User,Last Login,अंतिम लॉगिन -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME पंक्ति में आवश्यक है {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME पंक्ति में आवश्यक है {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,स्तंभ DocType: Custom Field,Adds a custom field to a DocType,एक doctype के लिए एक कस्टम क्षेत्र जोड़ता है DocType: File,Is Home Folder,होम फ़ोल्डर है @@ -583,7 +583,7 @@ DocType: File,Folder,फ़ोल्डर DocType: DocField,Index,अनुक्रमणिका DocType: Email Group,Newsletter Manager,न्यूज़लैटर प्रबंधक apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,विकल्प 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,सभी पद +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} से {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,अनुरोधों के दौरान त्रुटि के लॉग ऑन करें। apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} सफलतापूर्वक ईमेल समूह को जोड़ा गया है। DocType: Address,Uttar Pradesh,उत्तर प्रदेश @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,सूचक DocType: DocShare,Everyone,हर DocType: Workflow State,backward,पिछड़ा -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: एक ही भूमिका, स्तर और साथ की अनुमति सिर्फ एक ही नियम {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: एक ही भूमिका, स्तर और साथ की अनुमति सिर्फ एक ही नियम {1}" DocType: Email Queue,Add Unsubscribe Link,जोड़े सदस्यता रद्द करें लिंक apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,अभी कोई टिप्पणी नही। एक नई चर्चा शुरू करें। DocType: Workflow State,share,शेयर @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,अन apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,देखें सदस्य apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,सुश्री DocType: Website Theme,Background Color,पृष्ठभूमि रंग -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ईमेल भेजने के दौरान त्रुटि . पुन: प्रयास करें . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ईमेल भेजने के दौरान त्रुटि . पुन: प्रयास करें . DocType: Portal Settings,Portal Settings,पोर्टल सेटिंग DocType: Web Page,0 is highest,० सबसे ज्यादा है apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,क्या वाकई आप {0} इस संचार लिंक देखना चाहते हैं? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,हमसे सेटिंग्स संपर्क apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,खोज कर ... DocType: Workflow State,text-width,अक्षर-चौड़ाई -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,इस रिकॉर्ड के लिए अधिकतम अनुलग्नक सीमा पर पहुंच गया। +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,इस रिकॉर्ड के लिए अधिकतम अनुलग्नक सीमा पर पहुंच गया। apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,निम्नलिखित अनिवार्य क्षेत्रों भरा होना चाहिए:
DocType: Email Alert,View Properties (via Customize Form),(अनुकूलित फॉर्म के माध्यम से) संपत्तियाँ देखें DocType: Note Seen By,Note Seen By,द्वारा देखा नोट @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,राजस्थान apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,रिपोर्ट बिल्डर रिपोर्टों रिपोर्ट बिल्डर द्वारा सीधे प्रबंधित कर रहे हैं. ऐसा करने के लिए कुछ भी नहीं है. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,अपना ईमेल एड्रेस सुनिश्चित करें apps/frappe/frappe/model/document.py +903,none of,से कोई भी -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,मुझे एक कॉपी भेज +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,मुझे एक कॉपी भेज apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,उपयोगकर्ता अनुमतियाँ अपलोड DocType: Dropbox Settings,App Secret Key,एप्लिकेशन को गुप्त कुंजी apps/frappe/frappe/config/website.py +7,Web Site,वेबसाइट apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,चेक किए गए आइटम डेस्कटॉप पर दिखाया जाएगा -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} एकल प्रकार के लिए निर्धारित नहीं किया जा सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} एकल प्रकार के लिए निर्धारित नहीं किया जा सकता apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban बोर्ड {0} मौजूद नहीं है। apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} वर्तमान में इस दस्तावेज़ को देख रहे हैं DocType: ToDo,Assigned By Full Name,पूरा नाम द्वारा आवंटित apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} अद्यतन -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,रिपोर्ट एकल प्रकार के लिए निर्धारित नहीं किया जा सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,रिपोर्ट एकल प्रकार के लिए निर्धारित नहीं किया जा सकता apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} दिन पहले DocType: Email Account,Awaiting Password,प्रतीक्षा कर रहा है पासवर्ड DocType: Address,Address Line 1,पता पंक्ति 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","कार्यप्रवाह के लिए अमेरिका ( जैसे ड्राफ्ट , स्वीकृत , रद्द) ." DocType: Print Settings,Allow Print for Draft,ड्राफ्ट के लिए प्रिंट की अनुमति दें apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,सेट मात्रा -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,इस बात की पुष्टि करने के लिए इस दस्तावेज जमा करें +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,इस बात की पुष्टि करने के लिए इस दस्तावेज जमा करें DocType: Contact,Unsubscribed,आपकी सदस्यता समाप्त कर दी apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,पेज और रिपोर्ट के लिए भूमिकाएं सेट apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,रेटिंग: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,डेटा आयात उपकरण DocType: Address,Dadra and Nagar Haveli,दादरा और नगर हवेली apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,अपलोड फ़ाइलों कुछ सेकंड के लिए प्रतीक्षा करें। -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,आपका चित्र संलग्न +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,आपका चित्र संलग्न apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,पंक्ति मूल्यों को बदल DocType: Workflow State,Stop,रोक DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,आप खोलना चाहते हैं पृष्ठ के लिए लिंक। आप इसे एक समूह के माता पिता बनाना चाहते हैं खाली छोड़ दें। @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,वाम लेबल संर DocType: Help Article,Expert,विशेषज्ञ DocType: Workflow State,circle-arrow-right,वृत्त - तीर - सही DocType: LDAP Settings,LDAP Server Url,LDAP सर्वर URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,इसके {0} खुला है जब उदाहरण नहीं खोल सकता +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,इसके {0} खुला है जब उदाहरण नहीं खोल सकता apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,स्थापित करने के लिए पंक्तिबद्ध DocType: Custom DocPerm,Custom DocPerm,कस्टम DocPerm DocType: Newsletter,Send Unsubscribe Link,भेजें सदस्यता रद्द करें लिंक @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,अनुप्रयोग {0} हटा DocType: Custom DocPerm,Apply User Permissions,उपयोगकर्ता अनुमतियाँ लागू करें DocType: User,Modules HTML,मॉड्यूल एचटीएमएल -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,सेटअप> उपयोगकर्ता अनुमतियां प्रबंधक apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,आवश्यक लापता मूल्यों DocType: DocType,Other Settings,अन्य सेटिंग DocType: Social Login Keys,Frappe,फ्रेपे @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth बियरर टोक apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,चयनित नहीं दस्तावेज़ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,डा DocType: Event,Event,घटना -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} पर, {1} ने लिखा है:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} पर, {1} ने लिखा है:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,मानक क्षेत्र को नष्ट नहीं किया जा सकता। अगर आप चाहते हैं आप इसे छिपा कर सकते हैं DocType: Top Bar Item,For top bar,शीर्ष पट्टी के लिए apps/frappe/frappe/utils/bot.py +148,Could not identify {0},पहचान नहीं कर सका {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,डेस्क पहुँच DocType: Workflow State,minus,ऋण apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,सर्वर त्रुटि : आपके सर्वर लॉग या संपर्क तकनीकी समर्थन की जाँच करें. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,स्वागत ईमेल भेजा -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,का पहला प्रयोग के लिए सिस्टम को तैयार करते हैं। +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,का पहला प्रयोग के लिए सिस्टम को तैयार करते हैं। apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,विशेष रुप से प्रदर्शित apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,पहले से पंजीकृत है DocType: System Settings,Float Precision,प्रेसिजन फ्लोट @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,प्रिंट की अनुमति द apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,कोई क्षुधा स्थापित apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,अनिवार्य रूप में क्षेत्र के निशान DocType: Communication,Clicked,क्लिक किया -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},करने के लिए कोई अनुमति नहीं '{0} ' {1} DocType: User,Google User ID,गूगल यूजर आईडी apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,भेजने के लिए अनुसूचित DocType: DocType,Track Seen,ट्रैक देखा @@ -822,7 +821,7 @@ DocType: Address,Kerala,केरल DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,एक साथ सत्र DocType: OAuth Client,Client Credentials,हमारे ग्राहकों का साख -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,एक मॉड्यूल या उपकरण को खोलें +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,एक मॉड्यूल या उपकरण को खोलें DocType: Communication,Delivery Status,डिलिवरी स्थिति DocType: Module Def,App Name,App नाम apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,फ़ाइल का अधिकतम आकार की अनुमति दी है {0} एमबी @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,संदर्भ संच DocType: Email Queue,Unsubscribe Method,सदस्यता समाप्त विधि DocType: GSuite Templates,Related DocType,संबंधित डॉकटाइप apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,सामग्री जोड़ने के लिए संपादित करें -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,भाषा चुनाव -apps/frappe/frappe/__init__.py +510,No permission for {0},के लिए कोई अनुमति नहीं {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,भाषा चुनाव +apps/frappe/frappe/__init__.py +509,No permission for {0},के लिए कोई अनुमति नहीं {0} DocType: DocType,Advanced,उन्नत apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,एपीआई कुंजी लगता है या एपीआई गुप्त गलत है !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},संदर्भ: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,प्रपत्र प्रकार apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,कोई रिकॉर्ड टैग. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,फील्ड हटाये DocType: User,Send Password Update Notification,पासवर्ड अद्यतन सूचना भेजें -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","अनुमति दे टैग , टैग . सावधान!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","अनुमति दे टैग , टैग . सावधान!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","प्रिंटिंग, ईमेल के लिए अनुकूलित प्रारूप" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,नई संस्करण के लिए अद्यतन DocType: Custom Field,Depends On,पर निर्भर करता है @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,में से एक apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,कॉपी करने के लिए कृपया फ़ाइल का चयन करें apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,एक पल जाँच हो रही है apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,टैग्स दिखाएं +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","यदि सख्त उपयोगकर्ता अनुमति को लागू किया जाता है और उपयोगकर्ता के लिए एक उपयोगकर्ता के लिए डॉकटाइप परिभाषित किया जाता है, तो सभी दस्तावेज़ जहां लिंक का मूल्य रिक्त है, उस उपयोगकर्ता को नहीं दिखाया जाएगा" DocType: Address,Billing,बिलिंग DocType: Email Queue,Not Sent,नहीं भेजा गया DocType: Web Form,Actions,क्रियाएँ @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,स्पष apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,हर दिन की घटनाओं के एक ही दिन में खत्म कर देना चाहिए। DocType: Communication,User Tags,उपयोगकर्ता के टैग apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,छवियां प्राप्त कर रहा है .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,सेटअप> उपयोगकर्ता DocType: Workflow State,download-alt,डाउनलोड-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},डाउनलोडिंग अनुप्रयोग {0} DocType: Communication,Feedback Request,प्रतिक्रिया के लिए अनुरोध @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,बैकअप apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,संपर्क जोड़ें DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,वैकल्पिक: हमेशा इन आईडी के लिए भेज देते हैं। एक नई पंक्ति पर प्रत्येक ईमेल पते -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,विवरण छुपाओ +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,विवरण छुपाओ DocType: Workflow State,Tasks,कार्यों DocType: Event,Tuesday,मंगलवार DocType: Blog Settings,Blog Settings,ब्लॉग सेटिंग्स @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,वही इस सहेजा गया है जहां फ़ोल्डर और बदले स्तंभ और परिणाम में एक अजगर फ़ाइल लिखें. DocType: DocType,Sort Field,क्रमबद्ध फील्ड DocType: Razorpay Settings,Razorpay Settings,Razorpay सेटिंग -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,संपादित फ़िल्टर -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,फ़ील्ड {0} प्रकार की {1} अनिवार्य नहीं किया जा सकता -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","उदाहरण के लिए। रिपोर्ट doctype के लिए जाँच की है, लेकिन कोई उपयोगकर्ता अनुमतियाँ एक उपयोगकर्ता के लिए रिपोर्ट के लिए परिभाषित कर रहे हैं उपयोगकर्ता अनुमतियाँ लागू होते हैं, तो सभी की रिपोर्ट है कि उपयोगकर्ता को दिखाया जाता है" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,संपादित फ़िल्टर +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,फ़ील्ड {0} प्रकार की {1} अनिवार्य नहीं किया जा सकता apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,अधिक जोड़ें apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,चार्ट छिपाएं DocType: System Settings,Session Expiry Mobile,सत्र समाप्ति मोबाइल @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,विलंबित apps/frappe/frappe/config/setup.py +128,List of backups available for download,डाउनलोड के लिए उपलब्ध बैकअप की सूची apps/frappe/frappe/www/login.html +89,Sign up,साइन अप करें DocType: Test Runner,Output,उत्पादन +DocType: Email Alert,Set Property After Alert,अलर्ट के बाद संपत्ति सेट करें apps/frappe/frappe/config/setup.py +226,Add fields to forms.,रूपों में फ़ील्ड्स जोड़ें . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ऐसा लगता है कि इस साइट के पेपल कॉन्फ़िगरेशन में कुछ गलत है DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,पत्ती DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू आइटम DocType: User Email,Email ID,ईमेल आईडी +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","यदि लागू करें उपयोगकर्ता अनुमतियाँ रिपोर्ट डॉकटाइप के लिए जाँच की जाती हैं लेकिन उपयोगकर्ता के लिए रिपोर्ट के लिए कोई उपयोगकर्ता अनुमतियां निर्धारित नहीं हैं, तो सभी रिपोर्ट उस उपयोगकर्ता को दिखाए गए हैं" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,संसाधनों की एक सूची है जो ग्राहक App उपयोगकर्ता यह अनुमति देता है के बाद के लिए उपयोग होगा।
उदाहरण के लिए परियोजना DocType: Translation,Translated Text,अनुवादित पाठ DocType: Contact Us Settings,Query Options,क्वेरी विकल्प @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,संपर्क DocType: System Settings,Setup Complete,सेटअप पूरा हुआ apps/frappe/frappe/config/setup.py +66,Report of all document shares,सभी दस्तावेज़ शेयरों की रिपोर्ट apps/frappe/frappe/www/update-password.html +18,New Password,नया पासवर्ड -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,फ़िल्टर {0} लापता +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,फ़िल्टर {0} लापता apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,माफ़ कीजिये! आप स्वत: उत्पन्न टिप्पणियों को नष्ट नहीं कर सकते DocType: Website Theme,Style using CSS,सीएसएस का उपयोग कर शैली apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,संदर्भ टैग @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,ब्लॉक मॉड्यूल apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,करने के लिए लंबाई उलट रहा {0} के लिए '{1}' में '{2}'; लंबाई सेटिंग {3} डेटा की ट्रंकेशन कारण होगा। DocType: Print Format,Custom CSS,कस्टम सीएसएस apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,एक टिप्पणी जोड़ें -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},उपेक्षित: {0} को {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},उपेक्षित: {0} को {1} DocType: Address,Gujarat,गुजरात apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,स्वचालित घटनाओं ( अनुसूचक ) पर त्रुटि के लॉग ऑन करें. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),नहीं एक वैध कॉमा सेपरेटेड वैल्यू ( सीएसवी फाइल ) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,डिफ़ॉल्ट आवक DocType: Workflow State,repeat,दोहराना DocType: Website Settings,Banner,बैनर DocType: Role,"If disabled, this role will be removed from all users.","यदि अक्षम है, इस भूमिका को सभी उपयोगकर्ताओं से निकाल दिया जाएगा।" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,खोज पर मदद +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,खोज पर मदद apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,पंजीकृत लेकिन विकलांग DocType: DocType,Hide Copy,प्रतिलिपि बनाएँ छिपाएँ apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,सभी भूमिकाओं को साफ़ @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,देश apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,पतों DocType: Communication,Shared,साझा -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,दस्तावेज़ प्रिंट संलग्न +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,दस्तावेज़ प्रिंट संलग्न DocType: Bulk Update,Field,खेत DocType: Communication,Received,प्राप्त DocType: Social Login Keys,Google Client ID,गूगल ग्राहक आईडी @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,क्वेरी रिपोर्ट DocType: User,Set New Password,नया पासवर्ड सेट DocType: User,Github User ID,Github यूजर आईडी apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,दस्तावेज़ प्रकार हैं -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","नष्ट या क्योंकि {0} रद्द नहीं कर सकते {1} के साथ जुड़ा हुआ है {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","नष्ट या क्योंकि {0} रद्द नहीं कर सकते {1} के साथ जुड़ा हुआ है {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},अज्ञात एप्लिकेशन {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S एक वैध रिपोर्ट स्वरूप नहीं है। रिपोर्ट प्रारूप \ चाहिए% s निम्न में से एक DocType: Communication,Chat,बातचीत -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} पंक्तियों में कई बार प्रकट होता है {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} पंक्तियों में कई बार प्रकट होता है {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} से {1} {2} में पंक्ति # {3} DocType: Communication,Expired,समय सीमा समाप्त DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),एक क्षेत्र के लिए कॉलम की संख्या एक ग्रिड में (एक ग्रिड में कुल कॉलम कम से कम 11 होना चाहिए) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,एक खाता apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},अज्ञात प्रिंट प्रारूप: {0} DocType: Workflow State,arrow-down,नीचे तीर apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,संक्षिप्त करें -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},उपयोगकर्ता को नष्ट करने की अनुमति नहीं {0} {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,अंतिम बार अद्यतन किया गया DocType: Help Article,Likes,पसंद DocType: Website Settings,Top Bar,शीर्ष बार DocType: GSuite Settings,Script Code,स्क्रिप्ट कोड apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,उपयोगकर्ता ईमेल बनाएं -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,कोई अनुमति नहीं निर्दिष्ट +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,कोई अनुमति नहीं निर्दिष्ट apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,वैश्विक सेटिंग्स: उपयोगकर्ताओं को केवल माउस जाँच का चयन करने में सक्षम हो जाएगा apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} नहीं मिला DocType: Custom Role,Custom Role,कस्टम भूमिका apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,घर / परीक्षण फ़ोल्डर 2 DocType: System Settings,Ignore User Permissions If Missing,"गुम हैं, तो उपयोगकर्ता अनुमतियाँ पर ध्यान न दें" -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,कृपया अपलोड करने से पहले दस्तावेज़ को सहेजें। +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,कृपया अपलोड करने से पहले दस्तावेज़ को सहेजें। apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,अपना पासवर्ड डालें DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स पहुँच गुप्त apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,एक अन्य टिप्पणी जोड़ें apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,doctype संपादित करें apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,समाचार पत्रिका का सदस्यता रद्द -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,एक धारा को तोड़ने से पहले आना चाहिए मोड़ो +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,एक धारा को तोड़ने से पहले आना चाहिए मोड़ो apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,अंतिम बार संशोधित DocType: Workflow State,hand-down,हाथ नीचे DocType: Address,GST State,जीएसटी राज्य -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : सेट नहीं कर सकता सबमिट बिना रद्द +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : सेट नहीं कर सकता सबमिट बिना रद्द DocType: Website Theme,Theme,विषय apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,त्रुटियां थीं . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,पुनर्निर्देशित यूआरआइ प्रमाणीकरण कोड के लिए बाध्य @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,म DocType: Website Theme,Text Color,अक्षर का रंग DocType: Desktop Icon,Force Show,बल शो apps/frappe/frappe/auth.py +78,Invalid Request,अमान्य अनुरोध -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,इस फार्म के किसी भी इनपुट नहीं करता +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,इस फार्म के किसी भी इनपुट नहीं करता apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},सत्र समाप्ति प्रारूप में होना चाहिए {0} DocType: Website Sidebar Item,Group,समूह DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","चुनने का लक्ष्य एक नया पेज में खोलने के लिए = "" _blank"" ." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,त्रुटियों एन्कोडिंग पर ध्यान न दें। DocType: Workflow State,wrench,रिंच apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,सेट नहीं -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,सेटअप> उपयोगकर्ता DocType: Authentication Log,Date,तारीख DocType: Website Settings,Disable Signup,पंजीकरण अक्षम apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"आपके सिस्टम सेटअप किया जा रहा है , जबकि ठीक से बैठो . इसमें कुछ समय लग सकता है." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,टिप्पणी जोड़ें DocType: DocField,Mandatory,अनिवार्य apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,मॉड्यूल निर्यात करने -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : कोई बुनियादी अनुमति सेट नहीं है +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : कोई बुनियादी अनुमति सेट नहीं है apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,आपकी सदस्यता को समाप्त हो जाएगा {0}। apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},आपके बैकअप के लिए डाउनलोड लिंक निम्न ईमेल पते पर ईमेल किया जाएगा: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","अर्थ की सबमिट रद्द, संशोधन" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,प्रश्न-रिपोर्ट apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},करने के लिए निरुपित {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,फिल्टर बचाया DocType: DocField,Percent,प्रतिशत -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,फिल्टर सेट करें +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,फिल्टर सेट करें apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,के साथ जुड़ा हुआ DocType: Workflow State,book,किताब DocType: Website Settings,Landing Page,लैंडिंग पेज -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,कस्टम स्क्रिप्ट में त्रुटि +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,कस्टम स्क्रिप्ट में त्रुटि apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} नाम apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","आयात अनुरोध पंक्तिबद्ध। इस में कुछ समय लग सकता है, कृपया धैर्य रखें।" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,कोई अनुमतियाँ इस मापदंड के लिए निर्धारित किया है. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,मोबाइल न apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,आप इस संसाधन का उपयोग करने के लिए पर्याप्त अनुमति नहीं है। पहुँच पाने के लिए अपने प्रबंधक से संपर्क करें। DocType: Custom Field,Custom,रिवाज apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,सेटअप ईमेल अलर्ट विभिन्न मानदंडों के आधार पर. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},के तहत दायर की पोस्ट {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},के तहत दायर की पोस्ट {0} DocType: Email Alert,Send alert if date matches this field's value,"तारीख इस क्षेत्र के मूल्य से मेल खाता है, तो सतर्क भेजें" DocType: Workflow,Transitions,बदलाव apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,हटाये {0} और सभी डेटा को नष्ट? @@ -1284,9 +1285,8 @@ DocType: User,Login After,बाद कीजिये DocType: Print Format,Monospace,मोनोस्पेस DocType: Letter Head,Printing,मुद्रण DocType: Workflow State,thumbs-up,अंगूठे अप -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं है कृपया सेटअप> ईमेल> ईमेल खाता से एक नया ईमेल खाता बनाएं DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,प्रेसिजन 1 और 6 के बीच होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,प्रेसिजन 1 और 6 के बीच होना चाहिए apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,और DocType: Error Snapshot,Frames,फ्रेम्स @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,फोटो लिंक DocType: Auto Email Report,Report Filters,रिपोर्ट फ़िल्टर apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,अभी DocType: Workflow State,step-backward,कदम से पिछड़े -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ app_title } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,आपकी साइट config में ड्रॉपबॉक्स का उपयोग चाबियां सेट करें apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,इस ईमेल पते पर भेजने की अनुमति देने के लिए इस अभिलेख को नष्ट apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,केवल अनिवार्य क्षेत्रों में नए रिकॉर्ड के लिए जरूरी हैं। यदि आप चाहें तो आप गैर-अनिवार्य कॉलम हटा सकते हैं। @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,संलग्नक फ़ोल्डर apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,सभी का विस्तार करें apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,वैध लॉगिन आईडी की जरूरत है. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,पुनः खुला -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,आप भुगतान रद्द कर दिया है -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,डेटा के साथ एक मान्य सीएसवी फाइल चुनें +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,डेटा के साथ एक मान्य सीएसवी फाइल चुनें apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} संयुक्त राष्ट्र के साझा के साथ इस दस्तावेज़ {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{1} के लिए {0} से दस्तावेज स्थिति संक्रमण की अनुमति नहीं है DocType: DocType,"Make ""name"" searchable in Global Search",बनाओ "नाम" में वैश्विक खोज खोजा @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,म DocType: Help Category,Help Category,सहायता श्रेणी apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,प्रयोक्ता {0} अक्षम है apps/frappe/frappe/www/404.html +8,Page missing or moved,लापता या स्थानांतरित पृष्ठ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,संपादित करें {0} गुण DocType: DocType,Route,मार्ग apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay भुगतान प्रवेश द्वार सेटिंग्स DocType: DocField,Name,नाम apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,आप अपनी योजना के लिए {0} की अधिकतम अंतरिक्ष पार कर चुके हैं। {1}। apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,डॉक्स खोजें DocType: OAuth Authorization Code,Valid,मान्य -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,लिंक खोलें -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,आपकी भाषा +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,लिंक खोलें +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,आपकी भाषा apps/frappe/frappe/desk/form/load.py +46,Did not load,लोड नहीं किया apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,लाइन जोड़ो DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,प्रत DocType: Address,Lakshadweep Islands,लक्षद्वीप द्वीप समूह apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,लिख सकता है apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","कुछ दस्तावेजों , एक चालान की तरह , एक बार अंतिम बदला नहीं जाना चाहिए . ऐसे दस्तावेजों के लिए अंतिम अवस्था प्रस्तुत कहा जाता है. आप भूमिकाओं प्रस्तुत कर सकते हैं जो सीमित कर सकते हैं ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,आप इस रिपोर्ट को निर्यात करने की अनुमति नहीं है +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,आप इस रिपोर्ट को निर्यात करने की अनुमति नहीं है apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 आइटम का चयन DocType: Newsletter,Test Email Address,टेस्ट ईमेल एड्रेस DocType: ToDo,Sender,प्रेषक @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,आयात ज़िप apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,दस्तावेज़ आईडी DocType: Print Settings,Letter,patr -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,छवि क्षेत्र प्रकार का होना चाहिए छवि संलग्न +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,छवि क्षेत्र प्रकार का होना चाहिए छवि संलग्न DocType: DocField,Columns,कॉलम DocType: Async Task,Succeeded,सफल रहा apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},में आवश्यक अनिवार्य क्षेत्रों {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,लेख संपादक apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,हमारे बारे में पृष्ठ के लिए सेटिंग्स. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,संपादित कस्टम HTML DocType: Error Snapshot,Error Snapshot,त्रुटि स्नैपशॉट -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,में +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,में DocType: Email Alert,Value Change,मान बदलने DocType: Standard Reply,Standard Reply,मानक जवाब apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,इनपुट बॉक्स की चौड़ाई @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,शीर्षक उत्पन्न करने के लिए इस FieldName प्रयोग करें apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,से आयात ईमेल apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,उपयोगकर्ता के रूप में आमंत्रित -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,किए गए अनुलग्नकों के चयन करें +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,किए गए अनुलग्नकों के चयन करें apps/frappe/frappe/model/naming.py +94, for {0},के लिए {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,वहाँ त्रुटियों थे। इस रिपोर्ट करें। -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,आप इस दस्तावेज़ मुद्रित करने की अनुमति नहीं है +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,आप इस दस्तावेज़ मुद्रित करने की अनुमति नहीं है apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,रिपोर्ट फिल्टर तालिका में फिल्टर मूल्य सेट करें। -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,रिपोर्ट लोड हो रहा है +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,रिपोर्ट लोड हो रहा है apps/frappe/frappe/limits.py +72,Your subscription will expire today.,आपकी सदस्यता आज समाप्त हो जाएगा। DocType: Page,Standard,मानक apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,फ़ाइल जोड़ें @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,क्षेत्रीय एक्सटेंशन DocType: LDAP Settings,Base Distinguished Name (DN),बेस विशिष्ट नाम (डी.एन.) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,इस बातचीत को छोड़ दो -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},विकल्प लिंक क्षेत्र के लिए निर्धारित नहीं {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},विकल्प लिंक क्षेत्र के लिए निर्धारित नहीं {0} DocType: Customize Form,"Must be of type ""Attach Image""",प्रकार का होना चाहिए "छवि संलग्न" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,सभी का चयन रद्द apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},आप क्षेत्र के लिए सेट नहीं नहीं 'केवल पढ़ने के लिए कर सकते हैं' {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,नोट apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,त्रुटि की रिपोर्ट apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,प्रतिक्रिया की स्थिति मेल नहीं खाती -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,इस समय क्षेत्र में एक वैध FIELDNAME होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,इस समय क्षेत्र में एक वैध FIELDNAME होना चाहिए DocType: Currency,Symbol,प्रतीक -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,नई पासवर्ड ईमेल apps/frappe/frappe/auth.py +245,Login not allowed at this time,लॉगइन इस समय की अनुमति नहीं DocType: Email Account,Email Sync Option,ईमेल सिंक विकल्प @@ -1555,7 +1553,7 @@ DocType: DocField,Text,अक्षर apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,मानक सामान्य प्रश्नों का जवाब. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,डिफ़ॉल्ट भेजा जा रहा है DocType: Workflow State,volume-off,वॉल्यूम बंद -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},द्वारा पसंद {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},द्वारा पसंद {0} DocType: Footer Item,Footer Item,पाद मद ,Download Backups,डाउनलोड बैकअप apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,घर / परीक्षण फ़ोल्डर 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,अक्षर संरेखण apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},नाम की तरह विशेष वर्ण नहीं हो सकते हैं {0} DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पते पर apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,सभी डेटा दिखाएँ -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,शीर्षक फ़ील्ड एक वैध fieldname होना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,शीर्षक फ़ील्ड एक वैध fieldname होना चाहिए apps/frappe/frappe/config/core.py +7,Documents,दस्तावेज़ DocType: Email Flag Queue,Is Completed,पूरा हो गया है apps/frappe/frappe/www/me.html +22,Edit Profile,प्रोफ़ाइल संपादित करें @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",यह क्षेत्र केवल तभी दिखाई देगा FIELDNAME यहाँ परिभाषित महत्व है या नियमों के सच्चे (उदाहरण) कर रहे हैं: myfield eval: doc.myfield == 'मेरा मान' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,आज +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,आज apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आप इस सेट करने के बाद , उपयोगकर्ताओं को केवल सक्षम पहुँच दस्तावेजों लिंक मौजूद है, जहां (जैसे ब्लॉग पोस्ट) (जैसे ब्लॉगर ) हो जाएगा ." DocType: Error Log,Log of Scheduler Errors,समयबद्धक त्रुटियाँ का प्रवेश DocType: User,Bio,जैव @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 सितारा किया जा रहा सबसे कम और 5 स्टार सर्वोच्च रेटिंग है DocType: Event,Ref Name,रेफरी नाम DocType: Web Page,Center,केंद्र +DocType: Email Alert,Value To Be Set,मूल्य निर्धारित करने के लिए apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,पहला स्तर DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,राज्य को बदलने के लिए आवंटित कर एक दस्तावेज़ और भूमिका में अनुमति राज्यों का प्रतिनिधित्व करता है। apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,ताज़ा करे पर्चा @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,वेब दृश्य है apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Doctype के नाम एक पत्र के साथ शुरू करना चाहिए और यह केवल अक्षर, संख्या, रिक्त स्थान और अंडरस्कोर तक हो सकते हैं" DocType: Communication,Spam,स्पैम DocType: Integration Request,Integration Request,एकता का अनुरोध -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,प्रिय +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,प्रिय DocType: Address,Maharashtra,महाराष्ट्र DocType: Address,Accounts User,उपयोगकर्ता खातों DocType: Web Page,HTML for header section. Optional,हैडर अनुभाग के लिए एचटीएमएल . apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,यह सुविधा नए ब्रांड और अभी भी प्रयोगात्मक है -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,अधिकतम {0} पंक्तियों की अनुमति दी +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,अधिकतम {0} पंक्तियों की अनुमति दी DocType: Email Unsubscribe,Global Unsubscribe,वैश्विक सदस्यता रद्द apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,यह एक बहुत ही आम पासवर्ड है। apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,राय DocType: Communication,Assigned,निरुपित DocType: Print Format,Js,जे एस -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,प्रिंट प्रारूप का चयन करें +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,प्रिंट प्रारूप का चयन करें apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,कम कीबोर्ड पैटर्न अनुमान लगाना आसान है DocType: Portal Settings,Portal Menu,पोर्टल मेन्यू apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} की लंबाई 1 और 1000 के बीच होना चाहिए @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,प्रयोक्ता नहीं खोज सकते हैं apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,अमान्य आउटपुट स्वरूप DocType: Custom DocPerm,Apply this rule if the User is the Owner,उपयोगकर्ता का मालिक है अगर इस नियम को लागू करें -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,आपका लॉगिन आईडी होगा +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,आपका लॉगिन आईडी होगा apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,रिपोर्ट बनाएँ DocType: Note,Notify users with a popup when they log in,जब वे लोग इन उपयोगकर्ताओं को एक पॉपअप के साथ सूचित करें apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} मौजूद नहीं है , मर्ज करने के लिए एक नया लक्ष्य का चयन" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,भूमिका apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,अद्यतन DocType: Error Snapshot,Snapshot View,स्नैपशॉट देखें apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,कृपया इस समाचार पत्र भेजने से पहले सहेजें -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},विकल्प {0} पंक्ति में {1} क्षेत्र के लिए एक वैध DOCTYPE होना चाहिए +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} वर्ष (पहले) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},विकल्प {0} पंक्ति में {1} क्षेत्र के लिए एक वैध DOCTYPE होना चाहिए apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,गुण संपादित करें DocType: Patch Log,List of patches executed,पैच की सूची मार डाला apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} पहले से ही हट -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,संचार माध्यम +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,संचार माध्यम DocType: Website Settings,Banner HTML,बैनर HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',कृपया किसी अन्य भुगतान विधि चुनें। Razorpay मुद्रा में लेन-देन का समर्थन नहीं करता '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,बैकअप के लिए कतारबद्ध। यह एक घंटे के लिए कुछ मिनट लग सकते हैं। DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,रजिस्टर OAuth क्लाइंट अनुप्रयोग -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} नहीं किया जा सकता ""{2}"". यह ""{3}"" में से एक होना चाहिए" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} नहीं किया जा सकता ""{2}"". यह ""{3}"" में से एक होना चाहिए" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} या {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,दिखाएं या डेस्कटॉप प्रतीक छुपाएं apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,पासवर्ड अद्यतन @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,शो लाइन वर्गों के बाद तोड़ता DocType: Blogger,Short Name,संक्षिप्त नाम apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},पृष्ठ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","समन्वयन विकल्प का चयन कर रहे के रूप में सभी, यह सर्वर से सभी \ पढ़ के साथ-साथ अपठित संदेश resync होगा। यह भी संचार (ईमेल) के दोहराव \ कारण हो सकता है।" apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,फ़ाइलों का आकार @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,खरीद प्रबंधक DocType: Custom Script,Sample,नमूना apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised टैग DocType: Event,Every Week,हर हफ्ते +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाता सेटअप नहीं है कृपया सेटअप> ईमेल> ईमेल खाता से एक नया ईमेल खाता बनाएं apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,यहाँ क्लिक करें अपने उपयोग की जाँच करें या एक उच्च योजना को उन्नत करने के लिए DocType: Custom Field,Is Mandatory Field,अनिवार्य क्षेत्र है DocType: User,Website User,वेबसाइट प्रयोक्ता @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,कस्टम साइडबार मेनू DocType: Workflow State,pencil,पेंसिल apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,संदेश और अन्य सूचनाएं चैट करें। -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},के रूप में सेट नहीं किया जा सकता है के बाद डालें {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},के रूप में सेट नहीं किया जा सकता है के बाद डालें {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,शेयर {0} के साथ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ईमेल खाते की स्थापना के लिए अपना पासवर्ड दर्ज करें: DocType: Workflow State,hand-up,हाथ DocType: Blog Settings,Writers Introduction,राइटर्स परिचय DocType: Address,Phone,फ़ोन -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,समय त्रुटि के मूल्यांकन के ईमेल चेतावनी {0}। अपने टेम्पलेट को ठीक करें। +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,समय त्रुटि के मूल्यांकन के ईमेल चेतावनी {0}। अपने टेम्पलेट को ठीक करें। apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,दस्तावेज़ प्रकार या शुरू करने के लिए रोल का चयन करें. DocType: Contact,Passive,निष्क्रिय DocType: Contact,Accounts Manager,अकाउंट मैनेजर +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,आपका भुगतान रद्द कर दिया गया है apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,चुनें फ़ाइल प्रकार DocType: Help Article,Knowledge Base Editor,ज्ञानकोष संपादक apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,पृष्ठ नहीं मिला @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,सम्पत्ती के प्र DocType: Workflow State,screenshot,स्क्रीनशॉट apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"केवल व्यवस्थापक मानक रिपोर्ट सहेज सकते हैं। कृपया नाम बदलें, और सहेजें।" DocType: System Settings,Background Workers,पृष्ठभूमि श्रमिक +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,फ़ील्डनाम {0} मेटा ऑब्जेक्ट के साथ परस्पर विरोधी है DocType: Deleted Document,Data,डेटा apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,दस्तावेज स्थिति apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},आपके द्वारा किए गए {0} की {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,दिखाएँ उपयोगकर्ता अनुमतियाँ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,तुम में लॉग इन और बैकअप का उपयोग करने में सक्षम होने के लिए सिस्टम मैनेजर भूमिका हो जाने की जरूरत है . apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,शेष -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें। +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,कृपया संलग्न करने से पहले सहेजें। apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),जोड़ा गया {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},डिफ़ॉल्ट विषय में सेट है {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype को {0} से नहीं बदला जा सकता {1} पंक्ति में {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,सिस्टम सेटिंग apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,सत्र प्रारंभ विफल apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},इस ईमेल {0} के लिए भेजा और करने के लिए नकल की थी {1} DocType: Workflow State,th,वें -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,कृपया सेटअप> ईमेल> ईमेल खाता से डिफ़ॉल्ट ईमेल खाता सेटअप करें -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},एक नया {0} बनाएँ +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},एक नया {0} बनाएँ DocType: Email Rule,Is Spam,स्पैम है apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},रिपोर्ट {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ओपन {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ओपन {0} DocType: OAuth Client,Default Redirect URI,डिफ़ॉल्ट पुनर्निर्देशन यूआरआइ DocType: Email Alert,Recipients,प्राप्तकर्ता DocType: Workflow State,ok-sign,ठीक है पर हस्ताक्षर @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,सहायता आलेख ,Modules Setup,मॉड्यूल सेटअप apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,प्रकार: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,आपका भुगतान विफल हो गया है DocType: Communication,Unshared,अविभाजित DocType: Address,Karnataka,कर्नाटक apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,विव नही मिला @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,ब्रांड छवि DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","शीर्ष नेविगेशन पट्टी, पाद लेख, और लोगो का सेटअप." DocType: Web Form Field,Max Value,अधिकतम मूल्य -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},के लिए {0} स्तर पर {1} में {2} पंक्ति में {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},के लिए {0} स्तर पर {1} में {2} पंक्ति में {3} DocType: Contact,All,सभी DocType: Email Queue,Recipient,प्राप्तकर्ता DocType: Communication,Has Attachment,अटैचमेंट था @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,संरेखित करें सही DocType: Auto Email Report,Email To,इसे ईमेल किया गया apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,फ़ोल्डर {0} खाली नहीं है DocType: Page,Roles,भूमिकाओं -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,फ़ील्ड {0} चयन नहीं है . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},त्रुटि: {0} के लिए मान गुम: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,फ़ील्ड {0} चयन नहीं है . DocType: System Settings,Session Expiry,सत्र समाप्ति DocType: Workflow State,ban-circle,प्रतिबंध चक्र DocType: Email Flag Queue,Unread,अपठित ग @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,प्रोफ़ाइल डिफ़ॉल्ट्स apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,नई बनाएँ DocType: Workflow State,chevron-down,शेवरॉन नीचे -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),करने के लिए नहीं भेजा ईमेल {0} (विकलांग / सदस्यता वापस) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),करने के लिए नहीं भेजा ईमेल {0} (विकलांग / सदस्यता वापस) DocType: Async Task,Traceback,वापस ट्रेस करें DocType: Currency,Smallest Currency Fraction Value,सबसे छोटा मुद्रा अंश मूल्य apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,करने के लिए निरुपित @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,से DocType: Website Theme,Google Font (Heading),गूगल फ़ॉन्ट (शीर्षक) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,पहले एक समूह नोड का चयन करें। -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},में {0} का पता {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},में {0} का पता {1} DocType: OAuth Client,Implicit,अंतर्निहित DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, खेतों, ""स्थिति"" होना चाहिए ""विषय"") इस doctype के खिलाफ संचार के रूप में जोड़ें" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","उपयोगकर्ता उपयोग की अनुमति देता है एक बार प्राधिकरण कोड प्राप्त करने के लिए, साथ ही विफलता प्रतिक्रिया के लिए यूआरआई। आमतौर पर एक आराम समापन बिंदु क्लाइंट अनुप्रयोग से अवगत कराया।
जैसे http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,प्रस्तुत करने के बाद {0} बदलने की अनुमति नहीं +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,प्रस्तुत करने के बाद {0} बदलने की अनुमति नहीं DocType: Communication,Comment Type,टिप्पणी के प्रकार DocType: OAuth Client,OAuth Client,OAuth क्लायंट apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,उपयोगकर्ता @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},{0} के लिए फ़ाइल स्वरूप पढ़ने में असमर्थ DocType: Auto Email Report,Filter Data,डेटा फ़िल्टर करें apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,एक टैग जोड़ना -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,पहले एक फ़ाइल संलग्न करें. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,पहले एक फ़ाइल संलग्न करें. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","नाम स्थापित करने में कुछ त्रुटियां थीं, व्यवस्थापक से संपर्क करें" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,आने वाले ईमेल खाते सही नहीं हैं apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,ईमेल भेजा गया DocType: DocField,Ignore XSS Filter,XSS फ़िल्टर पर ध्यान न दें apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,हटा दिया apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ड्रॉपबॉक्स सुरक्षित सेटिंग -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ईमेल के रूप में भेजें +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ईमेल के रूप में भेजें DocType: Website Theme,Link Color,लिंक रंग apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,प्रयोक्ता {0} निष्क्रिय नहीं किया जा सकता है apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","प्रिय सिस्टम मैनेजर," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,तुम्हारा देश +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,तुम्हारा देश DocType: Event,Sunday,रविवार apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ग्रिड दृश्य में DocType: Address Template,Template,टेम्पलेट @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,दिल्ली apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP सेटिंग apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,संशोधन apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,पेपैल भुगतान गेटवे सेटिंग्स -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) छोटा मिल जाएगा, के रूप में अनुमति दी अधिकतम वर्ण है {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) छोटा मिल जाएगा, के रूप में अनुमति दी अधिकतम वर्ण है {2}" DocType: OAuth Client,Resource Owner Password Credentials,संसाधन स्वामी पासवर्ड क्रेडेंशियल्स DocType: OAuth Client,Response Type,रिस्पांस प्रकार apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,मैक्स उपयोगकर्ता @@ -2033,7 +2037,7 @@ DocType: DocField,Table,तालिका DocType: File,File Size,फ़ाइल का आकार apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,आप इस फार्म जमा करने के लिए लॉग इन करना होगा DocType: User,Background Image,पृष्ठभूमि छवि -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","अपने देश, समय क्षेत्र और मुद्रा का चयन करें" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","अपने देश, समय क्षेत्र और मुद्रा का चयन करें" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,के बीच DocType: Async Task,Queued,पंक्तिबद्ध @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,बनाना apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},अवैध फिल्टर: {0} DocType: Email Account,no failed attempts,कोई असफल प्रयासों +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,कोई डिफ़ॉल्ट पता टेम्पलेट पाया नहीं कृपया सेटअप> प्रिंटिंग और ब्रांडिंग> पता टेम्पलेट से एक नया बनाएं। DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,अनुप्रयोग प्रवेश कुंजी DocType: OAuth Bearer Token,Access Token,एक्सेस टोकन @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github यूजर का नाम DocType: DocType,Image View,छवि देखें apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","लग रहा है जैसे कुछ लेनदेन के दौरान गलत हो गया। हम भुगतान की पुष्टि नहीं की है के बाद से, पेपैल स्वचालित रूप से आप इस राशि वापस कर देंगे। यदि ऐसा नहीं होता, तो हमें एक ईमेल भेजने के लिए और सहसंबंध आईडी का उल्लेख है: {0}।" -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","पासवर्ड में प्रतीकों, संख्याएं और कैपिटल अक्षरों को शामिल करें" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","क्षेत्र '{0}' कस्टम क्षेत्र में उल्लेख के बाद डालें '{1}', लेबल के साथ '{2}', अस्तित्व में नहीं है" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","पासवर्ड में प्रतीकों, संख्याएं और कैपिटल अक्षरों को शामिल करें" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","क्षेत्र '{0}' कस्टम क्षेत्र में उल्लेख के बाद डालें '{1}', लेबल के साथ '{2}', अस्तित्व में नहीं है" DocType: Workflow State,signal,संकेत DocType: DocType,Show Print First,शो के पहले प्रिंट apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + पोस्ट करने के लिए दर्ज करें @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,फ़ाइल '{0}' नहीं मिला apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,धारा निकालें DocType: User,Change Password,पासवर्ड बदलें -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},अवैध ईमेल: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,नमस्कार! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},अवैध ईमेल: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,नमस्कार! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,घटना अंत शुरू होने के बाद होना चाहिए apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},तुम पर एक रिपोर्ट प्राप्त करने के लिए अनुमति नहीं है: {0} +DocType: System Settings,Apply Strict User Permissions,सख्त उपयोगकर्ता अनुमतियां लागू करें DocType: DocField,Allow Bulk Edit,बल्क संपादन की अनुमति दें DocType: Blog Post,Blog Post,ब्लॉग पोस्ट -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,उन्नत खोज +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,उन्नत खोज apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,पासवर्ड रीसेट निर्देश अपने ईमेल पर भेज दिया गया है apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","स्तर 0 दस्तावेज़ स्तर की अनुमतियों के लिए है, \\ फ़ील्ड स्तर अनुमतियों के लिए उच्च स्तर।" @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,रद्द DocType: Web Page,Sidebar and Comments,साइडबार और टिप्पणियाँ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आप के बाद रद्द करें और इसे बचाने के लिए एक दस्तावेज़ में संशोधन , जब वह पुराने नंबर का एक संस्करण है कि एक नया नंबर मिल जाएगा ." DocType: Stripe Settings,Publishable Key,प्रकाशित करने योग्य कुंजी -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} वर्ष (पहले) DocType: Workflow State,circle-arrow-left,वृत्त - तीर बाएँ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis कैश सर्वर नहीं चल रहा। प्रशासक / टेक समर्थन से संपर्क करें apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,दल का नाम -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,एक नया रिकॉर्ड बना +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,एक नया रिकॉर्ड बना apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,खोज कर DocType: Currency,Fraction,अंश DocType: LDAP Settings,LDAP First Name Field,LDAP पहला नाम फील्ड -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,मौजूदा संलग्नक से चुनें +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,मौजूदा संलग्नक से चुनें DocType: Custom Field,Field Description,फील्ड विवरण apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,प्रॉम्प्ट के माध्यम से निर्धारित नहीं नाम apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ईमेल इनबॉक्स @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,जानकारी: DocType: Custom Field,Permission Level,अनुमति स्तर DocType: User,Send Notifications for Transactions I Follow,मैं पालन लेन-देन के लिए सूचनाएं भेजें -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : लिखने के बिना संशोधन रद्द , सबमिट सेट नहीं कर सकता" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : लिखने के बिना संशोधन रद्द , सबमिट सेट नहीं कर सकता" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,क्या आप सुनिश्चित करें कि आप अनुलग्नक हटाना चाहते हैं? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","नष्ट या क्योंकि {0} रद्द नहीं कर सकते {1} के साथ जुड़ा हुआ है {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'के लिए कोई परिणाम नहीं मिला'

-apps/frappe/frappe/__init__.py +1063,Thank you,धन्यवाद +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","नष्ट या क्योंकि {0} रद्द नहीं कर सकते {1} के साथ जुड़ा हुआ है {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,धन्यवाद apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,बचत DocType: Print Settings,Print Style Preview,मुद्रण शैली पूर्वावलोकन apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,सूची दृश्य में DocType: Email Account,Use TLS,टीएलएस का प्रयोग करें apps/frappe/frappe/email/smtp.py +24,Invalid login or password,अमान्य लॉगइन या पासवर्ड apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,रूपों के लिए कस्टम जावास्क्रिप्ट जोड़ें . -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,क्रमांक +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,क्रमांक ,Role Permissions Manager,रोल अनुमतियां प्रबंधक apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,नया प्रिंट प्रारूप का नाम -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,कुर्की साफ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,कुर्की साफ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,अनिवार्य: ,User Permissions Manager,उपयोगकर्ता अनुमतियाँ प्रबंधक DocType: Property Setter,New value to be set,नई करने के लिए सेट किया जा मूल्य @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 द apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ब्लॉग पोस्ट श्रेणीबद्ध. DocType: Workflow State,Time,समय DocType: DocField,Attach,संलग्न करना -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} एक वैध FieldName पैटर्न नहीं है। यह होना चाहिए {{FIELD_NAME}}। +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} एक वैध FieldName पैटर्न नहीं है। यह होना चाहिए {{FIELD_NAME}}। DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,प्रतिक्रिया अनुरोध भेजें केवल अगर वहाँ कम से कम एक संचार दस्तावेज़ के लिए उपलब्ध है। DocType: Custom Role,Permission Rules,अनुमति नियम DocType: GSuite Settings,GSuite Settings,जीएसयूइट सेटिंग्स DocType: Address,Links,लिंक -apps/frappe/frappe/model/base_document.py +428,Value missing for,मूल्य के लिए लापता +apps/frappe/frappe/model/base_document.py +427,Value missing for,मूल्य के लिए लापता apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,बाल जोड़ें -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: प्रेषित रिकार्ड नष्ट नहीं किया जा सकता है. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: प्रेषित रिकार्ड नष्ट नहीं किया जा सकता है. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,बैकअप का आकार DocType: GSuite Templates,Template Name,टेम्पलेट नाम -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,दस्तावेज़ के नए प्रकार +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,दस्तावेज़ के नए प्रकार DocType: Custom DocPerm,Read,पढ़ना DocType: Role Permission for Page and Report,Role Permission for Page and Report,पृष्ठ और रिपोर्ट के लिए भूमिका की अनुमति apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,संरेखित मूल्य apps/frappe/frappe/www/update-password.html +14,Old Password,पुराना पासवर्ड -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},द्वारा पोस्ट {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},द्वारा पोस्ट {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",", कॉलम प्रारूप क्वेरी में स्तंभ लेबल दे. करने के लिए" DocType: Has Domain,Has Domain,डोमेन है apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,एक खाता नहीं है? साइन अप करें -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : असाइन संशोधन सेट नहीं कर सकता Submittable यदि नहीं +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : असाइन संशोधन सेट नहीं कर सकता Submittable यदि नहीं DocType: Address,Bihar,बिहार apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,संपादित भूमिका अनुमतियां DocType: Communication,Link DocType,लिंक doctype @@ -2335,7 +2339,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,अपने प्रोफ़ाइल एक ईमेल पता है कि यह सुनिश्चित करें apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,आप इस प्रपत्र में परिवर्तन सहेजे नहीं गए . DocType: Address,Telangana,तेलंगाना -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} एक विकल्प होना चाहिए के लिए डिफ़ॉल्ट +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} एक विकल्प होना चाहिए के लिए डिफ़ॉल्ट DocType: Tag Doc Category,Tag Doc Category,टैग डॉक्टर श्रेणी DocType: User,User Image,User Image apps/frappe/frappe/email/queue.py +289,Emails are muted,ईमेल मौन हैं @@ -2368,7 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,अगल DocType: Workflow State,ok,ठीक DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,लेनदेन में इन मूल्यों को स्वचालित रूप से अद्यतन किया जाएगा और भी इन मूल्यों से युक्त लेनदेन पर इस उपयोगकर्ता के लिए अनुमति को प्रतिबंधित करने के लिए उपयोगी हो जाएगा. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,प्रकाशक -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** विफल: {0} को {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** विफल: {0} को {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,अनिवार्य चयन करें apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ब्राउज़ करें apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ईमेल भेजा @@ -2380,7 +2384,7 @@ DocType: Async Task,Running,रनिंग apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,पासवर्ड रीसेट apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,कृपया अधिक से {0} ग्राहकों को जोड़ने के लिए नवीनीकरण DocType: Workflow State,hand-left,हाथ बाएँ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} अद्वितीय नहीं किया जा सकता है के लिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} अद्वितीय नहीं किया जा सकता है के लिए DocType: Email Account,Use SSL,SSL का उपयोग DocType: Workflow State,play-circle,खेलने सर्कल apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,संपादित करने के लिए प्रिंट स्वरूप का चयन @@ -2435,7 +2439,7 @@ DocType: DocField,No Copy,कोई नकल DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,एलडीएपी के साथ लॉगिन DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,स्वामी हैं +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,स्वामी हैं DocType: OAuth Authorization Code,Expiration time,समय सीमा समाप्ति समय DocType: Web Page,Website Sidebar,वेबसाइट साइडबार DocType: Web Form,Show Sidebar,दिखाएँ साइडबार @@ -2455,7 +2459,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},नहीं म apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,नाम और खुद के द्वारा surnames अनुमान लगाना आसान है। apps/frappe/frappe/config/website.py +93,Knowledge Base,ज्ञानधार DocType: Workflow State,briefcase,ब्रीफ़केस -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},मूल्य के लिए बदला नहीं जा सकता {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},मूल्य के लिए बदला नहीं जा सकता {0} DocType: Feedback Request,Is Manual,मैनुअल है DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","- ग्रीन, खतरा - लाल, उलटा - काले, प्राथमिक - डार्क ब्लू जानकारी, लाइट ब्लू, चेतावनी - ऑरेंज सफलता: शैली बटन रंग का प्रतिनिधित्व करता है" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,कोई रिपोर्ट भरा हुआ है. उपयोग क्वेरी रिपोर्ट / [रिपोर्ट नाम] की एक रिपोर्ट चलाने के लिए कृपया. @@ -2532,7 +2536,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,प्रग apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,भूमिका से apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,लापता फील्ड्स apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname में अमान्य FIELDNAME '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,एक दस्तावेज़ प्रकार मे खोजें +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,एक दस्तावेज़ प्रकार मे खोजें apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,क्षेत्र भी प्रस्तुत करने के बाद संपादन योग्य बने रहने की अनुमति दें DocType: Custom DocPerm,Role and Level,रोल और स्तर DocType: File,Thumbnail URL,थंबनेल URL @@ -2549,18 +2553,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + जी) DocType: Contact,More Information,अधिक जानकारी DocType: Desktop Icon,Desktop Icon,डेस्कटॉप आइकन -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,आपका भुगतान सफलतापूर्वक स्वीकार कर लिया गया +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,आपका भुगतान सफलतापूर्वक स्वीकार कर लिया गया apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,सॉरी! आप इस पेज को देखने के लिए अनुमति नहीं है। apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,सुझाव: डबल क्लिक करें सेल संपादित करने के लिए DocType: Workflow State,bell,घंटी apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ईमेल अलर्ट में त्रुटि apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,के साथ इस दस्तावेज़ को साझा करें +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,सेटअप> उपयोगकर्ता अनुमतियां प्रबंधक apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,यह बच्चों के रूप में {0} {1} एक पत्ती नोड नहीं हो सकता DocType: Communication,Info,जानकारी -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,अय्टाचमेंट जोडे +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,अय्टाचमेंट जोडे DocType: Communication,Email,ईमेल apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,अपने संदेश के लिए धन्यवाद -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,पढ़ें रसीद भेजें +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,पढ़ें रसीद भेजें DocType: Stripe Settings,Stripe Settings,धारी सेटिंग्स DocType: Dropbox Settings,Dropbox Setup via Site Config,साइट विन्यास के माध्यम से ड्रॉपबॉक्स सेटअप apps/frappe/frappe/www/login.py +64,Invalid Login Token,अवैध प्रवेश टोकन @@ -2637,6 +2642,7 @@ DocType: DocType,Web View,वेब दृश्य apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,चेतावनी: इस प्रिंट प्रारूप पुरानी शैली में है और एपीआई के माध्यम से उत्पन्न नहीं किया जा सकता. DocType: DocField,Print Width,प्रिंट चौड़ाई ,Setup Wizard,सेटअप विज़ार्ड +DocType: Address,GST State Number,जीएसटी राज्य संख्या DocType: User,Allow user to login only before this hour (0-24),उपयोगकर्ता इस घंटे से पहले ही प्रवेश करने की अनुमति दें (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,फ़ोल्डर अनिवार्य है apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2662,7 +2668,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,छोटे अक्षर apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,प्रशासक पहुँचा {0} को {1} आईपी पते के माध्यम {2}। apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,बराबरी -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',क्षेत्र के विकल्प 'डायनामिक लिंक' प्रकार 'टैग' के रूप में विकल्प के साथ एक और कड़ी फील्ड को इंगित करना होगा +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',क्षेत्र के विकल्प 'डायनामिक लिंक' प्रकार 'टैग' के रूप में विकल्प के साथ एक और कड़ी फील्ड को इंगित करना होगा DocType: About Us Settings,Team Members Heading,टीम के सदस्यों शीर्षक apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,अमान्य CSV प्रारूप apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,सेट बैकअप की संख्या @@ -2673,7 +2679,7 @@ DocType: Contact,Contact,संपर्क DocType: User,Third Party Authentication,थर्ड पार्टी प्रमाणन DocType: Website Settings,Banner is above the Top Menu Bar.,बैनर शीर्ष मेन्यू पट्टी से ऊपर है। DocType: Razorpay Settings,API Secret,एपीआई गुप्त -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,निर्यात की रिपोर्ट: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,निर्यात की रिपोर्ट: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} मौजूद नहीं है DocType: Email Account,Port,बंदरगाह DocType: Print Format,Arial,Arial @@ -2696,7 +2702,7 @@ DocType: Kanban Board Column,Column Name,आम नाम DocType: Language,Based On,के आधार पर apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,डिफ़ॉल्ट बनाना apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,चेक फ्रेपे सर्वर URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} अनुक्रमित नहीं किया जा सकता के लिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} अनुक्रमित नहीं किया जा सकता के लिए DocType: Communication,Email Account,ईमेल खाता DocType: Workflow State,Download,डाउनलोड DocType: Blog Post,Blog Intro,ब्लॉग परिचय @@ -2707,7 +2713,7 @@ DocType: Web Page,Insert Code,कोड डालने के लिए DocType: ToDo,Low,निम्न apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,आप Jinja templating का उपयोग करके दस्तावेज़ से गतिशील गुण जोड़ सकते हैं। apps/frappe/frappe/commands/site.py +451,Invalid limit {0},अमान्य सीमा {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,एक दस्तावेज़ प्रकार सूची +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,एक दस्तावेज़ प्रकार सूची DocType: Event,Ref Type,रेफरी के प्रकार apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","आप नए रिकॉर्ड अपलोड कर रहे हैं, ""नाम"" (आईडी) कॉलम खाली छोड़ दें।" DocType: Address,Chattisgarh,छत्तीसगढ़ @@ -2729,25 +2735,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,के रूप में प्रिंट भेजें पीडीएफ DocType: Web Form,Amount,राशि DocType: Workflow Transition,Allowed,रख सकते है -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,एक रूप में केवल एक ही मोड़ो नहीं हो सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,एक रूप में केवल एक ही मोड़ो नहीं हो सकता apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0} के लिए फ़ाइल स्वरूप लिखने में असमर्थ apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,डिफ़ॉल्ट सेटिंग्स को पुनर्स्थापित? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,अवैध होम पेज apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,अमान्य लॉगिन। पुनः प्रयास करें। -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},{1} पंक्ति {1} में लिंक या तालिका प्रकार फ़ील्ड के लिए आवश्यक विकल्प +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},{1} पंक्ति {1} में लिंक या तालिका प्रकार फ़ील्ड के लिए आवश्यक विकल्प DocType: Auto Email Report,Send only if there is any data,केवल भेजें अगर कोई डेटा है apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,फिल्टर रीसेट -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : उच्च स्तर सेट कर रहे हैं पहले स्तर 0 पर अनुमति सेट किया जाना चाहिए +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : उच्च स्तर सेट कर रहे हैं पहले स्तर 0 पर अनुमति सेट किया जाना चाहिए apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},असाइनमेंट द्वारा बंद कर दिया {0} DocType: Integration Request,Remote,रिमोट -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,गणना करें +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,गणना करें apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,पहले doctype का चयन करें apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,आपके ईमेल की पुष्टि करें apps/frappe/frappe/www/login.html +42,Or login with,या साथ लॉगिन DocType: Error Snapshot,Locals,स्थानीय लोग apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},के माध्यम से भेजी {0} को {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} में एक टिप्पणी में आपका उल्लेख {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदाहरण के लिए (55 + 434) / 4 या = गणित.पाप (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदाहरण के लिए (55 + 434) / 4 या = गणित.पाप (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} के लिए आवश्यक है DocType: Integration Request,Integration Type,एकता के प्रकार DocType: Newsletter,Send Attachements,attachements भेजें @@ -2757,14 +2763,14 @@ DocType: DocField,Perm Level,स्तर Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,आज के कैलेंडर में घटनाक्रम DocType: Web Page,Web Page,वेब पेज DocType: Blog Category,Blogger,ब्लॉगर -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},पंक्ति {1} में {0} प्रकार के लिए 'वैश्विक खोज में' की अनुमति नहीं है +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},पंक्ति {1} में {0} प्रकार के लिए 'वैश्विक खोज में' की अनुमति नहीं है apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,सूची देखें -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},तिथि प्रारूप में होना चाहिए : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},तिथि प्रारूप में होना चाहिए : {0} DocType: Workflow,Don't Override Status,स्थिति पर हावी नहीं है apps/frappe/frappe/www/feedback.html +90,Please give a rating.,रेटिंग दे दीजिए। apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} प्रतिक्रिया का अनुरोध apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,शब्द को खोजें -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,पहले उपयोगकर्ता : आप +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,पहले उपयोगकर्ता : आप apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,चयन करें कॉलम DocType: Translation,Source Text,स्रोत इबारत apps/frappe/frappe/www/login.py +55,Missing parameters for login,प्रवेश के लिए गुम मानकों को @@ -2786,7 +2792,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,आयात कर रहा है DocType: ToDo,Assigned By,द्वारा सौंपा apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,तुम क्षेत्रों पर स्तर सेट करने के लिए अनुकूलित प्रपत्र का उपयोग कर सकते हैं . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,अपना क्षेत्र चुनें +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,अपना क्षेत्र चुनें DocType: Custom DocPerm,Level,स्तर DocType: Custom DocPerm,Report,रिपोर्ट apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,राशि 0 से अधिक होना चाहिए। @@ -2806,7 +2812,7 @@ DocType: Website Theme,Background,पृष्ठभूमि DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","उपयोगकर्ता अनुमतियाँ लागू करने के लिए इस्तेमाल DocTypes की JSON सूची। खाली हैं, सभी जुड़े DocTypes उपयोगकर्ता अनुमतियाँ लागू करने के लिए इस्तेमाल किया जाएगा।" DocType: Report,Ref DocType,रेफरी doctype apps/frappe/frappe/www/feedback.py +42,Please add a rating,कृपया एक रेटिंग जोड़ें -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : सेट नहीं कर सकता रद्द बिना संशोधन +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : सेट नहीं कर सकता रद्द बिना संशोधन apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,पूरा पृष्ठ DocType: DocType,Is Child Table,चाइल्ड तालिका apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} में से एक होना चाहिए @@ -2821,7 +2827,7 @@ DocType: Website Slideshow,This goes above the slideshow.,इस स्लाइ apps/frappe/frappe/config/setup.py +260,Install Applications.,आवेदन पत्र स्थापित . DocType: Contact,Last Name,सरनेम DocType: Event,Private,निजी -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,आज के लिए कोई अलर्ट +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,आज के लिए कोई अलर्ट DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),पीडीएफ के रूप में ईमेल प्रिंट अनुलग्नक भेजें (अनुशंसित) DocType: Web Page,Left,वाम DocType: Event,All Day,सभी दिन @@ -2835,7 +2841,7 @@ DocType: Event,Send an email reminder in the morning,सुबह में ए DocType: Blog Post,Published On,पर प्रकाशित DocType: Contact,Gender,लिंग apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,अनिवार्य जानकारी लापता: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,फील्ड '{0}' यह गैर-अद्वितीय मूल्यों के रूप में अद्वितीय के रूप में सेट नहीं किया जा सकता +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,फील्ड '{0}' यह गैर-अद्वितीय मूल्यों के रूप में अद्वितीय के रूप में सेट नहीं किया जा सकता apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,केवल 200 सम्मिलित करता है एक अनुरोध में की अनुमति दी DocType: Footer Item,URL,यूआरएल DocType: ToDo,Reference Type,संदर्भ प्रकार @@ -2848,7 +2854,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,चेतावनी संकेत DocType: Workflow State,User,उपयोगकर्ता DocType: Website Settings,"Show title in browser window as ""Prefix - title""",के रूप में ब्राउज़र विंडो में दिखाएं शीर्षक "उपसर्ग - शीर्षक" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,लेख दस्तावेज़ प्रकार +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,लेख दस्तावेज़ प्रकार apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,रन टेस्ट apps/frappe/frappe/handler.py +91,Logged Out,लॉग आउट apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,अधिक... @@ -2873,13 +2879,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,वर्तमान में देख DocType: DocField,Default,चूक apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} जोड़ा गया -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}' के लिए खोजें +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}' के लिए खोजें apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,कृपया रिपोर्ट पहला बचा apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ग्राहक जोड़े apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,अंदर नही DocType: Workflow State,star,सितारा -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,अल्पविराम के द्वारा अलग किए गए मान -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},प्रकार मुद्रा के लिए अधिकतम चौड़ाई पंक्ति में 100px है {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,अल्पविराम के द्वारा अलग किए गए मान +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},प्रकार मुद्रा के लिए अधिकतम चौड़ाई पंक्ति में 100px है {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},के लिए अपनी प्रतिक्रिया साझा करें {0} apps/frappe/frappe/config/website.py +13,Content web page.,सामग्री वेब पेज. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,एक नई भूमिका में जोड़ें @@ -2897,7 +2903,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,एक मान्य LDAP उपयोगकर्ता apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} नहीं एक वैध राज्य apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया किसी अन्य भुगतान विधि चुनें। पेपैल मुद्रा में लेन-देन का समर्थन नहीं करता '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,खोज के क्षेत्र {0} मान्य नहीं है +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,खोज के क्षेत्र {0} मान्य नहीं है DocType: Workflow State,ok-circle,ठीक चक्र apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',आप पूछ 'ग्राहकों में नारंगी पा' से चीजें मिल सकता है apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,सॉरी! उपयोगकर्ता अपने ही रिकॉर्ड करने के लिए पूरा उपयोग किया जाना चाहिए। @@ -2957,7 +2963,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,फ़िल्टर मेटा DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"इस फार्म के लिए एक वेब पेज है, तो वेब पेज को जोड़ने वाली लिंक को नाम प्रदान करे। लिंक मार्ग खुद ब खुद `page_name` और `parent_website_route` से उत्पन्न हो जाएगा।" DocType: Feedback Request,Feedback Trigger,प्रतिक्रिया उत्प्रेरक -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,पहला {0} सेट करें +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,पहला {0} सेट करें DocType: Unhandled Email,Message-id,संदेश-आईडी DocType: Patch Log,Patch,पैच DocType: Async Task,Failed,विफल diff --git a/frappe/translations/hr.csv b/frappe/translations/hr.csv index c1677e9089..985e2e5491 100644 --- a/frappe/translations/hr.csv +++ b/frappe/translations/hr.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook ime DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Napomena: Više sjednice će biti dopušteno u slučaju mobilnog uređaja apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},E omogućeno spremnika za korisnika {korisnik} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne možete poslati ovu poruku. Ste prešli granicu od slanja {0} e-pošte za ovaj mjesec. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Trajno Podnijeti {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Trajno Podnijeti {0} ? DocType: Address,County,Okrug DocType: Workflow,If Checked workflow status will not override status in list view,Ako je označeno stanje tijeka rada neće poništiti status u prikazu popisa apps/frappe/frappe/client.py +280,Invalid file path: {0},Pogrešna Put datoteke: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Molimo apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,e-pošta korisnika DocType: User,Username,Korisničko ime -apps/frappe/frappe/model/base_document.py +581,Value too big,Vrijednost prevelika +apps/frappe/frappe/model/base_document.py +580,Value too big,Vrijednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Pokreni test skripte DocType: Contact,Department,Odjel @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Dnevnici DocType: Custom DocPerm,This role update User Permissions for a user,Ova uloga ažuriranje korisnik dozvole za korisnika apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Preimenuj {0} DocType: Workflow State,zoom-out,umanji -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Ne možete otvoriti {0} kada je instanca je otvoren apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} ne može biti prazno apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,s knjigama apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Slike DocType: Communication,Reference Owner,Referentni vlasnika DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmanji kruži dio jedinica (kovanice). Za npr 1 posto za USD i to bi trebalo biti upisana kao 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0} {1} Row +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0} {1} Row apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Molimo dati FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,počevši apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Uvoz podataka predloška apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Nadređen DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ako je omogućeno, snaga lozinke bit će izvršena na temelju minimalne vrijednosti lozinke. Vrijednost 2 je srednje jaka i 4 vrlo jaka." DocType: About Us Settings,"""Team Members"" or ""Management""","""Članovi tima"" ili ""uprave""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Zadana za ""Check"" vrsti terena mora biti ili '0' ili '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Zadana za ""Check"" vrsti terena mora biti ili '0' ili '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Jučer DocType: Contact,Designation,Oznaka DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Je Objavljeno polje DocType: Email Group,Email Group,E-mail Group DocType: Note,Seen By,vide apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Dodaj više stavki -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ne kao +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ne kao apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Postavite oznaku prikaza za područje apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Netočna vrijednost: {0} mora biti {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Promjeni svojstva polja (sakrij, samo čitanje, dozvola i sl.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Postavke apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator prijavljeni DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt opcije, poput "Sales Query, Podrška upit" itd jedni na novoj liniji ili odvojene zarezima." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Preuzimanje -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Odaberite {0} DocType: Print Settings,Classic,Klasik DocType: Desktop Icon,Color,Boja @@ -121,7 +121,7 @@ DocType: Translation,Translation,Prijevod apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalirati apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,G. DocType: Custom Script,Client,Klijent -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Ovaj oblik je izmijenjen nakon što ste ga učitava +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Ovaj oblik je izmijenjen nakon što ste ga učitava DocType: User Permission for Page and Report,User Permission for Page and Report,Korisnik Odobrenje za stranicu i Izvješće DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ako nije postavljen, preciznost valute ovisit će o formatu brojeva" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Razlog apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Navedite korisnika DocType: Email Unsubscribe,Email Unsubscribe,Email Odjava DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Odaberite sliku od cca 150px širine s transparentnom pozadinom za najbolje rezultate. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (možete promijeniti tome kasnije). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Prvi korisnik će postati System Manager (možete promijeniti tome kasnije). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,krug sa strelicom prema gore apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Prijenos ... DocType: Email Domain,Email Domain,Domena e-pošte DocType: Workflow State,italic,kurzivan apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Za svakoga -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Ne može se uvesti bez stvaranja +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Ne može se uvesti bez stvaranja apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Događaj i druge kalendare. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Sva polja su potrebna za slanje komentara. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Povucite kako bi sortirali stupce @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standardna Bočna Izbornik apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Ne možete izbrisati Home i privitke mape apps/frappe/frappe/config/desk.py +19,Files,Datoteke apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Prava se primjenjuju na korisnike na temelju onoga što Uloge su dodijeljeni . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nije Vam dopušteno slati e-poštu vezanu s ovim dokumentom -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Odaberi atleast 1 Stupac {0} sortiranje / skupini +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nije Vam dopušteno slati e-poštu vezanu s ovim dokumentom +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Odaberi atleast 1 Stupac {0} sortiranje / skupini DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Označite ovo ako ste testiranje uplatu putem pješčaniku API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nemate ovlasti za brisanje standardne teme web stranice DocType: Feedback Trigger,Example,Primjer @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Ukupno Pretplatnici apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","AkoUloga nema pristup na razini 0 , onda je viša razina su besmislene ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Spremi kao DocType: Communication,Seen,Vidio -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Pokaži više detalja +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Pokaži više detalja DocType: System Settings,Run scheduled jobs only if checked,Trčanje rasporedu radnih mjesta samo ako provjeriti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Prikazat će se samo ako se Podnaslovi omogućeno apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiva @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Prikaži grafiko apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Valjana email i ime potrebna DocType: DocType,Hide Heading,Sakrij naslov DocType: Address,Current,struja -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Povezani dokumenti apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Skupine DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,uklanjanje-krug @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} ne može imati posebne znakove kao {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Ažuriranje mnoge vrijednosti u jednom trenutku. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Pogreška: Dokument je promijenjen nakon što ste ga otvorili -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novi iz Postavke> Ispis i Branding> Predložak adrese. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odjavljen: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : Ne mogu postaviti Zauzimanje Podnijeti ako ne Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrirano po "{0}" DocType: Salutation,Administrator,Upravitelj @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Naslov bloga apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standardni uloge ne može se isključiti DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Bilten -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Ne može se koristiti pod-upita kako od strane +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Ne može se koristiti pod-upita kako od strane DocType: Web Form,Button Help,Button Pomoć DocType: Kanban Board Column,purple,purpurna boja DocType: About Us Settings,Team Members,Članovi tima @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Get your glo apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaša pretplata istekla je {0}. Obnoviti, {1}." DocType: Workflow State,plus-sign,plus-potpisati apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Postavljanje je već završena -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Asi {0} nije instaliran +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Asi {0} nije instaliran DocType: Workflow State,Refresh,Osvježi stranicu DocType: Event,Public,Javni apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ništa pokazati @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Voljeli apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Podrška e-poštom DocType: DocField,Print Hide If No Value,Ispis Sakrij Ako nema vrijednost DocType: Event,yellow,žuta boja -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Objavljuje se polje mora biti valjana FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Objavljuje se polje mora biti valjana FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Prenesi Prilog DocType: Block Module,Block Module,Blok modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Izvoz Predložak @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Kreiran korisnički račun u {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Upute poslane e-poštom -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Unesite e Primatelj (e) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Unesite e Primatelj (e) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Zastava red čekanja apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Ne može se identificirati otvoreni {0}. Pokušajte nešto drugo. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,Poruka ID DocType: Property Setter,Field Name,Naziv polja apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nije konfiguriran. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ili -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Naziv modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Nastaviti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Naziv modula ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Nastaviti DocType: Custom Field,Fieldname,"Podataka, Naziv Polja" DocType: Workflow State,certificate,certifikat DocType: User,Tile,Pločica @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Prikaži sve verzije DocType: Workflow State,Print,otisak DocType: User,Restrict IP,Zabraniti IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,kontrolna ploča apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nije moguće poslati e-mail u ovom trenutku apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Traži ili upiši naredbu DocType: Communication,Timeline Name,Kronologija Ime @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Prodaja Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Jedan Zadnji korak apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Naziv vrste dokumenta (DOCTYPE) želite li da to polje bude povezano na naprimjer kupca DocType: User,Roles Assigned,Dodijeljene uloge -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Traži pomoć +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Traži pomoć DocType: Top Bar Item,Parent Label,Nadređena oznaka apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaš upit je zaprimljen. Odgovorit ćemo vratiti uskoro. Ako imate bilo kakve dodatne informacije, molimo odgovorite na ovaj mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Ovlasti se automatski prevode u standardna izvješća i pretraživanja. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Uredi naslov DocType: File,File URL,URL datoteke DocType: Version,Table HTML,Tablica HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nema rezultata za '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj Pretplatnici apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Buduća događanja za danas DocType: Email Alert Recipient,Email By Document Field,E-mail dokumentom Field @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Iznos koji se temelji na terenskom apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Korisnik je obvezan za Podijeli DocType: DocField,Hidden,skriven DocType: Web Form,Allow Incomplete Forms,Dopusti nepotpune Obrasci -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} mora biti postavljen prvi +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} mora biti postavljen prvi apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Koristite nekoliko riječi, izbjeći uobičajene fraze." DocType: Workflow State,plane,avion -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ups. Vaša uplata nije uspjelo. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ako ste upload nove rekorde, ""Imenovanje serije"" postaje obvezna, ako je prisutna." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Dobiti upozorenja za danas +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Dobiti upozorenja za danas apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE može preimenovati samo Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},promjene vrijednosti {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Provjerite e-poštu za potvrdu -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Puta ne mogu biti na kraju u obliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Puta ne mogu biti na kraju u obliku DocType: Communication,Bounced,Odskočiti DocType: Deleted Document,Deleted Name,Izbrisano ime apps/frappe/frappe/config/setup.py +14,System and Website Users,Korisnici sustava i web stranice @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Dokument redu za slan DocType: GSuite Templates,Destination ID,ID odredišta DocType: Desktop Icon,List,popis DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} je u redu {1} ne može biti skriven i obavezno bez defaultu DocType: System Settings,mm/dd/yyyy,mm-dd-yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Netočna zaporka: DocType: Print Settings,Send document web view link in email,Slanje dokumenata na web-prikaz link u e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaše povratne informacije za dokument {0} je uspješno spremljen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,prijašnji -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} redovi za {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Za npr. "centi" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Odaberite prenesenu datoteku @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Poveznica apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nema datoteke u prilogu DocType: Version,Version,Verzija DocType: User,Fill Screen,Ispunite zaslon -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nije moguće prikazati ovaj izvještaj stabla, zbog nedostatka podataka. Najvjerojatnije, to se filtrira kako zbog dozvole." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz Postava> E-pošta> Račun e-pošte +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nije moguće prikazati ovaj izvještaj stabla, zbog nedostatka podataka. Najvjerojatnije, to se filtrira kako zbog dozvole." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Odaberite File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Uredi preko Pošalji -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","vrsta dokumenta ..., npr kupca" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","vrsta dokumenta ..., npr kupca" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Stanje '{0}' nije valjan DocType: Workflow State,barcode,Barkod apps/frappe/frappe/config/setup.py +232,Add your own translations,Dodajte svoje prijevode @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Srijeda apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Osim Uloga temelji dopuštenje pravilima , možete se prijaviti korisničkim dozvolama na temelju DocTypes ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",Te dozvole će se primjenjivati za sve transakcije u kojimaje dopušteno snimanje je povezan . -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Polje slika mora biti valjana FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Polje slika mora biti valjana FIELDNAME DocType: OAuth Client,Token,Znak DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ime) subjekta čiji je objekt se postaviti apps/frappe/frappe/limits.py +82,"To renew, {0}.","Obnoviti, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Bočna Stavke apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} već instaliran DocType: Workflow State,exclamation-sign,usklik-znak apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Pokaži dopuštenja -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti veza ili Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline polje mora biti veza ili Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Raspon datuma apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Stranica {0} od {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Uvesti apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Ključ za šifriranje nije valjan, provjerite site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,za DocType: Kanban Board Column,darkgrey,tamno siva -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Uspješna: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Uspješna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nije moguće promijeniti podatke o korisniku u demo. Prijavite se za novi račun na https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Molimo dvostruke to napraviti promjene apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF generacija nije uspio zbog slomljenih slikovnih linkova @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Sklopiva apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Spremljeno apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Što vam je potrebna pomoć? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcije za odabir. Svaka opcija na novoj liniji. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Trajno Odustani {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Trajno Odustani {0} ? DocType: Workflow State,music,glazba DocType: Web Page,Settings,Postavke apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Navedite vrstu dokumenata DocType: Print Format,Style Settings,Postavke stila -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjana FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sortiranje polje {0} mora biti valjana FIELDNAME apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Više DocType: Contact,Sales Manager,Sales Manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Preimenuj DocType: Print Format,Format Data,Format podataka -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Kao +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Kao DocType: Customize Form Field,Customize Form Field,Prilagodba polja obrasca apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Dopusti korisnika DocType: OAuth Client,Grant Type,Vrsta Grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Provjeri koji dokumenti su korisniku čitljivi apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Aplikacija popisa nije dopuštena -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,koristiti% kao zamjenski -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domena e-pošte konfigurirana za ovaj korisnički račun, stvoriti jedan?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,koristiti% kao zamjenski +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domena e-pošte konfigurirana za ovaj korisnički račun, stvoriti jedan?" DocType: User,Reset Password Key,Reset Password ključ DocType: Email Account,Enable Auto Reply,Omogućite Auto Odgovor apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ne vidi @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Postaviti samo jednom DocType: Email Queue Recipient,Email Queue Recipient,E-Queue Primatelj DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Korisničko ime {0} već postoji -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Ne može se postaviti uvoz kao {1} nije za uvoz +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Ne može se postaviti uvoz kao {1} nije za uvoz apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Došlo je do pogreške u vašem adresnoj predložak {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Od puno ime i prezime apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nemate pristup izvješću: {0} DocType: User,Send Welcome Email,Pošalji e-mail dobrodošlice apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Pošalji CSV datoteku koja sadrži sve korisničke dozvole u istom obliku kao preuzimanje. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Uklonite filtar +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Uklonite filtar DocType: Address,Daman and Diu,Daman i Diu DocType: Address,Personal,Osobno apps/frappe/frappe/config/setup.py +113,Bulk Rename,Skupno preimenuj @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standardni DocType ne može imati zadani format ispisa, koristite Prilagodi obrazac" DocType: Report,Query,Upit DocType: DocType,Sort Order,sortiranje -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'U prikazu popisa' nisu dopušteni za tip {0} u redu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'U prikazu popisa' nisu dopušteni za tip {0} u redu {1} DocType: Custom Field,Select the label after which you want to insert new field.,Odaberite oznaku nakon što želite umetnuti novo polje. ,Document Share Report,Dokument podijele prijava DocType: User,Last Login,Zadnja prijava -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},"Podataka, Naziv Polja je potrebno u redu {0}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolona DocType: Custom Field,Adds a custom field to a DocType,Dodaje prilagođeni polje na vrstu dokumenata DocType: File,Is Home Folder,Je Početna mapa @@ -583,7 +583,7 @@ DocType: File,Folder,Mapa DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Upravitelj apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcija 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Svi postovi +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} do {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prijava pogreške prilikom zahtjeva. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} je uspješno dodan u e-Grupe. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Svako DocType: Workflow State,backward,Natrag -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo je jedno pravilo dopušteno za istu ulogu, razinu i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo je jedno pravilo dopušteno za istu ulogu, razinu i {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj vezu za odjavu apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Još nema komentara. Započnite novu raspravu. DocType: Workflow State,share,udio @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nije d apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Pogledaj Pretplatnici apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Gospođa DocType: Website Theme,Background Color,Boja pozadine -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Bilo je grešaka tijekom slanja e-pošte. Molimo pokušajte ponovno . DocType: Portal Settings,Portal Settings,Postavke portala DocType: Web Page,0 is highest,0 je najviši apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Jeste li sigurni da želite povezati ovaj komunikacija na {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,"Postavke ""Kontaktirajte nas""" apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Pretraživanje ... DocType: Workflow State,text-width,tekst širine -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Gornja granica Prilog za ovaj rekord postignut. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Gornja granica Prilog za ovaj rekord postignut. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Sljedeće obvezne polja moraju biti ispunjena:
DocType: Email Alert,View Properties (via Customize Form),Pogledaj Nekretnine (preko Customize obrazac) DocType: Note Seen By,Note Seen By,Napomena vide @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder izvješća se izravno upravlja Report Builder. Ništa učiniti. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Potvrdite svoju adresu e-pošte apps/frappe/frappe/model/document.py +903,none of,nitko od -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Pošaljite mi kopiju +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Pošaljite mi kopiju apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Postavi korisnik dozvole DocType: Dropbox Settings,App Secret Key,Aplikacija Tajni ključ apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Označeni proizvodi će biti prikazani na desktopu -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} se ne može postaviti za samohrane vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} se ne može postaviti za samohrane vrste apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban odbor {0} ne postoji. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Trenutno pregledavate ovaj dokument DocType: ToDo,Assigned By Full Name,Dodjeljuje Puni naziv apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ažurirana -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Izvješće ne može se postaviti za samohrane vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Izvješće ne može se postaviti za samohrane vrste apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Prije {0} dana DocType: Email Account,Awaiting Password,Očekujem Lozinka DocType: Address,Address Line 1,Adresa - linija 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za tijek rada ( npr. skicu, odobreno Otkazan ) ." DocType: Print Settings,Allow Print for Draft,Dopusti Ispis za Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Postavite Količina -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Pošaljite ovaj dokument za potvrdu +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Pošaljite ovaj dokument za potvrdu DocType: Contact,Unsubscribed,Pretplatu apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Postavite prilagođene uloge za stranicu i izvješća apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Ocjena: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Alat za unos datoteka DocType: Address,Dadra and Nagar Haveli,Dadra i Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Prijenos datoteka pričekajte nekoliko sekundi. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Učvrstite svoju sliku +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Učvrstite svoju sliku apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Vrijednosti promjene DocType: Workflow State,Stop,zaustaviti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link na stranicu koju želite otvoriti. Ostavite prazno ako želite da grupa roditelja čine. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Poravnajte oznake na lijevo DocType: Help Article,Expert,Stručnjak DocType: Workflow State,circle-arrow-right,krug sa strelicom desno DocType: LDAP Settings,LDAP Server Url,LDAP poslužitelja URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Ne možete otvoriti primjer kada je {0} je otvoren +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Ne možete otvoriti primjer kada je {0} je otvoren apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,U redu za instalaciju DocType: Custom DocPerm,Custom DocPerm,Prilagođena DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošalji vezu za odjavu @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} uklonjeni DocType: Custom DocPerm,Apply User Permissions,Nanesite korisnička dopuštenja DocType: User,Modules HTML,Moduli HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Postavljanje> Upravitelj dozvola korisnika apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Nedostaje vrijednosti potrebne DocType: DocType,Other Settings,Ostale postavke DocType: Social Login Keys,Frappe,Frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nositelj token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ne bira dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Doktor DocType: Event,Event,Događaj -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Na {0}, {1} je napisano:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Na {0}, {1} je napisano:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ne možete izbrisati standardne polje. Možete ga sakriti ako želite DocType: Top Bar Item,For top bar,Na gornjoj traci apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ne može se utvrditi {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,stol Access DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Pogreška poslužitelja : Provjerite svoje logove poslužitelja ili kontaktirajte tehničku podršku. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Poslao Dobrodošli e-mail -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Idemo pripremiti sustav za prvu uporabu. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Idemo pripremiti sustav za prvu uporabu. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Istaknuti apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Već registracije DocType: System Settings,Float Precision,Float Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Dopusti Ispis apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nema instaliranih aplikacija apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označite polje kao obvezno DocType: Communication,Clicked,Kliknuo -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nema dozvole za ' {0} ' {1} DocType: User,Google User ID,Google korisnički ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planirano za slanje DocType: DocType,Track Seen,Prati Gledano @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Simultano sesije DocType: OAuth Client,Client Credentials,Mandatno Client -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Otvorite modul ili alat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Otvorite modul ili alat DocType: Communication,Delivery Status,Status isporuke DocType: Module Def,App Name,App Naziv apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksimalna veličina datoteke dozvoljeno je {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Referentni Komunikacija DocType: Email Queue,Unsubscribe Method,odjaviti metoda DocType: GSuite Templates,Related DocType,Povezani DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredi za dodavanje sadržaja -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,odaberite jezici -apps/frappe/frappe/__init__.py +510,No permission for {0},Nema dozvole za {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,odaberite jezici +apps/frappe/frappe/__init__.py +509,No permission for {0},Nema dozvole za {0} DocType: DocType,Advanced,Napredan apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Čini API ključ ili API Tajna je u redu !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenca: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Unesite Obrazac Vid apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nema zapisa tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Ukloni polje DocType: User,Send Password Update Notification,Pošalji Lozinka Update Notification -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Dopuštanje DOCTYPE , vrstu dokumenata . Budite oprezni !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Prilagođeno formati za ispis, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Ažurirano na novu verziju DocType: Custom Field,Depends On,Ovisi o @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Jedan od apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Odaberite datoteku koju želite kopirati apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Provjera jednom trenutku apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Pokaži oznake +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ako je odabrana opcija Primijeni stroga korisnička dozvola i Korisnička dozvola definirana za DocType za korisnika, svi se dokumenti u kojima je vrijednost veze prazne neće se prikazati tom korisniku" DocType: Address,Billing,Naplata DocType: Email Queue,Not Sent,Ne poslano DocType: Web Form,Actions,Akcije @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasno apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Svaki dan događanja trebao završiti na isti dan. DocType: Communication,User Tags,Upute Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Dohvaćanje slika .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Postavke> Korisnik DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Preuzimanje Asi {0} DocType: Communication,Feedback Request,Zahtjev povratne informacije @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Sigurnosne kopije apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Dodaj kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcionalno: Uvijek poslati na te IDS. Svaka e-mail adresa na novi redak -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Hide details +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Hide details DocType: Workflow State,Tasks,poslovi DocType: Event,Tuesday,Utorak DocType: Blog Settings,Blog Settings,Postavke bloga @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Napišite Python datoteku u istu mapu gdje je spremljena i povratka stupcu i rezultat. DocType: DocType,Sort Field,Sortiranje polja DocType: Razorpay Settings,Razorpay Settings,Postavke Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Uredi Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","npr. Ako Nanesite korisnik dozvole je provjeriti izvješće DOCTYPE, ali nije korisnik Dozvole su definirani za Izvješće za korisnika, onda sva izvješća su pokazala da taj korisnik" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Uredi Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne može biti obvezno apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Dodaj još apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Sakrij grafikon DocType: System Settings,Session Expiry Mobile,Sjednica isteka Mobitel @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Odgođeno apps/frappe/frappe/config/setup.py +128,List of backups available for download,Popis kopija dostupnih za preuzimanje apps/frappe/frappe/www/login.html +89,Sign up,Prijavite se DocType: Test Runner,Output,Izlaz +DocType: Email Alert,Set Property After Alert,Postavljanje entiteta nakon upozorenja apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Dodaj polja obrascima. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Izgleda da nešto nije u redu s ovom web stranicom Paypal konfiguracijom. DocType: File,rgt,RGT @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,Portal Izbornička stavka DocType: User Email,Email ID,E-mail ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ako je Primijeni dozvole za korisnike označeno za Report DocType, ali za Korisnik nije definirano Korisničko dopuštenje, tada se sve Izvješća prikazuju tom korisniku" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Popis sredstava koja će Klijent Aplikacija ima pristup nakon što korisnik dopušta.
npr projekta DocType: Translation,Translated Text,prevedeno Tekst DocType: Contact Us Settings,Query Options,Opcije upita @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Postavljanje dovršeno apps/frappe/frappe/config/setup.py +66,Report of all document shares,Izvješće svih dionica dokumenata apps/frappe/frappe/www/update-password.html +18,New Password,Nova zaporka -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} nedostaje +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} nedostaje apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Žao mi je! Ne možete izbrisati automatski generirane komentare DocType: Website Theme,Style using CSS,Stil pomoću CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referentna DOCTYPEhtml @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Blok Moduli apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vraćam duljine do {0} za '{1}' u '{2}'; Podešavanje dužine kao {3} će uzrokovati skraćivanje podataka. DocType: Print Format,Custom CSS,Prilagođeni CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Zanemareni: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Zanemareni: {0} do {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Zapis o greškama nastalim pri programiranim automatiziranim događajima. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Nisu ispravne vrijednosti odvojene zarezima (CSV datoteke) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Zadana Incoming DocType: Workflow State,repeat,ponovi DocType: Website Settings,Banner,Baner DocType: Role,"If disabled, this role will be removed from all users.","Ako je onemogućen, ova uloga će biti uklonjen iz svih korisnika." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pomoć u pretraživanju +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoć u pretraživanju apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrirani ali je onemogućena DocType: DocType,Hide Copy,Sakrij Kopija apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Očisti sve uloge @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Zemlja apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adrese DocType: Communication,Shared,podijeljen -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Priloži dokument Ispis +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Priloži dokument Ispis DocType: Bulk Update,Field,Polje DocType: Communication,Received,primljen DocType: Social Login Keys,Google Client ID,Google klient ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Izvješće upita DocType: User,Set New Password,Postavite novu lozinku DocType: User,Github User ID,GitHub korisnički ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ako Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne može se izbrisati ili otkazati, jer {0} {1} povezan s {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne može se izbrisati ili otkazati, jer {0} {1} povezan s {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Nepoznata aplikacija {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nije valjan format izvješća. Format izvješća trebaju \ jedno od sljedećeg% s DocType: Communication,Chat,Razgovor -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},"Podataka, Naziv Polja {0} se pojavljuje više puta u redovima {1}" apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} od {1} {2} u nizu # {3} DocType: Communication,Expired,Istekla DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Broj stupaca za polje u mreži (Ukupno Kolone u mreži bi trebao biti manji od 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Imate račun? Prija apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nepoznato Ispis Format: {0} DocType: Workflow State,arrow-down,strelica prema dolje apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,kolaps -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Korisniku nije dopušteno brisati {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Ažurirano DocType: Help Article,Likes,Voli DocType: Website Settings,Top Bar,Najbolje Bar DocType: GSuite Settings,Script Code,Šifra skripti apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Stvorite e-poštu korisnika -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nema dopuštenih dozvola +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nema dopuštenih dozvola apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globalne postavke: Korisnici će moći odabrati označene ikone apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nije pronađen DocType: Custom Role,Custom Role,Prilagođena uloga apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Početna / Ispitni mapa 2 DocType: System Settings,Ignore User Permissions If Missing,Zanemari korisnik dozvole Ako nestale -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Molimo spremite dokument prije učitavanja. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Molimo spremite dokument prije učitavanja. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Unesite zaporku DocType: Dropbox Settings,Dropbox Access Secret,Dropbox tajni pristup apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodaj još jedan komentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Uredi DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Poništili pretplatu na Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Preklopite moraju doći pred Odjeljak Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Preklopite moraju doći pred Odjeljak Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zadnji izmijenio DocType: Workflow State,hand-down,rukom prema dolje DocType: Address,GST State,GST država -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Ne može se postaviti Odustani bez Potvrdi +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Ne može se postaviti Odustani bez Potvrdi DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Bilo je grešaka . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmjeravanje URI dužni da autentifikacijski kôd @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moje DocType: Website Theme,Text Color,Tekst u boji DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Pogrešna Zahtjev -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ovaj oblik nema ulaz +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ovaj oblik nema ulaz apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sjednica isteka mora biti u obliku {0} DocType: Website Sidebar Item,Group,Grupa DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = "" _blank "" otvara se u novu stranicu ." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorirajte kodiranje pogreške. DocType: Workflow State,wrench,ključ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nije postavljeno -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Postavke> Korisnik DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Ugasiti prijave apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Sjedi čvrsto , dok je vaš sustav se postava . To može potrajati nekoliko trenutaka ." @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Dodaj komentar DocType: DocField,Mandatory,Obavezno apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul za izvoz -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nisu postavljene osnovne ovlasti +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nisu postavljene osnovne ovlasti apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Pretplata će isteći {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Poveznica za Vašu sigurnosnu kopiju će biti poslana na email adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Značenje od Podnijeti, Odustati, Izmijeniti" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-izvješće apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Dodijeljeno {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filteri spasio DocType: DocField,Percent,Postotak -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Molimo postavite filtere +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Molimo postavite filtere apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Povezan s DocType: Workflow State,book,knjiga DocType: Website Settings,Landing Page,Odredišna stranica -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Greška u prilagođene skripte +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Greška u prilagođene skripte apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Uvoz Zahtjev redu za slanje. To može potrajati nekoliko trenutaka, budite strpljivi." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nema postavljenih ovlasti za ovaj kriterij. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Dopusti prijavu pomoću apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemate dovoljno ovlasti za pristup ovom resursu. Molimo kontaktirajte upravitelja da biste dobili pristup. DocType: Custom Field,Custom,Prilagođeno apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Postavljanje Email upozorenja na temelju različitih kriterija. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Postove dokumentirane pod {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Postove dokumentirane pod {0} DocType: Email Alert,Send alert if date matches this field's value,Pošalji upozorenje ako datum odgovara vrijednost ovom području je DocType: Workflow,Transitions,Prijelazi apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Ukloni {0} i izbrisati sve podatke? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Prijava nakon DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tiskanje DocType: Workflow State,thumbs-up,palac gore -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Izradite novi račun e-pošte od postavke> E-pošta> Račun e-pošte DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precizna treba biti između 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precizna treba biti između 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,i DocType: Error Snapshot,Frames,Okviri @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Link slike DocType: Auto Email Report,Report Filters,Izvješće Filteri apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,sada DocType: Workflow State,step-backward,korak unatrag -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Molimo postaviti Dropbox pristupnih tipki u vašem web config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ovaj rekord dopustiti slanje na ovu e-mail adresu apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obavezna polja su potrebna za nove zapise. Ako želite, možete izbrisati neobvezne stupce." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Je Prilozi mape apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Proširi sve apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Uredan Prijava id potrebna. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Ponovno otvorena -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Otkazali ste uplatu -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Odaberite valjanu CSV datoteku s podacima +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Odaberite valjanu CSV datoteku s podacima apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-dijelio taj dokument s {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Tranzicija statusa dokumenta iz {0} u {1} nije dopuštena DocType: DocType,"Make ""name"" searchable in Global Search",Napravite "ime" pretraživanje Global Search @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Izv DocType: Help Category,Help Category,Pomoć Kategorija apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Korisnik {0} je onemogućen apps/frappe/frappe/www/404.html +8,Page missing or moved,Stranica nedostaje ili je uklonjena -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Uredi {0} svojstva DocType: DocType,Route,put apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay postavke Payment Gateway DocType: DocField,Name,Ime apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Premašili ste maksimalni prostor {0} za svoj plan. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pretražite dokumente DocType: OAuth Authorization Code,Valid,vrijedi -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Otvori link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tvoj jezik +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otvori link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jezik apps/frappe/frappe/desk/form/load.py +46,Did not load,Nije učitano apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj Row DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Je li zahtjev DocType: Address,Lakshadweep Islands,Lakshadweep Otoci apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Mogu napisati apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Određeni dokumenti , poput fakturu , ne treba mijenjati jednom finalu . Konačno stanje za takve dokumente se zove Postavio . Možete ograničiti koje uloge mogu podnijeti ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovo izvješće +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nije Vam dopušteno izvoziti ovo izvješće apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 stavka odabrana DocType: Newsletter,Test Email Address,Test e-mail adresa DocType: ToDo,Sender,Pošiljalac @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Uvoz .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokument ID DocType: Print Settings,Letter,Pismo -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Polje slika mora biti tipa Priloži sliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Polje slika mora biti tipa Priloži sliku DocType: DocField,Columns,Kolumne DocType: Async Task,Succeeded,Nasljednik apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Obavezna polja potrebna u {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Tekst Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Postavke za O nama Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Uredi prilagođeni HTML DocType: Error Snapshot,Error Snapshot,Pogreška Snimak -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,u +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,u DocType: Email Alert,Value Change,Vrijednost Promjena DocType: Standard Reply,Standard Reply,Standardna Odgovor apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Širina okvira za unos @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Koristite ovaj fieldname generirati naslov apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Uvoz e od apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Pozovi kao korisnik -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Odaberite privitke +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Odaberite privitke apps/frappe/frappe/model/naming.py +94, for {0},za {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Bilo je pogrešaka. Molimo, prijavite ovo." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nije Vam dopušteno ispisati ovaj dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Molimo postaviti filtre vrijednost Prijavi Filter tablici. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Učitavanje izvješće +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Učitavanje izvješće apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Pretplata će isteći danas. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priložite Datoteku @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionalni Proširenja DocType: LDAP Settings,Base Distinguished Name (DN),Baza Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Ostavite ovaj razgovor -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opcije nije postavljen za link polju {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcije nije postavljen za link polju {0} DocType: Customize Form,"Must be of type ""Attach Image""",Mora biti tipa "Priloži sliku" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Poništi sve apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Ne možete postavi "Samo za čitanje" za polje {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Zabilješka apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Izvješće o pogrešci apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Uvjeti za povratne informacije ne podudaraju se -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline polje mora biti valjana FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline polje mora biti valjana FIELDNAME DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nova zaporka poslana mailom apps/frappe/frappe/auth.py +245,Login not allowed at this time,Prijava nije dopuštena u ovom trenutku DocType: Email Account,Email Sync Option,E-mail Mogućnost sinkronizacije @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardni odgovori za zajedničke upite. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Zadana Slanje DocType: Workflow State,volume-off,volumen-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Svidjelo mi se {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Svidjelo mi se {0} DocType: Footer Item,Footer Item,Podnožje predmeta ,Download Backups,Preuzmi sigurnosne kopije apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Početna / Ispitni mapa 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Tekst Poravnajte apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Ime ne može sadržavati posebne znakove kao {0} DocType: Contact Us Settings,Forward To Email Address,Napadač na e-mail adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Prikaži sve podatke -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,"Naslov polje mora bitivaljana podataka, Naziv Polja" apps/frappe/frappe/config/core.py +7,Documents,Dokumenti DocType: Email Flag Queue,Is Completed,je završena apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ovo polje će se pojaviti samo ako je FIELDNAME ovdje definirana je vrijednost ili pravila su pravi (primjeri): myfield eval: doc.myfield == "Moj Vrijednost" eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Danas +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Danas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Nakon što ste ovo postavili, korisnici će moći samo pristupiti dokumentima (npr. blog post) gdje veza postoji (npr. Blogger)." DocType: Error Log,Log of Scheduler Errors,Zapis grešaka pri planskim radnjama DocType: User,Bio,Bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 zvijezda kao najniža i 5 zvjezdica biće najviša ocjena DocType: Event,Ref Name,Ref. Ime DocType: Web Page,Center,Centar +DocType: Email Alert,Value To Be Set,Vrijednost koju treba postaviti apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Prva razina DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Predstavlja države dopušteni u jednom dokumentu i ulogu dodijeljenu promijeniti stanje. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Osvježi obrazac @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Je li na web-prikaz apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE ime bi trebao početi sa slovom i može se sastojati samo od slova, brojeva, razmaka i podvlake" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,Zahtjev integracija -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Poštovani +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Poštovani DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Računi korisnika DocType: Web Page,HTML for header section. Optional,HTML za sekcije zaglavlja. Opcija apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ova značajka je potpuno nov i još uvijek u eksperimentalnoj -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimalno {0} redaka je dopušteno +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimalno {0} redaka je dopušteno DocType: Email Unsubscribe,Global Unsubscribe,Globalna Odjava apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,To je vrlo čest lozinke. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Pogled DocType: Communication,Assigned,dodijeljena DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Odaberite format ispisa +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Odaberite format ispisa apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kratki uzoraka s tipkovnice mogu se lako pogoditi DocType: Portal Settings,Portal Menu,Portal Izbornik apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Duljina {0} mora biti između 1 i 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Korisnik ne može tražiti apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Neispravan format izlaznog DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Nanesite ovo pravilo, ako Korisnik je vlasnik" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Bit će vaš ID za prijavu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bit će vaš ID za prijavu apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Izgradite Prijavite DocType: Note,Notify users with a popup when they log in,Obavijesti korisnicima popup kad se prijavite apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ne postoji , odaberite novu metu za spajanje" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,uloge Dopuštenje apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ažuriraj DocType: Error Snapshot,Snapshot View,Snimak Pogledaj apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Molimo spremite Newsletter prije slanja -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} godina +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opcije mora bitivaljana DOCTYPE za polje {0} je u redu {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Uredi Nekretnine DocType: Patch Log,List of patches executed,Popis izvršenih zakrpa apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} već otkazali pretplatu -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikacijski medij +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikacijski medij DocType: Website Settings,Banner HTML,HTML baner apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Odaberite drugi način plaćanja. Razorpay ne podržava transakcije valuti „{0}” apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,U redu za backup. To može potrajati nekoliko minuta do sat vremena. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registracija OAuth klijentska aplikacija -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} Ne može biti ""{2}"". To bi trebao biti jedan od ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ili {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Prikaži ili sakrij Radna površina Ikona apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Ažuriranje zaporke @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Prikaži Line Breaks nakon odjeljcima DocType: Blogger,Short Name,Kratko Ime apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Stranica {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Vi se odabirom opcije sinkronizacije kao svega, to će RESYNC sve \ čitati kao nepročitanu poruku s poslužitelja. To također može uzrokovati dupliciranje \ komunikacije (e-pošte)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Datoteke Veličina @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Upravitelj nabave DocType: Custom Script,Sample,Uzorak apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizirani Tagovi DocType: Event,Every Week,Svaki tjedan +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Račun e-pošte nije postavljen. Izradite novi račun e-pošte od postavke> E-pošta> Račun e-pošte apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliknite ovdje kako bi provjerili svoje korištenja ili nadograditi na višu planu DocType: Custom Field,Is Mandatory Field,Je Obvezno polje DocType: User,Website User,Korisnik web stranice @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Prilagođena Bočna Izbornik DocType: Workflow State,pencil,olovka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat poruke i druge obavijesti. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Umetnite Nakon ne može postaviti kao {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Umetnite Nakon ne može postaviti kao {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Udio {0} s apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-mail Postavljanje računa unesite zaporku za: DocType: Workflow State,hand-up,ruka-up DocType: Blog Settings,Writers Introduction,Pisci Uvod DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Greška prilikom ocjenjivanja Email upozorenja {0}. Ispravite svoj predložak. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Greška prilikom ocjenjivanja Email upozorenja {0}. Ispravite svoj predložak. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Odaberite vrstu dokumenta ili ulogu za početak. DocType: Contact,Passive,Pasiva DocType: Contact,Accounts Manager,Računi Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Plaćanje je otkazano. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Odaberite vrstu datoteke DocType: Help Article,Knowledge Base Editor,Baza znanja Urednik apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stranica nije pronađena @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Vrsta nekretnine DocType: Workflow State,screenshot,slike apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Samo administrator može spremiti standardno izvješće. Molimo preimenovati i spremiti. DocType: System Settings,Background Workers,Pozadina Radnici +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Naziv polja {0} u sukobu s meta objektom DocType: Deleted Document,Data,Podaci apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Status dokumenta apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vi od {0} od {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Pokaži korisničke ovlasti apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Morate biti prijavljeni i biti upavitelj sustavskih uloga kako bi mogli pristupiti sigurnosnim kopijama. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ostali -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Molimo spremite prije postavljanja. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Molimo spremite prije postavljanja. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Zadana tema je postavljena na {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Tip polja ne može se mijenjati iz {0} u {1} u redku {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,Postavke sustava apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesija započela nije uspjela apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ova e-mail je poslan na {0} i kopiju prima {1} DocType: Workflow State,th,og -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Postavite zadani račun e-pošte iz Postava> E-pošta> Račun e-pošte -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Stvaranje nove {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Stvaranje nove {0} DocType: Email Rule,Is Spam,Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Prijavi {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Otvori {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otvori {0} DocType: OAuth Client,Default Redirect URI,Zadana Preusmjeravanje URI DocType: Email Alert,Recipients,Primatelji DocType: Workflow State,ok-sign,ok-prijava @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Članci pomoći ,Modules Setup,Postavke modula apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Vrsta: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Plaćanje nije uspjelo. DocType: Communication,Unshared,nedjeljiv DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nije pronađen @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Slika marke DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavke gornje navigacijske trake, podnožja i loga." DocType: Web Form Field,Max Value,Max vrijednost -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Za {0} na razini {1} u {2} u redu {3} DocType: Contact,All,Sve DocType: Email Queue,Recipient,Primalac DocType: Communication,Has Attachment,Sadrži prilog @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,Poravnati-desno DocType: Auto Email Report,Email To,E-mail Da apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Mapa {0} nije prazna DocType: Page,Roles,Uloge -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Polje {0} se ne može odabrati . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Pogreška: Vrijednost nedostaje za {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Polje {0} se ne može odabrati . DocType: System Settings,Session Expiry,Sjednica isteka DocType: Workflow State,ban-circle,Krug zabrane DocType: Email Flag Queue,Unread,nepročitan @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Profil Zadano apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Kreiraj novi dokument DocType: Workflow State,chevron-down,Chevron-dolje -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail nije poslan {0} (neprijavljen ili ugašen račun) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail nije poslan {0} (neprijavljen ili ugašen račun) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmanji valuta Frakcija Vrijednost apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Dodijeliti @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Od DocType: Website Theme,Google Font (Heading),Google Font (naslov) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Odaberite grupu čvor na prvom mjestu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Nađi {0} u {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Nađi {0} u {1} DocType: OAuth Client,Implicit,implicitan DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Priložena kao komunikacija na ovom DOCTYPE (mora imati polja, ""Status"", ""Predmet"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI za primanje autorizacijski kod jednom korisniku dopušta pristup, kao i neuspjeh odgovori. Obično se odmoriti krajnja izloženi od strane Klijenta App.
npr http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon potvrđivanja +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nije dopušteno mijenjati {0} nakon potvrđivanja DocType: Communication,Comment Type,Tip komentar DocType: OAuth Client,OAuth Client,OAuth klijenta apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Korisnici @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nije moguće pročitati format datoteke za {0} DocType: Auto Email Report,Filter Data,Filtriranje podataka apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodaj oznaku -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Molimo priložite datoteku prva. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Molimo priložite datoteku prva. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bilo je nekih pogrešaka postavljanje ime, kontaktirajte administratora" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dolazni račun e-pošte nije točan apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,E-mail poslan DocType: DocField,Ignore XSS Filter,Zanemari XSS filtar apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,uklonjena apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Postavke Dropbox rezervne -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Pošalji kao email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Pošalji kao email DocType: Website Theme,Link Color,Boja veze apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Korisnik {0} se ne može isključiti apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Dragi System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tvoja zemlja +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tvoja zemlja DocType: Event,Sunday,Nedjelja apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,U Grid View DocType: Address Template,Template,Predložak @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Postavke LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Dopuna apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal postavke Payment Gateway -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) bi bio skraćen, kao max likovi ljubimaca je {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) bi bio skraćen, kao max likovi ljubimaca je {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resurs vlasnika lozinku Mandatno DocType: OAuth Client,Response Type,tip odgovora apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maksimalni broj korisnika @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Stol DocType: File,File Size,Veličina datoteke apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Morate se prijaviti da pošaljete ovaj obrazac DocType: User,Background Image,Pozadinska slika -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Odaberite svoju zemlju, vremensku zonu i valutu" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Odaberite svoju zemlju, vremensku zonu i valutu" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Između DocType: Async Task,Queued,Čekanju @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Stvoriti apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nevažeći filter: {0} DocType: Email Account,no failed attempts,nema neuspjelih pokušaja +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nije pronađen zadani predložak adrese. Izradite novi iz Postavke> Ispis i Branding> Predložak adrese. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Pristup Ključ DocType: OAuth Bearer Token,Access Token,Pristupni token @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub korisničko ime DocType: DocType,Image View,Prikaz slike apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Izgleda da je nešto pošlo po zlu za vrijeme transakcije. Budući da nismo potvrdili plaćanja, PayPal će se automatski vratiti vam taj iznos. Ako se to ne dogodi, molimo pošaljite nam e-mail i spomenuti korelacija ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","U lozinku uključite simbole, brojeve i velika slova" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",Umetnite Nakon polje '{0}' spominje u prilagođeno polje '{1}' s oznakom '{2}' ne postoji +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","U lozinku uključite simbole, brojeve i velika slova" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",Umetnite Nakon polje '{0}' spominje u prilagođeno polje '{1}' s oznakom '{2}' ne postoji DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Prvo pokaži ispis apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter na post @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Datoteka '{0}' nije pronađena apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Izvadite odjeljak DocType: User,Change Password,Promijeni lozinku -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Nevažeći email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Zdravo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Nevažeći email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Zdravo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Kraj događaj mora biti nakon početka apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nemate dopuštenje za izvješće o: {0} +DocType: System Settings,Apply Strict User Permissions,Primijte stroge korisničke dozvole DocType: DocField,Allow Bulk Edit,Dopusti Skupno uređivanje DocType: Blog Post,Blog Post,Blog članak -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Napredna pretraga +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Napredna pretraga apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Upute poništenja zaporke su poslane na e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Razina 0 odnosi se na dozvole na razini dokumenta, \ viših razina za dopuštenja na razini polja." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,Poništen DocType: Web Page,Sidebar and Comments,Bočna i komentari apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kada Izmijeniti dokument nakon Odustani i spasiti ga , on će dobiti novi broj koji jeverzija starog broja ." DocType: Stripe Settings,Publishable Key,Ključ koji se može objaviti -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} godina DocType: Workflow State,circle-arrow-left,krug sa strelicom nalijevo apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache poslužitelja nije pokrenut. Molimo kontaktirajte administratora / Tehnička podrška apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Naziv stranke -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Napravi novi zapis +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Napravi novi zapis apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pretraživanje DocType: Currency,Fraction,Frakcija DocType: LDAP Settings,LDAP First Name Field,LDAP Ime Polje -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Odaberi jednu od postojećih privitke +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Odaberi jednu od postojećih privitke DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ne postavljajte ime preko Prompt-a apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-pošta @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Razina ovlasti DocType: User,Send Notifications for Transactions I Follow,Pošalji obavijesti o transakcijama | Prati -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne može se postaviti Potvrdi, Odustani, Izmijeni bez zapisivanja" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Ne može se postaviti Potvrdi, Odustani, Izmijeni bez zapisivanja" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Jeste li sigurni da želite izbrisati privitak? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne može se izbrisati ili otkazati, jer {0} {1} povezan s {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nema rezultata za '

-apps/frappe/frappe/__init__.py +1063,Thank you,Hvala +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne može se izbrisati ili otkazati, jer {0} {1} povezan s {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Hvala apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Spašavanje DocType: Print Settings,Print Style Preview,Prikaz stila ispisa apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,U prikazu popisa DocType: Email Account,Use TLS,Koristi TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Netočno korisničko ime ili zaporka apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj prilagođeni JavaScript za obrasce. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Ne +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Ne ,Role Permissions Manager,Upravitelj ovlastima uloga apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novog ispisnog oblika -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Vedro Prilog +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Vedro Prilog apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obavezno: ,User Permissions Manager,Upravitelj korisničkih ovlasti DocType: Property Setter,New value to be set,Nova vrijednost za postaviti @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Prije apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizacija blogu. DocType: Workflow State,Time,Vrijeme DocType: DocField,Attach,Pričvrstiti -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći fieldname uzorak. To bi trebalo biti {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nije važeći fieldname uzorak. To bi trebalo biti {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Poslati zahtjev povratne samo ako postoji najmanje jedan komunikacijski dostupno dokument. DocType: Custom Role,Permission Rules,Pravila ovlasti DocType: GSuite Settings,GSuite Settings,GSuite postavke DocType: Address,Links,Linkovi -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vrijednost nestao +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vrijednost nestao apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Dodaj dijete -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Snimljeni zapis ne može biti brisan. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Snimljeni zapis ne može biti brisan. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Veličina DocType: GSuite Templates,Template Name,Naziv predloška -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Nova vrsta dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nova vrsta dokumenta DocType: Custom DocPerm,Read,Pročitaj DocType: Role Permission for Page and Report,Role Permission for Page and Report,Uloga Odobrenje za stranicu i Izvješće apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Poravnajte vrijednost apps/frappe/frappe/www/update-password.html +14,Old Password,Stara zaporka -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Postovi po {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Postovi po {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Za formatiranje stupaca, daju natpise stupaca u upitu." DocType: Has Domain,Has Domain,Ima domene apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nemate korisnički račun? Prijavite se -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : Ne mogu postaviti Zauzimanje Izmijeniti ako ne Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Uredi uloga Dozvole DocType: Communication,Link DocType,Link DOCTYPE @@ -2335,7 +2339,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Provjerite je li profil ima e-mail adresu apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Imate ne spremljene promjene u ovom obliku. Spremite ih prije nego nastavite dalje. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Zadana za {0} mora biti opcija +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Zadana za {0} mora biti opcija DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija DocType: User,User Image,Upute slike apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailovi su prigušeni @@ -2368,7 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Sljedeći DocType: Workflow State,ok,u redu DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ove vrijednosti će se automatski ažuriraju u prometu, te će također biti korisno ograničiti dozvole za ovog korisnika o transakcijama koje sadrže te vrijednosti." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Izdavač -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Nije uspjelo: {0} do {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Nije uspjelo: {0} do {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Odaberite Obavezno apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Pretraži apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-mail Poslano @@ -2380,7 +2384,7 @@ DocType: Async Task,Running,Trčanje apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Molimo Nadogradnja dodati više od {0} pretplatnika DocType: Workflow State,hand-left,ruka-lijeva -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} od {1} ne mogu biti jedinstveni +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} od {1} ne mogu biti jedinstveni DocType: Email Account,Use SSL,Koristite SSL DocType: Workflow State,play-circle,play-krug apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Odaberite format ispisa za uređivanje @@ -2435,7 +2439,7 @@ DocType: DocField,No Copy,Ne kopiraj DocType: Workflow State,qrcode,QR kod apps/frappe/frappe/www/login.html +34,Login with LDAP,Prijavi se s LDAP DocType: Web Form,Breadcrumbs,Krušnim mrvicama -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ako Vlasnika +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ako Vlasnika DocType: OAuth Authorization Code,Expiration time,vrijeme isteka DocType: Web Page,Website Sidebar,Bočna Website DocType: Web Form,Show Sidebar,Prikaži Bočna @@ -2455,7 +2459,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Ne mogu pronaći apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Imena i prezimena po sebi lako pogoditi. apps/frappe/frappe/config/website.py +93,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,Aktovka -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vrijednost ne može se mijenjati za {0} DocType: Feedback Request,Is Manual,je li Ručno DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil predstavlja boju gumba: Uspjeh - zelena, opasnosti - Crvena, Inverzni - crna, Primarni - tamnoplava, info - svjetlo plava, upozorenje - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ne Izvješće Loaded. Molimo koristite upita izvješće / [Prijavi Ime] pokrenuti izvješće. @@ -2532,7 +2536,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Napredak apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,prema ulozi apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Nedostaje Polja apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Pogrešna FIELDNAME '{0}' u autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Traži u vrsti dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Traži u vrsti dokumenta apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Dopustite polje ostati uređivati i nakon podnošenja DocType: Custom DocPerm,Role and Level,Uloga i razina ovlasti DocType: File,Thumbnail URL,Thumbnail URL @@ -2549,18 +2553,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Više informacija DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Vaša uplata je uspješno prihvaćen +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Vaša uplata je uspješno prihvaćen apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Žao nam je! Ne smiju vidjeti ovu stranicu. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Savjet: Dvostruki klik stanica za uređivanje DocType: Workflow State,bell,zvono apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Pogreška u upozorenju e-poštom apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Podijelite ovaj dokument sa +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Postavljanje> Upravitelj dozvola korisnika apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} Ne može biti čvor nultog stupnja budući da ima slijednike DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Dodaj privitak +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodaj privitak DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Hvala vam za vašu poruku -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Pošalji potvrdu čitanja +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Pošalji potvrdu čitanja DocType: Stripe Settings,Stripe Settings,Postavke trake DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Postavljanje putem web Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Pogrešna Prijava token @@ -2637,6 +2642,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Upozorenje: Ovaj format ispisa u starom stilu i ne može biti generiran preko API-ja. DocType: DocField,Print Width,Širina ispisa ,Setup Wizard,Čarobnjak za postavljanje +DocType: Address,GST State Number,GST Državni broj DocType: User,Allow user to login only before this hour (0-24),Dopustite korisniku da se prijaviti samo prije ovoliko sati (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Mapa je obavezno apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2662,7 +2668,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Mali Tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pristupiti {0} na {1} putem IP adresa {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,jednakima -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opcije 'Dynamic Link' tip terena mora ukazati na drugo polje veze s opcijama kao 'DOCTYPEhtml' DocType: About Us Settings,Team Members Heading,Članovi tima Naslov apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Neispravan format CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Postavite broj sigurnosnih kopija @@ -2673,7 +2679,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Autentičnosti treće strane DocType: Website Settings,Banner is above the Top Menu Bar.,Baner je iznad gornjeg izbornika. DocType: Razorpay Settings,API Secret,API tajna -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Izvješće o izvozu: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Izvješće o izvozu: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ne postoji DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2696,7 +2702,7 @@ DocType: Kanban Board Column,Column Name,Naziv Stupac DocType: Language,Based On,Na temelju apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Napravi zadani apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Provjerite URL Frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} od {1} ne može biti indeksirana +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} od {1} ne može biti indeksirana DocType: Communication,Email Account,E-mail računa DocType: Workflow State,Download,Preuzimanje DocType: Blog Post,Blog Intro,Blog intro @@ -2707,7 +2713,7 @@ DocType: Web Page,Insert Code,Umetnite kod DocType: ToDo,Low,Nisko apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Možete dodati dinamička svojstva iz dokumenta pomoću Jinja templating-a. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nevažeća granica {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Popis tipova dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Popis tipova dokumenta DocType: Event,Ref Type,Ref. Tip apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ako ste upload nove rekorde, napustiti ""ime"" (ID) stupac prazan." DocType: Address,Chattisgarh,Chhattisgarh @@ -2729,25 +2735,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Pošalji Print as PDF DocType: Web Form,Amount,Iznos DocType: Workflow Transition,Allowed,Dopušteno -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Tu može biti samo jednokratno u obliku apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nije moguće napisati format datoteke za {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Vrati na zadane postavke? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nevažeća naslovnica apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Neispravna Prijava. Pokušajte ponovno. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opcije potrebne za polje vrste veze ili tablice {0} u retku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opcije potrebne za polje vrste veze ili tablice {0} u retku {1} DocType: Auto Email Report,Send only if there is any data,Pošaljite samo ako postoji neki podaci apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset Filteri -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Dopuštenje na razini 0 mora biti postavljeno prije nego se postave više razine +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Dopuštenje na razini 0 mora biti postavljeno prije nego se postave više razine apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Raspored zatvara {0} DocType: Integration Request,Remote,Daljinski -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Izračunaj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunaj apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Odaberite vrstu dokumenta najprije apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdite vašu e-mail apps/frappe/frappe/www/login.html +42,Or login with,Ili se prijavite sa DocType: Error Snapshot,Locals,Mještani apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Dostaviti putem {0} na {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} spomenula vas je u komentaru u {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ili = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} je potrebno DocType: Integration Request,Integration Type,Vrsta integracije DocType: Newsletter,Send Attachements,Pošalji attachements @@ -2757,14 +2763,14 @@ DocType: DocField,Perm Level,Razina ovlasti apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Događanja u današnjem kalendaru DocType: Web Page,Web Page,Web stranica DocType: Blog Category,Blogger,Bloger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"U globalnom pretraživanju" nije dopušteno za vrstu {0} u retku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"U globalnom pretraživanju" nije dopušteno za vrstu {0} u retku {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Pogledajte popis -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum mora biti u obliku: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum mora biti u obliku: {0} DocType: Workflow,Don't Override Status,Ne Brisanje statusa apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Molimo dati ocjenu. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Zahtjev ocjena apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Pojam za pretraživanje -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Prvo Korisnik : Vi +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Prvo Korisnik : Vi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Odaberite Kolumne DocType: Translation,Source Text,Izvorni tekst apps/frappe/frappe/www/login.py +55,Missing parameters for login,Nedostaje parametri za prijavu @@ -2786,7 +2792,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Uvoz DocType: ToDo,Assigned By,Dodjeljuje apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Možete koristiti Prilagodi obrazac za postavljanje razine na poljima. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Odaberite svoju regiju +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Odaberite svoju regiju DocType: Custom DocPerm,Level,Razina DocType: Custom DocPerm,Report,Prijavi apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Iznos mora biti veći od 0. @@ -2806,7 +2812,7 @@ DocType: Website Theme,Background,Pozadina DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON popis DocTypes koriste za primjenu korisnik dozvole. Ako prazna, svi povezani DocTypes će se primjenjivati dozvole korisnicima." DocType: Report,Ref DocType,Ref. DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Dodajte ocjenu -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Ne mogu postaviti Izmijeniti bez Odustani apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Puni Stranica DocType: DocType,Is Child Table,Je Dijete Tablica apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} mora biti jedan od {1} @@ -2821,7 +2827,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ovo ide iznad slidesho apps/frappe/frappe/config/setup.py +260,Install Applications.,Instaliranje programa . DocType: Contact,Last Name,Prezime DocType: Event,Private,Privatan -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nema upozorenja za danas +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nema upozorenja za danas DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Pošalji E-mail Ispis privitaka u PDF (preporučeno) DocType: Web Page,Left,Lijevo DocType: Event,All Day,Svaki dan @@ -2835,7 +2841,7 @@ DocType: Event,Send an email reminder in the morning,Pošaljite email podsjetnik DocType: Blog Post,Published On,Objavljeno Dana DocType: Contact,Gender,Rod apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obavezna Informacije nedostaje: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ne može se postaviti kao jedinstven kao što je ne-jedinstvene vrijednosti apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Samo 200 umetci dozvoljeno u jednom zahtjevu DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referentna Tip @@ -2848,7 +2854,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,upozorenje-znak DocType: Workflow State,User,Korisnik DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Prikaži naslov u prozoru preglednika kao "prefiks - naslov" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Tekst u vrsti dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Tekst u vrsti dokumenta apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Pokreni testove apps/frappe/frappe/handler.py +91,Logged Out,Odjavljen apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Više... @@ -2873,13 +2879,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Trenutno Pregled DocType: DocField,Default,Zadano apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} je dodano -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Potražite "{0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Potražite "{0}" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Molimo spremite izvješće prvo apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,Dodao {0} pretplatnika apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne U DocType: Workflow State,star,zvijezda -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Vrijednosti razdvojene zarezom -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Maksimalna širina za vrstu valute je 100px u redku {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Vrijednosti razdvojene zarezom +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Maksimalna širina za vrstu valute je 100px u redku {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Povratne informacije pošaljite za {0} apps/frappe/frappe/config/website.py +13,Content web page.,Sadržaj web stranice. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj novu ulogu @@ -2897,7 +2903,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nije valjana LDAP korisnički apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nijevaljana država apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Odaberite drugi način plaćanja. PayPal ne podržava transakcije valuti „{0}” -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Traži polje {0} nije ispravan +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Traži polje {0} nije ispravan DocType: Workflow State,ok-circle,ok-krug apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Možete naći stvari tražeći "pronaći naranče u kupcima ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Žao nam je! Korisnik treba imati potpuni pristup vlastitom rekord. @@ -2957,7 +2963,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Metu DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst koji će biti prikazani na vezu na web stranicu, ako je taj oblik ima web stranicu. Link put će se automatski generira na temelju `page_name` i` parent_website_route`" DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Molimo postavite {0} Prvi +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Molimo postavite {0} Prvi DocType: Unhandled Email,Message-id,Id poruke DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Neuspješno diff --git a/frappe/translations/hu.csv b/frappe/translations/hu.csv index 36e155ce22..4b326f3ce9 100644 --- a/frappe/translations/hu.csv +++ b/frappe/translations/hu.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Felhasználónév DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Megjegyzés: Több szakasz lesz megengedve a mobil eszköz esetén apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Email beérkező üzenetek bekapcsolva ehhez a felhasználóhoz {users} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nem lehet elküldeni az e-mailt. Átléphette ezt a küldési limt felső határt: {0} az e-mailekre ebben a hónapban. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Véglegesen Küldje {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Véglegesen Küldje {0}? DocType: Address,County,Megye DocType: Workflow,If Checked workflow status will not override status in list view,"Ha be van jelölve, a munkafolyamat állapota nem hatálytalanítja az állapotát, listanézetben" apps/frappe/frappe/client.py +280,Invalid file path: {0},Érvénytelen fájl elérési út: {0} @@ -25,9 +25,9 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Kérj apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Fa DocType: User,User Emails,Felhasználó e-mail címek DocType: User,Username,Felhasználói név -apps/frappe/frappe/model/base_document.py +581,Value too big,Túl nagy érték +apps/frappe/frappe/model/base_document.py +580,Value too big,Túl nagy érték DocType: DocField,DocField,DocField -DocType: GSuite Settings,Run Script Test,Run Script teszt +DocType: GSuite Settings,Run Script Test,Script teszt futtatás DocType: Contact,Department,Részleg DocType: DocField,Options,Választhatók apps/frappe/frappe/client.py +86,Cannot edit standard fields,Nem szerkesztheti az alapértelmezett mezőket @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Naplók DocType: Custom DocPerm,This role update User Permissions for a user,Ez a Beosztás frissíti egy felhasználó felhasználói jogosultságait apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},{0} átnevezése DocType: Workflow State,zoom-out,kicsinyítés -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Nem tudja megnyitni {0}, ha annak másik példánya nyitott" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Nem tudja megnyitni {0}, ha annak másik példánya nyitott" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Táblázat {0} nem lehet üres apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Főkönyvi számlákkal apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Képek DocType: Communication,Reference Owner,Referencia Képviselő DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Legkisebb törtrész egysége (érme). Pl 1 cent USD, és azt kell megadni, mint 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Sor {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Sor {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Kérjük, adjon meg teljes nevet." apps/frappe/frappe/model/document.py +904,Beginning with,Kezdve apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Adatok importálása sablon apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Szülő DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ha engedélyezve van, a jelszó erőssége kényszerítve lesz a jelszó minimális pontszám értéke alapján. A 2 érték közepes erősségű, a 4 a nagyon erős." DocType: About Us Settings,"""Team Members"" or ""Management""","""Csapat tagok"" vagy ""Vezetőség""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Alapértelmezett 'Ellenőrzés' típusú mező legyen '0' vagy '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Alapértelmezett 'Ellenőrzés' típusú mező legyen '0' vagy '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Tegnap DocType: Contact,Designation,Titulus DocType: Test Runner,Test Runner,Teszt futtató @@ -69,8 +69,8 @@ apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You nee DocType: DocType,Is Published Field,Ez Közzététel mező DocType: Email Group,Email Group,E-mail csoport DocType: Note,Seen By,Látta -apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Több hozzáadása -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nem mint +apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Többszörös hozzáadás +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nem mint apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Kijelző címke megadása a területhez apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Helytelen érték: {0} ez kell {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Mezőtulajdonságok megváltoztatása (eltüntet, csak olvasható, engedélyt stb)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Beállít apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Rendszergazda bejelentkezve DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kapcsolat lehetőségek, mint a ""Vásárlói érdeklődések, Támogatási igények"" stb mindegyiket új sorba vagy vesszővel elválasztva." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Letöltés -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Beszúr +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Beszúr apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Válassza ki a {0} DocType: Print Settings,Classic,Klasszikus DocType: Desktop Icon,Color,Szín @@ -92,7 +92,7 @@ DocType: Deleted Document,Restored,Visszaállított apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,1 minute ago,1 perce apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +46,"Recommended bulk editing records via import, or understanding the import format.","Ajánlott tömeges bejegyzések szerkesztéséhez importálás útján, vagy az import formátumának megértéséhez." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +36,"Apart from System Manager, roles with Set User Permissions right can set permissions for other users for that Document Type.","Rendszergazdán kívül, beállított felhasználói engedélyekkel rendelkező beosztásokkal ehhez a Doctype típushoz tartozó felhasználók számára beállíthat engedélyeket." -DocType: Company History,Company History,Vállalkozásténet +DocType: Company History,Company History,Vállalkozás történet apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +9,Reset,visszaállítása DocType: Workflow State,volume-up,hangerő növelés apps/frappe/frappe/core/page/data_import_tool/importer.py +56,Only allowed {0} rows in one import,Csak {0} sor engedélyezett egy import-ban @@ -112,7 +112,7 @@ apps/frappe/frappe/utils/password_strength.py +99,"Repeats like ""abcabcabc"" ar apps/frappe/frappe/core/doctype/user/user.py +874,"If you think this is unauthorized, please change the Administrator password.","Ha úgy gondolja, ez nem engedélyezett, kérjük, változtassa meg a rendszergazdai jelszót." apps/frappe/frappe/email/doctype/email_account/email_account.py +78,{0} is mandatory,{0} kötelező DocType: Workflow State,eject,kidob -apps/frappe/frappe/public/js/legacy/clientscriptAPI.js +290,Field {0} not found.,Field {0} nem található. +apps/frappe/frappe/public/js/legacy/clientscriptAPI.js +290,Field {0} not found.,{0} mező nem található. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +16,Help for User Permissions,Súgó a felhasználói engedélyekhez DocType: Standard Reply,Owner,Tulajdonos DocType: Communication,Visit,Látogatás @@ -120,8 +120,8 @@ DocType: LDAP Settings,LDAP Search String,LDAP keresés karakterlánc DocType: Translation,Translation,Fordítás apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Telepítés apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Úr -DocType: Custom Script,Client,Kliens -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Ez az űrlap módosult, miután betöltötte" +DocType: Custom Script,Client,Ügyfél +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Ez az űrlap módosult, miután betöltötte" DocType: User Permission for Page and Report,User Permission for Page and Report,Felhasználói Engedély oldalhoz és jelentéshez DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ha nincs beállítva, a valuta pontosság a számformátumtól függ" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Ok apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Kérjük, adja meg a felhasználót" DocType: Email Unsubscribe,Email Unsubscribe,Email Leiratkozás DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Válasszon ki egy képet kb. 150px szélességüt, átlátszó háttérrel a legjobb eredményhez." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Az első felhasználó lesz a Rendszergazda (meg lehet változtatni erről később). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Az első felhasználó lesz a Rendszergazda (meg lehet változtatni erről később). ,App Installer,Alk. telepítő DocType: Workflow State,circle-arrow-up,kör-nyíl-fel apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Feltöltés... DocType: Email Domain,Email Domain,E-mail Domain DocType: Workflow State,italic,dőlt apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Mindenkinek -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Létrehozás nélkül nem állítható be az Import +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Létrehozás nélkül nem állítható be az Import apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Esemény és egyéb naptárak. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Minden mező kitöltése szükséges benyújtani a megjegyzést. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Húzza az oszlopok rendezéséhez @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Alapértelmezett oldalsáv menü apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nem lehet törölni a Főoldal és a Csatolmányok mappát apps/frappe/frappe/config/desk.py +19,Files,Fájlok apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Engedélyeket alkalmaz a felhasználókra, a beosztások hozzárendelése alapján." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nem küldhet e-mailt ezzel a dokumentummal kapcsolatban -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Válasszon ki legalább 1 oszlopot ebből {0} a rendezéshez / csoportosításhoz +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nem küldhet e-mailt ezzel a dokumentummal kapcsolatban +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Válasszon ki legalább 1 oszlopot ebből {0} a rendezéshez / csoportosításhoz DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Jelölje be ezt, ha teszteli a befizetéseit a Sandbox API belül" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Ön nem jogosult törölni egy alapértelmezett weboldal témát DocType: Feedback Trigger,Example,Példa @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Összes előfizető apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ha a beosztásnak nincs hozzáférése a 0. szinten, akkor a magasabb szintű értelmetlen." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Mentés másként DocType: Communication,Seen,Látott -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Továbba részletek megjelenítése +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Továbba részletek megjelenítése DocType: System Settings,Run scheduled jobs only if checked,"Csak akkor futtassa az ütemezett feladatokat, ha be van jelölve" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Csak akkor jelenik meg, ha fejezetcímek engedélyezve vannak" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archív @@ -211,7 +211,7 @@ DocType: User,"Enter default value fields (keys) and values. If you add multiple DocType: Communication,Message,Üzenet DocType: Communication,Rating,Értékelés DocType: Customize Form Field,"Print Width of the field, if the field is a column in a table","Nyomtatási szélesség a területen, ha a mező egy oszlop a táblázatban" -DocType: Dropbox Settings,Dropbox Access Key,Dropbox Access Key +DocType: Dropbox Settings,Dropbox Access Key,Dropbox belépési kulcs DocType: Workflow State,headphones,fejhallgató apps/frappe/frappe/email/doctype/email_account/email_account.py +74,Password is required or select Awaiting Password,"Jelszó szükséges, vagy válassza a Várakozás jelszót" DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,pl. valaszok@cegem.hu. Minden válasz ebbe a postafiókba fog jönni. @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Tábla megjelen apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Érvényes e-mail és név szükséges DocType: DocType,Hide Heading,Fejszöveg elrejtése DocType: Address,Current,Jelenlegi -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Kapcsolódó dokumentumok apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DOCTYPES csoportjai DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,törlés-kör @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Szűrő apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"A {0} mezőnév nem tartalmazhat speciális karaktereket, mint a(z) {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Frissítsen sok értéket egyszerre. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Hiba: A dokumentum módosításra került, miután megnyitotta" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nincs alapértelmezett Címsablon talált. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és Branding> Címsablon." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} kijelentkezett: {1} DocType: Address,West Bengal,Nyugat-Bengál -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nem állítható Hozzárendelés küldésre, ha nem Küldhető" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nem állítható Hozzárendelés küldésre, ha nem Küldhető" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","Szűrés ezzel ""{0}""" DocType: Salutation,Administrator,Rendszergazda @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blog Cím apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Alapértelmezett Beosztások nem kiiktathatók DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Hírlevél -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Nem lehet használni al-lekérdezést a sorrendezésben +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Nem lehet használni al-lekérdezést a sorrendezésben DocType: Web Form,Button Help,Gomb Súgó DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Szervezeti felépítés @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Kérje le a apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",Az előfizetése lejárt ekkor: {0}. Megújításhoz {1}. DocType: Workflow State,plus-sign,plusz-jel apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Telepítés már teljes -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Alkalm.: {0} nincs telepítve +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Alkalm.: {0} nincs telepítve DocType: Workflow State,Refresh,Frissítés DocType: Event,Public,Nyilvános apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nincs itt semmi látnivaló @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Tetszését nyil apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail támogatás DocType: DocField,Print Hide If No Value,"Nyomtatás elrejtése, ha nincs érték" DocType: Event,yellow,sárga -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Közzététel mezőnek érvényes mezőnévvel kell rendelkeznie +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Közzététel mezőnek érvényes mezőnévvel kell rendelkeznie apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Melléklet feltöltése DocType: Block Module,Block Module,Zárolt modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Export sablon @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Egy új fiókot hoztak létre az Ön számára itt: {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Utasítások kiküldve e-mailben -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Adja meg e-mail címzett(ek)et +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Adja meg e-mail címzett(ek)et DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mail zászló sorrend apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nem tudja azonosítani a megnyitott: {0}. Próbáljon ki valami mást. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,Üzenet ID DocType: Property Setter,Field Name,Mező neve apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nincs beállítva. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,vagy -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modul neve ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Folytatódik +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modul neve ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Folytatódik DocType: Custom Field,Fieldname,Mezőnév DocType: Workflow State,certificate,igazolás DocType: User,Tile,Megszólítás @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Összes verzió mutatása DocType: Workflow State,Print,Nyomtatás DocType: User,Restrict IP,IP korlátozás +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Műszerfal apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nem lehet e-mailt küldeni most apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Keressen vagy írja be a parancsot DocType: Communication,Timeline Name,Idővonal neve @@ -323,13 +322,13 @@ DocType: Contact,Sales Master Manager,Értékesítési törzsadat kezelő apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Egy utolsó lépés apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Dokument Típus (DocType) név melyet ehhez a mezőhöz szeretne kötni. pl Vevő DocType: User,Roles Assigned,Kiosztott Beosztások -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Keresés Súgó +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Keresés Súgó DocType: Top Bar Item,Parent Label,Szülő felirat apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Az Ön érdeklődése beérkezett. Rövidessen válaszolunk. Ha bármilyen további információja van, kérjük, válaszoljon erre az mail-re." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Jogosultságok automatikussan fordításra kerülnek az Általános Jelentésekhez és Keresésekhez. DocType: Event,Repeat Till,Ismételje Till apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +107,New,Új -apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Kérjük, állítsa script URL-Gsuite beállítások" +apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +82,Please set script URL on Gsuite Settings,"Kérjük, állítsa be a script URL elérési utat a Gsuite beállításoknál" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.html +11,Loading...,Betöltés... DocType: DocField,Password,Jelszó apps/frappe/frappe/utils/response.py +176,Your system is being updated. Please refresh again after a few moments,"Rendszere frissítésre kerül. Kérjük, térjen vissza néhány másodperc múlva" @@ -340,10 +339,11 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Fejszöveg szerkesztése DocType: File,File URL,Fájl URL DocType: Version,Table HTML,Táblázat HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nincs találat a '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Előfizetők hozzáadása apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,"A mai nap eseményei, teendői" DocType: Email Alert Recipient,Email By Document Field,Email dokumentum mezőből -DocType: Domain Settings,Domain Settings,Domain beállítások +DocType: Domain Settings,Domain Settings,Domén beállítások apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,Frissítés apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Nem lehet csatlakozni: {0} apps/frappe/frappe/utils/password_strength.py +163,A word by itself is easy to guess.,Egy szót önmagában könnyű kitalálni. @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Összeg a mező alapján apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Felhasználói kötelező a Megosztáshoz DocType: DocField,Hidden,Rejtett DocType: Web Form,Allow Incomplete Forms,Befejezetlen nyomtatvány engedélyezése -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} először meg kell adni +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} először meg kell adni apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Használjon egy pár szót, ne ismert mondatokat." DocType: Workflow State,plane,sík -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Hoppá. A fizetés nem sikerült. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ha új rekordokat tölt fel, az ""Sorszámozási csoportok"" kötelezővé válik, ha van ilyen." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Értesítést kaphat mai napról +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Értesítést kaphat mai napról apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType-ot csak Admin nevezhet át apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},megváltoztatott értéke ennek {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Kérjük, ellenőrizze e-mail a vizsgálathoz" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Becsukás nem lehet az űrlap végén +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Becsukás nem lehet az űrlap végén DocType: Communication,Bounced,Visszapattant DocType: Deleted Document,Deleted Name,Törölt név apps/frappe/frappe/config/setup.py +14,System and Website Users,Rendszer és a weboldal használói @@ -383,18 +382,18 @@ apps/frappe/frappe/utils/data.py +568,{0} and {1},{0} és {1} DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Mindig ""Tervezet"" fejszöveggel lássa el a vázlat nyomtatást" apps/frappe/frappe/core/doctype/communication/communication.js +228,Email has been marked as spam,Az E-mail spamként jelölt DocType: About Us Settings,Website Manager,Weboldal kezelő -apps/frappe/frappe/public/js/frappe/list/list_view.js +695,You selected Draft or Cancelled documents,Ezzel kiválasztott tervezete vagy Törölt dokumentumok +apps/frappe/frappe/public/js/frappe/list/list_view.js +695,You selected Draft or Cancelled documents,A kiválasztott tervezete vagy Törölt dokumentumai apps/frappe/frappe/model/document.py +1044,Document Queued,Sorbanálló dokumentum -DocType: GSuite Templates,Destination ID,Célazonosító +DocType: GSuite Templates,Destination ID,Cél azonosító DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,Link neve -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Mező {0} a {1} sorban nem lehet rejtett és kötelező alapértelmezett érték nélkül +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Mező {0} a {1} sorban nem lehet rejtett és kötelező alapértelmezett érték nélkül DocType: System Settings,mm/dd/yyyy,hh/nn/éééé apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Érvénytelen jelszó: DocType: Print Settings,Send document web view link in email,Dokumentum web nézet link küldése e-mailben apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Visszajelzésük erre a dokumentumra: {0} sikeresen mentve apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Előző -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} sor ehhez {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Váltó-pénznem. Pl ""Cent""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Válasszon feltöltött fájlt @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nincs csatolt fájl DocType: Version,Version,Verzió DocType: User,Fill Screen,Képernyő kitöltése -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nem lehet megjeleníteni ezt a jelentés fát, hiányzó adatok miatt. A legvalószínűbb, hogy éppen kiszűrt a jogosultságok miatt." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Kérjük beállítás alapértelmezett e-mail fiók a Beállítás> E-mail> E-mail fiók +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nem lehet megjeleníteni ezt a jelentés fát, hiányzó adatok miatt. A legvalószínűbb, hogy éppen kiszűrt a jogosultságok miatt." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Fájl kiválasztása apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Feltöltésen keresztüli szerkesztés -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","dokumentum típus ..., pl vevő" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumentum típus ..., pl vevő" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Ez az feltétel '{0}' érvénytelen DocType: Workflow State,barcode,Vonalkód apps/frappe/frappe/config/setup.py +232,Add your own translations,Addja hozzá a saját fordításait @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Szerda apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Beosztás alapú jogosultsági szabályoktól eltekintve, alkalmazhatja a DOCTYPES alapján a felhasználói engedélyeket." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ezek az engedélyek érvényesek az összes tranzakcióra, amihez a megengedett rekord kapcsolódik. Például, ha C vállakozás hozzáadódik a felhasználói engedélyekhez az X felhasználóhoz, az X felhasználó csak akkor lesz képes látni a tranzakciókat, amelynál a C vállakozás, kapcsolódó értékkel rendelkezik." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Kép mezőtnek érvénes mezőnévnek kell lennie +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Kép mezőtnek érvénes mezőnévnek kell lennie DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID azonosítója (név) a jogi alanynak, akinek tulajdonát kell beállítani" apps/frappe/frappe/limits.py +82,"To renew, {0}.",Megújítani {0}. @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Oldalsáv tételei apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} már telepítve DocType: Workflow State,exclamation-sign,felkiáltó-jel apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mutassa a jogosultságokat -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Idővonal mezőnek egy Linknek vagy Dynamic Linknek kell lennie +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Idővonal mezőnek egy Linknek vagy Dynamic Linknek kell lennie apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Időintervallum apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Oldal {0} ennyiből {1} @@ -435,8 +435,8 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Mutass apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","A titkosítási kulcs érvénytelen, Kérjük, ellenőrizze site_config.json fájlt" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Címzett DocType: Kanban Board Column,darkgrey,sötétszürke -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Sikeres: {0} - {1} -apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nem lehet megváltoztatni a felhasználói adatok demo. Kérjük regisztráljon egy új fiókot https://erpnext.com +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Sikeres: {0} - {1} +apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nem lehet megváltoztatni a felhasználói adatokat a demoban. Kérjük regisztráljon egy új fiókot itt: https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Kérjük kétszerezze meg ezt a változtatásra apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"PDF létrehozás nem sikerült, törött kép linkek miatt" DocType: Print Settings,Font Size,Betűméret @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Összecsukható apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Mentett apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Mivel kapcsolatban van szükséged segítségre? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Lehetőségek a választáshoz. Minden választást egy új sorba. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Véglegesen Mégsem {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Véglegesen Mégsem {0}? DocType: Workflow State,music,zene DocType: Web Page,Settings,Beállítások apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Kérjük, adja meg doctype" DocType: Print Format,Style Settings,Stílus beállítások -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Ennek a rendezés mezőnek {0} kell lennie egy érvényes mezőnévnek +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Ennek a rendezés mezőnek {0} kell lennie egy érvényes mezőnévnek apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Tovább DocType: Contact,Sales Manager,Értékesítési manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Átnevezés DocType: Print Format,Format Data,Adat formátum -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Mint +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Mint DocType: Customize Form Field,Customize Form Field,Űrlap mezőjének testreszabása apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Felhasználó engedélyezése DocType: OAuth Client,Grant Type,Grant típus apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Ellenőrizze, hogy mely dokumentumok olvashatók egy Felhasználó részére" -apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing alkalmazás nem engedélyezett -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,a % jelet kell használni helyettesítő karakterként -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail Domain nincs beállítva ehhez a számlához, létrehoz eggyet?" +apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Felsorolás alkalmazás nem engedélyezett +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,a % jelet kell használni helyettesítő karakterként +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail Domain nincs beállítva ehhez a számlához, létrehoz eggyet?" DocType: User,Reset Password Key,Jelszó visszaállítása Key DocType: Email Account,Enable Auto Reply,Automatikus válasz engedélyezése apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nem megtekintett @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Csak egyszer állítsa DocType: Email Queue Recipient,Email Queue Recipient,E-mail címzett várólista DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Felhasználónév {0} már létezik -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: {1} nem állítható be importálásra, mivel nem importálható" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: {1} nem állítható be importálásra, mivel nem importálható" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Van egy hiba ebben a Címsablonban {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Teljes nevéből apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nincs jogosultsága hozzáférjen ehhez a jelentéshez: {0} DocType: User,Send Welcome Email,Üdvözlő e-mail küldése apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Töltsd fel egy CSV fájlt, amely tartalmazza a felhasználói jogosultságokat ugyanabban a formában, mint a letöltésé." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Szűrő eltávolítása +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Szűrő eltávolítása DocType: Address,Daman and Diu,Daman és Diu DocType: Address,Personal,Személyes apps/frappe/frappe/config/setup.py +113,Bulk Rename,Tömeges átnevezés @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Normál DocType nem lehet alapértelmezett nyomtatási formátum, használjon testreszabott formátumot" DocType: Report,Query,Érdeklődés DocType: DocType,Sort Order,Rendezési sorrend -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""A lista nézetben"" nem megengedett {0} típusú az {1} sorban" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""A lista nézetben"" nem megengedett {0} típusú az {1} sorban" DocType: Custom Field,Select the label after which you want to insert new field.,"Válassza ki a címkét, amely után be szeretné szúrni az új területet." ,Document Share Report,Dokumentum Megosztás Jelentés DocType: User,Last Login,Utolsó belépés -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},A mezőnév szükséges a(z) {0} sorában +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},A mezőnév szükséges a(z) {0} sorában apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Oszlop DocType: Custom Field,Adds a custom field to a DocType,Hozzáad egy egyedi mezőt a DocType-hoz DocType: File,Is Home Folder,Ez a home mappa @@ -577,13 +577,13 @@ DocType: Integration Request,Authorized,Jóváhagyott DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Önálló típusoknak csak egy rekordja van és nincsenek tábla kapcsolatai. Értékek önállótáblákban tároltak. DocType: System Settings,Enable Password Policy,Engedélyezze a Jelszó irányelveket DocType: Web Form,"List as [{""label"": _(""Jobs""), ""route"":""jobs""}]","Listázza mint [{ ""felirat"": _ ( ""Állások""), ""útvonal"": ""munkahely""}]" -apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Mező típusa nem módosítható {0} +apps/frappe/frappe/custom/doctype/property_setter/property_setter.py +28,Field type cannot be changed for {0},Mező típusa nem módosítható erre: {0} DocType: Workflow,Rules defining transition of state in the workflow.,Állapot átvezetését meghatározó szabályok a munkafolyamatban. DocType: File,Folder,Mappa DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Hírlevél kezelő apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,1. lehetőség -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Minden hozzászólás +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Kérés közbeni hiba napló. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} sikeresen hozzá adta az E-mail csoporthoz. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikátor DocType: DocShare,Everyone,Mindenki DocType: Workflow State,backward,visszafelé -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Csak egy szabály elérhető ugyanahoz a beosztáshoz, Szinthez és {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Csak egy szabály elérhető ugyanahoz a beosztáshoz, Szinthez és {1}" DocType: Email Queue,Add Unsubscribe Link,Leiratkozási link hozzáadása apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nincs még hozzászólás. Indítson új beszélgetést. DocType: Workflow State,share,megosztás @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ez nem apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Előfizetők megktekintése apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Hölgy DocType: Website Theme,Background Color,Háttér színe -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Email küldés közben hibák voltak. Kérjük, próbálja újra." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Email küldés közben hibák voltak. Kérjük, próbálja újra." DocType: Portal Settings,Portal Settings,Portál Beállítások DocType: Web Page,0 is highest,0 a legnagyobb apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Biztos benne, hogy szeretné összekapcsolni ezt a kommunikációs {0}?" @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Kapcsolat beállítások apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Keresés ... DocType: Workflow State,text-width,szöveg-szélesség -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Elérte a maximális csatolmány korlátot ehhez a bejegyzéshez +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Elérte a maximális csatolmány korlátot ehhez a bejegyzéshez apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,A következő kötelező adatok kitöltése:
DocType: Email Alert,View Properties (via Customize Form),Tulajdonságok megtekintése (itt: Űrlap testreszabása) DocType: Note Seen By,Note Seen By,Megjegyzést láttta @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder jelentéseket közvetlenül irányítja a jelentést készítő. Semmi köze. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Kérjük, ellenőrizze az e-mail címét" apps/frappe/frappe/model/document.py +903,none of,egyik sem -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Küldj egy másolatot részemre +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Küldj egy másolatot részemre apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Töltse fel a felhasználói engedélyeket DocType: Dropbox Settings,App Secret Key,Alk titkos kulcs apps/frappe/frappe/config/website.py +7,Web Site,Web oldal apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Bejelölt tételek megjelennek a Munkaasztalon -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nem állítható be az Egyedüli típusra +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nem állítható be az Egyedüli típusra apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban pult {0} nem létezik. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} jelenleg betekint ebbe a dokumentumba DocType: ToDo,Assigned By Full Name,Hozzárendelt teljes nevén apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} frissített -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Jelentés nem lehet beállítani a Single típusú +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Jelentés nem lehet beállítani a Single típusú apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} napja DocType: Email Account,Awaiting Password,Várakozás jelszóra DocType: Address,Address Line 1,1. cím sor @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Munkafolyamat állapota (pl. vázlat, jóváhagyva, törölve)" DocType: Print Settings,Allow Print for Draft,Tervezet nyomtatásának engedélyezése apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Mennyiség megadása -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Küldje el ezt a dokumentumot megerősítésre +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Küldje el ezt a dokumentumot megerősítésre DocType: Contact,Unsubscribed,Leiratkozott apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Állítsa be az egyéni szerepeket az oldalhoz és jelentéshez apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Értékelés: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Adatok importálása eszköz DocType: Address,Dadra and Nagar Haveli,Dadra és Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Fájlok feltöltése, várjon néhány másodpercet." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Arcképed csatolása +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Arcképed csatolása apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Sor értékei megváltoztak DocType: Workflow State,Stop,Megáll DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link a megnyitni kívánt oldalra. Hagyja üresen, ha azt szeretné, hogy ez egy szülő csoport legyen." @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Címkék balra igazítása DocType: Help Article,Expert,Szakértő DocType: Workflow State,circle-arrow-right,kör-nyíl-jobb DocType: LDAP Settings,LDAP Server Url,LDAP kiszolgáló URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Nem lehet megnyitni a példányt amikor másik {0} nyitva +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Nem lehet megnyitni a példányt amikor másik {0} nyitva apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Sorba állított telepítésre DocType: Custom DocPerm,Custom DocPerm,Egyedi DocPerm DocType: Newsletter,Send Unsubscribe Link,Küldj leiratkozási linket @@ -700,15 +700,14 @@ DocType: Report,Script Report,Script-jelentés DocType: OAuth Authorization Code,Scopes,Hatáskör DocType: About Us Settings,Company Introduction,Vállalkozás bemutatása DocType: DocField,Length,Hossz -apps/frappe/frappe/config/setup.py +135,Restore or permanently delete a document.,Visszaállítani vagy véglegesen törölni a dokumentumot. -apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite teszt végre sikerrel. GSuite integráció helyesen van beállítva +apps/frappe/frappe/config/setup.py +135,Restore or permanently delete a document.,Visszaállítja vagy véglegesen törölni a dokumentumot. +apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,GSuite test executed with success. GSuite integration is correctly configured,GSuite teszt sikeressen végrehajtva. GSuite integráció helyesen beállított DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Szerint dinamikus téma, használja jinja cimke
 {{ doc.name }} Delivered 
" apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} eltávolították DocType: Custom DocPerm,Apply User Permissions,Alkalmazza a felhasználói engedélyeket DocType: User,Modules HTML,Modulok HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Beállítás> Felhasználói jogosultságok menedzser apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Hiányzó szükséges értékek DocType: DocType,Other Settings,Egyéb beállítások DocType: Social Login Keys,Frappe,Frappé @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth tulasjdonos Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nincs kijelölt dokumentumot apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Esemény -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0}, {1} írta:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0}, {1} írta:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nem lehet törölni az alapértelmezett mezőt. Elrejtheti, ha akarja" DocType: Top Bar Item,For top bar,A felső sávhoz apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nem sikerült azonosítani: {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Íróasztal hozzáférés DocType: Workflow State,minus,mínusz apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Szerver hiba: Kérjük, ellenőrizze a szerver naplókat, vagy forduljon tech támogatóhoz." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Üdvözölő e-mail kiküldve -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Készítsük elő a rendszert az első használatra. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Készítsük elő a rendszert az első használatra. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Kiemelt apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Már regisztrált DocType: System Settings,Float Precision,Lebegőpontos pontossága @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Nyomtatás engedélyezése apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nincs alkalmazás telepítve apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,"Jelölje meg a mezőt, mint Kötelezőt" DocType: Communication,Clicked,Rákattintott -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nincs engedélye a '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nincs engedélye a '{0}' {1} DocType: User,Google User ID,Google felhasználói azonosító apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Ütemezett küldeni DocType: DocType,Track Seen,Követés megtekintve @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,Egyidejű gyűlés DocType: OAuth Client,Client Credentials,Ügyfél bizonyítványok -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Modul vagy eszköz megnyitása +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Modul vagy eszköz megnyitása DocType: Communication,Delivery Status,Szállítás állapota DocType: Module Def,App Name,Alkalmazás neve apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max fájlméret engedélyezve {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Hivatkozó Kommunikáció DocType: Email Queue,Unsubscribe Method,Leiratkozási módszer DocType: GSuite Templates,Related DocType,Kapcsolódó DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Szerkeszteni a tartalom felvételéhez -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Válasszon nyelveket -apps/frappe/frappe/__init__.py +510,No permission for {0},Nincs engedélye erre {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Válasszon nyelveket +apps/frappe/frappe/__init__.py +509,No permission for {0},Nincs engedélye erre {0} DocType: DocType,Advanced,Fejlett apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Úgy tűnik API kulcs vagy API Secret rossz !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referencia: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Adja meg az űrlap típusát apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nincs címkézett rekord. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Mező eltávolítása DocType: User,Send Password Update Notification,Jelszó frissítés figyelmeztetés küldése -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Lehetővé teszi DocType, DocType. Legyen óvatos!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Lehetővé teszi DocType, DocType. Legyen óvatos!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Testreszabott formátumok nyomtatás, E-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Frissítve az új verzióra DocType: Custom Field,Depends On,Függés ettől @@ -884,7 +883,7 @@ DocType: Workflow Action,Workflow Action Master,Munkafolyamat művelet törzsada DocType: Custom Field,Field Type,Mező típusa apps/frappe/frappe/utils/data.py +471,only.,csak. apps/frappe/frappe/utils/password_strength.py +117,Avoid years that are associated with you.,"Kerüljük az Önnel kapcsolatos, társított éveket." -DocType: GSuite Templates,GSuite Templates,GSuite sablonok +DocType: GSuite Templates,GSuite Templates,GSuite Sablonok apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +665,Descending,Csökkenő apps/frappe/frappe/email/receive.py +61,Invalid Mail Server. Please rectify and try again.,"Érvénytelen Mail Szerver. Kérjük orvosolja, és próbálja újra." DocType: DocField,"For Links, enter the DocType as range. @@ -916,7 +915,7 @@ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +26,Please specify w DocType: Custom DocPerm,Set User Permissions,Felhasználói engedélyek beállítása DocType: Email Account,Email Account Name,Email fiók neve apps/frappe/frappe/core/page/permission_manager/permission_manager.js +251,Select Document Types,Válassza ki a dokumentum típusokat -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +216,Something went wrong while generating dropbox access token. Please check error log for more details.,"Hiba történt a generáló dropbox hozzáférési tokent. Kérjük, ellenőrizze a hiba napló további részletekért." +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +216,Something went wrong while generating dropbox access token. Please check error log for more details.,"Valami nem sikerült a dropbox hozzáférési token létrehozásakor. Kérjük, ellenőrizze a hiba naplót további részletekért." DocType: File,old_parent,old_parent apps/frappe/frappe/config/desk.py +54,"Newsletters to contacts, leads.","Hírlevelek kapcsolatoknak, érdeklődőknek" DocType: Email Account,"e.g. ""Support"", ""Sales"", ""Jerry Yang""","pl. ""Támogatás"", ""Értékesítés"", ""Jerry Yang""" @@ -934,7 +933,7 @@ DocType: Event,Every Day,Minden nap DocType: LDAP Settings,Password for Base DN,Jelszó a Base DN apps/frappe/frappe/core/doctype/version/version_view.html +73,Table Field,Táblázat mező apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +162,Columns based on,Oszlopok ez alapján -apps/frappe/frappe/config/integrations.py +68,Enter keys to enable integration with Google GSuite,"Adja meg a kulcsokat, hogy az integráció a Google GSuite" +apps/frappe/frappe/config/integrations.py +68,Enter keys to enable integration with Google GSuite,"Adja meg a kulcsokat, a Google GSuite integrációhoz" DocType: Workflow State,move,mozgás apps/frappe/frappe/model/document.py +1087,Action Failed,Művelet sikerült apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,Felhasználóknak @@ -947,9 +946,10 @@ DocType: User,"If the user has any role checked, then the user becomes a ""Syste DocType: System Settings,Date and Number Format,Dátum és szám formátum apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Melléklet maximális mérete {0} MB apps/frappe/frappe/model/document.py +902,one of,az egyik -apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Kérjük, válassza ki a másolandó fájl" +apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Kérjük, válassza ki a másolandó fájlt" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Ellenőrzés egy pillanat apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Címkék mutatása +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ha Szigorú felhasználói engedély van jelölve, és a felhasználó engedélye van definiálva egy DocType a felhasználó számára, akkor az összes olyan dokumentumot, ahol érték a kapcsolat üres, nem jelenik meg az adott felhasználó" DocType: Address,Billing,Számlázás DocType: Email Queue,Not Sent,Elküldetlen DocType: Web Form,Actions,Műveletek @@ -978,7 +978,8 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +18,1. Selec apps/frappe/frappe/templates/includes/list/filters.html +19,clear,világos apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,A napi eseményeknek ugyanazon a napon kell befejeződniük. DocType: Communication,User Tags,Felhasználó címkéi -apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Képek betöltése .. +apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Képek betöltése.. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Beállítás> Felhasználói DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},{0} alk. letöltése DocType: Communication,Feedback Request,Visszajelzés kérése @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Mentések apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Kapcsolat hozzáadása DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Választható: Mindig elküldi ezekre az azonosítókra. Minden e-mail cím egy új sorba -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Részletek elrejtése +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Részletek elrejtése DocType: Workflow State,Tasks,Feladatok DocType: Event,Tuesday,Kedd DocType: Blog Settings,Blog Settings,Blog Beállítások @@ -1015,10 +1016,9 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Írj egy Python fájl abban a mappában, ahol ezt a rendszer elmenti és visszatér az eredmény oszloppal." DocType: DocType,Sort Field,Rendező mező DocType: Razorpay Settings,Razorpay Settings,Razorpay beállítások -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Szűrő szerkesztése -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,A {0} mező {1} típusa nem kötelező -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ilyen például. Ha felhasználói engedélyek alkalmazása be van jelölve a DocType jelentéshez, de a felhasználói jogosultságok nincsenek meghatározása a felhasználó jelentéséhez, akkor az összes jelentések megtekinthetők annak a Felhasználónak" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Adj hozzá többet +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Szűrő szerkesztése +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,A {0} mező {1} típusa nem kötelező +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Több hozzáadása apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Diagram elrejtése DocType: System Settings,Session Expiry Mobile,Munkamenet Lejárat Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Keressen eredményeket erre @@ -1032,13 +1032,15 @@ DocType: Communication,Delayed,Késedelem apps/frappe/frappe/config/setup.py +128,List of backups available for download,Letölthető mentések listája apps/frappe/frappe/www/login.html +89,Sign up,Regisztráljon DocType: Test Runner,Output,Teljesítmény +DocType: Email Alert,Set Property After Alert,Tulajdonság beállítása után Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Új mezők hozzáadása űrlapokhoz. -apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Úgy néz ki, hogy valami baj van ezen az oldalon a Paypal konfigurációt." +apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Úgy néz ki, hogy valami baj van ezen az oldalon a Paypal konfigurációval." DocType: File,rgt,RGT DocType: Email Account,Sendgrid,Küldési háló DocType: Workflow State,leaf,levél DocType: Portal Menu Item,Portal Menu Item,Portál menüpont DocType: User Email,Email ID,E-mail ID azonosító +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ha Apply felhasználói engedélyek ellenőrizzük Report DocType de a felhasználói jogosultságok vannak definiálva jelentés a felhasználó számára, akkor az összes jelentések jelennek meg, hogy a felhasználó" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"A listát a forrásokat, amelyeket az Ügyfél App férhet hozzá, miután a felhasználó ezt lehetővé teszi.
pl projekt" DocType: Translation,Translated Text,Lefordított szöveg DocType: Contact Us Settings,Query Options,Érdeklődés beállítások @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kapcsolatok DocType: System Settings,Setup Complete,Telepítés befejezve apps/frappe/frappe/config/setup.py +66,Report of all document shares,Jelentés az összes dokumentum részvények apps/frappe/frappe/www/update-password.html +18,New Password,Új jelszó -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Szűrés {0} hiányzik +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Szűrés {0} hiányzik apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Bocsánat! Nem törölheti az automatikusan generált megjegyzéseket DocType: Website Theme,Style using CSS,Stílus CSS segítségével apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referencia DocType @@ -1094,12 +1096,12 @@ DocType: Kanban Board Column,Kanban Board Column,Kanban pult oszlop apps/frappe/frappe/utils/password_strength.py +76,Straight rows of keys are easy to guess,Egymásutáni billentyűsorokat könnyű kitalálni DocType: Communication,Phone No.,Telefonszám DocType: Workflow State,fire,tűz -apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,; nem engedélyezett állapotban +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,; nem engedélyezett ebben az állapotban DocType: Async Task,Async Task,Aszinkron Feladat DocType: Workflow State,picture,kép apps/frappe/frappe/www/complete_signup.html +22,Complete,Teljes DocType: Customize Form,Image Field,képmező -apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +31,Something went wrong during the token generation. Please request again an authorization code.,"Valami elromlott során a token generáció. Kérjük, kérjen ismét egy engedélyezési kódot." +apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +31,Something went wrong during the token generation. Please request again an authorization code.,"Valami nem sikerült a token létrehozásakor. Kérjük, kérjen ismét egy engedélyezési kódot." DocType: Print Format,Custom HTML Help,Egyéni HTML Súgó apps/frappe/frappe/core/page/user_permissions/user_permissions.js +308,Add A New Restriction,Adjon hozzá egy új korlátozást apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3,See on Website,Lásd a honlapon @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Zárolt modulok apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Visszatérve hossz {0} '{1}' a '{2}'; Beállítása hosszában {3} okoz csonkolást adatok. DocType: Print Format,Custom CSS,Egyedi CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Hozzászólás hozzáadása -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Figyelmen kívül hagyva: {0} - {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Figyelmen kívül hagyva: {0} - {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Hiba napló automatizált eseményeknél (ütemező). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Nem érvényes vesszővel elválasztott érték (CSV fájl) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Alapértelmezett bejövő DocType: Workflow State,repeat,ismétlés DocType: Website Settings,Banner,Zászló DocType: Role,"If disabled, this role will be removed from all users.","Ha le van tiltva, ez a beosztás el lessz távolítva az összes felhasználótól." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Segítség a kereséshez +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Segítség a kereséshez apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Regisztráltam, de kiiktatva" DocType: DocType,Hide Copy,Rejtett másolat apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Összes beosztás törlése @@ -1134,7 +1136,7 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname whi apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Dokumentumok saját maga által Önhöz rendelt. DocType: User,Email Signature,Email aláírás DocType: Website Settings,Google Analytics ID,Google Analytics ID -DocType: Website Theme,Link to your Bootstrap theme,Hivatkozás link a Bootstrap témára +DocType: Website Theme,Link to your Bootstrap theme,Hivatkozás link a rendszertöltő témára DocType: Custom DocPerm,Delete,Törlés apps/frappe/frappe/public/js/frappe/views/treeview.js +212,New {0},Új {0} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +199,No User Restrictions found.,Nem találhatók felhasználói korlátozások. @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Ország apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Címek DocType: Communication,Shared,Megosztott -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Dokumentum nyomtatás csatolása +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Dokumentum nyomtatás csatolása DocType: Bulk Update,Field,Mező DocType: Communication,Received,Beérkezett DocType: Social Login Keys,Google Client ID,Google kliens ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Érdeklődés jelentés DocType: User,Set New Password,Új jelszó beállítása DocType: User,Github User ID,Github nyilvános felhasználónév apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ha Document Típus -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nem lehet törölni, vagy törölni, mert {0} {1} kapcsolódik {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nem lehet törölni, vagy törölni, mert {0} {1} kapcsolódik {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Ismeretlen alkalmazás {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s nem érvényes jelentési formátum. Jelentés formátum \ az alábbi kell legyen %s DocType: Communication,Chat,Csevegés -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},A {0} mezőnév többször előfordul a {1} sorban +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},A {0} mezőnév többször előfordul a {1} sorban apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} az {1} és {2} közt ebben a sorban # {3} DocType: Communication,Expired,Lejárt DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),"Mező oszlopainak száma egy rácsban (Összes oszlopnak egy rácsban, kevesebbnek kell lennie, mint 11)" @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Van egy fiókot? Be apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Ismeretlen nyomtatási formátum: {0} DocType: Workflow State,arrow-down,nyíl-le apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Összecsuk -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Felhasználó törlése nem engedélyezett {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Felhasználó törlése nem engedélyezett {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Frissítve DocType: Help Article,Likes,Kedvtelések DocType: Website Settings,Top Bar,Felső sáv DocType: GSuite Settings,Script Code,Script kód apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Felhasználó E-mail létrehozása -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nem Engedélyek megadva +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nincs engedély megadva apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globális beállítások: A felhasználók csak a kiválasztott ikonokat választhatják -apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nem található +apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nem található DocType: Custom Role,Custom Role,Egyedi szerep apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Kezdőlap / Teszt mappa 2 DocType: System Settings,Ignore User Permissions If Missing,Figyelmen kívül hagyja felhasználói engedélyeket ha hiányoznak -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Kérjük, mentse a dokumentumot a feltöltés előtt." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Kérjük, mentse a dokumentumot a feltöltés előtt." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Adja meg a jelszavát -DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret +DocType: Dropbox Settings,Dropbox Access Secret,Dropbox belépési titkosítás apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Másik hozzászólás hozzáadása apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType szerkesztése apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Leiratkozott a hírlevélről -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Becsukásnak a szekció elválasztás előtt kell lennie +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Becsukásnak a szekció elválasztás előtt kell lennie apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Utoljára módosította DocType: Workflow State,hand-down,kéz-le -DocType: Address,GST State,GST állam -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Küldés nélkül nem lehet Visszavonni +DocType: Address,GST State,GST Állam +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Küldés nélkül nem lehet Visszavonni DocType: Website Theme,Theme,Téma apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Hibák voltak. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Átirányított URL jóváhagyíási kódhoz kötve @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Beál DocType: Website Theme,Text Color,Szöveg színe DocType: Desktop Icon,Force Show,Eröltetés mutatása apps/frappe/frappe/auth.py +78,Invalid Request,Érvénytelen kérelem -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ez az űrlap nem rendelkezik bemenettel +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ez az űrlap nem rendelkezik bemenettel apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Munkamenet Lejáratnak ebben a formátumban kell lennie {0} DocType: Website Sidebar Item,Group,Csoport DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Válasszon célt = ""_blank"" egy új oldalon megjelenítéshez" @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Figyelmen kívül hagyja a kódolási hibákat. DocType: Workflow State,wrench,csavarkulcs apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nincs beállítva -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Beállítás> Felhasználói DocType: Authentication Log,Date,Dátum DocType: Website Settings,Disable Signup,Feliratkozás tiltása apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Döljön hátra kényelmesen miközben a rendszer elvégzi a telepítést. Ez eltarthat néhány pillanatig. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Megjegyzés hozzáadása DocType: DocField,Mandatory,Kötelező apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul exportálása -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Alapvető jogosultságok nincsenek beállítva +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Alapvető jogosultságok nincsenek beállítva apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Az előfizetés le fog járni ekkor: {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Mentéseinek letöltési linkjét elküldi a következő e-mail címre: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Elküld, Mégse, Módosít jelentése" @@ -1259,14 +1260,14 @@ DocType: Desktop Icon,query-report,érdeklődés-jelentés apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Rendelt {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Szűrők mentve DocType: DocField,Percent,Százalék -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Kérjük, állítsa be a szűrőket" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Kérjük, állítsa be a szűrőket" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Összekötött ezzel DocType: Workflow State,book,könyv DocType: Website Settings,Landing Page,Érkezési oldal -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Hiba az Egyedi Scriptben +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Hiba az Egyedi Scriptben apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Név apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import kérések sorban állnak. Ez eltarthat néhány pillanatig, kérjük, legyen türelemmel." -apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nincs engedély beállítva erre a kritériumokat. +apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nincs engedély beállítva erre a kritériumokra. DocType: Auto Email Report,Auto Email Report,Auto e-mail jelentés apps/frappe/frappe/core/page/usage_info/usage_info.html +51,Max Emails,Max e-mailek apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +575,Delete comment?,Megjegyzés törlése? @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Belépés engedélyezé apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Nincs elég jogosultsága ehhez az erőforráshoz. Kérjük, forduljon a rendszergazdájágoz, hogy hozzáférhessen." DocType: Custom Field,Custom,Egyedi apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Email figyelmeztető telepítése különböző szempontok alapján. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Hozzászólésok kiállítva ez alá: {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Hozzászólésok kiállítva ez alá: {0} DocType: Email Alert,Send alert if date matches this field's value,"Riasztást küld, ha a dátum megegyezik ennek a mezőnek az értékével" DocType: Workflow,Transitions,Átvezetések apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Eltávolít {0} és törli az összes adatot? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Bejelentkezés után DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Nyomtatás DocType: Workflow State,thumbs-up,hüvelykujj-fel -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiók a Beállítás> E-mail> E-mail fiók" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Pontosságnak az 1. és 6. között kell lennie +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Pontosságnak az 1. és 6. között kell lennie apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Továbbított: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,és DocType: Error Snapshot,Frames,Keretek @@ -1295,13 +1295,13 @@ DocType: About Us Team Member,Image Link,Képhivatkozás DocType: Auto Email Report,Report Filters,jelentés szűrő apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,most DocType: Workflow State,step-backward,visszalépés -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Kérjük, állítsa be a Dropbox hozzáférési kulcsokat az oldal beállításopkban" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ezt a Rekordot törli, hogy elküldhesse erre az e-mail címre" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Csak a kötelező mezők szükségesek új rekordokhoz. Törölheti a nem kötelező oszlopokat, ha akarja." apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +269,Unable to update event,Nem lehet frissíteni az eseményt apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +304,Payment Complete,Fizetés befejeződött -apps/frappe/frappe/utils/data.py +734,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Szűrés kell 4 értékek (DOCTYPE, fieldname, operátor, érték): {0}" +apps/frappe/frappe/utils/data.py +734,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Szűrésnek 4 értékűnek kell lennie (doctype, mezőnév, operátor, érték): {0}" apps/frappe/frappe/utils/bot.py +89,show,mutasd DocType: Address Template,Address Template,Címlista sablon DocType: Workflow State,text-height,szöveg-magasság @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Ez a mellékletek mappája apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Összes kibontása apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Érvényes bejelentkezési ID azonosító szükséges. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Nyissa meg újra -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Megszakította a fizetést -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Kérjük, válasszon egy érvényes csv fájlt adatokkal" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Kérjük, válasszon egy érvényes csv fájlt adatokkal" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} visszavonta ezt a dokumentumot ettől: {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,"Dokumentum állapota átvezetve innen: {0} ide: {1}, nem engedélyezett" DocType: DocType,"Make ""name"" searchable in Global Search","Legyen kereshető a ""név"" a Globális keresésben" @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ere DocType: Help Category,Help Category,Súgó kategória apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,A(z) {0} felhasználó letiltva apps/frappe/frappe/www/404.html +8,Page missing or moved,Oldal hiányzó vagy áthelyezték -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Szerkesztve {0} tulajdonság DocType: DocType,Route,Útvonal apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Fizetési átjáró beállításai DocType: DocField,Name,Név apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Túllépte a max hely területét: {0} a tervéhez: {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Keresés a dokumentumokban DocType: OAuth Authorization Code,Valid,Érvényes -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Link megnyitása -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,A te nyelved +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Link megnyitása +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,A nyelve apps/frappe/frappe/desk/form/load.py +46,Did not load,Nem töltötte be apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Add Row DocType: Tag Category,Doctypes,Doctype-k @@ -1354,11 +1352,11 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Visszajelzés DocType: Address,Lakshadweep Islands,Lakshadweep szigetek apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Írhat apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bizonyos dokumentumokat, mint egy számla, nem lehet változtatni, miután véglegesítették. Ezeknek a dokumentumoknak a végleges állapota a Benyújtás. Korlátozni lehet ezt a Benyújtó beosztással." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Ön nem exportálja ezt a jelentést +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Ön nem exportálja ezt a jelentést apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 kiválasztott elem DocType: Newsletter,Test Email Address,Teszt e-mail cím DocType: ToDo,Sender,Küldő -DocType: GSuite Settings,Google Apps Script,Google Apps Script +DocType: GSuite Settings,Google Apps Script,Google alkalmazások Script apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment,Szólj hozzá DocType: Web Page,Description for search engine optimization.,Leírás a kereső optimalizáláshoz. apps/frappe/frappe/website/doctype/help_article/templates/help_article.html +20,More articles on {0},További cikkek: {0} @@ -1374,13 +1372,13 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Megjelenítés Modul Szekcióban DocType: Website Theme,Footer Color,Lábléc színe apps/frappe/frappe/core/doctype/communication/communication.js +53,Relink,Átszerkeszt -apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +68,Seems ldap is not installed on system.,"Úgy tűnik, az LDAP nincs telepítve a rendszer." +apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +68,Seems ldap is not installed on system.,"Úgy tűnik, az LDAP nincs telepítve a rendszerben." apps/frappe/frappe/www/feedback.py +39,Invalid Reference,Érvénytelen hivatkozás -apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again later","Nem küldhető visszajelzés, kérjük, próbálja újra később" +apps/frappe/frappe/www/feedback.py +73,"Cannot submit feedback, please try again later","Nem küldhető visszajelzés, kérjük, majd próbálja újra" DocType: Web Page,"Page to show on the website ",Oldalt megmutatja a honlapon DocType: Note,Seen By Table,Látott táblázat -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +217,Select template,sablon kiválasztása +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +217,Select template,Válasszon sablont apps/frappe/frappe/core/page/user_permissions/user_permissions.py +59,Cannot remove permission for DocType: {0} and Name: {1},Nem lehet eltávolítani az engedélyt erre a DocType-ra: {0} és névre: {1} apps/frappe/frappe/desk/page/activity/activity_row.html +13,Logged in,Bejelentkezve apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +32,Incorrect UserId or Password,Hibás felhasználó azonosító vagy jelszó @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokumentum azonosító DocType: Print Settings,Letter,Levél -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Képmező típusúnak kell lennie a csatolt képnek +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Képmező típusúnak kell lennie a csatolt képnek DocType: DocField,Columns,Oszlopok DocType: Async Task,Succeeded,Sikerült apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Kötelező mezők szükséges {0} @@ -1398,7 +1396,7 @@ apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Removed,Sorok apps/frappe/frappe/permissions.py +393,{0} {1} not found,{0} {1} nem található DocType: Communication,Attachment Removed,Csatolmány eltávolítva apps/frappe/frappe/utils/password_strength.py +114,Recent years are easy to guess.,Az elmúlt évek könnyű kitalálni. -DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,"Itt található Full Error és lehetővé teszi a bejelentést a kérdések, hogy a fejlesztő" +DocType: System Settings,Show Full Error and Allow Reporting of Issues to the Developer,Mutassa a teljes hibát és lehetővé teszi annak bejelentését a fejlesztők felé apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +272,Show a description below the field,Mutasson egy leírást a mező alatt DocType: DocType,ASC,ASC DocType: Workflow State,align-left,igazítás-balra @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Szövegszerkesztő apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Rólunk oldal beállítása apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Egyedi HTML szerkesztése DocType: Error Snapshot,Error Snapshot,Hiba Pillanatkép -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,tartalmazza +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,tartalmazza DocType: Email Alert,Value Change,Érték Változás DocType: Standard Reply,Standard Reply,Válasz sablonok apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Beviteli mező szélessége @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Használja ezt a mezőnevet cím generálásához apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Email-ból apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Meghívás Felhasználóként -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Válassza ki a csatolmányokat +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Válassza ki a csatolmányokat apps/frappe/frappe/model/naming.py +94, for {0},{0} részére apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Hibák voltak. Kérjük, jelentse ezt." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nem nyomtathatja ki ezt a dokumentumot +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nem nyomtathatja ki ezt a dokumentumot apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Kérjük, állítsa be a szűrők értékét a Jelentések szűrő táblázatában." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Jelentés betöltése +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Jelentés betöltése apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Az előfizetése ma jár le. DocType: Page,Standard,Általános apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Fájl csatolása @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionális kiterjesztések DocType: LDAP Settings,Base Distinguished Name (DN),Bázis elkülönítő név (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Beszélgetés elhagyása -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Választást nem állította be erre a link mezőre: {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Választást nem állította be erre a link mezőre: {0} DocType: Customize Form,"Must be of type ""Attach Image""","Ilyen típusnak kell lennie: ""Kép csatolása""" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Minden kijelölés megszüntetése apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nem lehet hatástalanítani 'Csak olvasható' mező: {0} @@ -1527,13 +1525,13 @@ DocType: Authentication Log,Logout,Kilépés apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Magasabb szintű engedélyek Csoportmező szintű engedélyekkel. Minden csoportmezőnek van Jogosultsági szint beállítása, és a beállított szabályok határozzák meg, hogy az engedélyek vonatkoznak a csoportmezőre. Ez akkor hasznos, ha azt akarjuk, hogy rejtve maradjanak egyes mezők vagy bizonyos mezőkön csak olvashatók legyenek bizonyos beosztásokra." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Ha ezeket az utasítások nem segítenek, kérjük, adjon javaslatokat a GitHub Problémás ügyekhez." DocType: Workflow State,bookmark,könyvjelző -apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not include '/' (slash),A mappa neve nem tartalmazhat „/” (per jel) +apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not include '/' (slash),Mappa neve nem tartalmazhat '/' (per jelet) DocType: Note,Note,Jegyzet apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Hibajelentés -apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Visszajelzés a feltételek nem felelnek meg -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Idővonal mezőnek egy érvényes mezőnévnek kell lennie +apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Visszajelzés feltételek nem egyeznek +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Idővonal mezőnek egy érvényes mezőnévnek kell lennie DocType: Currency,Symbol,Szimbólum -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Sor # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Sor # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Új jelszó e-mailben apps/frappe/frappe/auth.py +245,Login not allowed at this time,A bejelentkezés tilos ebben az időben DocType: Email Account,Email Sync Option,E-mail szinkronizálás lehetőség @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Szöveg apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Típusválasz gyakori árajánlatkérésekhez. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Alapértelmezett küldés DocType: Workflow State,volume-off,hangerő ki -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Tetszését nyilvánította: {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Tetszését nyilvánította: {0} DocType: Footer Item,Footer Item,Lábléc elem ,Download Backups,Adatbázis és priv. & pub. fájlok mentéseinek letöltése apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Kezdőlap / Teszt mappa 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Szöveg igazítása apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Név nem tartalmazhat speciális karaktereket, mint a {0}" DocType: Contact Us Settings,Forward To Email Address,Továbbítás emailcímekre apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Összes adat mutatása -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Cím mezőnek érvényes mezőnévvel kell rendelkeznie +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Cím mezőnek érvényes mezőnévvel kell rendelkeznie apps/frappe/frappe/config/core.py +7,Documents,Dokumentumok DocType: Email Flag Queue,Is Completed,Elkészült apps/frappe/frappe/www/me.html +22,Edit Profile,Profil szerkesztése @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Ez a mező csak akkor jelenik meg, ha a mezőnévnek itt megadott értéke van VAGY a szabályok igazak (példák): myfield eval:doc.myfield=='My Value'eval:doc.age>18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Ma +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Ma apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ha beállította ezt, a felhasználók csak akkor férhetnek hozzá a dokumentumokhoz (pl. Blogbejegyzés), ahol a link jelen van (pl. Blogger)." DocType: Error Log,Log of Scheduler Errors,Ütemező hiba naplója DocType: User,Bio,Életrajz @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 csillag jelenti a legalacsonyabb & 5 csillag a legmagasabb minősítést DocType: Event,Ref Name,Hivatkozott tétel DocType: Web Page,Center,Központ +DocType: Email Alert,Value To Be Set,Érték lesz beállítva apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Első szint DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Képviseli az egy dokumentumon megengedett álapotot és az állapot megváltoztatásához hozzárendelt beosztást. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Űrlap frissítése @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Van Web nézete apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType nevét egy betüvel kell kezdeni és csak betűket, számokat, szóközöket és aláhúzást tartalmazhat" DocType: Communication,Spam,Levélszemét DocType: Integration Request,Integration Request,Integráció kérése -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Kedves +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Kedves DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Számlák felhasználó DocType: Web Page,HTML for header section. Optional,HTML a fejlécben. Választható apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ez a funkció új és még kísérleti -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximum {0} sor megengedett +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximum {0} sor megengedett DocType: Email Unsubscribe,Global Unsubscribe,Globális Leiratkozás apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ez egy nagyon gyakori jelszó. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Nézet DocType: Communication,Assigned,Hozzárendelt DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Válasszon nyomtatási formátumot +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Válasszon nyomtatási formátumot apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Rövid billentyűzet minták könnyen kitalálhatóak DocType: Portal Settings,Portal Menu,Portál Menü apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,"Ennek a hossznak: {0}, 1 és 1000 között kell lennie" @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Felhasználó nem kereshet apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Érvénytelen kimeneti formátum DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Alkalmazza ezt a szabályt, ha a felhasználó a tulajdonosa" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Lesz belépési azonosítója +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,A belépési azonosítója lesz apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Jelentés készítés DocType: Note,Notify users with a popup when they log in,Értesíti a felhasználókat egy felugró ablakkal a bejelentkezásükkor apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} nem létezik, válasszon egy új célt egyesítéshez" @@ -1701,7 +1700,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.py +67,Cannot set apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +134,Add to To Do,Add hozzá a Tennivalókhoz DocType: Footer Item,Company,Vállalkozás apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Én vagyok a felelős -apps/frappe/frappe/config/integrations.py +73,Google GSuite Templates to integration with DocTypes,Google GSuite sablonokat integráció DOCTYPES +apps/frappe/frappe/config/integrations.py +73,Google GSuite Templates to integration with DocTypes,Google GSuite sablonok integrációi a DocTypes -el apps/frappe/frappe/public/js/frappe/ui/messages.js +229,Verify Password,Jelszó megerősítése apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Hibák voltak apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Bezárás @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,Szerepek engedély apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Frissítés DocType: Error Snapshot,Snapshot View,Pillanatkép megtekintése apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Kérjük, mentse a hírlevelet a küldés előtt" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},"Lehetőségnek egy érvényes DocType -nak kell lennie erre a mezőre: {0} , ebben a sorban {1}" +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} év (ek) ezelőtt +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},"Lehetőségnek egy érvényes DocType -nak kell lennie erre a mezőre: {0} , ebben a sorban {1}" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Tulajdonságok szerkesztése DocType: Patch Log,List of patches executed,Javítások listája végrehajtott apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} már leiratkozott -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikációs közeg +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikációs közeg DocType: Website Settings,Banner HTML,HTML szalagcím apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Kérjük, válasszon más fizetési módot. Razorpay nem támogatja a tranzakciókat ebben a pénznemben '{0}'" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Várakozó a mentésre. Ez eltarthat néhány perctől egy óráig. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Regisztráció OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nem lehet ""{2}"". Ebből az egyiknek kell lennie: ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nem lehet ""{2}"". Ebből az egyiknek kell lennie: ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} vagy {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Asztali Ikonok Megjelenítése vagy Elrejtése apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Jelszó frissítése @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Megmutatása a sortöréseket a szakaszok után DocType: Blogger,Short Name,Rövid név apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Oldal: {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Ön kiválasztja az szinkronizálási lehetőséget az ÖSSZESRE, akkor szinkronizál mindent \ az olvasott és olvasatlan üzenetet a szerverről. Ez is okozhat megkettőzést \ a kommunikációban (e-mailek)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Fájlok Mérete @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Beszerzési menedzser DocType: Custom Script,Sample,Minta apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Besorolatlan Címkék DocType: Event,Every Week,Minden héten +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-mail fiók nincs beállítva. Kérjük, hozzon létre egy új e-mail fiók a Beállítás> E-mail> E-mail fiók" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Kattintson ide, hogy ellenőrizze a használatot vagy frissítsen egy nagyobb előfizetésre" DocType: Custom Field,Is Mandatory Field,Ez kötelező mező DocType: User,Website User,Weboldal Felhasználó @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Egyéni oldalsáv menü DocType: Workflow State,pencil,ceruza apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Csevegés üzenetek és egyéb bejelentések. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Nem lehet beszúrni utána így mint {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Nem lehet beszúrni utána így mint {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,{0} megosztása vele apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-mail fiók beállításához írja be a jelszavát: DocType: Workflow State,hand-up,kéz-fel DocType: Blog Settings,Writers Introduction,Írók Bevezetés DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,"Hiba az e-mail értékelés közben: {0}. Kérjük, javítsa a sablont." +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,"Hiba az e-mail értékelés közben: {0}. Kérjük, javítsa a sablont." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Dokumentum típus vagy Beosztás kiválasztás az elindításhoz. DocType: Contact,Passive,Passzív DocType: Contact,Accounts Manager,Fiókkezelõ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Fizetése törlődik. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Válasszon fájl típust DocType: Help Article,Knowledge Base Editor,Tudásbázis szerkesztő apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Az oldal nem található @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Tulajdonság típusa DocType: Workflow State,screenshot,képernyőkép apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Csak Administrator menthet egy szabványos jelentést. Kérjük, nevezze át, és mentse." DocType: System Settings,Background Workers,Munkavállalók háttere +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Mezőnév {0} ütköző meta objektum DocType: Deleted Document,Data,Adat apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentum állapota apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Sikerült ennyit {0} ebből {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Mutassa a felhasználói engedélyeket apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Be kell jelentkeznie Rendszergazda Beosztással a mentések eléréséhez. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Megmaradó -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Kérjük mentsen a csatolás elött. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Kérjük mentsen a csatolás elött. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Hozzáadva: {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Alapértelmezett téma van beállítva ebben {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},"MezőTípust nem lehet megváltoztatni erről {0} erre {1}, a {2} sorban" @@ -1860,20 +1863,19 @@ DocType: System Settings,System Settings,Rendszer beállításai apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Munkamenet indítása sikertelen apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ezt az e-mailt elküldte ide: {0} és másolatot ide: {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Kérjük beállítás alapértelmezett e-mail fiók a Beállítás> E-mail> E-mail fiók -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Hozzon létre egy új {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Hozzon létre egy új {0} DocType: Email Rule,Is Spam,Ez Levélszemét apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},{0} megnyitva +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0} megnyitva DocType: OAuth Client,Default Redirect URI,Alapértelmezett átirányítási URI DocType: Email Alert,Recipients,Címzettek DocType: Workflow State,ok-sign,ok-jel -apps/frappe/frappe/config/setup.py +134,Deleted Documents,törölt dokumentumok -apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Desktop Icon már létezik +apps/frappe/frappe/config/setup.py +134,Deleted Documents,Törölt dokumentumok +apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +164,Desktop Icon already exists,Asztal ikon már létezik apps/frappe/frappe/public/js/frappe/form/toolbar.js +141,Duplicate,Megsokszoroz DocType: Newsletter,Create and Send Newsletters,Létrehoz és küld hírleveleket apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,Dátumtól a dátimig előtt kell legyen -apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Document +apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +216,GSuite Document,GSuite Dokumentum apps/frappe/frappe/email/doctype/email_alert/email_alert.py +29,Please specify which value field must be checked,"Kérjük, határozza meg melyik érték mezőt kell llenőrizni" apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signifies the parent table in which this row must be added","""Szülő"" jelenti azt a szülő táblát, amelyhez ezt a sort hozzá kell adni" DocType: Website Theme,Apply Style,Stílus alkalmazása @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Súgóbejegyzések ,Modules Setup,Modulok beállítása apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Típus: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,A fizetés nem sikerült. DocType: Communication,Unshared,Meg nem osztott DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nem található @@ -1907,7 +1910,7 @@ apps/frappe/frappe/utils/password.py +93,Password cannot be more than 100 charac DocType: OAuth Client,App Client ID,Alk kliens ID DocType: Kanban Board,Kanban Board Name,Kanban pult neve DocType: Email Alert Recipient,"Expression, Optional","Kifejezés, opcionális" -DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Másolja be ezt a kódot és az üres Code.gs a projekt script.google.com +DocType: GSuite Settings,Copy and paste this code into and empty Code.gs in your project at script.google.com,Másolja be ezt a kódot és az üres Code.gs a script.google.com projektjébe apps/frappe/frappe/email/queue.py +456,This email was sent to {0},Ezt az e-mailt elküldte ide: {0} DocType: DocField,Remember Last Selected Value,Emlékezzen az utolsó kiválasztott értékre apps/frappe/frappe/core/page/user_permissions/user_permissions.js +334,Please select Document Type,"Kérjük, válasszon Document típust" @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Márka képe DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Felső menüsor, lábléc és logo telepítése." DocType: Web Form Field,Max Value,Max érték -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{0} -hoz a {1} szinten a {2} -ben a {3} sorban +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{0} -hoz a {1} szinten a {2} -ben a {3} sorban DocType: Contact,All,Összes DocType: Email Queue,Recipient,Címzett DocType: Communication,Has Attachment,Van melléklete @@ -1936,20 +1939,21 @@ apps/frappe/frappe/config/setup.py +178,Drag and Drop tool to build and customiz apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Expand,Kibont DocType: Address,Sikkim,Sikkim apps/frappe/frappe/core/page/permission_manager/permission_manager.js +434,Set,Beállítás -apps/frappe/frappe/desk/search.py +41,This query style is discontinued,Ez a lekérdezés stílus megszűnt +apps/frappe/frappe/desk/search.py +41,This query style is discontinued,Ez a lekérdezési stílus megszűnt DocType: Email Alert,Trigger Method,Kapcsoló módszer -apps/frappe/frappe/utils/data.py +744,Operator must be one of {0},Operator közül kell {0} -DocType: Dropbox Settings,Dropbox Access Token,Dropbox Access Token +apps/frappe/frappe/utils/data.py +744,Operator must be one of {0},Operátornak ezek közül kell lenniük: {0} +DocType: Dropbox Settings,Dropbox Access Token,Dropbox belépési token DocType: Workflow State,align-right,igazítás-jobbra DocType: Auto Email Report,Email To,E-mail címzett apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Mappa {0} nem üres DocType: Page,Roles,Beosztások -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,A {0} mező nem választható. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Hiba: Érték hiányzik {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,A {0} mező nem választható. DocType: System Settings,Session Expiry,Munkamenet lejárati ideje DocType: Workflow State,ban-circle,Ban-körbe DocType: Email Flag Queue,Unread,Olvasatlan DocType: Bulk Update,Desk,Íróasztal -apps/frappe/frappe/utils/data.py +728,Filter must be a tuple or list (in a list),Szűrés kell lennie est vagy lista (a listán) +apps/frappe/frappe/utils/data.py +728,Filter must be a tuple or list (in a list),Szűrésnek rekordnal vagy listának kell lennie (egy listánban) apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Írj egy SELECT érdeklődést. Megjegyzés eredmény nem lapozható (minden adatot egy menetben küld) . DocType: Email Account,Attachment Limit (MB),Csatolási limit (MB) DocType: Address,Arunachal Pradesh,Arunachal Pradesh @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Felhasználói alapértékek apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Új létrehozása DocType: Workflow State,chevron-down,Chevron-le -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Emailt nem küldte ide: {0} (leiratkozott / letiltott) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Emailt nem küldte ide: {0} (leiratkozott / letiltott) DocType: Async Task,Traceback,Visszakövet DocType: Currency,Smallest Currency Fraction Value,Legkisebb pénznem törtrész érték apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Hozzárendelni @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,-tól DocType: Website Theme,Google Font (Heading),Google betűtípus (Fejléc) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Válasszon először egy csoportcsomópontot. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},"Megtalálta ezt: {0} , ebben: {1}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},"Megtalálta ezt: {0} , ebben: {1}" DocType: OAuth Client,Implicit,Hallgatólagos DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Hozzáfűzés mint kommunikáció ehhez a DocType-hoz (kötelező mezők, ""Állapot"", ""Tárgy"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI fogadásához engedélyezési kódot, ha a felhasználó engedélyezi a hozzáférést, valamint a kudarc válaszokat. Jellemzően a REST végpont téve az Ügyfél által App.
pl http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nem szabad változtatni {0} benyújtás követően +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nem szabad változtatni {0} benyújtás követően DocType: Communication,Comment Type,Megjegyzés Típus DocType: OAuth Client,OAuth Client,OAuth kliens apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Felhasználók @@ -1986,16 +1990,16 @@ DocType: DocField,Signature,Aláírás apps/frappe/frappe/public/js/frappe/form/share.js +115,Share With,Megosztás vele apps/frappe/frappe/core/page/permission_manager/permission_manager.js +136,Loading,Betöltés apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Facebook, Google, GitHub.","Adja meg a kulcsokat, hogy lehetővé tegye a Facebook, Google, GitHub keresztüli belépést." -apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},A fájl nem olvasható formátumban {0} +apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nem olvasható fájl formátum erre: {0} DocType: Auto Email Report,Filter Data,Adatok szűrése apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Címke hozzáadása -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Kérjük, csatoljon egy fájlt először." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Kérjük, csatoljon egy fájlt először." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Hibák voltak a név beállításakor, kérjük forduljon a rendszergazdához" -apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Bejövő e-mail fiók nem helyes +apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Bejövő e-mail fiók nem helyes apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ Please enter a valid email address so that we can get back.","Úgy tűnik, hogy írásos neved helyett az e-mail. \ Kérem adjon meg egy érvényes e-mail címét, hogy kap vissza." DocType: Website Slideshow Item,Website Slideshow Item,Weboldal diavetítés eleme -DocType: GSuite Templates,Template ID,sablonazonosító +DocType: GSuite Templates,Template ID,Sablon azonosító DocType: Portal Settings,Default Role at Time of Signup,Alapértelmezett beosztás a Regisztráció idején DocType: DocType,Title Case,Cím függő DocType: DocType,"Naming Options: @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,Email elküldve DocType: DocField,Ignore XSS Filter,Figyelmen kívül hagyja az XSS szűrőt apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,eltávolított apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox biztonsági mentés beállítások -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Küldés e-mailként +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Küldés e-mailként DocType: Website Theme,Link Color,Link színe apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,A(z) {0} felhasználó nem tiltható le apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kedves Rendszergazda," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Országod +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Országa DocType: Event,Sunday,Vasárnap apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Rácsnézetben DocType: Address Template,Template,Sablon @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP beállítások apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Módosításáról apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal fizetési átjáró beállításai -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) lesz megcsonkítva, mivel a max. megengedett karakterek száma {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) lesz megcsonkítva, mivel a max. megengedett karakterek száma {2}" DocType: OAuth Client,Resource Owner Password Credentials,Erőforrásgazdának hitelesítő jelszó DocType: OAuth Client,Response Type,Válasz típusa apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max felhasználó @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Táblázat DocType: File,File Size,Fájlméret apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Be kell jelentkezie az űrlap beküldéséhez DocType: User,Background Image,Háttérkép -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Válassza ki országát, időzóna és a pénznemét" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Válassza ki országát, időzóna és a pénznemét" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Között DocType: Async Task,Queued,Sorba állított @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Létrehozás apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Érvénytelen szűrő: {0} DocType: Email Account,no failed attempts,nincs sikertelen kísérlet +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nincs alapértelmezett Címsablon talált. Kérjük, hozzon létre egy újat a Beállítás> Nyomtatás és Branding> Címsablon." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Alk hozzáférési kulcs DocType: OAuth Bearer Token,Access Token,Hozzáférési token @@ -2059,14 +2064,14 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github felhasználói név DocType: DocType,Image View,Kép megtekintése apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Úgy néz ki, valami rossz a tranzakció során. Mivel mi nem erősítettük meg a fizetést, Paypal automatikusan visszatéríti Önnek ezt az összeget. Ha nem, kérjük, küldjön egy e-mailt, és ezt a korreláció-azonosítót: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Szimbólumok, számok és nagybetűk jelszó" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Beszúrás utánna mező '{0}', amit említ ebben az Egyedi mezőben '{1}', ezzel a címkével '{2}', nem létezik" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Használjon szimbólumokat, számokat és nagybetűket a jelszóban" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Beszúrás utánna mező '{0}', amit említ ebben az Egyedi mezőben '{1}', ezzel a címkével '{2}', nem létezik" DocType: Workflow State,signal,jel DocType: DocType,Show Print First,Mutassa a nyomtatást először apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter hozzászóláshoz apps/frappe/frappe/public/js/frappe/form/link_selector.js +106,Make a new {0},Létrehoz egy újat {0} apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +144,New Email Account,Új e-mail fiók -apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,dokumentum Restaurált +apps/frappe/frappe/core/doctype/deleted_document/deleted_document.py +28,Document Restored,Dokumentum helyreállított apps/frappe/frappe/core/page/usage_info/usage_info.html +86,Size (MB),Méret (MB) DocType: Help Article,Author,Szerző apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Sending,Küldés folytatása @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Fájl '{0}' nem található apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Távolítsuk el szakasza DocType: User,Change Password,Változtass jelszót -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Érvénytelen e-mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Helló! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Érvénytelen e-mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Helló! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Esemény vége legyen az indítás után apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nincs jogosultsága ehhez a jelentéshez: {0} +DocType: System Settings,Apply Strict User Permissions,Szigorú Felhasználói jogosultságok DocType: DocField,Allow Bulk Edit,Engedélyezi a tömeges szerkesztést DocType: Blog Post,Blog Post,Blog bejegyzés -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Részletes keresés +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Részletes keresés apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,A jelszó visszaállításához szükséges utasítok el lettek küldve emailen apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0 szint van a dokumentumok szintű engedélyekkel, \ magasabb szinteket mező szintű engedélyekkel." @@ -2109,20 +2115,19 @@ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Day,Nap apps/frappe/frappe/core/doctype/user/user.js +49,Set Desktop Icons,Asztali ikonok beállítása apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,Fizetési sikeres apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,{0} sz. levél -apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Hiba a feltöltés fájlokat +apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Hiba a fájlok feltöltésekor DocType: OAuth Bearer Token,Revoked,Visszavont DocType: Web Page,Sidebar and Comments,Oldalsáv és megjegyzések apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ha módosítják a dokumentumot, miután a Mégse, és mentse el, akkor kap egy új számot, hogy egy változata a régi számot." DocType: Stripe Settings,Publishable Key,Közzétehető kulcs -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} év (ek) ezelőtt DocType: Workflow State,circle-arrow-left,kör-nyíl-bal apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"A Redis cache szerver nem fut. Kérjük, forduljon az adminisztrátorhoz vagy a technikai támogatáshoz" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Ügyfél neve -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Új tétel bejegyzés generálás +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Új tétel bejegyzés generálás apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Keres DocType: Currency,Fraction,Törtrész DocType: LDAP Settings,LDAP First Name Field,LDAP Utónév mező -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Válasszon a meglévő mellékletekből +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Válasszon a meglévő mellékletekből DocType: Custom Field,Field Description,Mező leírása apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nevet nem állította be a felszólítással apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail beérkezett üzenetek @@ -2154,7 +2159,7 @@ DocType: Communication,Text Content,Szöveges tartalom DocType: Customize Form Field,Is Custom Field,Ez egyéni mező DocType: Workflow,"If checked, all other workflows become inactive.","Ha be van jelölve, minden más munkafolyamat inaktívvá válik." apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Label]:[Field Type]/[Options]:[Width] -DocType: Workflow State,folder-close,mappa-bezárt +DocType: Workflow State,folder-close,mappa-bezár apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} nem szabad átnevezni DocType: Custom Script,Custom Script,Egyéni szkript DocType: Address,Address Line 2,2. cím sor @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Infó: DocType: Custom Field,Permission Level,Jogosultsági szint DocType: User,Send Notifications for Transactions I Follow,Küldjön értesítéseket a Tranzakciókról I Követésekről -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Írás nélkül nem elérhető a Küldés, Törlés, és Módosítás" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Írás nélkül nem elérhető a Küldés, Törlés, és Módosítás" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Biztos benne, hogy törölni szeretné a mellékletet?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nem lehet törölni, vagy törölni, mert {0} {1} kapcsolódik {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nincs találat a '

-apps/frappe/frappe/__init__.py +1063,Thank you,Köszönöm +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nem lehet törölni, vagy törölni, mert {0} {1} kapcsolódik {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Köszönöm apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Mentés DocType: Print Settings,Print Style Preview,Nyomtatvány stílus előnézet apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,Listanézetben DocType: Email Account,Use TLS,TLS használata apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Érvénytelen belépés vagy jelszó apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Egyéni JavaScript hozzáadása űrlapokhoz. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Szér sz. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Szér sz. ,Role Permissions Manager,Beosztás jogosultság kezelő apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Új nyomtatási formátum neve -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Melléklet törlés +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Melléklet törlés apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Kötelező: ,User Permissions Manager,Felhasználói jogosultság kezelő DocType: Property Setter,New value to be set,Új érték kerül beállításra @@ -2216,27 +2220,27 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 napj apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blogbejegyzések kategorizálása. DocType: Workflow State,Time,Idő DocType: DocField,Attach,Csatolás -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nem érvényes mezőnév minta. Ilyennek kellene lennie {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nem érvényes mezőnév minta. Ilyennek kellene lennie {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Visszajelzés küldés kérése, csak ha van legalább egy elérhető kommunikációs a dokumentumhoz." DocType: Custom Role,Permission Rules,Jogosultsági szabályok -DocType: GSuite Settings,GSuite Settings,GSuite beállítások +DocType: GSuite Settings,GSuite Settings,GSuite Beállítások DocType: Address,Links,Linkek -apps/frappe/frappe/model/base_document.py +428,Value missing for,Érték hiányzik erre +apps/frappe/frappe/model/base_document.py +427,Value missing for,Érték hiányzik erre apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Al csoport hozzáadása -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Beküldött Belyegyzést nem lehet törölni. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Beküldött Belyegyzést nem lehet törölni. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Mentés mérete DocType: GSuite Templates,Template Name,Sablon neve -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Új típusú dokumentum +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Új típusú dokumentum DocType: Custom DocPerm,Read,Olvas DocType: Role Permission for Page and Report,Role Permission for Page and Report,Szerep engedély az oldalhoz és jelentéshez apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Igazítás értéke apps/frappe/frappe/www/update-password.html +14,Old Password,Régi jelszó -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Hozzászólások {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Hozzászólások {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Oszlopok formázásához, adjon oszlop megnevezés feliratokat a érdeklődéseknél." -DocType: Has Domain,Has Domain,van Domain +DocType: Has Domain,Has Domain,Van doménje apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nincs még fiókja? Regisztráljon -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Nem állítható Hozzárendelés módosításra, ha nem Küldhető" -DocType: Address,Bihar,Bihar +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Nem állítható Hozzárendelés módosításra, ha nem Küldhető" +DocType: Address,Bihar,Bihári apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Beosztás Engedélyek Szerkesztése DocType: Communication,Link DocType,Link DocType DocType: Social Login Keys,Social Login Keys,Közösségi oldalak kulcsai @@ -2285,7 +2289,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +79,Set Permi DocType: DocField,Set non-standard precision for a Float or Currency field,Állítsa be a nem szabványos pontosságot a lebegőpontos vagy pénznem mezőhöz DocType: Email Account,Ignore attachments over this size,Mellékletek figyelmen kívül hagyása e méret felett DocType: Address,Preferred Billing Address,Előnyben részesített számlázási cím -apps/frappe/frappe/config/integrations.py +63,External Documents,külső dokumentumok +apps/frappe/frappe/config/integrations.py +63,External Documents,Külső dokumentumok apps/frappe/frappe/database.py +235,Too many writes in one request. Please send smaller requests,"Túl sok írás egy kérésnél. Kérjük, küldje kisebb kérésekkel" apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,Értékek megváltoztak DocType: Workflow State,arrow-up,nyíl-fel @@ -2313,7 +2317,7 @@ apps/frappe/frappe/core/doctype/communication/communication.js +96,Relink Commun DocType: Top Bar Item,Right,Jobb DocType: User,User Type,Felhasználó típusa apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +65,Click table to edit,Kattintson a táblázatra a szerkesztéshez -DocType: GSuite Settings,Client ID,ügyfél-azonosító +DocType: GSuite Settings,Client ID,Ügyfél azonosító apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select User,Válasszon Felhasználót DocType: Async Task,Reference Doc,Hivatkozó Doc DocType: Communication,Keep a track of all communications,Összes kommunikáció nyomonkövetése @@ -2326,7 +2330,7 @@ apps/frappe/frappe/utils/password_strength.py +108,Avoid sequences like abc or 6 apps/frappe/frappe/public/js/frappe/request.js +112,Please try again,Kérlek próbáld újra apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 3,3. lehetőség DocType: Unhandled Email,uid,uid -apps/frappe/frappe/modules/utils.py +75,Customizations exported to {0},Testreszabásainak exportált {0} +apps/frappe/frappe/modules/utils.py +75,Customizations exported to {0},Testreszabásai exportáltak ide {0} DocType: Workflow State,Edit,Szerkesztés apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +227,Permissions can be managed via Setup > Role Permissions Manager,Engedélyeket beállíthatja itt: Telepítés > Beosztás jogosultság kezelő DocType: Contact Us Settings,Pincode,Irányítószám @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Kérjük, ellenőrizze, hogy a profilhoz tartozik egy e-mail cím" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Nem mentett módosításai vannak ebben az űrlapban. Kérjük, mentse a folytatás előtt." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,"Alapértelmezetten ehhez: {0}, kell lennie egy lehetőségnek" +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,"Alapértelmezetten ehhez: {0}, kell lennie egy lehetőségnek" DocType: Tag Doc Category,Tag Doc Category,Címke Doc Kategória DocType: User,User Image,Felhasználó képe apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailek elnémítva @@ -2358,7 +2362,7 @@ DocType: Footer Item,Group Label,Csoport felirat DocType: Kanban Board,Kanban Board,Kanban pult DocType: DocField,Report Hide,Jelentés elrejtése apps/frappe/frappe/public/js/frappe/views/treeview.js +17,Tree view not available for {0},Fa nézet nem elérhető erre {0} -DocType: DocType,Restrict To Domain,Korlátozás Domain +DocType: DocType,Restrict To Domain,Korlátozás Doménre DocType: Domain,Domain,Domén DocType: Custom Field,Label Help,Felirat súgó DocType: Workflow State,star-empty,csillag-üres @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Következ DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ezek az értékek automatikusan frissülnek a tranzakciókban és hasznos lesz ennek a felhasználónak a jogosultságait korlátozni olyan tranzakciókon, ahol ezek az értékek szerepelnek." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Kiadó -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Sikertelen: {0} - {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Sikertelen: {0} - {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Kötelezők kiválasztása apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Böngésszen apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Küldött e-mailek @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Futás apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Jelszó visszaállítása apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Kérjük, frissítsd, adjon hozzá több mint {0} előfizetőt" DocType: Workflow State,hand-left,kéz-bal -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,MezőTípus: {0} ehhez: {1} nem lehet egyedi +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,MezőTípus: {0} ehhez: {1} nem lehet egyedi DocType: Email Account,Use SSL,SSL használata DocType: Workflow State,play-circle,lejátszás-kör apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Válasszon nyomtatási formátumot a szerkesztéshez @@ -2387,13 +2391,13 @@ DocType: Address,Shipping,Szállítás DocType: Workflow State,circle-arrow-down,kör-nyíl-le apps/frappe/frappe/config/desk.py +38,Private and public Notes.,A magán- és állami jegyzetek. DocType: DocField,Datetime,Dátumidő -apps/frappe/frappe/www/feedback.py +45,Expired link,Lejárt a linket +apps/frappe/frappe/www/feedback.py +45,Expired link,Lejárt link apps/frappe/frappe/templates/includes/login/login.js +174,Not a valid user,Nem érvényes felhasználó -apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a valid email address.,Kérjük valós e-mail címet adjon meg! +apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a valid email address.,Kérjük valós e-mail címet adjon meg. DocType: Workflow State,arrow-right,nyíl-jobbra DocType: Workflow State,Workflow state represents the current state of a document.,Munkafolyamat állapotámak jelenlegi állását mutatja a dokumentum. apps/frappe/frappe/utils/oauth.py +221,Token is missing,Token hiányzik -apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Megjegyzés: A Page Név megtöri előző URL ehhez az oldalhoz. +apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Megjegyzés: Az oldal név megváltoztatása megtöri az oldalhoz tartozó előző URL címet. apps/frappe/frappe/utils/file_manager.py +269,Removed {0},{0} eltávolítása DocType: Company History,Highlight,Fontos események DocType: OAuth Provider Settings,Force,Eröltesse @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,Nincs másolat DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP általi belépés DocType: Web Form,Breadcrumbs,Zsemlemorzsa (Breadcrumb) -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ha Tulajdonos +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ha Tulajdonos DocType: OAuth Authorization Code,Expiration time,Lejárati idő DocType: Web Page,Website Sidebar,Weboldal oldalsáv DocType: Web Form,Show Sidebar,Oldalsáv megjelenítése @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},"Nem található apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Neveket és vezetékneveket önmagukban könnyű kitalálni. apps/frappe/frappe/config/website.py +93,Knowledge Base,Tudásbázis DocType: Workflow State,briefcase,aktatáska -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Az érték nem változotatható ezen: {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Az érték nem változotatható ezen: {0} DocType: Feedback Request,Is Manual,Ez kézikönyv DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stílus képviseli a gomb színét: Siker - Zöld, Veszély - Red, Visszafordítótt - fekete, Elsődleges - Dark Blue, Infó - Light Blue, Figyelmeztetés - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Nem töltött be jelentést. Használja a Érdeklődés-jelentést/[Jelentés neve] a jelentések futtatásához. @@ -2531,13 +2535,13 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Haladás apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,szerep szerint apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Hiányzó mezők apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Érvénytelen mezőnév '{0}' az autonévadással -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Keresés dokumentum típus között +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Keresés dokumentum típus között apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,A mező szerkeszthető maradhat a benyújtását követően is DocType: Custom DocPerm,Role and Level,Beosztás és szint DocType: File,Thumbnail URL,Az URL miniatűr apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Egyéni jelentések DocType: Website Script,Website Script,Weboldal skript -DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Ha nem használja a saját közzé a Google Apps Script webalkalmazás használhatja az alapértelmezett https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec +DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,Ha nem használja a saját Google Apps Script webalkalmazását akkor használhatja az alapértelmezettet https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec apps/frappe/frappe/config/setup.py +188,Customized HTML Templates for printing transactions.,Testreszabott HTML sablonok nyomtatáshoz tranzakciókat. apps/frappe/frappe/public/js/frappe/form/print.js +250,Orientation,Irányultság DocType: Workflow,Is Active,Aktív @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Több információ DocType: Desktop Icon,Desktop Icon,Asztali ikon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,A befizetését sikeressen elfogadták +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,A befizetését sikeressen elfogadták apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Elnézést! Tiltott a hozzáférése ennek az oldalnak a megtekintéséhez. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tipp: Kattintson duplán a cella szerkesztéséhez DocType: Workflow State,bell,csengő apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Hiba az e-mail figyelmeztetésben apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dokumentum megosztása vele: +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Beállítás> Felhasználói jogosultságok menedzser apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} nem lehet levélcsomópont hiszen al elágazásai vannak DocType: Communication,Info,Infó -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Melléklet hozzáadás +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Melléklet hozzáadás DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Köszönjük üzenetét -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Olvasás visszaigazolás küldése +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Olvasás visszaigazolás küldése DocType: Stripe Settings,Stripe Settings,Stripe beállítások DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox telepítése a Beállítás oldalon keresztül apps/frappe/frappe/www/login.py +64,Invalid Login Token,Érvénytelen bejelentkezési Token @@ -2569,7 +2574,7 @@ DocType: Website Settings,Home Page,Kezdőlap DocType: Error Snapshot,Parent Error Snapshot,Szülő Hiba Pillanatkép DocType: Kanban Board,Filters,Szűrők DocType: Workflow State,share-alt,share-alt -apps/frappe/frappe/utils/background_jobs.py +169,Queue should be one of {0},Queue egyikének kell lennie {0} +apps/frappe/frappe/utils/background_jobs.py +169,Queue should be one of {0},Sorba állításnak ennek az egyikének kell lennie {0} DocType: Address Template,"

Default Template

Uses Jinja Templating and all the fields of Address (including Custom Fields if any) will be available

{{ address_line1 }}<br>
@@ -2615,16 +2620,17 @@ DocType: DocField,Float,Lebegőpontos
 apps/frappe/frappe/www/update-password.html +71,Invalid Password,Érvénytelen jelszó
 DocType: Contact,Purchase Master Manager,Beszerzés törzsadat kezelő
 DocType: Module Def,Module Name,Modul neve
-apps/frappe/frappe/public/js/frappe/views/image/image_view.js +172,No Images found,A kép nem található
+apps/frappe/frappe/public/js/frappe/views/image/image_view.js +172,No Images found,Nem található kép
 DocType: DocType,DocType is a Table / Form in the application.,DocType egy Táblázat / Űrlap az alkalmazában.
 DocType: Email Account,GMail,GMail
-DocType: Address,Party GSTIN,fél GSTIN
+DocType: Address,Party GSTIN,Ügyfél GSTIN
 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Jelentés
 DocType: Communication,SMS,SMS
 DocType: DocType,Web View,Web nézet
 apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Figyelmeztetés: Ez a Nyomtatási formátum régi stílus és nem állítható elő az API-val.
 DocType: DocField,Print Width,Nyomtatási szélesség
 ,Setup Wizard,Telepítés varázsló
+DocType: Address,GST State Number,GST State száma
 DocType: User,Allow user to login only before this hour (0-24),"A felhasználó megadhatja, hogy ezen óra előtt jelentkezhet be (0-24)"
 apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Mappa kötelező
 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document,
@@ -2637,10 +2643,10 @@ DocType: DocType,Comments and Communications will be associated with this linked
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_sidebar.html +3,Filter...,Szűrő ...
 DocType: Workflow State,bold,félkövér
 DocType: Contact,Status,Állapot
-DocType: GSuite Settings,Client Secret,Client Secret
+DocType: GSuite Settings,Client Secret,Ügyfél titkosító
 DocType: Company History,Year,Év
 DocType: OAuth Client, Advanced Settings,További beállítások
-apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +22,Please enter values for GSuite Access Key and GSuite Access Secret,"Kérjük, adja meg értékeket GSuite Access Key és GSuite Access Secret"
+apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +22,Please enter values for GSuite Access Key and GSuite Access Secret,"Kérjük, adja meg az értékeket a GSuite hozzáférési kulcshoz és a GSuite hozzáférési titkosítóhoz"
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +34,{0} does not exist in row {1},{0} nem létezik a(z) {1} sorban
 DocType: Event,Event Type,Esemény típusa
 DocType: User,Last Known Versions,Utolsó ismert verzió
@@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,
 DocType: DocField,Small Text,Kis szöveg
 apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Rendszergazda elérhető itt: {0} ezen keresztül: {1} a következő IP címen {2}.
 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Egyenlő
-apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',A választható 'Dinamikus link' típusú mezőnek egy másik Link mezőre  kell mutatnia 'DocType' választhatósággal
+apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',A választható 'Dinamikus link' típusú mezőnek egy másik Link mezőre  kell mutatnia 'DocType' választhatósággal
 DocType: About Us Settings,Team Members Heading,Szervezeti felépítés fejszövege
 apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Érvénytelen CSV formátum
 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Állítsa be a mentéseket számát
@@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Kapcsolat
 DocType: User,Third Party Authentication,Ügyfél azonosítók megadása
 DocType: Website Settings,Banner is above the Top Menu Bar.,Szalagcím a felső menüsor felett található.
 DocType: Razorpay Settings,API Secret,API titkosítás
-apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Jelentés kiexportálása:
+apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Jelentés kiexportálása:
 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} nem létezik
 DocType: Email Account,Port,Port
 DocType: Print Format,Arial,Arial
@@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,Oszlop neve
 DocType: Language,Based On,Alapuló
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Tegye alapértelmezetté
 apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappé szerver URL ellenőrzés
-apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,MezőTípus {0} ehhez: {1} nem indexelhető
+apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,MezőTípus {0} ehhez: {1} nem indexelhető
 DocType: Communication,Email Account,Email fiók
 DocType: Workflow State,Download,Letöltés
 DocType: Blog Post,Blog Intro,Blog Intro
@@ -2694,15 +2700,15 @@ DocType: DocField,Display Depends On,Kijelzés ettől függ
 DocType: Web Page,Insert Code,Kód beszúrása
 DocType: ToDo,Low,Alacsony
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Hozzáadhat dinamikus tulajdonságokat a dokumentumból a Jinja sablonozóval.
-apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Érvénytelen határ {0}
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Listázzon egy dokument típust
+apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Érvénytelen határérték {0}
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listázzon egy dokument típust
 DocType: Event,Ref Type,Hivatkozás típusa
 apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ha új rekordokat tölt fel, hagyja üresen a ""Név"" (ID) oszlopot."
 DocType: Address,Chattisgarh,Chattisgarh
 apps/frappe/frappe/config/core.py +47,Errors in Background Events,Hibák a Háttér Eseményeken
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +399,No of Columns,Oszlopok száma
 DocType: Workflow State,Calendar,Naptár
-apps/frappe/frappe/client.py +43,No document found for given filters,Nincs dokumentum található a megadott szűrők
+apps/frappe/frappe/client.py +43,No document found for given filters,Nem talált a megadott szűrőknek megfelelő dokumentumot
 apps/frappe/frappe/model/rename_doc.py +124,"Another {0} with name {1} exists, select another name","Egy másik {0} ezzel a névvel: {1} létezik, válasszon másik nevet"
 DocType: DocType,Custom?,Egyéni?
 DocType: Website Settings,Website Theme Image,Weboldal téma kép
@@ -2717,25 +2723,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,
 DocType: Print Settings,Send Print as PDF,Nyomtatvány küldése PDF-ben
 DocType: Web Form,Amount,Összeg
 DocType: Workflow Transition,Allowed,Jóváhagyott
-apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Nem lehet csak egy összecsukás ebben az űrlapban
-apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nem lehet írni fájl formátumot {0}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Nem lehet csak egy összecsukás ebben az űrlapban
+apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nem lehet írni fájl formátumot erre: {0}
 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Visszaállítja az alapértelmezett beállításokra?
 apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Érvénytelen kezdőlap
 apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Érvénytelen bejelentkezés. Próbálja újra.
-apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opciók szükségesek a Link vagy táblázat típus mezőhöz {0} ebben a sorban {1}
+apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opciók szükségesek a Link vagy táblázat típus mezőhöz {0} ebben a sorban {1}
 DocType: Auto Email Report,Send only if there is any data,"Csak akkor küldje, ha van adat"
 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset szűrők
-apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,"{0}: A 0. szintű jogosultságot be kell állítani, mielőtt a magasabb szintűt beállítaná"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,"{0}: A 0. szintű jogosultságot be kell állítani, mielőtt a magasabb szintűt beállítaná"
 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Hozzárendelés lezárva {0}
 DocType: Integration Request,Remote,Távoli
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Számolás
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Számolás
 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Kérjük, válasszon DocType először"
 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Erősítse meg az e-maileket
 apps/frappe/frappe/www/login.html +42,Or login with,Vagy jelentkezz be ezzel
 DocType: Error Snapshot,Locals,A helyiek
 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Keresztül közölt {0} ezen {1}: {2}
 apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} megemlítette Önt egy megjegyzésben itt: {1}
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pl. (55 + 434) / 4 vagy = Math.sin(Math.PI/2)...
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pl. (55 + 434) / 4 vagy = Math.sin(Math.PI/2)...
 apps/frappe/frappe/model/naming.py +44,{0} is required,{0} szükséges
 DocType: Integration Request,Integration Type,integráció típusa
 DocType: Newsletter,Send Attachements,Küldjön mellékleteket
@@ -2745,18 +2751,18 @@ DocType: DocField,Perm Level,Jog szint
 apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Mai napi események a Naptárban
 DocType: Web Page,Web Page,Weboldal
 DocType: Blog Category,Blogger,Blogger
-apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Globális keresésben' nem engedélyezett {0} típusú a {1} sorában
+apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Globális keresésben' nem engedélyezett {0} típusú a {1} sorában
 apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Lista megtekintése
-apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Dátumnak ebben a formátumban kell lennie: {0}
+apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dátumnak ebben a formátumban kell lennie: {0}
 DocType: Workflow,Don't Override Status,Ne írja fellül az állapotot
 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Kérjük, adjon egy minősítést."
 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Visszajelzés kérése
 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Keresési kifejezés
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Az első felhasználó: Ön
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Az első felhasználó: Ön
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Válasszon oszlopokat
 DocType: Translation,Source Text,Forrás szöveg
 apps/frappe/frappe/www/login.py +55,Missing parameters for login,Hiányzó paraméterek a bejelentkezéshez
-DocType: Workflow State,folder-open,mappa-nyitva
+DocType: Workflow State,folder-open,mappa-nyit
 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +1,Search Application,Alkalmazás keresése
 DocType: OAuth Authorization Code,Validity,Érvényesség
 apps/frappe/frappe/config/website.py +37,Single Post (article).,Önálló blogbejegyzés (cikk).
@@ -2774,7 +2780,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as
 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importálás
 DocType: ToDo,Assigned By,Által hozzárendelt
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Használhatja a Űrlap testreszabását a területek szintjeinek beállításához.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Válasszon régiót
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Válasszon régiót
 DocType: Custom DocPerm,Level,Szint
 DocType: Custom DocPerm,Report,Jelentés
 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,"Összegnek nagyobbnak kell lennie, mint 0."
@@ -2787,14 +2793,14 @@ DocType: Auto Email Report,Format,Formátum
 DocType: Email Account,Email Addresses,Email címek
 DocType: Web Form,Allow saving if mandatory fields are not filled,"Mentésének engedélyezése, ha a kötelező mezők nincsenek kitöltve"
 apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +161,Change,Változás
-DocType: Email Domain,domain name,domain név
+DocType: Email Domain,domain name,domén név
 apps/frappe/frappe/website/doctype/website_settings/website_settings.js +17,Exported,Exportált
 DocType: Kanban Board Column,Order,Sorrend
 DocType: Website Theme,Background,Háttér
 DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON DOCTYPES listája amit a felhasználói jogosultságokhoz alkalmaztunk. Ha üres, az összes kapcsolódó DOCTYPES fel fogják használni a felhasználói jogosultságok alkalmazásához."
 DocType: Report,Ref DocType,Hiv. DocType
-apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Kérjük, add Értékelés"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,"{0}: Nem állítható Helyesbítésre, Visszavonás nálkül"
+apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Kérjük, addjon egy Értékelést"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,"{0}: Nem állítható Helyesbítésre, Visszavonás nálkül"
 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Teljes oldal
 DocType: DocType,Is Child Table,Ez al tábla
 apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ebből kell lennie: {1}
@@ -2809,7 +2815,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ez a mérték meghalad
 apps/frappe/frappe/config/setup.py +260,Install Applications.,Alkalmazások telepítése.
 DocType: Contact,Last Name,Keresztnév
 DocType: Event,Private,Magán
-apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nincs figyelmeztetés mára
+apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nincs figyelmeztetés mára
 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Nyomtatási Mellékletek E-mail küldése PDF fájlként (ajánlott)
 DocType: Web Page,Left,Elhagyja
 DocType: Event,All Day,Minden nap
@@ -2823,7 +2829,7 @@ DocType: Event,Send an email reminder in the morning,Küldjön email emlékeztet
 DocType: Blog Post,Published On,Közzétette ekkor
 DocType: Contact,Gender,Neme
 apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Kötelező informácikó hiányoznak:
-apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Mező '{0}' nem állítható egyedinek, mivel nem egyedi értékekkel rendelkezik"
+apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Mező '{0}' nem állítható egyedinek, mivel nem egyedi értékekkel rendelkezik"
 apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Csak 200 beillesztés engedélyezett egy igényhez
 DocType: Footer Item,URL,URL
 DocType: ToDo,Reference Type,Referencia típusa
@@ -2836,8 +2842,8 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30
 DocType: Workflow State,warning-sign,figyelmeztető jel
 DocType: Workflow State,User,Felhasználó
 DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Cím mutatása a böngészőablakban, mint ""Előtag - cím"""
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,szöveg dokumentum típusban
-apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,tesztek futtatásához
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,szöveg dokumentum típusban
+apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Tesztek futtatása
 apps/frappe/frappe/handler.py +91,Logged Out,Kilépett
 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Több...
 DocType: System Settings,User can login using Email id or Mobile number,Felhasználó bejelentkezhet E-mail azonosító vagy mobil szám segítségével
@@ -2861,17 +2867,17 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M
 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Jelenleg megtekinti
 DocType: DocField,Default,Alapértelmezett
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} hozzáadva
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Keresés erre '{0}'
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Keresés erre '{0}'
 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Kérjük, mentse a jelentés először"
 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} előfizetők hozzáadva
 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nincs ebben
 DocType: Workflow State,star,csillag
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Értékek vesszővel elválasztva
-apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max szélesség a pénznem típushoz 100px ebben a sorban {0}
+apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Értékek vesszővel elválasztva
+apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max szélesség a pénznem típushoz 100px ebben a sorban {0}
 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Kérjük, ossza meg visszajelzését erre {0}"
 apps/frappe/frappe/config/website.py +13,Content web page.,Weboldal tartalom.
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Új beosztás hozzáadása
-DocType: Deleted Document,Deleted Document,törölt dokumentum
+DocType: Deleted Document,Deleted Document,Törölt dokumentum
 apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went wrong,Hoppá! Valami rosszul sült el
 DocType: Help Article,Category,Kategória
 apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Kliens oldali script bővítmények Javascript alapon
@@ -2885,7 +2891,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C
 apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nem érvényes LDAP felhasználó
 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nem érvényes Állam
 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Kérjük, válasszon más fizetési módot. PayPal nem támogatja a tranzakciókat ebben a pénznemben '{0}'"
-apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Keresés mező {0} nem érvényes
+apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Keresés mező {0} nem érvényes
 DocType: Workflow State,ok-circle,ok-kör
 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Megtalálhat dolgokat így rákérdezve 'narancs keresés vevők'
 apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Elnézést! Felhasználónak teljes hozzáféréssel kell rendelkeznie a saját rekordjához.
@@ -2930,7 +2936,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +216,"Change
 						allowed among 'Currency and Float')",Mező típus megváltoztatás. (Jelenleg váltó típus \ megengedett ebben a körben 'Pénznem és Lebegőpontos')
 apps/frappe/frappe/website/doctype/web_form/web_form.py +37,You need to be in developer mode to edit a Standard Web Form,"Fejlesztő módban kell lennie, hogy  szerkeszthessen egy alapértelmezett webes űrlapot"
 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +53,"For comparative filters, start with","Az összehasonlító szűrőket, ezzel kezdje"
-DocType: Website Theme,Link to Bootstrap CSS,Hivatkozás a Bootstrap CSS eléréséhez
+DocType: Website Theme,Link to Bootstrap CSS,Hivatkozás a rendszertöltő CSS eléréséhez
 DocType: Workflow State,camera,kamera
 DocType: Website Settings,Brand HTML,Márka HTML
 DocType: Desktop Icon,_doctype,_doctype
@@ -2944,7 +2950,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo
 DocType: Auto Email Report,Filter Meta,Szűrő meta
 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"A megjelenítendő szöveget a weboldalhoz fűzi, ha ennek az űrlapnak van weboldala. Hozzáfűzési útvonalat automatikusan hozza létre a 'page_name' és 'parent_website_route` alapján"
 DocType: Feedback Request,Feedback Trigger,Visszajelzés indítás
-apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Kérjük, állítsa be {0} először"
+apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Kérjük, állítsa be {0} először"
 DocType: Unhandled Email,Message-id,Üzenet-ID
 DocType: Patch Log,Patch,Javítócsomag
 DocType: Async Task,Failed,Sikertelen
@@ -2963,5 +2969,5 @@ DocType: Translation,"If your data is in HTML, please copy paste the exact HTML
 apps/frappe/frappe/utils/csvutils.py +35,Unable to open attached file. Did you export it as CSV?,Nem sikerült megnyitni a csatolt fájlt. CSV formátumba mentette ki?
 DocType: DocField,Ignore User Permissions,Figyelmen kívül hagyja a felhasználói engedélyeket
 apps/frappe/frappe/core/doctype/user/user.py +754,Please ask your administrator to verify your sign-up,"Kérje meg a rendszergazdát, hogy ellenőrizze a regisztrációját"
-DocType: Domain Settings,Active Domains,aktív domainek
+DocType: Domain Settings,Active Domains,Aktív domainek
 apps/frappe/frappe/public/js/integrations/razorpay.js +21,Show Log,Mutasd a naplót
diff --git a/frappe/translations/id.csv b/frappe/translations/id.csv
index 5aa82ad20f..2a30e68848 100644
--- a/frappe/translations/id.csv
+++ b/frappe/translations/id.csv
@@ -15,7 +15,7 @@ DocType: User,Facebook Username,Username
 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Catatan: Beberapa sesi akan diizinkan dalam kasus perangkat mobile
 apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Diaktifkan inbox email untuk pengguna {} pengguna
 apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Tidak bisa mengirim email ini. Anda telah menyeberangi batas pengiriman {0} email untuk bulan ini.
-apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Kirim permanen {0}?
+apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Kirim permanen {0}?
 DocType: Address,County,daerah
 DocType: Workflow,If Checked workflow status will not override status in list view,Jika status alur kerja Diperiksa tidak akan menimpa status dalam tampilan daftar
 apps/frappe/frappe/client.py +280,Invalid file path: {0},Path file tidak valid: {0}
@@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Silahka
 apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree
 DocType: User,User Emails,Email pengguna
 DocType: User,Username,Nama pengguna
-apps/frappe/frappe/model/base_document.py +581,Value too big,Nilai terlalu besar
+apps/frappe/frappe/model/base_document.py +580,Value too big,Nilai terlalu besar
 DocType: DocField,DocField,DocField
 DocType: GSuite Settings,Run Script Test,Jalankan Script Test
 DocType: Contact,Department,Departemen
@@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Log
 DocType: Custom DocPerm,This role update User Permissions for a user,Peran ini Permissions pembaruan Pengguna untuk pengguna
 apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Ubah nama {0}
 DocType: Workflow State,zoom-out,perkecil
-apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika misalnya yang terbuka
+apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Tidak dapat membuka {0} ketika misalnya yang terbuka
 apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabel {0} tidak boleh kosong
 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Dengan Buku Pembantu
 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,gambar
 DocType: Communication,Reference Owner,referensi Pemilik
 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Terkecil Unit beredar fraksi (koin). Untuk misalnya 1 sen untuk USD dan harus dimasukkan sebagai 0,01"
 DocType: Social Login Keys,GitHub,GitHub
-apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Baris {1}"
+apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Baris {1}"
 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Tolong beri nama lengkap a.
 apps/frappe/frappe/model/document.py +904,Beginning with,Dimulai dengan
 apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Impor Template Data
 apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Induk
 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jika diaktifkan, kekuatan kata sandi akan diberlakukan berdasarkan nilai Skor Minimum Kata Sandi. Nilai 2 menjadi medium kuat dan 4 sangat kuat."
 DocType: About Us Settings,"""Team Members"" or ""Management""","""Anggota Tim"" atau ""Manajemen"""
-apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Standar untuk jenis 'Periksa' lapangan harus baik '0' atau '1'
+apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Standar untuk jenis 'Periksa' lapangan harus baik '0' atau '1'
 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Kemarin
 DocType: Contact,Designation,Penunjukan
 DocType: Test Runner,Test Runner,Uji Runner
@@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Apakah Diterbitkan Lapangan
 DocType: Email Group,Email Group,email Grup
 DocType: Note,Seen By,Dilihat oleh
 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Tambahkan Beberapa
-apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Tidak suka
+apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Tidak suka
 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Mengatur label tampilan untuk lapangan
 apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nilai yang tidak benar: {0} harus {1} {2}
 apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (hide, dibaca, izin dll)"
@@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Pengatura
 apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator Logged In
 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsi kontak, seperti ""Penjualan Query, Dukungan Query"" dll masing-masing pada baris baru atau dipisahkan dengan koma."
 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Unduh
-apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert
+apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert
 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Pilih {0}
 DocType: Print Settings,Classic,Klasik
 DocType: Desktop Icon,Color,Warna
@@ -121,7 +121,7 @@ DocType: Translation,Translation,Terjemahan
 apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Memasang
 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr
 DocType: Custom Script,Client,Client (Nasabah)
-apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Formulir ini telah dimodifikasi setelah Anda dimuat
+apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Formulir ini telah dimodifikasi setelah Anda dimuat
 DocType: User Permission for Page and Report,User Permission for Page and Report,Izin pengguna untuk Page dan Laporan
 DocType: Address,Himachal Pradesh,Himachal Pradesh
 DocType: System Settings,"If not set, the currency precision will depend on number format","Jika tidak diset, presisi mata uang akan tergantung pada format angka"
@@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Alasan
 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Silakan tentukan pengguna
 DocType: Email Unsubscribe,Email Unsubscribe,Email Berhenti berlangganan
 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pilih gambar lebar kira-kira 150px dengan latar belakang transparan untuk hasil terbaik.
-apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Pengguna pertama akan menjadi System Manager (Anda dapat mengubahnya nanti).
+apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Pengguna pertama akan menjadi System Manager (Anda dapat mengubahnya nanti).
 ,App Installer,App Installer
 DocType: Workflow State,circle-arrow-up,lingkaran-panah-up
 apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Mengunggah ...
 DocType: Email Domain,Email Domain,email Domain
 DocType: Workflow State,italic,italic
 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Untuk semua orang
-apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu
+apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Tidak dapat melakukan Impor tanpa dibuat terlebih dahulu
 apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Acara dan kalender lainnya.
 apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Semua bidang diperlukan untuk mengirimkan komentar.
 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Tarik untuk mengurutkan kolom
@@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar menu
 apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Tidak dapat menghapus Rumah dan Lampiran folder
 apps/frappe/frappe/config/desk.py +19,Files,arsip
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Izin bisa diterapkan pada Pengguna berdasarkan apa Peran mereka ditugaskan.
-apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Anda tidak diizinkan untuk mengirim email yang berhubungan dengan dokumen ini
-apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group
+apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Anda tidak diizinkan untuk mengirim email yang berhubungan dengan dokumen ini
+apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Silakan pilih minimal 1 kolom dari {0} untuk menyortir / group
 DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Periksa ini jika Anda menguji pembayaran menggunakan API Sandbox
 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Anda tidak diizinkan untuk menghapus Tema Website standar
 DocType: Feedback Trigger,Example,Contoh
@@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Jumlah Konsumen
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jika Peran yang tidak memiliki akses di Level 0, maka tingkat yang lebih tinggi tidak ada artinya."
 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,save As
 DocType: Communication,Seen,Terlihat
-apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Tampilkan lebih detail
+apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Tampilkan lebih detail
 DocType: System Settings,Run scheduled jobs only if checked,Menjalankan pekerjaan dijadwalkan hanya jika diperiksa
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Hanya akan ditampilkan jika judul bagian diaktifkan
 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,arsip
@@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Tampilkan Bagan
 apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Email yang valid dan nama diperlukan
 DocType: DocType,Hide Heading,Sembunyikan Heading
 DocType: Address,Current,Arus
-apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Dokumen terkait
 apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Kelompok Doctypes
 DocType: Auto Email Report,XLSX,XLSX
 DocType: Workflow State,remove-circle,hapus-lingkaran
@@ -235,10 +234,9 @@ DocType: Workflow State,Filter,filter
 apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} tidak dapat memiliki karakter khusus seperti {1}
 apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Memperbarui banyak nilai pada satu waktu.
 apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Kesalahan: Dokumen telah dimodifikasi setelah Anda membukanya
-apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tidak ada Kerangka Alamat default yang ditemukan. Buat yang baru dari Setup> Printing and Branding> Address Template.
 apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} log out: {1}
 DocType: Address,West Bengal,Benggala Barat
-apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable
+apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak dapat mengatur Assign Submit jika tidak Submittable
 DocType: Social Login Keys,Facebook,Facebook
 apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Disaring oleh "{0}"
 DocType: Salutation,Administrator,Administrator
@@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Judul Blog
 apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,peran standar tidak dapat dinonaktifkan
 DocType: Address,Mizoram,Mizoram
 DocType: Newsletter,Newsletter,Laporan berkala
-apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,tidak bisa menggunakan sub-query dalam rangka oleh
+apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,tidak bisa menggunakan sub-query dalam rangka oleh
 DocType: Web Form,Button Help,tombol Bantuan
 DocType: Kanban Board Column,purple,ungu
 DocType: About Us Settings,Team Members,Anggota Tim
@@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Dapatkan ava
 apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Langganan Anda berakhir pada {0}. Untuk memperbaharui, {1}."
 DocType: Workflow State,plus-sign,tanda plus
 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup sudah lengkap
-apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} tidak diinstal
+apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} tidak diinstal
 DocType: Workflow State,Refresh,Segarkan
 DocType: Event,Public,Publik
 apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Tidak ada yang menunjukkan
@@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Dengan menyukai
 apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,email Dukungan
 DocType: DocField,Print Hide If No Value,Cetak Sembunyikan Jika ada Nilai
 DocType: Event,yellow,kuning
-apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Apakah Diterbitkan lapangan harus fieldname valid
+apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Apakah Diterbitkan lapangan harus fieldname valid
 apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Attachment
 DocType: Block Module,Block Module,Blok Modul
 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Template Ekspor
@@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Penc
 DocType: Email Account,SparkPost,SparkPost
 apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Sebuah akun baru telah dibuat untuk Anda di {0}
 apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruksi Diemailkan
-apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Masukkan Email Penerima (s)
+apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Masukkan Email Penerima (s)
 DocType: Print Format,Verdana,Verdana
 DocType: Email Flag Queue,Email Flag Queue,Email Flag Antrian
 apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,tidak dapat mengidentifikasi terbuka {0}. Mencoba sesuatu yang lain.
@@ -303,8 +301,8 @@ DocType: Communication,Message ID,pesan ID
 DocType: Property Setter,Field Name,Nama Field
 apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite tidak dikonfigurasi.
 apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,atau
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nama modul ...
-apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Terus
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nama modul ...
+apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Terus
 DocType: Custom Field,Fieldname,Fieldname
 DocType: Workflow State,certificate,sertifikat
 DocType: User,Tile,Ubin
@@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column
 apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Tampilkan semua Versi
 DocType: Workflow State,Print,mencetak
 DocType: User,Restrict IP,Membatasi IP
+apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Dasbor
 apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Tidak dapat mengirim email saat ini
 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Cari atau ketik perintah
 DocType: Communication,Timeline Name,Nama Timeline
@@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Master Manajer Penjualan
 apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Satu Langkah terakhir
 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nama Tipe Dokumen (DocType) Anda ingin bidang ini dapat dihubungkan dengan. misalnya Pelanggan
 DocType: User,Roles Assigned,Peran Ditugaskan
-apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,mencari bantuan
+apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,mencari bantuan
 DocType: Top Bar Item,Parent Label,Induk Label
 apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Permintaan Anda telah diterima. Kami akan membalas kembali segera. Jika Anda memiliki informasi tambahan, silakan balas email ini."
 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Permissions secara otomatis diterjemahkan ke Laporan dan Searches Standard.
@@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to
 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Mengedit Heading
 DocType: File,File URL,URL File
 DocType: Version,Table HTML,tabel HTML
+apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Tidak ada hasil yang ditemukan untuk '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Tambahkan Pengikut apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Acara Mendatang untuk Hari Ini DocType: Email Alert Recipient,Email By Document Field,Email Dengan Dokumen Lapangan @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Jumlah Berdasarkan Bidang apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Pengguna wajib untuk Berbagi DocType: DocField,Hidden,Tersembunyi DocType: Web Form,Allow Incomplete Forms,Memungkinkan Formulir tidak lengkap -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} harus diatur terlebih dahulu +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} harus diatur terlebih dahulu apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Gunakan beberapa kata, hindari frasa umum." DocType: Workflow State,plane,pesawat -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ups. Pembayaran Anda telah gagal. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jika Anda meng-upload rekor baru, ""Penamaan Series"" menjadi wajib, jika ada." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Dapatkan Alerts untuk Hari +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Dapatkan Alerts untuk Hari apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE hanya dapat diganti oleh Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},nilai berubah dari {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Silahkan cek email Anda untuk verifikasi -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Lipat tidak bisa di akhir formulir +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Lipat tidak bisa di akhir formulir DocType: Communication,Bounced,Memantul DocType: Deleted Document,Deleted Name,Nama dihapus apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistem dan Pengguna @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumen Antri DocType: GSuite Templates,Destination ID,ID tujuan DocType: Desktop Icon,List,daftar DocType: Communication,Link Name,Link Nama -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Lapangan {0} berturut-turut {1} tidak dapat disembunyikan dan wajib tanpa standar +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Lapangan {0} berturut-turut {1} tidak dapat disembunyikan dan wajib tanpa standar DocType: System Settings,mm/dd/yyyy,hh / bb / tttt apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Kata sandi salah: DocType: Print Settings,Send document web view link in email,Mengirim dokumen tampilan web link dalam email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Masukan Anda untuk dokumen {0} disimpan berhasil apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Kembali -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} baris untuk {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-currency. Untuk misalnya ""Cent """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Pilih file yang diunggah @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Tidak ada file terlampir DocType: Version,Version,Versi DocType: User,Fill Screen,Isi Layar -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tidak dapat menampilkan laporan pohon ini, karena data yang hilang. Kemungkinan besar, ia sedang disaring karena izin." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Silakan setup default Email Account dari Setup> Email> Email Account +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tidak dapat menampilkan laporan pohon ini, karena data yang hilang. Kemungkinan besar, ia sedang disaring karena izin." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Pilih File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Mengedit via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","tipe dokumen ..., misalnya pelanggan" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","tipe dokumen ..., misalnya pelanggan" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Kondisi '{0}' tidak valid DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Menambahkan terjemahan Anda sendiri @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Rabu apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Terlepas dari Peran berbasis Aturan Izin, Anda dapat menerapkan Permissions Pengguna berdasarkan Doctypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Izin ini akan berlaku untuk semua transaksi di mana catatan diizinkan terkait. Sebagai contoh, jika Perusahaan C ditambahkan ke User Permissions pengguna X, pengguna X akan hanya dapat melihat transaksi yang memiliki perusahaan C sebagai nilai terkait." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,bidang gambar harus fieldname valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,bidang gambar harus fieldname valid DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nama) dari entitas yang properti harus ditetapkan apps/frappe/frappe/limits.py +82,"To renew, {0}.","Untuk memperbaharui, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Sidebar Items apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} sudah terpasang DocType: Workflow State,exclamation-sign,seru-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Tampilkan Perijinan -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,bidang Timeline harus Link atau Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,bidang Timeline harus Link atau Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Rentang Tanggal apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Halaman {0} dari {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Memper apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Kunci enkripsi tidak valid, periksa site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,untuk DocType: Kanban Board Column,darkgrey,Abu-abu gelap -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Sukses: {0} ke {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Sukses: {0} ke {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Tidak dapat mengubah detail pengguna di demo. Silakan mendaftar untuk akun baru di https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Silakan duplikat ini untuk membuat perubahan apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generasi PDF gagal karena link gambar rusak @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Collapsible apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Disimpan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Apa yang Anda perlu bantuan dengan? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Pilihan untuk pilih. Setiap opsi pada baris baru. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Permanen Batal {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Permanen Batal {0}? DocType: Workflow State,music,musik musik DocType: Web Page,Settings,Pengaturan apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Silakan tentukan doctype DocType: Print Format,Style Settings,Pengaturan Style -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,bidang semacam {0} harus fieldname valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,bidang semacam {0} harus fieldname valid apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Lanjut DocType: Contact,Sales Manager,Sales Manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Ubah nama DocType: Print Format,Format Data,Format data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Seperti +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Seperti DocType: Customize Form Field,Customize Form Field,Sesuaikan Form Lapangan apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Izinkan Pengguna DocType: OAuth Client,Grant Type,hibah Jenis apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Periksa Dokumen yang dapat dibaca oleh Pengguna apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Aplikasi cantuman tidak diizinkan -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,menggunakan% sebagai wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email Domain tidak dikonfigurasi untuk akun ini, Buat satu?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,menggunakan% sebagai wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email Domain tidak dikonfigurasi untuk akun ini, Buat satu?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Aktifkan Auto Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Tidak Terlihat @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Set Hanya Sekali DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Penerima DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nama pengguna {0} sudah ada -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Tidak dapat melakukan impor karena {1} bukan data yang dapat diimpor apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Ada kesalahan dalam Template Alamat Anda {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Dari Nama Lengkap apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Anda tidak memiliki akses ke Laporkan: {0} DocType: User,Send Welcome Email,Kirim Email Selamat Datang apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Upload file CSV yang berisi semua akses user dalam format yang sama seperti Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Hapus Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Hapus Filter DocType: Address,Daman and Diu,Daman dan Diu DocType: Address,Personal,Pribadi apps/frappe/frappe/config/setup.py +113,Bulk Rename,Rename massal @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","DocType standar tidak dapat memiliki format cetak standar, gunakan Customize Form" DocType: Report,Query,Query DocType: DocType,Sort Order,Tata Urutan -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Tampilan Daftar' tidak diperbolehkan untuk jenis {0} di baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Tampilan Daftar' tidak diperbolehkan untuk jenis {0} di baris {1} DocType: Custom Field,Select the label after which you want to insert new field.,Pilih label setelah itu Anda ingin memasukkan bidang baru. ,Document Share Report,Dokumen Saham Laporkan DocType: User,Last Login,Terakhir Login -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname diperlukan berturut-turut {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname diperlukan berturut-turut {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolom DocType: Custom Field,Adds a custom field to a DocType,Menambahkan kolom (custom field) untuk DOCTYPE DocType: File,Is Home Folder,Apakah Home Folder @@ -583,7 +583,7 @@ DocType: File,Folder,Map DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Manajer apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Pilihan 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,semua Posting +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} sampai {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log dari kesalahan selama permintaan. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} telah berhasil ditambahkan ke Email Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Semua orang DocType: Workflow State,backward,mundur -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu aturan diperbolehkan dengan Peran yang sama, Tingkat dan {1}" DocType: Email Queue,Add Unsubscribe Link,Menambahkan Unsubscribe Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Belum ada komentar. Mulai diskusi baru. DocType: Workflow State,share,saham @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,tidak apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Lihat Pendaftar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Warna Latar -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Ada kesalahan saat mengirim email. Silakan coba lagi. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Ada kesalahan saat mengirim email. Silakan coba lagi. DocType: Portal Settings,Portal Settings,Pengaturan Portal DocType: Web Page,0 is highest,0 adalah tertinggi apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Apakah Anda yakin Anda ingin menautkan komunikasi ini untuk {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Hubungi Kami Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Mencari ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Batas Lampiran maksimum untuk catatan ini tercapai. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Batas Lampiran maksimum untuk catatan ini tercapai. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Bidang wajib berikut harus diisi:
DocType: Email Alert,View Properties (via Customize Form),Listing (melalui Customize Form) DocType: Note Seen By,Note Seen By,Catatan Dilihat Oleh @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Laporan Report Builder dikelola langsung oleh pembangun laporan. Tidak ada hubungannya. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Harap verifikasi Alamat Email Anda apps/frappe/frappe/model/document.py +903,none of,tidak ada -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Kirim Me Salin A +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Kirim Me Salin A apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Izin Pengguna DocType: Dropbox Settings,App Secret Key,App Kunci Rahasia apps/frappe/frappe/config/website.py +7,Web Site,Situs web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Item yang dicentang akan ditampilkan pada desktop -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} tidak dapat ditetapkan untuk tipe Tunggal +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} tidak dapat ditetapkan untuk tipe Tunggal apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Dewan {0} tidak ada. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} sedang melihat dokumen ini DocType: ToDo,Assigned By Full Name,Ditugaskan Dengan Nama Lengkap apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} diperbarui -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Laporan tidak dapat ditetapkan untuk jenis Tunggal +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Laporan tidak dapat ditetapkan untuk jenis Tunggal apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} hari yang lalu DocType: Email Account,Awaiting Password,Menunggu Sandi DocType: Address,Address Line 1,Alamat Baris 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Serikat untuk alur kerja (misalnya Draft, Disetujui, Dibatalkan)." DocType: Print Settings,Allow Print for Draft,Memungkinkan Print untuk Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Kuantitas -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Menyerahkan dokumen ini untuk mengkonfirmasi +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Menyerahkan dokumen ini untuk mengkonfirmasi DocType: Contact,Unsubscribed,Berhenti berlangganan apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Mengatur peran kustom untuk halaman dan laporan apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Peringkat: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Impor Alat Data DocType: Address,Dadra and Nagar Haveli,Dadra dan Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,file upload silahkan tunggu beberapa detik. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Pasang Gambar Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Pasang Gambar Anda apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Nilai Row Berubah DocType: Workflow State,Stop,berhenti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link ke halaman yang ingin Anda buka. Kosongkan jika Anda ingin membuatnya kelompok orang tua. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Sejajarkan Label ke Kiri DocType: Help Article,Expert,Ahli DocType: Workflow State,circle-arrow-right,lingkaran-panah-kanan DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Tidak dapat membuka contoh ketika nya {0} terbuka +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Tidak dapat membuka contoh ketika nya {0} terbuka apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Antri untuk menginstal DocType: Custom DocPerm,Custom DocPerm,kustom DocPerm DocType: Newsletter,Send Unsubscribe Link,Kirim Unsubscribe Link @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} dihapus DocType: Custom DocPerm,Apply User Permissions,Terapkan Perizinan Pengguna DocType: User,Modules HTML,Modul HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Hilang Nilai Diperlukan DocType: DocType,Other Settings,Pengaturan lainnya DocType: Social Login Keys,Frappe,Frape @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Pembawa Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Tidak ada dokumen yang dipilih apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Acara -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Tidak dapat menghapus bidang standar. Anda dapat menyembunyikannya jika Anda ingin DocType: Top Bar Item,For top bar,Untuk top bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},tidak bisa mengidentifikasi {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,meja Access DocType: Workflow State,minus,kurang apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Error: Silahkan periksa log server atau menghubungi dukungan teknis. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Email Selamat Datang telah dikirim -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Mari persiapkan sistem untuk penggunaan pertama kali. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Mari persiapkan sistem untuk penggunaan pertama kali. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Unggulan apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Sudah Terdaftar DocType: System Settings,Float Precision,Mengapung Presisi @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,Izinkan Cetak apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Tidak ada Apps Terpasang apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Tandai lapangan sebagai Wajib DocType: Communication,Clicked,Diklik -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Tidak ada izin untuk '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Dijadwalkan untuk mengirim DocType: DocType,Track Seen,track Dilihat @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,lft DocType: User,Simultaneous Sessions,Sesi simultan DocType: OAuth Client,Client Credentials,Kredensial klien -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Buka modul atau alat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Buka modul atau alat DocType: Communication,Delivery Status,Status Pengiriman DocType: Module Def,App Name,Nama App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max ukuran file yang diizinkan adalah {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Komunikasi referensi DocType: Email Queue,Unsubscribe Method,Metode berhenti berlangganan DocType: GSuite Templates,Related DocType,Terkait DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edit untuk menambahkan konten -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Pilih Bahasa -apps/frappe/frappe/__init__.py +510,No permission for {0},Tidak ada izin untuk {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Pilih Bahasa +apps/frappe/frappe/__init__.py +509,No permission for {0},Tidak ada izin untuk {0} DocType: DocType,Advanced,Advanced apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Tampaknya API Key atau API Secret adalah salah !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referensi: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Masukkan Form Type apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ada catatan tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Hapus Lapangan DocType: User,Send Password Update Notification,Kirim Sandi Perbarui Pemberitahuan -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Membiarkan DocType, DocType. Hati-hati!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Membiarkan DocType, DocType. Hati-hati!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Format disesuaikan untuk Percetakan, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Diperbarui Untuk Versi Baru DocType: Custom Field,Depends On,Tergantung On @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Salah satu apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Silahkan pilih file yang akan disalin apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Memeriksa satu saat apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Tampilkan tag +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Jika Menerapkan Izin Pengguna yang Ketik dicentang dan Izin Pengguna ditetapkan untuk DocType untuk Pengguna, maka semua dokumen yang nilai linknya kosong, tidak akan ditampilkan ke User tersebut." DocType: Address,Billing,Penagihan DocType: Email Queue,Not Sent,Tidak Terkirim DocType: Web Form,Actions,Tindakan @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jelas apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Setiap peristiwa hari harus selesai pada hari yang sama. DocType: Communication,User Tags,Pengguna Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Mengambil gambar .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Pengguna DocType: Workflow State,download-alt,men-download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Download App {0} DocType: Communication,Feedback Request,Masukan Permintaan @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,backup apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Tambah kontak DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opsional: Selalu kirim ke ID ini. Setiap Alamat Email pada baris baru -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Sembunyikan Detail +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Sembunyikan Detail DocType: Workflow State,Tasks,tugas DocType: Event,Tuesday,Selasa DocType: Blog Settings,Blog Settings,Pengaturan Blog @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Menulis sebuah file Python dalam folder yang sama di mana ini disimpan dan kembali kolom dan hasilnya. DocType: DocType,Sort Field,Urutkan Lapangan DocType: Razorpay Settings,Razorpay Settings,Pengaturan Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Mengedit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Lapangan {0} tipe {1} tidak wajib -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","misalnya. Jika Terapkan Perizinan Pengguna diperiksa Laporan DOCTYPE tetapi tidak ada Pengguna Izin didefinisikan untuk Laporan Pengguna, maka semua laporan akan ditampilkan untuk Pengguna yang" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Mengedit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Lapangan {0} tipe {1} tidak wajib apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Tambah Lagi apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Sembunyikan Bagan DocType: System Settings,Session Expiry Mobile,Sesi kadaluarsa Ponsel @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Terlambat apps/frappe/frappe/config/setup.py +128,List of backups available for download,Daftar backup tersedia untuk diunduh apps/frappe/frappe/www/login.html +89,Sign up,Daftar DocType: Test Runner,Output,Keluaran +DocType: Email Alert,Set Property After Alert,Tetapkan Properti Setelah Pemberitahuan apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Menambahkan kolom ke form. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Sepertinya ada yang salah dengan konfigurasi Paypal situs ini. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,daun DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,ID Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Jika Menerapkan Izin Pengguna diperiksa untuk DocType Laporan namun tidak ada Izin Pengguna yang ditetapkan untuk Laporan untuk Pengguna, maka semua Laporan akan ditampilkan kepada Pengguna tersebut." DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Sebuah daftar sumber daya yang App Klien akan memiliki akses ke setelah pengguna memungkinkan.
misalnya proyek DocType: Translation,Translated Text,diterjemahkan Teks DocType: Contact Us Settings,Query Options,Opsi Query @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Kontak DocType: System Settings,Setup Complete,Pengaturan Selesai apps/frappe/frappe/config/setup.py +66,Report of all document shares,Laporan dari seluruh saham dokumen apps/frappe/frappe/www/update-password.html +18,New Password,Kata sandi Baru -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} hilang +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} hilang apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak dapat menghapus komentar yang dihasilkan secara otomatis DocType: Website Theme,Style using CSS,Style menggunakan CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referensi DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Blok Modul apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Mengembalikan panjang ke {0} untuk '{1}' di '{2}'; Mengatur panjang sebagai {3} akan menyebabkan pemotongan data. DocType: Print Format,Custom CSS,Kustom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Tambah komentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Diabaikan: {0} ke {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Diabaikan: {0} ke {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log kesalahan pada peristiwa otomatis (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Bukan Nilai Comma Separated valid (CSV file) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Standar Masuk DocType: Workflow State,repeat,ulangi DocType: Website Settings,Banner,Spanduk DocType: Role,"If disabled, this role will be removed from all users.","Jika dinonaktifkan, peran ini akan dihapus dari semua pengguna." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Bantuan Pencarian +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Bantuan Pencarian apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Terdaftar tapi dinonaktifkan DocType: DocType,Hide Copy,Sembunyikan Duplikat apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Hapus semua peran @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Negara apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Daftar Alamat DocType: Communication,Shared,Bersama -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Lampirkan Dokumen Cetak +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Lampirkan Dokumen Cetak DocType: Bulk Update,Field,Bidang DocType: Communication,Received,Diterima DocType: Social Login Keys,Google Client ID,ID Google Client @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Pertanyaan Laporan DocType: User,Set New Password,Set Password Baru DocType: User,Github User ID,Github Pengguna ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Jika Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Tidak dapat menghapus atau membatalkan karena {0} {1} terkait dengan {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Tidak dapat menghapus atau membatalkan karena {0} {1} terkait dengan {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Diketahui app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s bukan format laporan yang valid. Format laporan harus \ salah satu %s berikut DocType: Communication,Chat,Obrolan -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} muncul beberapa kali dalam baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} muncul beberapa kali dalam baris {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} dari {1} ke {2} berturut-turut # {3} DocType: Communication,Expired,Expired DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Jumlah kolom untuk lapangan di Grid (Jumlah Kolom dalam kotak harus kurang dari 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Punya akun? Masuk apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Diketahui Cetak Format: {0} DocType: Workflow State,arrow-down,panah-bawah apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Keruntuhan -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Pengguna tidak diperbolehkan untuk menghapus {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Pengguna tidak diperbolehkan untuk menghapus {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Terakhir Diperbarui Pada DocType: Help Article,Likes,Suka DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Kode Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Buat Email Pengguna -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Tidak ada izin yang ditentukan +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Tidak ada izin yang ditentukan apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Pengaturan global: Pengguna hanya akan dapat memilih ikon diperiksa apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} tidak ditemukan DocType: Custom Role,Custom Role,Peran kustom apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Rumah / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Abaikan Izin Pengguna Jika Hilang -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Silakan menyimpan dokumen sebelum meng-upload. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Silakan menyimpan dokumen sebelum meng-upload. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Masukkan password Anda DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Rahasia apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tambahkan Komentar lain apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,mengedit DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Berhenti berlangganan dari Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Lipat harus datang sebelum Bagian istirahat +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Lipat harus datang sebelum Bagian istirahat apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Terakhir Diubah Dengan DocType: Workflow State,hand-down,tangan-ke bawah DocType: Address,GST State,Negara bagian -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Tidak dapat mengatur Pembatalan tanpa melakukan penyerahan DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Ada kesalahan. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound Untuk Kode Tupoksi @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Penga DocType: Website Theme,Text Color,Warna Teks DocType: Desktop Icon,Force Show,Angkatan Tampilkan apps/frappe/frappe/auth.py +78,Invalid Request,Permintaan tidak valid -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Formulir ini tidak memiliki masukan +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Formulir ini tidak memiliki masukan apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesi kadaluarsa harus dalam format {0} DocType: Website Sidebar Item,Group,Grup DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Pilih target = ""_blank"" untuk membuka di halaman baru." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Abaikan encoding kesalahan. DocType: Workflow State,wrench,kunci apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Tidak Diatur -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Pengguna DocType: Authentication Log,Date,Tanggal DocType: Website Settings,Disable Signup,Nonaktifkan Signup apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Duduk manis sementara sistem anda sedang disiapkan. Hal ini mungkin membutuhkan waktu beberapa saat. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Tambahkan komentar DocType: DocField,Mandatory,Wajib apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul untuk Ekspor -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Tidak ada perizinan dasar yang ditetapkan +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Tidak ada perizinan dasar yang ditetapkan apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Langganan Anda akan berakhir pada {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link untuk cadangan Anda akan dikirimkan melalui email pada alamat email berikut: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Artinya dari Submit, Batal, Amend" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,permintaan-laporan apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Ditugaskan untuk {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filter tersimpan DocType: DocField,Percent,Persen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Silakan set filter +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Silakan set filter apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Terhubung Dengan DocType: Workflow State,book,buku DocType: Website Settings,Landing Page,Halaman Arahan -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Kesalahan Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Kesalahan Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nama apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Permintaan impor Antri. Ini mungkin memakan waktu beberapa saat, harap bersabar." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Tidak ada Izin ditetapkan untuk kriteria ini. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Izinkan Login menggunak apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Anda tidak memiliki izin yang cukup untuk mengakses sumber ini. Silahkan hubungi manajer Anda untuk mendapatkan akses. DocType: Custom Field,Custom,Disesuaikan apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Pengaturan Notifikasi Email berdasarkan berbagai kriteria. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Posting mengajukan di bawah {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Posting mengajukan di bawah {0} DocType: Email Alert,Send alert if date matches this field's value,Kirim peringatan jika tanggal sesuai nilai bidang ini DocType: Workflow,Transitions,Transisi apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Hapus {0} dan menghapus semua data? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Login Setelah DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Pencetakan DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun email tidak di setup Buat Akun Email baru dari Setup> Email> Email Account DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Presisi harus antara 1 dan 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Presisi harus antara 1 dan 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,dan DocType: Error Snapshot,Frames,Frame @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,laporan Filter apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,sekarang DocType: Workflow State,step-backward,langkah-mundur -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Silakan set tombol akses Dropbox di situs config Anda apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Menghapus catatan ini untuk memungkinkan pengiriman ke alamat email ini apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya bidang wajib diperlukan untuk catatan baru. Anda dapat menghapus kolom non-wajib jika Anda inginkan. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Apakah Lampiran Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Melebarkan semua apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Login id yang valid dibutuhkan. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-terbuka -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Anda telah membatalkan pembayaran -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Silakan pilih file csv dengan data yang valid +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Silakan pilih file csv dengan data yang valid apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} menghentikan pembagian dokumen ini dengan {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Transisi Dokumen Status dari {0} ke {1} tidak diperbolehkan DocType: DocType,"Make ""name"" searchable in Global Search",Membuat "nama" dicari di Search global @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Nil DocType: Help Category,Help Category,Bantuan Kategori apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Pengguna {0} dinonaktifkan apps/frappe/frappe/www/404.html +8,Page missing or moved,Halaman hilang atau dipindahkan -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Mengedit {0} sifat DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,pengaturan Pembayaran gateway Razorpay DocType: DocField,Name,Nama apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Anda telah melebihi ruang max {0} untuk rencana Anda. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cari dokumen DocType: OAuth Authorization Code,Valid,Sah -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Bahasa Anda +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Bahasa Anda apps/frappe/frappe/desk/form/load.py +46,Did not load,Tidak memuat apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Menambahkan Baris DocType: Tag Category,Doctypes,doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Apakah Masuka DocType: Address,Lakshadweep Islands,Kepulauan Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Bisa Menulis apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Dokumen-dokumen tertentu, seperti Faktur, tidak boleh berubah sekali final. Keadaan akhir untuk dokumen tersebut disebut Dikirim. Anda dapat membatasi peran yang dapat Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Anda tidak diizinkan untuk mengekspor laporan ini +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Anda tidak diizinkan untuk mengekspor laporan ini apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 item yang dipilih DocType: Newsletter,Test Email Address,Uji Alamat Email DocType: ToDo,Sender,Pengirim @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,impor .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokumen ID DocType: Print Settings,Letter,Surat -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,bidang gambar harus dari jenis Lampirkan gambar +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,bidang gambar harus dari jenis Lampirkan gambar DocType: DocField,Columns,kolom DocType: Async Task,Succeeded,Berhasil apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Bidang wajib yang dibutuhkan dalam {0} @@ -1440,7 +1438,7 @@ DocType: DocField,Text Editor,Teks Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Pengaturan Tentang Kami PT. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Mengedit Custom HTML DocType: Error Snapshot,Error Snapshot,Kesalahan Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,... Dalam +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,... Dalam DocType: Email Alert,Value Change,Nilai Perubahan DocType: Standard Reply,Standard Reply,Standard Reply apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Lebar kotak input @@ -1456,12 +1454,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Gunakan fieldname ini untuk menghasilkan judul apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Impor Email Dari apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Undang sebagai Pengguna -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Pilih Lampiran +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Pilih Lampiran apps/frappe/frappe/model/naming.py +94, for {0},untuk {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Ada kesalahan. Laporkan ini. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Anda tidak diizinkan untuk mencetak dokumen ini +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Anda tidak diizinkan untuk mencetak dokumen ini apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Silakan menetapkan nilai filter dalam Laporan Filter meja. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Memuat Laporan +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Memuat Laporan apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Langganan Anda akan berakhir hari ini. DocType: Page,Standard,Standar apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Lampirkan Berkas @@ -1491,7 +1489,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Perluasan Wilayah DocType: LDAP Settings,Base Distinguished Name (DN),Dasar dibedakan nama (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Tinggalkan percakapan ini -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Pilihan tidak diatur untuk bidang tautan {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Pilihan tidak diatur untuk bidang tautan {0} DocType: Customize Form,"Must be of type ""Attach Image""",Harus dari jenis "Lampirkan Gambar" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,batalkan Semua apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Anda tidak bisa diset 'Read Only' untuk bidang {0} @@ -1532,9 +1530,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Catatan apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Laporan Kesalahan apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Kondisi umpan balik tidak cocok -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,bidang Timeline harus fieldname valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,bidang Timeline harus fieldname valid DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,New password email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Login tidak diizinkan untuk saat ini DocType: Email Account,Email Sync Option,Email Opsi Sync @@ -1556,7 +1554,7 @@ DocType: DocField,Text,Teks apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard balasan atas pertanyaan umum. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Default Mengirim DocType: Workflow State,volume-off,Volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Disukai oleh {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Disukai oleh {0} DocType: Footer Item,Footer Item,Footer Barang ,Download Backups,Download Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Rumah / Test Folder 1 @@ -1589,7 +1587,7 @@ DocType: Web Page,Text Align,Teks Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nama tidak boleh berisi karakter khusus seperti {0} DocType: Contact Us Settings,Forward To Email Address,Forward Ke Alamat Email apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Tampilkan semua data -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Judul lapangan harus fieldname valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Judul lapangan harus fieldname valid apps/frappe/frappe/config/core.py +7,Documents,Docuements DocType: Email Flag Queue,Is Completed,Apakah selesai apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile @@ -1599,7 +1597,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Bidang ini hanya akan muncul jika fieldname didefinisikan di sini memiliki nilai OR aturan yang benar (contoh): MyField eval: doc.myfield == 'Nilai saya' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Hari ini +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hari ini apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Setelah Anda telah mengatur ini, pengguna hanya akan bisa mengakses dokumen (misalnya Blog Post) di mana link yang ada (misalnya Blogger)." DocType: Error Log,Log of Scheduler Errors,Log Kesalahan Scheduler DocType: User,Bio,Bio @@ -1623,6 +1621,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 star menjadi termurah & 5 menjadi peringkat tertinggi DocType: Event,Ref Name,Ref Nama DocType: Web Page,Center,Pusat +DocType: Email Alert,Value To Be Set,Nilai yang Akan Ditetapkan apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Tingkat pertama DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Merupakan negara diperbolehkan dalam satu dokumen dan peran yang ditugaskan untuk mengubah negara. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Form Segarkan @@ -1643,18 +1642,18 @@ DocType: DocType,Has Web View,Memiliki Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nama DocType harus dimulai dengan huruf dan hanya dapat terdiri dari huruf, angka, spasi dan garis bawah" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,integrasi Permintaan -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Kepada Yth. +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Kepada Yth. DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Pengguna Akun DocType: Web Page,HTML for header section. Optional,HTML untuk bagian header. Pilihan apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Fitur ini baru dan masih eksperimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimum {0} baris diperbolehkan +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimum {0} baris diperbolehkan DocType: Email Unsubscribe,Global Unsubscribe,Global yang Unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ini adalah password yang sangat umum. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Melihat DocType: Communication,Assigned,Ditugaskan DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Pilih Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Pilih Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,pola keyboard pendek mudah ditebak DocType: Portal Settings,Portal Menu,Portal menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Panjang {0} harus antara 1 dan 1000 @@ -1692,7 +1691,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Pengguna tidak bisa Cari apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Output Format valid DocType: Custom DocPerm,Apply this rule if the User is the Owner,Menerapkan aturan ini jika pengguna adalah pemilik -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Akan menjadi ID login anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Akan menjadi ID login anda apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Buat Laporan DocType: Note,Notify users with a popup when they log in,Memberitahu pengguna dengan popup ketika mereka login apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} belum ada, pilih target baru untuk menggabungkan" @@ -1711,17 +1710,18 @@ DocType: User Permission for Page and Report,Roles Permission,peran Izin apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Perbarui DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Harap menyimpan Newsletter sebelum dikirim -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Pilihan harus DocType valid untuk bidang {0} berturut-turut {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} tahun yang lalu +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Pilihan harus DocType valid untuk bidang {0} berturut-turut {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edit Properties DocType: Patch Log,List of patches executed,Daftar patch dieksekusi apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} sudah berhenti berlangganan -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikasi Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikasi Medium DocType: Website Settings,Banner HTML,Spanduk HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Pilih metode pembayaran yang lain. Razorpay tidak mendukung transaksi dalam mata uang '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Antri untuk cadangan. Ini mungkin memakan waktu beberapa menit sampai satu jam. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Daftar OAuth Klien App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Seharusnya salah satu dari ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak dapat ""{2}"". Seharusnya salah satu dari ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} atau {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Tampilkan atau Sembunyikan Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Sandi Pembaruan @@ -1747,7 +1747,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Tampilkan Jalur Breaks setelah Bagian DocType: Blogger,Short Name,Nama pendek apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Halaman {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Anda memilih Opsi Sync sebagai ALL, itu akan resync semua \ membaca serta pesan yang belum dibaca dari server. Hal ini juga dapat menyebabkan duplikasi \ Komunikasi (email)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Ukuran file @@ -1759,6 +1759,7 @@ DocType: Contact,Purchase Manager,Manajer Pembelian DocType: Custom Script,Sample,Sampel apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Berkatagori Tags DocType: Event,Every Week,Setiap Minggu +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Akun email tidak di setup Buat Akun Email baru dari Setup> Email> Email Account apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik di sini untuk memeriksa penggunaan Anda atau meng-upgrade ke rencana yang lebih tinggi DocType: Custom Field,Is Mandatory Field,Apakah Lapangan Wajib DocType: User,Website User,Website User @@ -1781,16 +1782,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Kustom Sidebar menu DocType: Workflow State,pencil,pensil apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Pesan chat dan pemberitahuan lainnya. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Masukkan Setelah tidak dapat ditetapkan sebagai {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Masukkan Setelah tidak dapat ditetapkan sebagai {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Berbagi {0} dengan apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email Account Setup masukkan kata sandi Anda untuk: DocType: Workflow State,hand-up,tangan-ke atas DocType: Blog Settings,Writers Introduction,Penulis Pengantar DocType: Address,Phone,Telepon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Kesalahan saat mengevaluasi Notifikasi Email {0}. Harap perbaiki template Anda. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Kesalahan saat mengevaluasi Notifikasi Email {0}. Harap perbaiki template Anda. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Pilih Document Type atau Peran untuk memulai. DocType: Contact,Passive,Pasif DocType: Contact,Accounts Manager,Manager Akunting +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Pembayaran anda dibatalkan apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Pilih File Type DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Halaman tidak ditemukan @@ -1817,6 +1819,7 @@ DocType: Property Setter,Property Type,Jenis properti DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Hanya Administrator dapat menyimpan laporan standar. Silahkan mengubah nama dan simpan. DocType: System Settings,Background Workers,Pekerja latar belakang +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} bertentangan dengan objek meta DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumen Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Anda telah membuat {0} dari {1} @@ -1841,7 +1844,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Izin Tampilkan Pengguna apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Anda harus login dan memiliki System Manager Peran untuk dapat mengakses backup. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,sisa -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Silakan simpan sebelum memasang. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Silakan simpan sebelum memasang. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ditambahkan {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},tema default diatur dalam {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak dapat diubah dari {0} ke {1} di baris {2} @@ -1861,11 +1864,10 @@ DocType: System Settings,System Settings,Pengaturan Sistem apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesi Mulai Gagal apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Email ini dikirim ke {0} dan disalin ke {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Silakan setup default Email Account dari Setup> Email> Email Account -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Buat baru {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Buat baru {0} DocType: Email Rule,Is Spam,Apakah Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Laporan {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Terbuka {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Terbuka {0} DocType: OAuth Client,Default Redirect URI,Bawaan Redirect URI DocType: Email Alert,Recipients,Penerima DocType: Workflow State,ok-sign,ok-tanda @@ -1883,6 +1885,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Bantuan Artikel ,Modules Setup,Modul Pengaturan apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Jenis: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Pembayaran Anda telah gagal DocType: Communication,Unshared,unshared DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul Tidak Ditemukan @@ -1928,7 +1931,7 @@ DocType: Website Settings,Brand Image,brand Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup atas bar navigasi, footer dan logo." DocType: Web Form Field,Max Value,Max Nilai -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Untuk {0} pada tingkat {1} dalam {2} berturut-turut {3} DocType: Contact,All,Semua DocType: Email Queue,Recipient,Penerima DocType: Communication,Has Attachment,memiliki Lampiran @@ -1945,7 +1948,8 @@ DocType: Workflow State,align-right,rata-kanan DocType: Auto Email Report,Email To,Email Untuk apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} tidak kosong DocType: Page,Roles,4.1.2 Roles(Peran) -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Lapangan {0} adalah tidak dapat dipilih. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Kesalahan: Nilai yang hilang untuk {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Lapangan {0} adalah tidak dapat dipilih. DocType: System Settings,Session Expiry,Sesi kadaluarsa DocType: Workflow State,ban-circle,lingkaran-larangan DocType: Email Flag Queue,Unread,belum dibaca @@ -1960,7 +1964,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Default Pengguna apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Buat New DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email tidak dikirim ke {0} (berhenti berlangganan / cacat) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email tidak dikirim ke {0} (berhenti berlangganan / cacat) DocType: Async Task,Traceback,Melacak kembali DocType: Currency,Smallest Currency Fraction Value,Terkecil Mata Fraksi Nilai apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Tugaskan Kepada @@ -1971,12 +1975,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Dari DocType: Website Theme,Google Font (Heading),Google Font (Pos) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Pilih simpul kelompok terlebih dahulu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Cari {0} pada {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Cari {0} pada {1} DocType: OAuth Client,Implicit,Implisit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Tambah sebagai komunikasi terhadap DOCTYPE ini (harus memiliki bidang, ""Status"", ""Subject"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI untuk menerima kode otorisasi sekali pengguna memungkinkan akses, serta tanggapan kegagalan. Biasanya titik akhir SISA terpapar oleh Klien App.
misalnya http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Tidak diperbolehkan untuk mengubah {0} setelah pengiriman +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Tidak diperbolehkan untuk mengubah {0} setelah pengiriman DocType: Communication,Comment Type,Komentar Type DocType: OAuth Client,OAuth Client,OAuth Klien apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Pengguna @@ -1990,7 +1994,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Tidak dapat membaca format file untuk {0} DocType: Auto Email Report,Filter Data,Filter Data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Menambahkan tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Harap melampirkan file pertama. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Harap melampirkan file pertama. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Ada beberapa kesalahan pengaturan nama, silahkan hubungi administrator" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Akun email masuk tidak benar apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2005,11 +2009,11 @@ DocType: Blog Post,Email Sent,Email Terkirim DocType: DocField,Ignore XSS Filter,Abaikan XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,dihapus apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,pengaturan dropbox backup -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Kirim Sebagai Email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Kirim Sebagai Email DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Pengguna {0} tidak dapat dinonaktifkan apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kepada System Manager Yth.," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Negaramu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Negaramu DocType: Event,Sunday,Minggu apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Di Grid View DocType: Address Template,Template,Contoh @@ -2017,7 +2021,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Pengaturan LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Amandemen apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,pengaturan gateway pembayaran PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) akan terpotong, seperti max karakter yang diizinkan adalah {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) akan terpotong, seperti max karakter yang diizinkan adalah {2}" DocType: OAuth Client,Resource Owner Password Credentials,Sumber daya Pemilik Sandi Kredensial DocType: OAuth Client,Response Type,Response Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Pengguna Max @@ -2034,7 +2038,7 @@ DocType: DocField,Table,Meja DocType: File,File Size,Ukuran File apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Anda harus login untuk mengirimkan formulir ini DocType: User,Background Image,Gambar Latar -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Pilih Negara Anda, Zona Waktu dan Mata Uang" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Pilih Negara Anda, Zona Waktu dan Mata Uang" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Antara DocType: Async Task,Queued,Antri @@ -2043,6 +2047,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Buat apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filter tidak valid: {0} DocType: Email Account,no failed attempts,upaya tidak gagal +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Tidak ada Kerangka Alamat default yang ditemukan. Buat yang baru dari Setup> Printing and Branding> Address Template. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,Aplikasi Access Key DocType: OAuth Bearer Token,Access Token,Akses Token @@ -2060,8 +2065,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Nama DocType: DocType,Image View,Citra Tampilan apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Sepertinya ada yang tidak beres selama transaksi. Karena kita belum mengkonfirmasi pembayaran, Paypal otomatis akan mengembalikan Anda jumlah ini. Jika tidak, silahkan kirim email dan menyebutkan ID Korelasi: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Sertakan simbol, angka dan huruf kapital di password" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field '{1}', dengan label '{2}', tidak ada" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Sertakan simbol, angka dan huruf kapital di password" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Masukkan Setelah bidang '{0}' disebutkan dalam Custom Field '{1}', dengan label '{2}', tidak ada" DocType: Workflow State,signal,sinyal DocType: DocType,Show Print First,Tampilkan Cetak Pertama apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter untuk mengirim @@ -2091,13 +2096,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' tidak ditemukan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Hapus Bagian DocType: User,Change Password,Ganti kata sandi -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email tidak valid: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Halo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email tidak valid: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Halo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Akhir acara harus setelah start apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Anda tidak memiliki izin untuk mendapatkan laporan tentang: {0} +DocType: System Settings,Apply Strict User Permissions,Terapkan Izin Pengguna yang Ketat DocType: DocField,Allow Bulk Edit,Izinkan Edit Massal DocType: Blog Post,Blog Post,Posting Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Pencarian Lanjutan +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Pencarian Lanjutan apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Sandi instruksi ulang telah dikirim ke email Anda apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 adalah untuk perizinan tingkat dokumen, \ tingkat yang lebih tinggi untuk izin tingkat lapangan." @@ -2115,15 +2121,14 @@ DocType: OAuth Bearer Token,Revoked,dicabut DocType: Web Page,Sidebar and Comments,Sidebar dan Komentar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ketika Anda Mengubah dokumen setelah Batal dan menyimpannya, itu akan mendapatkan nomor baru yang merupakan versi dari nomor lama." DocType: Stripe Settings,Publishable Key,Kunci Publishable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} tahun yang lalu DocType: Workflow State,circle-arrow-left,lingkaran-panah-kiri apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Cache server Redis tidak berjalan. Silahkan hubungi Administrator / dukungan Tech apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nama Partai -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Membuat rekor baru +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Membuat rekor baru apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Pencarian DocType: Currency,Fraction,Pecahan DocType: LDAP Settings,LDAP First Name Field,LDAP Nama Field Pertama -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Pilih dari lampiran yang ada +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Pilih dari lampiran yang ada DocType: Custom Field,Field Description,Bidang Deskripsi apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Name tidak diatur melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,email Inbox @@ -2169,11 +2174,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Izin Tingkat DocType: User,Send Notifications for Transactions I Follow,Kirim Notifikasi Transaksi Saya Ikuti -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak dapat mengatur Pengajuan, Pembatalan, Perubahan tanpa Pencatatan" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Apakah Anda yakin ingin menghapus lampiran? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Tidak dapat menghapus atau membatalkan karena {0} {1} terkait dengan {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Tidak ada hasil yang ditemukan untuk '

-apps/frappe/frappe/__init__.py +1063,Thank you,Terima kasih +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Tidak dapat menghapus atau membatalkan karena {0} {1} terkait dengan {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Terima kasih apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Hemat DocType: Print Settings,Print Style Preview,Print Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2185,10 +2189,10 @@ DocType: DocField,In List View,Dalam Daftar View DocType: Email Account,Use TLS,Gunakan TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Login atau kata sandi tidak valid apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Tambahkan kustom javascript untuk form. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Tidak +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Tidak ,Role Permissions Manager,Permissions Peran Manajer apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nama Print Format baru -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Bersihkan Lampiran +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Bersihkan Lampiran apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Wajib: ,User Permissions Manager,Permissions User Manager DocType: Property Setter,New value to be set,Nilai baru yang akan ditetapkan @@ -2217,26 +2221,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 hari apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Mengkategorikan posting blog. DocType: Workflow State,Time,Durasi DocType: DocField,Attach,Melampirkan -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} bukan pola nama-kolom yang sah. Seharusnya {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Beri Tanggapan Permintaan hanya jika ada setidaknya satu komunikasi yang tersedia untuk dokumen. DocType: Custom Role,Permission Rules,Aturan Izin DocType: GSuite Settings,GSuite Settings,Pengaturan GSuite DocType: Address,Links,Links -apps/frappe/frappe/model/base_document.py +428,Value missing for,Nilai hilang untuk +apps/frappe/frappe/model/base_document.py +427,Value missing for,Nilai hilang untuk apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Tambah Anak -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Data yang sudah di-posting tidak dapat dihapus. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Data yang sudah di-posting tidak dapat dihapus. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Ukuran Backup DocType: GSuite Templates,Template Name,Nama template -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,jenis baru dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,jenis baru dokumen DocType: Custom DocPerm,Read,Membaca DocType: Role Permission for Page and Report,Role Permission for Page and Report,Peran Izin Page dan Laporan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,menyelaraskan Nilai apps/frappe/frappe/www/update-password.html +14,Old Password,Password Lama -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posting oleh {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posting oleh {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Untuk memformat kolom, memberi label kolom dalam query." DocType: Has Domain,Has Domain,Memiliki Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Tidak memiliki account? Daftar -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak dapat menetapkan perubahan jika dokumen tidak dapat diajukan DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Izin mengedit Peran DocType: Communication,Link DocType,Link DocType @@ -2336,7 +2340,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Pastikan bahwa profil Anda memiliki alamat email apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Anda belum menyimpan perubahan pada formulir ini. Silakan simpan sebelum Anda melanjutkan. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Default untuk {0} harus menjadi pilihan +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Default untuk {0} harus menjadi pilihan DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori DocType: User,User Image,KOSONG apps/frappe/frappe/email/queue.py +289,Emails are muted,Email akan dinonaktifkan @@ -2369,7 +2373,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Tindakan s DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Nilai-nilai ini akan secara otomatis diperbarui dalam transaksi dan juga akan berguna untuk membatasi hak akses untuk pengguna ini transaksi yang mengandung nilai-nilai ini. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Penerbit -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Gagal: {0} ke {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Gagal: {0} ke {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,pilih wajib apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Melihat-lihat apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,email Terkirim @@ -2381,7 +2385,7 @@ DocType: Async Task,Running,Menjalankan apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Harap Upgrade ke menambahkan lebih dari {0} pelanggan DocType: Workflow State,hand-left,tangan kiri -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} untuk {1} tidak dapat menjadi unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} untuk {1} tidak dapat menjadi unik DocType: Email Account,Use SSL,Gunakan SSL DocType: Workflow State,play-circle,bermain-lingkaran apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Pilih Print Format untuk Mengedit @@ -2436,7 +2440,7 @@ DocType: DocField,No Copy,Tidak ada Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Masuk dengan LDAP DocType: Web Form,Breadcrumbs,Tepung Roti -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Jika Owner +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Jika Owner DocType: OAuth Authorization Code,Expiration time,waktu berakhirnya DocType: Web Page,Website Sidebar,Sidebar situs DocType: Web Form,Show Sidebar,Tampilkan Sidebar @@ -2456,7 +2460,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Tidak dapat menem apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri mudah ditebak. apps/frappe/frappe/config/website.py +93,Knowledge Base,Dasar pengetahuan DocType: Workflow State,briefcase,tas kantor -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Nilai tidak dapat diubah untuk {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Nilai tidak dapat diubah untuk {0} DocType: Feedback Request,Is Manual,Apakah Pedoman DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Gaya merupakan tombol warna: Sukses - Hijau, Danger - Red, Inverse - Black, Primer - Dark Blue, Info - Light Blue, Peringatan - Jeruk" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ada Laporan Loaded. Silakan gunakan laporan query / [Nama Laporan] untuk menjalankan laporan. @@ -2533,7 +2537,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Kemajuan apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,Berdasarkan Role apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,hilang Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname tidak valid '{0}' di autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Cari dalam jenis dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cari dalam jenis dokumen apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Izinkan kolom untuk tetap dapat diedit bahkan setelah pengajuan DocType: Custom DocPerm,Role and Level,Peran dan Tingkat DocType: File,Thumbnail URL,URL thumbnail @@ -2550,18 +2554,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Informasi lebih DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Pembayaran Anda berhasil diterima +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Pembayaran Anda berhasil diterima apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Mohon Maaf! Anda tidak diizinkan untuk melihat halaman ini. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: sel klik dua kali untuk mengedit DocType: Workflow State,bell,bel apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Kesalahan dalam Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Bagi dokumen ini dengan +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} tidak bisa menjadi node tumpuan karena memiliki anak-anak DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Tambahkan sisipan +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Tambahkan sisipan DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Terima kasih untuk pesan Anda -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Kirim Baca Receipt +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Kirim Baca Receipt DocType: Stripe Settings,Stripe Settings,Pengaturan Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Pengaturan via Site Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Valid Login Token @@ -2638,6 +2643,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Peringatan: Format Cetak ini dalam gaya lama dan tidak dapat dihasilkan melalui API. DocType: DocField,Print Width,Cetak Lebar ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,Nomor Negara Bagian GST DocType: User,Allow user to login only before this hour (0-24),Memungkinkan pengguna untuk login hanya sebelum jam ini (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder adalah wajib apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2663,7 +2669,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Teks Kecil apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator mengakses {0} pada {1} melalui IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Equals -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain dengan pilihan sebagai 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Jenis Options 'Dynamic Link' lapangan harus mengarah ke Link Field lain dengan pilihan sebagai 'DocType' DocType: About Us Settings,Team Members Heading,Anggota Tim Pos apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,CSV Format valid apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Mengatur Jumlah Backup @@ -2674,7 +2680,7 @@ DocType: Contact,Contact,Kontak DocType: User,Third Party Authentication,Pihak Ketiga Otentikasi DocType: Website Settings,Banner is above the Top Menu Bar.,Spanduk di atas Menu Atas. DocType: Razorpay Settings,API Secret,API Rahasia -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Laporan ekspor: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Laporan ekspor: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} tidak ada DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2697,7 +2703,7 @@ DocType: Kanban Board Column,Column Name,Kolom Nama DocType: Language,Based On,Berdasarkan apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Membuat default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Periksa URL Frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} untuk {1} tidak dapat diindeks +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} untuk {1} tidak dapat diindeks DocType: Communication,Email Account,Akun Email DocType: Workflow State,Download,Unduh DocType: Blog Post,Blog Intro,Blog Intro @@ -2708,7 +2714,7 @@ DocType: Web Page,Insert Code,Masukkan Kode DocType: ToDo,Low,Rendah apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Anda dapat menambahkan sifat dinamis dari dokumen dengan menggunakan Jinja template. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Batas tidak valid {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Daftar jenis dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Daftar jenis dokumen DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jika Anda meng-upload catatan baru, meninggalkan ""nama"" (ID) kolom kosong." DocType: Address,Chattisgarh,Chattisgarh @@ -2730,25 +2736,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Kirim Cetak sebagai PDF DocType: Web Form,Amount,Jumlah DocType: Workflow Transition,Allowed,Diizinkan -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Hanya ada satu Fold dalam bentuk +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Hanya ada satu Fold dalam bentuk apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Tidak dapat menulis format file untuk {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Mengembalikan ke pengaturan default? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Valid Halaman apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Valid Login. Coba lagi. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Pilihan yang diperlukan untuk field tipe Link atau Table {0} pada baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Pilihan yang diperlukan untuk field tipe Link atau Table {0} pada baris {1} DocType: Auto Email Report,Send only if there is any data,Kirim hanya jika ada data apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Atur Ulang Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Izin pada tingkat 0 harus ditetapkan sebelum tingkat yang lebih tinggi ditetapkan apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Tugas ditutup oleh {0} DocType: Integration Request,Remote,Terpencil -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Menghitung +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Menghitung apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Silakan pilih DOCTYPE pertama apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Konfirmasi Email Anda apps/frappe/frappe/www/login.html +42,Or login with,Atau login dengan DocType: Error Snapshot,Locals,Penduduk setempat apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Dikomunikasikan melalui {0} pada {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} menyebut Anda dalam komentar di {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,misalnya (55 + 434) / 4 atau = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} diperlukan DocType: Integration Request,Integration Type,integrasi Type DocType: Newsletter,Send Attachements,Kirim attachements @@ -2758,14 +2764,14 @@ DocType: DocField,Perm Level,Perm Tingkat apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Acara Dalam Kalender Hari ini DocType: Web Page,Web Page,Halaman web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Di Global Search' tidak diizinkan untuk mengetik {0} pada baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Di Global Search' tidak diizinkan untuk mengetik {0} pada baris {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Lihat Daftar -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Tanggal harus dalam format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Tanggal harus dalam format: {0} DocType: Workflow,Don't Override Status,Jangan Override Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Tolong beri rating. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Masukan Permintaan apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Istilah pencarian -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Pengguna Pertama : Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Pengguna Pertama : Anda apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Pilih Kolom DocType: Translation,Source Text,sumber Teks apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parameter yang hilang untuk masuk @@ -2787,7 +2793,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Pengimporan DocType: ToDo,Assigned By,Ditugaskan Oleh apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Anda dapat menggunakan Formulir Customize untuk mengatur tingkat pada bidang. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Pilih Wilayah Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Pilih Wilayah Anda DocType: Custom DocPerm,Level,Level DocType: Custom DocPerm,Report,Laporan apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Jumlah harus lebih besar dari 0. @@ -2807,7 +2813,7 @@ DocType: Website Theme,Background,Latar Belakang DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON daftar Doctypes digunakan untuk menerapkan Izin Pengguna. Jika kosong, semua Doctypes terkait akan digunakan untuk menerapkan Izin Pengguna." DocType: Report,Ref DocType,DocType Ref apps/frappe/frappe/www/feedback.py +42,Please add a rating,Harap tambahkan nilai -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Tidak dapat melakukan Perubahan tanpa Pembatalan terlebih dahulu apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Apakah Anak Table apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} harus merupakan salah satu {1} @@ -2822,7 +2828,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ini berjalan di atas s apps/frappe/frappe/config/setup.py +260,Install Applications.,Install Aplikasi. DocType: Contact,Last Name,Nama Belakang DocType: Event,Private,Swasta -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Tidak ada peringatan untuk hari ini +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Tidak ada peringatan untuk hari ini DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Kirim Email Cetak Lampiran sebagai PDF (Recommended) DocType: Web Page,Left,Waktu tersisa DocType: Event,All Day,Semua Hari @@ -2836,7 +2842,7 @@ DocType: Event,Send an email reminder in the morning,Kirim email pengingat di pa DocType: Blog Post,Published On,Published On DocType: Contact,Gender,Jenis Kelamin apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informasi wajib hilang: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Bidang '{0}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Bidang '{0}' tidak dapat ditetapkan sebagai Unik karena memiliki nilai-nilai non-unik apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Hanya 200 sisipan diperbolehkan dalam satu permintaan DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referensi Type @@ -2849,7 +2855,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Pengguna DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Tampilkan judul di jendela browser sebagai "Awalan - judul" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,teks dalam tipe dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teks dalam tipe dokumen apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Jalankan Tes apps/frappe/frappe/handler.py +91,Logged Out,Keluar apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Lebih... @@ -2874,13 +2880,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Saat Melihat DocType: DocField,Default,Standar apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ditambahkan -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Cari '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cari '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Harap menyimpan laporan pertama apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} Pelanggan telah ditambahkan apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Tidak Masuk DocType: Workflow State,star,bintang -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,nilai-nilai dipisahkan oleh koma -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max lebar untuk jenis mata uang adalah 100px berturut-turut {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,nilai-nilai dipisahkan oleh koma +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max lebar untuk jenis mata uang adalah 100px berturut-turut {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Silakan berbagi tanggapan Anda untuk {0} apps/frappe/frappe/config/website.py +13,Content web page.,Halaman web konten. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Tambahkan Peran Baru @@ -2898,7 +2904,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Bukan pengguna LDAP valid apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} bukan Keadaan yang berlaku apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Pilih metode pembayaran yang lain. PayPal tidak mendukung transaksi dalam mata uang '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,kolom pencarian {0} tidak valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,kolom pencarian {0} tidak valid DocType: Workflow State,ok-circle,ok-lingkaran apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Anda dapat menemukan hal-hal dengan bertanya 'menemukan oranye di pelanggan' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Mohon Maaf! Pengguna harus memiliki akses penuh untuk merekam mereka sendiri. @@ -2958,7 +2964,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Teks yang akan ditampilkan untuk Link ke Halaman Web jika formulir ini memiliki halaman web. Link rute akan secara otomatis dihasilkan berdasarkan `page_name` dan` parent_website_route` DocType: Feedback Request,Feedback Trigger,Masukan Pemicu -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Silakan set {0} pertama +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Silakan set {0} pertama DocType: Unhandled Email,Message-id,Pesan-id DocType: Patch Log,Patch,Tambalan DocType: Async Task,Failed,Gagal diff --git a/frappe/translations/is.csv b/frappe/translations/is.csv index 42a25dbbf1..122e71c22b 100644 --- a/frappe/translations/is.csv +++ b/frappe/translations/is.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Notandanafn DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Ath: Margar fundur verður leyft að ræða farsíma apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Virkt Innhólfið fyrir notandann {notendur} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ekki er hægt að senda þennan tölvupóst. Þú hefur farið yfir sendingu mörk {0} tölvupósti fyrir þennan mánuð. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Varanlega Senda {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Varanlega Senda {0}? DocType: Address,County,County DocType: Workflow,If Checked workflow status will not override status in list view,Ef hakað workflow staða mun ekki forgang stöðu í listayfirliti apps/frappe/frappe/client.py +280,Invalid file path: {0},Ógild skrá Slóð: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Vinsaml apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,notandi póst DocType: User,Username,Notandanafn -apps/frappe/frappe/model/base_document.py +581,Value too big,Gildi of stór +apps/frappe/frappe/model/base_document.py +580,Value too big,Gildi of stór DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Hlaupa Script Test DocType: Contact,Department,deild @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,logs DocType: Custom DocPerm,This role update User Permissions for a user,Þetta hlutverk uppfæra notanda heimildir notanda apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Endurnefna {0} DocType: Workflow State,zoom-out,Zoom-út -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi þess er opinn +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Get ekki opnað {0} þegar dæmi þess er opinn apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tafla {0} má ekki vera autt apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,með ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,myndir DocType: Communication,Reference Owner,Tilvísun Eigandi DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Minnsta blóðrás brot einingu (mynt). Fyrir td 1 prósent fyrir USD og það ætti að vera slegið eins 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Vinsamlegast gefið FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,Upphafið með apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Gögn Flytja Snið apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ef slökkt er á, verður lykilorðsstyrkurinn framfylgt miðað við lágmarksviðmiðið. Gildi 2 er miðlungs sterk og 4 er mjög sterk." DocType: About Us Settings,"""Team Members"" or ""Management""","Team Members" eða "Management" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Sjálfgefið fyrir 'Athugaðu' tegund sviði hlýtur að vera annað hvort "0" eða "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Sjálfgefið fyrir 'Athugaðu' tegund sviði hlýtur að vera annað hvort "0" eða "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Í gær DocType: Contact,Designation,Tilnefning DocType: Test Runner,Test Runner,próf Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,Er birt Field DocType: Email Group,Email Group,Tölvupóstur Group DocType: Note,Seen By,séð af apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Bæta við mörgum -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ekki eins og +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ekki eins og apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Stilla skjáinn merki fyrir sviði apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Rangt gildi: {0} verður að vera {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Breyting sviði eiginleikar (fela, skrifréttinda, leyfi o.fl.)" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Stillinga apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Stjórnandi innskráður DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Samskiptakostir, eins og "Velta fyrirspurn, Support Fyrirspurn" osfrv hver á nýja línu eða aðskilin með kommum." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Sækja -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Setja inn +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Setja inn apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Veldu {0} DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,Litur @@ -121,7 +121,7 @@ DocType: Translation,Translation,þýðingar apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,setja apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,herra DocType: Custom Script,Client,viðskiptavinur -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Þessi mynd hefur verið breytt eftir að þú hefur hlaðið hana +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Þessi mynd hefur verið breytt eftir að þú hefur hlaðið hana DocType: User Permission for Page and Report,User Permission for Page and Report,Notandaleyfi fyrir Page og skýrslu DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format",Ef ekki er stillt mun gjaldmiðilsnákvæmni ráðast á númerasnið @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Ástæðan apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Vinsamlegast tilgreinið notanda DocType: Email Unsubscribe,Email Unsubscribe,Tölvupóstur Afskrá DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Veldu mynd af ca breidd 150 px með gagnsæjum bakgrunni fyrir besta árangur. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Fyrsti Notandinn mun verða System Manager (þú getur breytt þessu seinna). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Fyrsti Notandinn mun verða System Manager (þú getur breytt þessu seinna). ,App Installer,app Installer DocType: Workflow State,circle-arrow-up,hring-ör-upp apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Hleður inn ... DocType: Email Domain,Email Domain,Tölvupóstslén DocType: Workflow State,italic,skáletrað apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Fyrir alla -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Get ekki stillt Import án Búa +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Get ekki stillt Import án Búa apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event og önnur dagatöl. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Öll svið eru nauðsynleg til að senda inn athugasemdina. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Dragðu til að raða dálkum @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Matseðill apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Ekki hægt að eyða Heimili og viðhengi möppur apps/frappe/frappe/config/desk.py +19,Files,skrár apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Heimildir fá beitt á notenda á grundvelli hvaða hlutverk þeir eru falin. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Þú hefur ekki heimild til að senda tölvupóst sem tengjast þessu skjali -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Veldu atleast 1 dálk frá {0} að raða / hóp +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Þú hefur ekki heimild til að senda tölvupóst sem tengjast þessu skjali +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Veldu atleast 1 dálk frá {0} að raða / hóp DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Hakaðu við þetta ef þú ert að prófa greiðslu með sandkassa API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Þú hefur ekki heimild til að eyða staðlað Website Þema DocType: Feedback Trigger,Example,Dæmi @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Samtals Áskrifendur apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ef Hlutverk hefur ekki aðgang í Level 0, eru þá hærri stigum tilgangslaust." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Vista sem DocType: Communication,Seen,séð -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Sýna fleiri upplýsingar +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Sýna fleiri upplýsingar DocType: System Settings,Run scheduled jobs only if checked,Keyra áætlunarflug störf aðeins ef hakað apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Birtist aðeins ef Kaflafyrirsagnir eru virk apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Skjalasafn @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Sýna Mynd apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Gilt netfang og nafn krafist DocType: DocType,Hide Heading,fela fyrirsögn DocType: Address,Current,Núverandi -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Related Skjöl apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Hópar DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,fjarlægja-hring @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Sía apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} getur ekki hafa sérstaka stafi eins {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Uppfæra marga gildi í einu. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Villa: Skjal hefur verið breytt eftir að þú hefur opnað hana -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlegast búðu til nýjan úr Uppsetning> Prentun og merkingu> Heimilisfangmát. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} innskráð út: {1} DocType: Address,West Bengal,Vestur-Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Get ekki stillt á Velja Leggja ef ekki Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Get ekki stillt á Velja Leggja ef ekki Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Síuð með "{0}" DocType: Salutation,Administrator,stjórnandi @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard hlutverk er ekki mögulegt DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Fréttabréf -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Ekki er hægt að nota í staðinn fyrir einhvern-fyrirspurn í röð eftir +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Ekki er hægt að nota í staðinn fyrir einhvern-fyrirspurn í röð eftir DocType: Web Form,Button Help,Button Hjálp DocType: Kanban Board Column,purple,fjólublátt DocType: About Us Settings,Team Members,Liðsfélagar @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Fá heimsví apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Áskriftin þín rann {0}. Að endurnýja, {1}." DocType: Workflow State,plus-sign,plús-merki apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Skipulag þegar lokið -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} er ekki uppsett +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} er ekki uppsett DocType: Workflow State,Refresh,Uppfæra DocType: Event,Public,Public apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ekkert til að sýna @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,líkaði By apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Email Stuðningur DocType: DocField,Print Hide If No Value,Prenta Fela Ef No Value DocType: Event,yellow,gulur -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Er birt Field verður að vera gilt FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Er birt Field verður að vera gilt FIELDNAME apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Hlaða Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Flytja Snið @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Glob DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Ný tenging hefur verið búin til fyrir þig á {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Leiðbeiningar sendar -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Sláðu Email Viðtakandi (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Sláðu Email Viðtakandi (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Tölvupóstur Flag Biðröð apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Ekki er hægt að bera kennsl á opinn {0}. Prófaðu eitthvað annað. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,skilaboð ID DocType: Property Setter,Field Name,Field Name apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite er ekki stillt. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,eða -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,mát nafn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Halda áfram +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,mát nafn ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Halda áfram DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,vottorð DocType: User,Tile,flísar @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Sýna öllum útgáfum DocType: Workflow State,Print,Print DocType: User,Restrict IP,Takmarka IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Mælaborð apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Ekki er hægt að senda tölvupóst á þessum tíma apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Leitaðu eða slá inn skipun DocType: Communication,Timeline Name,Timeline Name @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Velta Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Eitt síðasta skref apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Heiti skjals (DOCTYPE) sem þú vilt þessu sviði að vera tengd. td viðskiptavinur DocType: User,Roles Assigned,hlutverk Úthlutað -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Leit Hjálp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Leit Hjálp DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Fyrirspurnin hefur verið móttekin. Við munum svara innan skamms. Ef þú hefur einhverjar frekari upplýsingar, vinsamlegast svara þessum pósti." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Heimildir eru sjálfkrafa þýða að stöðluðum skýrslum og leitir. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Breyta fyrirsögn DocType: File,File URL,File URL DocType: Version,Table HTML,Tafla HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Engar niðurstöður fundust fyrir '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Bæta Áskrifandi apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Næstu viðburðir í dag DocType: Email Alert Recipient,Email By Document Field,Netfang By Document Field @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Upphæð Byggt á Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Notandi er nauðsynlegur fyrir Share DocType: DocField,Hidden,falinn DocType: Web Form,Allow Incomplete Forms,Leyfa Incomplete Eyðublöð -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} verður að setja fyrst +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} verður að setja fyrst apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Nota nokkur orð, forðast algengar setningar." DocType: Workflow State,plane,flugvél -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. greiðsla hefur mistekist. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ef þú ert að senda nýjar færslur, "Nöfn Series" verður nauðsynlegur, ef til staðar." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Fá tilkynningar í dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Fá tilkynningar í dag apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE er einungis hægt að endurnefna með Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Breytt gildi {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Vinsamlegast athugaðu tölvupóstinn þinn til staðfestingar -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold getur ekki verið í lok formi +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold getur ekki verið í lok formi DocType: Communication,Bounced,hopp DocType: Deleted Document,Deleted Name,eytt Name apps/frappe/frappe/config/setup.py +14,System and Website Users,System og Website Notendur @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,skjal biðröð DocType: GSuite Templates,Destination ID,Áfangastað DocType: Desktop Icon,List,List DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,"Field {0} í röð {1}, fær ekki dulist og nauðsynlegur án vanræksla" +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,"Field {0} í röð {1}, fær ekki dulist og nauðsynlegur án vanræksla" DocType: System Settings,mm/dd/yyyy,mm / dd / áááá apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ógilt lykilorð: DocType: Print Settings,Send document web view link in email,Senda skjal vefur útlit tengil í tölvupósti apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Tilkynningar um skjal {0} er vistuð apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,fyrri -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} raðir fyrir {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-mynt. Fyrir td "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Veldu skrá innsend @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Engin skrá viðhengi DocType: Version,Version,útgáfa DocType: User,Fill Screen,fylla skjáinn -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ekki er hægt að birta þetta tré skýrslu, vegna þess að vantar gögn. Líklegast, það er verið síað út vegna heimildir." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu> Email> Email Account +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ekki er hægt að birta þetta tré skýrslu, vegna þess að vantar gögn. Líklegast, það er verið síað út vegna heimildir." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Veldu File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Breyta um Senda -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","skjal tegund ..., td viðskiptavinur" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","skjal tegund ..., td viðskiptavinur" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,The Ástand '{0}' er ógild DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Bæta við eigin þýðingum @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,miðvikudagur apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Burtséð frá hlutverki byggt leyfi reglum, getur þú sótt notendaheimilda byggt á DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Þessar heimildir gilda fyrir öll viðskipti þar sem heimilt færsla er tengd. Til dæmis, ef fyrirtæki C er bætt við notendaheimilda af notandi X, notandi X mun aðeins vera fær um að sjá færslur sem hefur fyrirtækið C sem tengd gildi." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Mynd reitur verður að vera gilt FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Mynd reitur verður að vera gilt FIELDNAME DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nafn) einingarinnar sem eign er að setja apps/frappe/frappe/limits.py +82,"To renew, {0}.","Að endurnýja, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,Skenkur Items apps/frappe/frappe/installer.py +125,App {0} already installed,Forrit {0} er þegar uppsett DocType: Workflow State,exclamation-sign,upphrópun-merki apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Sýna Heimildir -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline reitur verður að vera Link eða Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline reitur verður að vera Link eða Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Tímabil apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} af {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Kynna apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Dulkóðunarlykill er ógildur, vinsamlegast athugaðu síðuna_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,til DocType: Kanban Board Column,darkgrey,dökk grár -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Vel heppnuðu: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Vel heppnuðu: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Ekki er hægt að breyta notendaupplýsingum í kynningu. Vinsamlegast skráðu þig inn fyrir nýja reikning á https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Vinsamlegast afrit þetta til að gera breytingar apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF kynslóð mistókst vegna brotinn myndatenglum @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,fellanlegur apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Vistað apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Hvað þarftu hjálp við? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Valkostir fyrir að velja. Hver valkostur á nýja línu. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Varanlega Hætta {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Varanlega Hætta {0}? DocType: Workflow State,music,tónlist DocType: Web Page,Settings,Stillingar apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Vinsamlegast tilgreinið DOCTYPE DocType: Print Format,Style Settings,Style Stillingar -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Raða reit {0} verður að vera gilt FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Raða reit {0} verður að vera gilt FIELDNAME apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,meira DocType: Contact,Sales Manager,Sölufulltrúi apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,endurnefna DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,eins +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,eins DocType: Customize Form Field,Customize Form Field,Sérsníða Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,að leyfa notanda DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Athugaðu hvaða Skjöl eru læsileg af notanda apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listar app ekki leyft -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,notaðu% sem algildisstaf -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Tölvupóstslén ekki stillt á þennan reikning, til?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,notaðu% sem algildisstaf +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Tölvupóstslén ekki stillt á þennan reikning, til?" DocType: User,Reset Password Key,Endurstilla lykilorð Key DocType: Email Account,Enable Auto Reply,Virkja sjálfvirka svar apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ekki séð @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Setja Aðeins einu sinni DocType: Email Queue Recipient,Email Queue Recipient,Tölvupóstur Biðröð Viðtakandi DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Notandanafn {0} er þegar til -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Get ekki stillt innflutning sem {1} er ekki importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Get ekki stillt innflutning sem {1} er ekki importable apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Það er villa í sniðmáti netfangið þitt {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Frá Fullt nafn apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Þú hefur ekki aðgang að skýrslu: {0} DocType: User,Send Welcome Email,Senda Welcome tölvupóst apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Hlaða CSV skrá sem inniheldur öll notandi heimildir í sama sniði og Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,fjarlægja síu +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,fjarlægja síu DocType: Address,Daman and Diu,Daman og Diu DocType: Address,Personal,Starfsfólk apps/frappe/frappe/config/setup.py +113,Bulk Rename,Magn Endurnefna @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType getur ekki haft sjálfgefið prenta snið, nota Customize Form" DocType: Report,Query,fyrirspurn DocType: DocType,Sort Order,Raða Order -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"Í listayfirliti 'ekki leyfð tegund {0} í röð {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"Í listayfirliti 'ekki leyfð tegund {0} í röð {1} DocType: Custom Field,Select the label after which you want to insert new field.,Veldu merkimiða eftir sem þú vilt að setja nýja sviði. ,Document Share Report,Skjal Share Skýrsla DocType: User,Last Login,Last Login -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME er krafist í röð {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME er krafist í röð {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,dálkur DocType: Custom Field,Adds a custom field to a DocType,Bætir við sérsniðnu svæði til DOCTYPE DocType: File,Is Home Folder,Er Home Folder @@ -583,7 +583,7 @@ DocType: File,Folder,mappa DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Fréttabréf Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,valkostur 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Allar færslur +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} til {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Ur villa á beiðnum. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} hefur verið bætt við Email Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,vísir DocType: DocShare,Everyone,allir DocType: Workflow State,backward,afturábak -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Aðeins ein regla leyft með sama hlutverk, Level og {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Aðeins ein regla leyft með sama hlutverk, Level og {1}" DocType: Email Queue,Add Unsubscribe Link,Bæta við Afskrá tengil apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Engar athugasemdir enn sem komið er. Hefja nýja umræðu. DocType: Workflow State,share,hlut @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,er ekk apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Skoða Áskrifendur apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fröken DocType: Website Theme,Background Color,Bakgrunns litur -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Það komu upp villur við að senda tölvupóst. Vinsamlegast reyndu aftur. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Það komu upp villur við að senda tölvupóst. Vinsamlegast reyndu aftur. DocType: Portal Settings,Portal Settings,Portal Stillingar DocType: Web Page,0 is highest,0 er hæst apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Ertu viss um að þú viljir Tengdu þessa orðsendingu til {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Hafðu samband Stillingar apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Leita ... DocType: Workflow State,text-width,texti-breidd -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Hámarks Attachment Limit fyrir þessa færslu náð. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Hámarks Attachment Limit fyrir þessa færslu náð. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Eftirfarandi skyldugjöld reiti verður að fylla:
DocType: Email Alert,View Properties (via Customize Form),Skoða Properties (með Customize Form) DocType: Note Seen By,Note Seen By,Athugasemd séð af @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder skýrslur eru stjórnað beint af skýrslu byggir. Ekkert að gera. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Vinsamlegast staðfestu netfangið þitt apps/frappe/frappe/model/document.py +903,none of,ekkert af -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Senda mér afrit +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Senda mér afrit apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Hlaða heimildir notanda DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Merkt atriði verður sýnt á skjáborðinu -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} Ekki er hægt að stilla fyrir Single tegundir +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} Ekki er hægt að stilla fyrir Single tegundir apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} er ekki til. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ert að lesa þetta skjal DocType: ToDo,Assigned By Full Name,Úthlutað undir fullu nafni apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} uppfærð -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Skýrslan er ekki hægt að setja fyrir Single tegundir +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Skýrslan er ekki hægt að setja fyrir Single tegundir apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dagar síðan DocType: Email Account,Awaiting Password,bíður Lykilorð DocType: Address,Address Line 1,Heimilisfang lína 1 @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Ríki til workflow (td Draft, Samþykkt, HÃ|tt)." DocType: Print Settings,Allow Print for Draft,Leyfa prenta fyrir Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Setja Magn -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Senda þessu skjali til að staðfesta +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Senda þessu skjali til að staðfesta DocType: Contact,Unsubscribed,afskráður apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Sett sérsniðin hlutverk fyrir síðuna og skýrsla apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,einkunn: @@ -676,7 +676,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Gögn Flytja Tól DocType: Address,Dadra and Nagar Haveli,Dadra og Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Hlaða skrám skaltu bíða í nokkrar sekúndur. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Hengja myndinni þinni +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Hengja myndinni þinni apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Gildi Breytt DocType: Workflow State,Stop,Hættu DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Tengill á síðuna sem þú vilt opna. Skildu eftir autt ef þú vilt gera það hópur foreldri. @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Align Merki til vinstri DocType: Help Article,Expert,Expert DocType: Workflow State,circle-arrow-right,hring-ör-hægri DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Get ekki opnað dæmis þegar þess {0} er opið +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Get ekki opnað dæmis þegar þess {0} er opið apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Bíður setja DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Senda Afskrá tengil @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} fjarlægt DocType: Custom DocPerm,Apply User Permissions,Gilda heimildir notanda DocType: User,Modules HTML,Modules HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Uppsetning> Notendahópur apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Vantar gildi Áskilið DocType: DocType,Other Settings,aðrar stillingar DocType: Social Login Keys,Frappe,frappe @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ekkert skjal valin apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,dr DocType: Event,Event,Event -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Á {0}, {1} skrifaði:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Á {0}, {1} skrifaði:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Ekki hægt að eyða stöðluðu sviði. Hægt er að fela það ef þú vilt DocType: Top Bar Item,For top bar,Fyrir toppur bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Gat ekki þekkja {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Desk Aðgangur DocType: Workflow State,minus,mínus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Villa: Vinsamlegast athugaðu server logs eða hafa samband við tækni stuðning. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Velkomin sendur -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Skulum undirbúa kerfið fyrir fyrstu notkun. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Skulum undirbúa kerfið fyrir fyrstu notkun. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Grein apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Nú þegar skráð DocType: System Settings,Float Precision,fljóta Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,leyfa Prenta apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ekkert forrit uppsett apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Merktu vellinum Nauðsynlegur DocType: Communication,Clicked,smellt -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Engin heimild til að '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Engin heimild til að '{0}' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Áætlunarferðir til að senda DocType: DocType,Track Seen,Track Séð @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,samtímis Sessions DocType: OAuth Client,Client Credentials,viðskiptavinur persónuskilríki -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Opna mát eða tól +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Opna mát eða tól DocType: Communication,Delivery Status,Afhending Staða DocType: Module Def,App Name,app Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max skráarstærð leyft er {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Tilvísun Samskipti DocType: Email Queue,Unsubscribe Method,afskrá Aðferð DocType: GSuite Templates,Related DocType,Tengd skjalgerð apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Breyta til að bæta við efni -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Select Tungumál -apps/frappe/frappe/__init__.py +510,No permission for {0},Engin heimild fyrir {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Select Tungumál +apps/frappe/frappe/__init__.py +509,No permission for {0},Engin heimild fyrir {0} DocType: DocType,Advanced,Ítarlegri apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Virðast API lykil eða API Secret er rangt !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Tilvísun: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Sláðu Form Tegund apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Engar færslur tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,fjarlægja Field DocType: User,Send Password Update Notification,Senda Lykilorð Uppfæra Tilkynningar -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Leyfa DOCTYPE, DOCTYPE. Farðu varlega!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Leyfa DOCTYPE, DOCTYPE. Farðu varlega!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Sérsniðin Snið fyrir prentun, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Uppfært til New Version DocType: Custom Field,Depends On,Veltur á @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,einn af apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Vinsamlegast veldu skrá til að afrita apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Athugar eitt augnablik apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Sýna Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ef beitt er strangt notendavottorð er valið og notendaskilyrði skilgreint fyrir DocType fyrir notanda, þá munu öll skjölin þar sem gildi hlekksins er tóm, ekki sýndur til notandans" DocType: Address,Billing,innheimtu DocType: Email Queue,Not Sent,ekki send DocType: Web Form,Actions,aðgerðir @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ljóst apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Á hverjum degi atburðir ættu að klára á sama degi. DocType: Communication,User Tags,User Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Að nálgast myndir .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Uppsetning> Notandi DocType: Workflow State,download-alt,sækja-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Sæki App {0} DocType: Communication,Feedback Request,athugasemdir Beiðni @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,afrit apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,bæta við tengilið DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valfrjálst: Alltaf senda þessum auðkenni. Hver Netfang á nýju röð -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Fela Upplýsingar +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Fela Upplýsingar DocType: Workflow State,Tasks,verkefni DocType: Event,Tuesday,þriðjudagur DocType: Blog Settings,Blog Settings,Blog Stillingar @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skrifa Python skrá í sömu möppu þar sem þetta er vistuð og skila súlu og niðurstöðu. DocType: DocType,Sort Field,Raða Field DocType: Razorpay Settings,Razorpay Settings,Razorpay Stillingar -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Breyta Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Field {0} tegund {1} er ekki hægt að fylla út -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","td. Ef Berið notendaheimilda er köflóttur fyrir Report DOCTYPE en engar notendaheimilda eru skilgreind fyrir skýrslu um notanda, þá allir Skýrslur eru sýndar til þess Notandi" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Breyta Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Field {0} tegund {1} er ekki hægt að fylla út apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Bæta við fleiri apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,fela Mynd DocType: System Settings,Session Expiry Mobile,Session Fyrning Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,seinkað apps/frappe/frappe/config/setup.py +128,List of backups available for download,Listi yfir afrit hægt að sækja apps/frappe/frappe/www/login.html +89,Sign up,Skráðu þig DocType: Test Runner,Output,Output +DocType: Email Alert,Set Property After Alert,Setja eign eftir viðvörun apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Bæta reiti til að formum. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Útlit eins og eitthvað er athugavert við Paypal stillingar þessa vefsvæðis. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,blaða DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,Tölvupóstur ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ef notendaviðmót er valið fyrir Report DocType en engar notendaskilmálar eru skilgreindir fyrir skýrslu fyrir notanda, þá birtast allar skýrslur til notandans" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Listi yfir auðlindum sem Viðskiptavinur App mun hafa aðgang að eftir að notandinn gerir það.
td verkefni DocType: Translation,Translated Text,þýtt Texti DocType: Contact Us Settings,Query Options,fyrirspurn Options @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Tengiliðir DocType: System Settings,Setup Complete,skipulag Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Skýrsla allra skjal hluta apps/frappe/frappe/www/update-password.html +18,New Password,nýtt lykilorð -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Sía {0} vantar +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Sía {0} vantar apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Afsakið! Þú getur ekki eytt sjálfvirkir athugasemdir DocType: Website Theme,Style using CSS,Style nota CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Tilvísun DOCTYPE @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,blokk Modules apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tek lengd til {0} fyrir '{1}' í '{2}'; Stilling á lengd sem {3} mun valda truncation gagna. DocType: Print Format,Custom CSS,Custom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Bæta við athugasemd -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Hunsuð: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Hunsuð: {0} til {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Ur villa á sjálfvirkum atburðum (tímaáætlun). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Ekki gilt gildi aðskilin með kommum (CSV skrá) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Sjálfgefið Komandi DocType: Workflow State,repeat,endurtaka DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Ef fatlaður, þetta hlutverk verður fjarlægt úr öllum notendum." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hjálp á Leita +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hjálp á Leita apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Skráðir en fatlaður DocType: DocType,Hide Copy,fela Afrita apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Hreinsa allt hlutverkum @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Heimilisföng DocType: Communication,Shared,Sameiginlegt -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Hengja skjal Prenta +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Hengja skjal Prenta DocType: Bulk Update,Field,Field DocType: Communication,Received,fékk DocType: Social Login Keys,Google Client ID,Google Viðskiptavinur ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,fyrirspurn Report DocType: User,Set New Password,Setja nýtt lykilorð DocType: User,Github User ID,Github User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ef Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ekki er hægt að eyða eða hætta við vegna þess að {0} {1} er tengd við {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ekki er hægt að eyða eða hætta við vegna þess að {0} {1} er tengd við {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Unknown app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S er ekki gilt skýrslu sniði. Sniðinu ætti ekki \ eitt af eftirfarandi% s DocType: Communication,Chat,Spjallaðu -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} birtist mörgum sinnum í raðir {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} birtist mörgum sinnum í raðir {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} frá {1} til {2} í röð # {3} DocType: Communication,Expired,útrunnið DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Fjöldi dálka fyrir a sviði í töflu (Samtals Columns í rist ætti að vera minna en 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Með reikning? Skr apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Prenta Format: {0} DocType: Workflow State,arrow-down,arrow niður apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Collapse -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Notandi ekki leyft að eyða {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Notandi ekki leyft að eyða {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Síðast uppfært þann DocType: Help Article,Likes,líkar DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script Code apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Búðu til notendanafn -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Engar heimildir tilgreindar +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Engar heimildir tilgreindar apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Global Settings: Notendur mun aðeins vera fær um að velja köflóttur táknum apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} fannst ekki DocType: Custom Role,Custom Role,Custom hlutverk apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Forsíða / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Hunsa notanda Heimildir Ef Vantar -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Vistaðu skjalið áður en þú hleður. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vistaðu skjalið áður en þú hleður. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Sláðu inn lykilorðið þitt DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Aðgangur Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Bæta Annar athugasemd apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Breyta DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Afskráðir úr Fréttabréf -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Fold verður að koma áður en kafla brjóta +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold verður að koma áður en kafla brjóta apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Síðast breytt af DocType: Workflow State,hand-down,hönd-niður DocType: Address,GST State,GST ríki -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Get ekki stillt Hætta án Senda +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Get ekki stillt Hætta án Senda DocType: Website Theme,Theme,Þema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Það voru villur. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Beina URI Bound To Auth Code @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mína DocType: Website Theme,Text Color,Litur texta DocType: Desktop Icon,Force Show,Force Sýna apps/frappe/frappe/auth.py +78,Invalid Request,ógild beiðni -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Þessi mynd hefur ekki allir inntak +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Þessi mynd hefur ekki allir inntak apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session Lok verður að vera í formi {0} DocType: Website Sidebar Item,Group,Group DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Veldu target = "_blank" til að opna í nýja síðu. @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Hunsa kóðun villur. DocType: Workflow State,wrench,skiptilykill apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ekki Sett -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Uppsetning> Notandi DocType: Authentication Log,Date,Dagsetning DocType: Website Settings,Disable Signup,slökkva á innskráningarinneign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Sit fastur á meðan kerfið er sett upp. Þetta getur tekið nokkra stund. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Bæta við athugasemd DocType: DocField,Mandatory,nauðsynlegur apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module að flytja út -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} Nei undirstöðu heimildir sett +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} Nei undirstöðu heimildir sett apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Áskriftin mun renna út þann {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Sækja hlekkur fyrir varabúnaður þinn verður send á eftirfarandi netfang: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Merking Senda, Hætta, breytt" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-skýrsla apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Úthlutað til {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,síur vistuð DocType: DocField,Percent,prósent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Vinsamlegast settu síur +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Vinsamlegast settu síur apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,tengd við DocType: Workflow State,book,bók DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Villa í Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Villa í Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Heiti apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Innflutningur Beiðni biðröð. Þetta getur tekið smá stund, vinsamlegast sýndu þolinmæði." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Engar heimildir sett þessi skilyrði. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Leyfa Innskráning með apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Þú hefur ekki nægar heimildir til að opna þessa síðu. Vinsamlegast hafðu samband við yfirmann þinn til að fá aðgang. DocType: Custom Field,Custom,Custom apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Skipulag Email Alert byggt á ýmsum forsendum. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Færslur í flokkinum {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Færslur í flokkinum {0} DocType: Email Alert,Send alert if date matches this field's value,Senda póst ef dagsetning passar gildi Þessi reitur er DocType: Workflow,Transitions,umbreytingum apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Fjarlægja {0} og eyða öllum gögnum? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Innskráning eftir DocType: Print Format,Monospace,Jafnbreitt DocType: Letter Head,Printing,Prentun DocType: Workflow State,thumbs-up,Thumbs upp -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email Account ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfang DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision ætti að vera á milli 1 og 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision ætti að vera á milli 1 og 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,og DocType: Error Snapshot,Frames,rammar @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Mynd Link DocType: Auto Email Report,Report Filters,Tilkynna síur apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nú DocType: Workflow State,step-backward,skref-afturábak -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{APP_TITLE} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Vinsamlegast settu Dropbox aðgang takkana í síðuna samsk þinni apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eyða þessari færslu til að leyfa sendingu á þetta netfang apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Aðeins nauðsynlega reiti er nauðsynlegt fyrir nýjum færslum. Þú getur eytt valfrjálsar dálka ef þú vilt. @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,Er Viðhengi Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Stækka All apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Gildir Innskrá id krafist. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-opinn -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Þú hefur hætt greiðslu -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vinsamlega veldu gilt csv skrá með gögn +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vinsamlega veldu gilt csv skrá með gögn apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-deildi þessu skjali með {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Document Status umskipti frá {0} til {1} er ekki leyfð DocType: DocType,"Make ""name"" searchable in Global Search",Gera "nafn" leita í Global Leita @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Hjálp Flokkur apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,User {0} er óvirk apps/frappe/frappe/www/404.html +8,Page missing or moved,Page vantar eða flutt -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Breyta {0} eiginleikar DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay greiðslu hlið stillingar DocType: DocField,Name,heiti apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Þú hefur farið á max rými {0} fyrir áætlun. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Leita í skjölunum DocType: OAuth Authorization Code,Valid,gildir -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Þitt tungumál +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Þitt tungumál apps/frappe/frappe/desk/form/load.py +46,Did not load,Fékk ekki að hlaða apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Bæta Row DocType: Tag Category,Doctypes,Doctypes @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Er Athugasemd DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,getur skrifað apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Ákveðnar skjöl, eins og Invoice, ætti ekki að breyta einu sinni endanlega. Endanleg Ríkið fyrir þessi skjöl er kallað Submitted. Hægt er að takmarka sem hlutverk getur Senda." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Þú hefur ekki heimild til að flytja þessa skýrslu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Þú hefur ekki heimild til að flytja þessa skýrslu apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 atriði valin DocType: Newsletter,Test Email Address,Próf Netfang DocType: ToDo,Sender,sendanda @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,innflutningur zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Document ID DocType: Print Settings,Letter,Letter -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Mynd reitur verður að vera af gerðinni Hengja mynd +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Mynd reitur verður að vera af gerðinni Hengja mynd DocType: DocField,Columns,dálkar DocType: Async Task,Succeeded,Eftirmaður apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Umbeðnar krafist er í {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Stillingar fyrir Um okkur Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Breyta Custom HTML DocType: Error Snapshot,Error Snapshot,Snapshot villa -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,í +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,í DocType: Email Alert,Value Change,gildi Breyta DocType: Standard Reply,Standard Reply,Standard Svara apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Breidd inntak kassi @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Notaðu þessa FIELDNAME að búa titilinn apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Flytja Email Frá apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Bjóða eins Notandi -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Select Viðhengi +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Select Viðhengi apps/frappe/frappe/model/naming.py +94, for {0},fyrir {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Það voru villur. Vinsamlegast tilkynntu þetta. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Þú hefur ekki heimild til að prenta þetta skjal +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Þú hefur ekki heimild til að prenta þetta skjal apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Vinsamlegast settu síur gildi í skýrslu Filter töflunni. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Loading Report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading Report apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Áskriftin mun renna út í dag. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,hengja skrá @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regional Eftirnafn DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Skildu þetta samtal -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Valkostir ekki sett fyrir tengilinn sviði {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Valkostir ekki sett fyrir tengilinn sviði {0} DocType: Customize Form,"Must be of type ""Attach Image""",Verður að vera af gerðinni "Hengja mynd" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Velja ekkert apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Þú getur ekki aftengt "Read Only" fyrir sviði {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Note apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,villuskýrslu apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedback skilyrði passa ekki saman -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline reitur verður að vera gilt FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline reitur verður að vera gilt FIELDNAME DocType: Currency,Symbol,tákn -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nýtt lykilorð send apps/frappe/frappe/auth.py +245,Login not allowed at this time,Innskráning ekki leyfð á þessum tíma DocType: Email Account,Email Sync Option,Tölvupóstur Sync Valkostur @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Texti apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard svarar algengum fyrirspurnum. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Sjálfgefið Sendir DocType: Workflow State,volume-off,bindi-burt -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Líkaði við {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Líkaði við {0} DocType: Footer Item,Footer Item,Footer Item ,Download Backups,sækja Afrit apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Forsíða / Test Folder 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,jöfnun texta apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nafn má ekki innihalda sértákn eins {0} DocType: Contact Us Settings,Forward To Email Address,Forward á netfangið apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Sýna öll gögn -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Title reitur verður að vera gilt FIELDNAME apps/frappe/frappe/config/core.py +7,Documents,skjöl DocType: Email Flag Queue,Is Completed,er lokið apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Þessi reitur verður að birtast aðeins ef FIELDNAME skilgreint hér hefur gildi OR reglur eru sannir (dæmi): myfield eval: doc.myfield == 'Gildi minn' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Í dag +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Í dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Þegar þú hefur sett þetta, sem notendur munu aðeins vera fær aðgang skjöl (td. Bloggfærsluna) þar sem tengill er til (td. Blogger)." DocType: Error Log,Log of Scheduler Errors,Log um Tímaáætlun Villa DocType: User,Bio,bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stjarna vera lægst & 5 stjörnur vera hæsta einkunn DocType: Event,Ref Name,Ref Name DocType: Web Page,Center,Center +DocType: Email Alert,Value To Be Set,Gildi til að setja apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,First Level DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Táknar ríki leyfðir í einu skjali og hlutverk sem breyta stöðu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Uppfæra Form @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Hefur Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nafn DOCTYPE ætti að byrja á staf og það getur aðeins innihaldið bókstafi, tölur, rými og undirstrik" DocType: Communication,Spam,Ruslpóstur DocType: Integration Request,Integration Request,Sameining Beiðni -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Ágæti +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Ágæti DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,notendareikninga DocType: Web Page,HTML for header section. Optional,HTML til síðuhaushlutum. valfrjálst apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Þessi eiginleiki er glæný og enn á tilraunastigi -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Hámark {0} raðir leyft +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Hámark {0} raðir leyft DocType: Email Unsubscribe,Global Unsubscribe,Global Afskrá apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Þetta er mjög algengt lykilorð. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Útsýni DocType: Communication,Assigned,úthlutað DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Veldu Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Veldu Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Stutt hljómborð mynstur er auðvelt að giska DocType: Portal Settings,Portal Menu,Portal Matseðill apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lengd {0} ætti að vera á milli 1 og 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Notandi getur ekki leitað apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ógilt Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,Beita þessari reglu ef notandinn er eigandi -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Verður innskráningarnúmerið þitt +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Verður innskráningarnúmerið þitt apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,byggja skýrslu DocType: Note,Notify users with a popup when they log in,Tilkynna notendum með almenningur þegar þeir skrá í apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} er ekki til, velja nýja miða að sameinast" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,hlutverk Leyfi apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Uppfæra DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Vistaðu Fréttabréf áður en þú sendir -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Valkostir verður að vera gilt DOCTYPE fyrir sviði {0} í röð {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ári (s) síðan +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Valkostir verður að vera gilt DOCTYPE fyrir sviði {0} í röð {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Breyta Properties DocType: Patch Log,List of patches executed,Listi yfir plástra keyrð apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} þegar afskráður -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Samskipti Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Samskipti Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Vinsamlegast veldu annan greiðslumáta. Razorpay styður ekki viðskipti í mynt '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Biðröð fyrir öryggisafrit. Það getur tekið nokkrar mínútur til klukkutíma. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Register OAuth client app -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} er ekki hægt að "{2}". Það ætti að vera einn af "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} er ekki hægt að "{2}". Það ætti að vera einn af "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} eða {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Sýna eða Fela Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Lykilorð Uppfæra @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Sýna Line Breaks eftir köflum DocType: Blogger,Short Name,Short Name apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Þú ert að velja Sync valkostur eins og allt, Það mun Samstilla allt \ lesa og ólesin skilaboð frá þjóninum. Þetta getur einnig valdið því að tvíverknað \ um samskipti (tölvupóst)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,skrá Stærð @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,kaup Manager DocType: Custom Script,Sample,Dæmi um apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Óflokkað Tags DocType: Event,Every Week,Í hverri viku +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email Account ekki uppsetning. Búðu til nýjan tölvupóstreikning frá Uppsetning> Tölvupóstur> Netfang apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Smelltu hér til að athuga notkun eða uppfæra í hærri áætlun DocType: Custom Field,Is Mandatory Field,Er nauðsynlegur Field DocType: User,Website User,Vefsíða User @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Matseðill DocType: Workflow State,pencil,blýantur apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Spjallaðu skilaboð og öðrum tilkynningum. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Settu Eftir Ekki er hægt að setja eins og {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Settu Eftir Ekki er hægt að setja eins og {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Deila {0} með apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email Account skipulag Færðu inn lykilorðið þitt fyrir: DocType: Workflow State,hand-up,hönd upp DocType: Blog Settings,Writers Introduction,rithöfundar Inngangur DocType: Address,Phone,Sími -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Villa kom meta Email Alert {0}. Vinsamlegast lagaðu sniðmát. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Villa kom meta Email Alert {0}. Vinsamlegast lagaðu sniðmát. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Veldu Document Type eða Hlutverk að byrja. DocType: Contact,Passive,Hlutlaus DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Greiðsla þín hefur verið lokað. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Veldu File Type DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,síða ekki fundin @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Property Type DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Aðeins Stjórnandi getur bjargað staðlað skýrslu. Vinsamlegast endurnefna og vista. DocType: System Settings,Background Workers,Bakgrunnur Workers +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} stangast á við meta mótmæla DocType: Deleted Document,Data,gögn apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,skjal Staða apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Þú hefur gert {0} af {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Sýna notanda Heimildir apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Þú þarft að vera innskráður og hafa System Manager hlutverki að vera fær um að fá aðgang að afrit. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,eftir -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Vinsamlegast vista áður festa. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Vinsamlegast vista áður festa. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Bætti {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Sjálfgefið útlit er sett í {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ekki hægt að breyta frá {0} til {1} í röð {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,System Settings apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start tókst ekki apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Þessi tölvupóstur var sendur til {0} og afrita til {1} DocType: Workflow State,th,Þ -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vinsamlegast settu upp sjálfgefið tölvupóstreikning frá uppsetningu> Email> Email Account -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Búa til nýjan {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Búa til nýjan {0} DocType: Email Rule,Is Spam,er ruslpóstur apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Skýrsla {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Sjálfgefið Beina URI DocType: Email Alert,Recipients,viðtakendur DocType: Workflow State,ok-sign,OK-merki @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Hjálp Greinar ,Modules Setup,Modules skipulag apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tegund: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Greiðsla þín hefur mistekist. DocType: Communication,Unshared,unshared DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Eining fannst ekki @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",Uppsetning á topp stöðustikunni fót og merki. DocType: Web Form Field,Max Value,max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Fyrir {0} á vettvangi {1} í {2} í röð {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Fyrir {0} á vettvangi {1} í {2} í röð {3} DocType: Contact,All,Allt DocType: Email Queue,Recipient,viðtakandi DocType: Communication,Has Attachment,hefur viðhengi @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,samræma hægri DocType: Auto Email Report,Email To,Tölvupóstur Til apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} er ekki tómt DocType: Page,Roles,hlutverk -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Field {0} er ekki að velja. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Villa: Gildi vantar fyrir {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Field {0} er ekki að velja. DocType: System Settings,Session Expiry,Session Fyrning DocType: Workflow State,ban-circle,bann hring DocType: Email Flag Queue,Unread,ólesið @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,User Vanskil apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Búa til nýtt DocType: Workflow State,chevron-down,Chevron niður -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email ekki send til {0} (afskráður / óvirkt) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email ekki send til {0} (afskráður / óvirkt) DocType: Async Task,Traceback,Rekja aftur DocType: Currency,Smallest Currency Fraction Value,Minnsta Gjaldmiðill Brot Value apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,úthluta til @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,frá DocType: Website Theme,Google Font (Heading),Google Font (nr) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Veldu hóp hnút fyrst. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Finna {0} í {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Finna {0} í {1} DocType: OAuth Client,Implicit,óbeina DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Viðskeyti eins og samskipti við þennan DOCTYPE (verður að hafa reiti "Status", "Subject")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI til að fá heimild númer þegar notandi leyfir aðgang, auk bilun svör. Venjulega hvíld endapunktur verða af viðskiptamanns App.
td http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ekki heimilt að breyta {0} eftir uppgjöf +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ekki heimilt að breyta {0} eftir uppgjöf DocType: Communication,Comment Type,athugasemd Type DocType: OAuth Client,OAuth Client,OAuth Viðskiptavinur apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Notendur @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Ekki tókst að lesa skráarsnið fyrir {0} DocType: Auto Email Report,Filter Data,Sía gögn apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Bæta tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Hengdu skrá fyrst. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Hengdu skrá fyrst. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Það voru nokkrar villur stilling nafn, vinsamlegast hafið samband við umsjónarmann" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Komandi pósthólf ekki rétt apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,Tölvupóstur sendur DocType: DocField,Ignore XSS Filter,Hunsa XSS Sía apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,fjarlægð apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox öryggisafrit stillingar -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Senda sem tölvupóst +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Senda sem tölvupóst DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,User {0} Ekki er hægt að fatlaður apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kæri System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Landið þitt +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Landið þitt DocType: Event,Sunday,sunnudagur apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Í tölvuformi DocType: Address Template,Template,Snið @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP Stillingar apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,um breytingu á apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal greiðsla hlið stillingar -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) mun fá styttu, sem max stafir leyfð er {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) mun fá styttu, sem max stafir leyfð er {2}" DocType: OAuth Client,Resource Owner Password Credentials,Tilfang eigandi lykilorð Persónuskilríki DocType: OAuth Client,Response Type,svar Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max notendur @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Tafla DocType: File,File Size,Skjala stærð apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Þú verður að skrá þig til að senda þetta eyðublað DocType: User,Background Image,bakgrunnsmynd -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Veldu landið þitt, tímabelti og gjaldmiðli" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Veldu landið þitt, tímabelti og gjaldmiðli" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,milli DocType: Async Task,Queued,biðröð @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Búa apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ógild Filter: {0} DocType: Email Account,no failed attempts,nei misheppnaðar tilraunir +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Engin sjálfgefin Heimilisfang Snið fannst. Vinsamlegast búðu til nýjan úr Uppsetning> Prentun og merkingu> Heimilisfangmát. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,aðgangur Token @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,github Notandanafn DocType: DocType,Image View,Mynd View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Lítur út eins og eitthvað fór úrskeiðis á viðskiptunum. Þar sem við höfum ekki staðfest greiðslu, Paypal sjálfkrafa endurgreiða þér þessa upphæð. Ef það virkar ekki, vinsamlegast sendu okkur tölvupóst og nefna fylgni ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Hafa tákn, tölur og hástafir í lykilorðinu" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Settu Eftir sviði '{0}' getið í Custom Field '{1}', með merki '{2}', er ekki til" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Hafa tákn, tölur og hástafir í lykilorðinu" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Settu Eftir sviði '{0}' getið í Custom Field '{1}', með merki '{2}', er ekki til" DocType: Workflow State,signal,merki DocType: DocType,Show Print First,Sýna Prenta First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter til að senda @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Skráin '{0}' fannst ekki apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,fjarlægja kafla DocType: User,Change Password,Breyta lykilorði -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ógilt Netfang: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Halló! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ógilt Netfang: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Halló! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Atburður enda verður að vera eftir upphaf apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Þú hefur ekki leyfi til að fá skýrslu um: {0} +DocType: System Settings,Apply Strict User Permissions,Sækja um strangar notendaskilmálar DocType: DocField,Allow Bulk Edit,Leyfa magnsstjórnun DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Ítarleg leit +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Ítarleg leit apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Lykilorð Endurstilla leiðbeiningar hafa verið send til þinn email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Stig 0 er fyrir heimildir á skjalastigi, \ hærra stig fyrir heimildir á vettvangi." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,afturkallað DocType: Web Page,Sidebar and Comments,Skenkur og athugasemdir apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Þegar þú breytt skjal eftir Hætta og vista það, mun það fá nýtt númer sem er ný útgáfa af gamla númerið." DocType: Stripe Settings,Publishable Key,Birtanlegur lykill -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ári (s) síðan DocType: Workflow State,circle-arrow-left,hring-ör-vinstri apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis skyndiminni miðlara ekki í gangi. Vinsamlegast hafðu samband við kerfisstjóra / Tech stuðning apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Gera nýtt met +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Gera nýtt met apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Leita DocType: Currency,Fraction,brot DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Veldu úr núverandi viðhengi +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Veldu úr núverandi viðhengi DocType: Custom Field,Field Description,Field Lýsing apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nafn ekki sett með Hvetja apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Innhólfið @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,info: DocType: Custom Field,Permission Level,leyfi Level DocType: User,Send Notifications for Transactions I Follow,Senda Tilkynningar fyrir viðskipti Ég fylgi -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Get ekki sett Senda, Hætta, breytt án Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Get ekki sett Senda, Hætta, breytt án Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Ertu viss um að þú viljir eyða viðhengi? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ekki er hægt að eyða eða hætta við vegna þess að {0} {1} er tengd við {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Engar niðurstöður fundust fyrir '

-apps/frappe/frappe/__init__.py +1063,Thank you,Þakka þér +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ekki er hægt að eyða eða hætta við vegna þess að {0} {1} er tengd við {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Þakka þér apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Saving DocType: Print Settings,Print Style Preview,Print Style Forskoða apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,Í listayfirliti DocType: Email Account,Use TLS,Nota TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ógilt notandanafn eða lykilorð apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Bæta sérsniðin JavaScript til að formum. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No ,Role Permissions Manager,Hlutverk Heimildir Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Heiti nýju Prenta Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Hreinsa Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Hreinsa Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,nauðsynlegur: ,User Permissions Manager,User Heimildir Manager DocType: Property Setter,New value to be set,Ný gildi til að setja @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 daga apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Flokka bloggfærslum. DocType: Workflow State,Time,tími DocType: DocField,Attach,hengja -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ekki gilt FIELDNAME mynstur. Það ætti að vera {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ekki gilt FIELDNAME mynstur. Það ætti að vera {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Senda athugasemdir Beiðni aðeins ef það er að minnsta kosti einn samskipti eru í boði fyrir skjalið. DocType: Custom Role,Permission Rules,aðgangsheimildir Reglur DocType: GSuite Settings,GSuite Settings,GSuite Stillingar DocType: Address,Links,Tenglar -apps/frappe/frappe/model/base_document.py +428,Value missing for,Gildi vantar fyrir +apps/frappe/frappe/model/base_document.py +427,Value missing for,Gildi vantar fyrir apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Bæta Child -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Lagt Record ekki hægt að eyða. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Lagt Record ekki hægt að eyða. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Size DocType: GSuite Templates,Template Name,Sniðmát Nafn -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Ný tegund skjals +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Ný tegund skjals DocType: Custom DocPerm,Read,Lesa DocType: Role Permission for Page and Report,Role Permission for Page and Report,Hlutverk Leyfi fyrir Page og skýrslu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,jöfnun gildi apps/frappe/frappe/www/update-password.html +14,Old Password,gamalt lykilorð -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posts by {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posts by {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Til sniði dálka, gefa dálki merki í fyrirspurninni." DocType: Has Domain,Has Domain,Hefur lén apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Ertu ekki með reikning? Skráðu þig -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Get ekki stillt á Velja breytt ef ekki Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Get ekki stillt á Velja breytt ef ekki Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Breyta Role Heimildir DocType: Communication,Link DocType,Link DOCTYPE @@ -2334,7 +2338,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Vinsamlegast tryggja að prófíllinn þinn hefur netfangið apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Þú ert með óvistaðar breytingar í þessu formi. Vinsamlegast spara áður en þú heldur áfram. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Sjálfgefið fyrir {0} verður að vera valkostur +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Sjálfgefið fyrir {0} verður að vera valkostur DocType: Tag Doc Category,Tag Doc Category,Tag Doc Flokkur DocType: User,User Image,User Image apps/frappe/frappe/email/queue.py +289,Emails are muted,Póstur er þögguð @@ -2367,7 +2371,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,næsta að DocType: Workflow State,ok,allt í lagi DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Þessi gildi verða sjálfkrafa uppfærð í viðskiptum og einnig verður gagnlegt að takmarka heimildir fyrir þessum notanda um viðskipti sem innihalda þessi gildi. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Útgefandi -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Mistókst: {0} til {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Mistókst: {0} til {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Veldu Nauðsynlegur apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Vafra apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,tölvupóstar sendir @@ -2379,7 +2383,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Endur stilla lykilorð apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Uppfærðu að bæta við fleiri en {0} áskrifendur DocType: Workflow State,hand-left,hönd-vinstri -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} fyrir {1} er ekki að vera einstakt +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} fyrir {1} er ekki að vera einstakt DocType: Email Account,Use SSL,Nota SSL DocType: Workflow State,play-circle,spila-hring apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Veldu prenta sniði til að breyta @@ -2434,7 +2438,7 @@ DocType: DocField,No Copy,engin Afrita DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Innskráning með LDAP DocType: Web Form,Breadcrumbs,breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ef Eigandi +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ef Eigandi DocType: OAuth Authorization Code,Expiration time,gildistíma DocType: Web Page,Website Sidebar,Vefsíða Sidebar DocType: Web Form,Show Sidebar,Sýna Sidebar @@ -2454,7 +2458,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Gat ekki fundið apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Nöfn og eftirnöfn eftir sig er auðvelt að giska. apps/frappe/frappe/config/website.py +93,Knowledge Base,Þekkingargrunnur DocType: Workflow State,briefcase,skjalataska -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Gildi er ekki hægt að breyta fyrir {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Gildi er ekki hægt að breyta fyrir {0} DocType: Feedback Request,Is Manual,er Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style táknar hnappinn litur: Velgengni - grænn, Danger - rautt, andhverfu - Black, aðal - dökk blár, Upplýsingar - ljósblátt Aðvörun - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Engin Report Loaded. Notaðu fyrirspurnar-skýrsluna / [Report Name] til að keyra skýrslu. @@ -2531,7 +2535,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progress apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,eftir Hlutverk apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,vantar Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ógild FIELDNAME '{0}' í autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Leita í skjali gerð +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Leita í skjali gerð apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Leyfa reit til að vera editable jafnvel eftir uppgjöf DocType: Custom DocPerm,Role and Level,Hlutverk og Level DocType: File,Thumbnail URL,Smámynd URL @@ -2548,18 +2552,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Meiri upplýsingar DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Greiðslan þín var tekist samþykkt +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Greiðslan þín var tekist samþykkt apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Afsakið! Þú hefur ekki leyfi til að skoða þessa síðu. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Ábending: Tvöfaldur smellur klefi til að breyta DocType: Workflow State,bell,bjalla apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Villa í Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Deila þessari skjal með +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Uppsetning> Notendahópur apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} getur ekki verið blaða hnút sem það á börn DocType: Communication,Info,upplýsingar -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Bæta viðhengi +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Bæta viðhengi DocType: Communication,Email,Tölvupóstur apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Takk fyrir skilaboðin -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Senda lestrarkvittun +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Senda lestrarkvittun DocType: Stripe Settings,Stripe Settings,Röndarstillingar DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Skipulag í gegnum Site Stillingar samskip apps/frappe/frappe/www/login.py +64,Invalid Login Token,Ógilt Innskráning Token @@ -2625,6 +2630,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Aðvörun: Þetta Prenta Format er í gömlum stíl og ekki er hægt að mynda með API. DocType: DocField,Print Width,Breidd prenta ,Setup Wizard,skipulag Wizard +DocType: Address,GST State Number,GST ríki númer DocType: User,Allow user to login only before this hour (0-24),Leyfa notanda að skráðu aðeins áður en þetta klukkustund (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Mappa er nauðsynlegur apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2650,7 +2656,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,lítill texti apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Stjórnandi nálgast {0} á {1} gegnum IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Jafnt -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valkostir 'Dynamic Link' tegund af sviði að benda á aðra Link Field með valkostum og 'DOCTYPE " +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Valkostir 'Dynamic Link' tegund af sviði að benda á aðra Link Field með valkostum og 'DOCTYPE " DocType: About Us Settings,Team Members Heading,Liðsmenn Fyrirsögn apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ógilt CSV snið apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Setja Fjöldi Varabúnaður @@ -2661,7 +2667,7 @@ DocType: Contact,Contact,Viltu samband við DocType: User,Third Party Authentication,Þriðji aðili Auðkenning DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er yfir í aðalvalmynd Bar. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Flytja Report: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Flytja Report: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} er ekki til DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2684,7 +2690,7 @@ DocType: Kanban Board Column,Column Name,dálkur Name DocType: Language,Based On,Byggt á apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,gera Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Athugaðu Frappe URL netþjóns -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} fyrir {1} Ekki er hægt að verðtryggð +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} fyrir {1} Ekki er hægt að verðtryggð DocType: Communication,Email Account,netfangs DocType: Workflow State,Download,Sækja DocType: Blog Post,Blog Intro,Blog Intro @@ -2695,7 +2701,7 @@ DocType: Web Page,Insert Code,Setja inn kóða DocType: ToDo,Low,Low apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Þú getur bætt dynamic eiginleika úr skjalinu með því að nota Jinja Templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ógild mörk {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Listi af gerðinni +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listi af gerðinni DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ef þú ert að senda nýjar færslur, fara á "nafn" (ID) dálk autt." DocType: Address,Chattisgarh,Chattisgarh @@ -2717,24 +2723,24 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,n DocType: Print Settings,Send Print as PDF,Senda Prenta sem PDF DocType: Web Form,Amount,upphæð DocType: Workflow Transition,Allowed,leyfð -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Það getur verið aðeins eitt Fold í formi +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Það getur verið aðeins eitt Fold í formi apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Ekki er hægt að skrifa skráarsnið fyrir {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Endurheimta að sjálfgefnar stillingar? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ógilt Page Heim apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ógild Innskráning. Reyndu aftur. DocType: Auto Email Report,Send only if there is any data,Senda einungis ef það er einhver gögn apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Endurstilla síur -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Permission á stigi 0 verður að vera stillt áður en hærri stigum eru sett +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Permission á stigi 0 verður að vera stillt áður en hærri stigum eru sett apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Framsal lokað af {0} DocType: Integration Request,Remote,Remote -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,reikna +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,reikna apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vinsamlegast veldu DOCTYPE fyrst apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Staðfestu netfangið þitt apps/frappe/frappe/www/login.html +42,Or login with,Eða tenging við DocType: Error Snapshot,Locals,heimamenn apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Miðlað í gegnum {0} á {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} minntist á þig í ummælum í {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,td (55 + 434) / 4 eða = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,td (55 + 434) / 4 eða = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} er krafist DocType: Integration Request,Integration Type,Sameining Type DocType: Newsletter,Send Attachements,Senda attachements @@ -2744,14 +2750,14 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Viðburðir í dagatalinu dag DocType: Web Page,Web Page,Vefsíða DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Global Search' ekki leyfð fyrir tegund {0} í röð {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Global Search' ekki leyfð fyrir tegund {0} í röð {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,view List -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Dagsetning verður að vera í formi: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Dagsetning verður að vera í formi: {0} DocType: Workflow,Don't Override Status,Ekki Hunsa Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Vinsamlegast gefa einkunn. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Athugasemdir Beiðni apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Leitarorð -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Fyrsta Notandi: Þú +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Fyrsta Notandi: Þú apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Select Columns DocType: Translation,Source Text,Heimild Texti apps/frappe/frappe/www/login.py +55,Missing parameters for login,Vantar breytur fyrir innskráningu @@ -2773,7 +2779,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Flyt DocType: ToDo,Assigned By,úthlutað af apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Þú getur notað Customize eyðublað til að setja stigum á sviði. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Veldu svæðið þitt +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Veldu svæðið þitt DocType: Custom DocPerm,Level,Level DocType: Custom DocPerm,Report,skýrsla apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Upphæð verður að vera hærri en 0. @@ -2793,7 +2799,7 @@ DocType: Website Theme,Background,bakgrunnur DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON listi DocTypes notuð eru til að beita heimildum. Ef tómt, allir tengjast DocTypes verður notað til að beita heimildum." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Vinsamlegast bættu við einkunn -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Get ekki stillt breyta án Hætta +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Get ekki stillt breyta án Hætta apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Er Child Tafla apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} verður að vera einn af {1} @@ -2808,7 +2814,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Þetta fer ofan slides apps/frappe/frappe/config/setup.py +260,Install Applications.,Setja Forrit. DocType: Contact,Last Name,Eftirnafn DocType: Event,Private,Private -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Engar tilkynningar fyrir í dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Engar tilkynningar fyrir í dag DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Senda Email Prenta viðhengi sem PDF (Mælt) DocType: Web Page,Left,vinstri DocType: Event,All Day,Allan daginn @@ -2822,7 +2828,7 @@ DocType: Event,Send an email reminder in the morning,Senda áminningu í tölvup DocType: Blog Post,Published On,birt á DocType: Contact,Gender,kyn apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Nauðsynlegur Upplýsingar vantar: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Field '{0}' Ekki er hægt að setja eins og einstæður eins og það hefur ekki einstaka gildi +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Field '{0}' Ekki er hægt að setja eins og einstæður eins og það hefur ekki einstaka gildi apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Aðeins 200 sett leyfð í einum óskað DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Tilvísun Type @@ -2835,7 +2841,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,viðvörun-skilti DocType: Workflow State,User,Notandi DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Sýna titil í glugga sem "forskeytið - titill" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Textinn í skjalinu tegund +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Textinn í skjalinu tegund apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Hlaupa próf apps/frappe/frappe/handler.py +91,Logged Out,ekki innskráður apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Meira ... @@ -2860,13 +2866,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Eins Skoða DocType: DocField,Default,Sjálfgefið apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} bætti við -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Leita að '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Leita að '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Vistaðu skýrsluna fyrst apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} áskrifendur bætt apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ekki Í DocType: Workflow State,star,stjörnu -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,gildi aðskilin með kommum -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max breidd fyrir tegund gjaldmiðillinn er 100px í röð {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,gildi aðskilin með kommum +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max breidd fyrir tegund gjaldmiðillinn er 100px í röð {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Vinsamlegast segðu álit þitt fyrir {0} apps/frappe/frappe/config/website.py +13,Content web page.,Efni á vefnum síðu. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Bæta nýju hlutverki @@ -2884,7 +2890,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ekki gild LDAP notanda apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ekki gilt State apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Vinsamlegast veldu annan greiðslumáta. PayPal styður ekki viðskipti í mynt '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Leita reit {0} er ekki gilt +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Leita reit {0} er ekki gilt DocType: Workflow State,ok-circle,OK-hring apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Þú getur fundið það með því að spyrja "finna appelsínu í viðskiptavini ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Afsakið! Notandi ætti að hafa fullan aðgang að eigin met sitt. @@ -2943,7 +2949,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Sía Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Texti til að sýna fyrir Tengill á vefsíðu, ef þetta form er á vefsíðu. Link leið verður sjálfkrafa byggt á `page_name` og` parent_website_route`" DocType: Feedback Request,Feedback Trigger,athugasemdir Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Vinsamlegast settu {0} fyrst +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Vinsamlegast settu {0} fyrst DocType: Unhandled Email,Message-id,Kennistrengur DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,mistókst diff --git a/frappe/translations/it.csv b/frappe/translations/it.csv index 21e6764332..adfcecb611 100644 --- a/frappe/translations/it.csv +++ b/frappe/translations/it.csv @@ -3,7 +3,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +282,Press Es apps/frappe/frappe/desk/form/assign_to.py +150,"A new task, {0}, has been assigned to you by {1}. {2}","Un nuovo compito, {0}, è stato assegnato dal {1}. {2}" DocType: Email Queue,Email Queue records.,record Email coda. apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Messaggio -apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Seleziona il Partito Tipo primo +apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Selezionare prima il tipo di Partner DocType: Address,Punjab,Punjab apps/frappe/frappe/config/setup.py +114,Rename many items by uploading a .csv file.,Rinomina più elementi caricando un file .csv. DocType: Workflow State,pause,pausa @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Nome utente DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Le sessioni multiple saranno ammesse in caso di dispositivo mobile apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},casella di posta abilitata per l'utente {} utenti apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Impossibile inviare questa e-mail. Hai oltrepassato il limite di invio di {0} mail per questo mese. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Conferma Definitivamente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Conferma Definitivamente {0} ? DocType: Address,County,Contea DocType: Workflow,If Checked workflow status will not override status in list view,Se lo stato del flusso di lavoro Controllato non sovrascriverà stato in vista elenco apps/frappe/frappe/client.py +280,Invalid file path: {0},Non valido percorso del file: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Si preg apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Albero DocType: User,User Emails,Messaggi di posta elettronica degli utenti DocType: User,Username,Nome utente -apps/frappe/frappe/model/base_document.py +581,Value too big,Valore troppo grande +apps/frappe/frappe/model/base_document.py +580,Value too big,Valore troppo grande DocType: DocField,DocField,CampoDoc DocType: GSuite Settings,Run Script Test,Esegui test di script DocType: Contact,Department,Dipartimento @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,Registri DocType: Custom DocPerm,This role update User Permissions for a user,Questo ruolo Autorizzazioni aggiornamento utente per un utente apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Rinomina {0} DocType: Workflow State,zoom-out,Riduci -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Impossibile aprire {0} quando la sua istanza è aperto +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Impossibile aprire {0} quando la sua istanza è aperto apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,La Tabella {0} non può essere vuota apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,con Registri apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,immagini DocType: Communication,Reference Owner,Riferimento proprietario DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,La più piccola frazione d'unità in circolazione (moneta). Per es. 1 centesimo per EU che dovrebbe essere inserito come 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Riga {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Riga {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Si prega di dare un nome completo. apps/frappe/frappe/model/document.py +904,Beginning with,Inizia con apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Importazione dati Template apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Genitore DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Se abilitato, la forza della password verrà eseguita in base al valore Punteggio minima password. Un valore di 2 è medio forte e 4 è molto forte." DocType: About Us Settings,"""Team Members"" or ""Management""","Membri del team" o "gestione" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Il valore predefinito per il tipo di campo 'Verifica' deve essere '0' oppure '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Il valore predefinito per il tipo di campo 'Verifica' deve essere '0' oppure '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Ieri DocType: Contact,Designation,Designazione DocType: Test Runner,Test Runner,Test Runner @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,È pubblicato Campo DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,Visto da apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Aggiungi più -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Non come +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Non come apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Impostare l'etichetta di visualizzazione per il campo apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valore errato: {0} deve essere {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Modificare le proprietà di campo ( nascondere , in sola lettura, autorizzazione ecc )" @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Impostazi apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Amministratore connesso DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opzioni di contatto, come "Query vendite, il supporto delle query", ecc ciascuno su una nuova riga o separati da virgole." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Inserire +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Inserire apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Selezionare {0} DocType: Print Settings,Classic,Classico DocType: Desktop Icon,Color,Colore @@ -121,7 +121,7 @@ DocType: Translation,Translation,Traduzione apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installare apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Sig. DocType: Custom Script,Client,Intestatario -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Questo modulo è stato modificato dopo aver caricato la +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Questo modulo è stato modificato dopo aver caricato la DocType: User Permission for Page and Report,User Permission for Page and Report,Autorizzazione utente alle pagine e report DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Se non è impostata, la precisione di valuta dipenderà dal formato del numero" @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,Motivo apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Si prega di specificare l'utente DocType: Email Unsubscribe,Email Unsubscribe,Cancella sottoscrizione E-mail DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selezionare un'immagine di circa larghezza 150px con sfondo trasparente per i migliori risultati. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Il primo utente sarà il System Manager (è possibile cambiarlo in seguito). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Il primo utente sarà il System Manager (è possibile cambiarlo in seguito). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cerchio-freccia-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Caricamento ... DocType: Email Domain,Email Domain,Dominio Email DocType: Workflow State,italic,corsivo apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Per tutti -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Impossibile impostare Importazione senza Creazione +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Impossibile impostare Importazione senza Creazione apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Evento e altri calendari. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Tutti i campi sono necessari per presentare il commento. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Trascina per ordinare le colonne @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Sidebar Menu standard apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Impossibile eliminare Home e Cartelle Allegate apps/frappe/frappe/config/desk.py +19,Files,File apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Le autorizzazioni vengono applicate sugli utenti in base a quali ruoli sono assegnati. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Non hai i permessi per inviare e-mail relative a questo documento -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Si prega di selezionare atleast 1 colonna da {0} per ordinare / gruppo +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Non hai i permessi per inviare e-mail relative a questo documento +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Si prega di selezionare atleast 1 colonna da {0} per ordinare / gruppo DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Controllare questo se si sta testando il pagamento utilizzando l'API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Non è consentito eliminare un tema standard DocType: Feedback Trigger,Example,Esempio @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,Totale Iscritti apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se un ruolo non ha accesso al livello 0 , quindi livelli superiori sono prive di significato ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Salva come DocType: Communication,Seen,Visto -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Mostra più dettagli +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Mostra più dettagli DocType: System Settings,Run scheduled jobs only if checked,Eseguire i lavori programmati solo se controllato apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Verranno visualizzati solo se i titoli di sezione sono abilitati apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archivio @@ -219,7 +219,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Mostra grafico apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,E-mail valido e il nome richiesto DocType: DocType,Hide Heading,Nascondi Intestazione DocType: Address,Current,attuale -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documenti correlati apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Gruppi di DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-cerchio @@ -235,10 +234,9 @@ DocType: Workflow State,Filter,Filtro apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Il nome del campo {0} non può avere caratteri speciali come {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aggiorna più valori contemporaneamente. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Errore: Il Documento è stato modificato dopo averlo aperto -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Non è stato trovato alcun modello di indirizzo predefinito. Crea un nuovo dalla configurazione> Stampa e branding> Template indirizzo. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} disconnesso: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Impossibile Confermare se non Confermabile +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Impossibile Confermare se non Confermabile DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrato per "{0}" DocType: Salutation,Administrator,Amministratore @@ -248,7 +246,7 @@ DocType: Blog Settings,Blog Title,Titolo Blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,ruoli standard non possono essere disabilitati DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Non è possibile utilizzare sub-query in modo da +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Non è possibile utilizzare sub-query in modo da DocType: Web Form,Button Help,pulsante Guida DocType: Kanban Board Column,purple,viola DocType: About Us Settings,Team Members,Membri del Team @@ -262,7 +260,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Ottieni il t apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","L'abbonamento è scaduto il {0}. Per rinnovare, {1}." DocType: Workflow State,plus-sign,segno più apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup già completo -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} non è installato +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} non è installato DocType: Workflow State,Refresh,Aggiorna DocType: Event,Public,Pubblico apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Niente da mostrare @@ -270,7 +268,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Utile per apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail di sostegno DocType: DocField,Print Hide If No Value,Stampa Nascondere se nessun valore DocType: Event,yellow,giallo -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Si pubblica campo deve essere un nome di campo valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Si pubblica campo deve essere un nome di campo valido apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Attachment DocType: Block Module,Block Module,Block Modulo apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Esporta Modello @@ -289,7 +287,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Rice DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Un nuovo account è stato creato per te su: {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Istruzioni inviate via email -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Inserisci e-mail destinatario (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Inserisci e-mail destinatario (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Coda Flag-mail apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Non è possibile identificare aperto {0}. Provare qualcos'altro. @@ -303,8 +301,8 @@ DocType: Communication,Message ID,ID messaggio DocType: Property Setter,Field Name,Nome Campo apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite non è configurato. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,oppure -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nome del modulo ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continuare +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nome del modulo ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuare DocType: Custom Field,Fieldname,Nome del campo DocType: Workflow State,certificate,certificato DocType: User,Tile,Piastrella @@ -313,6 +311,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostra tutte le versioni DocType: Workflow State,Print,Stampa DocType: User,Restrict IP,Limitare IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Cruscotto apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Impossibile inviare e-mail in questo momento apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Cercare o digitare un comando DocType: Communication,Timeline Name,Nome Timeline @@ -323,7 +322,7 @@ DocType: Contact,Sales Master Manager,Sales Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nome del tipo di documento (DocType) a cui questo campo deve essere collegato. P. es. clienti DocType: User,Roles Assigned,Ruoli assegnati -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Cercare aiuto +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Cercare aiuto DocType: Top Bar Item,Parent Label,Etichetta superiore apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","La vostra richiesta è stata ricevuta. Vi risponderemo a breve. Se si dispone di ulteriori informazioni, si prega di rispondere a questa mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Le autorizzazioni sono tradotte automaticamente in Report Standard e Ricerche. @@ -340,6 +339,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Modifica Intestazione DocType: File,File URL,URL del file DocType: Version,Table HTML,Tabella HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nessun risultato trovato per '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Aggiungi abbonati apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Prossimi eventi di oggi DocType: Email Alert Recipient,Email By Document Field,Email Di Campo documento @@ -359,17 +359,16 @@ DocType: Web Form,Amount Based On Field,Importo basato sul Campo apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,L'utente è obbligatorio per Condivisione DocType: DocField,Hidden,Nascosto DocType: Web Form,Allow Incomplete Forms,Consenti moduli incompleti -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} deve essere impostato prima +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} deve essere impostato prima apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Utilizzare un paio di parole, evitare frasi di uso comune." DocType: Workflow State,plane,piano -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Il pagamento non è riuscito. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se si sta caricando nuovi record, ""Naming Series"" diventa obbligatoria, se presente." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Ricevi avvisi di Oggi +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Ricevi avvisi di Oggi apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType può essere rinominato solo dall'amministratore apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},valore modificato {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Si prega di controllare la posta elettronica per la verifica -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold non può essere alla fine del modulo +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold non può essere alla fine del modulo DocType: Communication,Bounced,Bounced DocType: Deleted Document,Deleted Name,Nome eliminata apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistema e utenti del sito @@ -388,13 +387,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,documento in coda DocType: GSuite Templates,Destination ID,ID destinazione DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,Nome collegamento -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,"Il campo {0} in riga {1} non può essere nascosta e obbligatoria , senza di default" +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,"Il campo {0} in riga {1} non può essere nascosta e obbligatoria , senza di default" DocType: System Settings,mm/dd/yyyy,mm/gg/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Password non valida: DocType: Print Settings,Send document web view link in email,Invia documento visualizzazione Web link in email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Fai il nostro per il documento {0} è stato salvato con successo apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,precedente -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,R: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,R: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} righe per {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-valuta. P. es. ""Cent""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Selezionare il file caricato @@ -405,10 +404,11 @@ DocType: Desktop Icon,Link,Collegamento apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nessun file allegato DocType: Version,Version,versione DocType: User,Fill Screen,Riempi schermo -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Impossibile visualizzare questo report dell'albero a causa dei dati mancanti. Molto probabilmente non hai le autorizzazioni necessarie. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Imposta l'account di posta elettronica predefinito da Setup> Email> Account di posta elettronica +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Impossibile visualizzare questo report dell'albero a causa dei dati mancanti. Molto probabilmente non hai le autorizzazioni necessarie. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Seleziona File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Modifica via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","tipo documento, p. es. cliente" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","tipo documento, p. es. cliente" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,La condizione '{0}' non è valido DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Aggiungere le proprie traduzioni @@ -418,7 +418,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Mercoledì apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Oltre a regole di autorizzazione basato sul ruolo , è possibile applicare autorizzazioni utente basata su DOCTYPE ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",Queste autorizzazioni si applicano per tutte le operazioni in cui il record consentito è collegato . -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,campo di immagine deve essere un nome di campo valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,campo di immagine deve essere un nome di campo valido DocType: OAuth Client,Token,Gettone DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nome) dell'elemento la cui proprietà deve essere impostata apps/frappe/frappe/limits.py +82,"To renew, {0}.","Per rinnovare, {0}." @@ -427,7 +427,7 @@ DocType: Web Form,Sidebar Items,articoli Sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} già installato DocType: Workflow State,exclamation-sign,esclamazione-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostra Permessi -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,campo Timeline deve essere un link o collegamento dinamico +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,campo Timeline deve essere un link o collegamento dinamico apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Intervallo di date apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Pagina {0} di {1} @@ -435,7 +435,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Presen apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","La chiave di crittografia non è valida, controllare il sito_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,a DocType: Kanban Board Column,darkgrey,grigio scuro -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Riuscito: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Riuscito: {0} a {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Non è possibile modificare i dettagli utente in demo. Per favore registrati per un nuovo account all'indirizzo https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Si prega di duplicare questo per fare modifiche apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generazione PDF riuscita a causa di collegamenti di immagine rotti @@ -452,24 +452,24 @@ DocType: DocField,Collapsible,Pieghevole apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Salvato apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Con Cosa hai bisogno di aiuto? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opzioni per selezionare. Ogni opzione su una nuova linea. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Cancella definitivamente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Cancella definitivamente {0} ? DocType: Workflow State,music,musica DocType: Web Page,Settings,Impostazioni apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Si prega di specificare doctype DocType: Print Format,Style Settings,Regolazioni -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Ordina campo {0} deve essere un nome di campo valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Ordina campo {0} deve essere un nome di campo valido apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Più DocType: Contact,Sales Manager,Sales Manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Rinomina DocType: Print Format,Format Data,Formato dati -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,come +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,come DocType: Customize Form Field,Customize Form Field,Personalizzare Campo modulo apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Consentire Utente DocType: OAuth Client,Grant Type,Tipo di grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Controllare che i documenti siano leggibili da un utente apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Applicazione di annunci non consentita -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,usare% come carattere jolly -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Il Dominio Email non è stato configurato per questo account, crearne uno?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,usare% come carattere jolly +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Il Dominio Email non è stato configurato per questo account, crearne uno?" DocType: User,Reset Password Key,Reimposta Password DocType: Email Account,Enable Auto Reply,Abilita risposta automatica apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Non Visto @@ -512,7 +512,7 @@ DocType: DocField,Set Only Once,Impostata una sola volta DocType: Email Queue Recipient,Email Queue Recipient,Destinatario Queue-mail DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nome utente {0} già presente -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Impossibile impostare importazione dato che {1} non è importabile +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Impossibile impostare importazione dato che {1} non è importabile apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},C'è un errore nel vostro indirizzo template {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -524,7 +524,7 @@ DocType: Communication,From Full Name,Da Nome completo apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Non si dispone dell'accesso a Report: {0} DocType: User,Send Welcome Email,Invia email di benvenuto apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Carica file CSV contenente tutte le autorizzazioni degli utenti nello stesso formato come Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Rimuovi Filtro +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Rimuovi Filtro DocType: Address,Daman and Diu,Daman e Diu DocType: Address,Personal,Personale apps/frappe/frappe/config/setup.py +113,Bulk Rename,Rinomina in massa @@ -554,11 +554,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","DocType standard non può avere il formato di stampa predefinito, utilizzare Personalizza modulo" DocType: Report,Query,Query DocType: DocType,Sort Order,ordine -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Modalità Lista' non consentito per il tipo {0} in riga {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Modalità Lista' non consentito per il tipo {0} in riga {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selezionare l'etichetta dopo la quale si desidera inserire nuovo campo. ,Document Share Report,"Report ""Condividi Documento""" DocType: User,Last Login,Ultimo Login -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Il nome del campo è richiesto in riga {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Il nome del campo è richiesto in riga {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Colonna DocType: Custom Field,Adds a custom field to a DocType,Aggiunge un campo personalizzato a un DOCTYPE DocType: File,Is Home Folder,È Cartella Home @@ -583,7 +583,7 @@ DocType: File,Folder,Cartella DocType: DocField,Index,Indice DocType: Email Group,Newsletter Manager,Newsletter Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opzione 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,tutti i messaggi +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} a {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log di errore durante le richieste. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} correttamente aggiunto al gruppo e-mail. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -593,7 +593,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicatore DocType: DocShare,Everyone,Tutti DocType: Workflow State,backward,Indietro -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Solo una regola permessa per lo stesso Ruolo, Livello e {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Solo una regola permessa per lo stesso Ruolo, Livello e {1}" DocType: Email Queue,Add Unsubscribe Link,Aggiungere Cancellati link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ancora nessun commento. Inizia una nuova discussione. DocType: Workflow State,share,quota @@ -611,7 +611,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,non è apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Visualizza abbonati apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sig.ra DocType: Website Theme,Background Color,Colore Sfondo -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Ci sono stati errori durante l'invio email. Riprova. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Ci sono stati errori durante l'invio email. Riprova. DocType: Portal Settings,Portal Settings,Impostazioni del portale DocType: Web Page,0 is highest,0 è il più alto apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Sei sicuro di voler ricollegare questa comunicazione a {0}? @@ -638,7 +638,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Impostazioni Contattaci apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Ricerca ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Limite massimo di allegati per questo record raggiunto. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Limite massimo di allegati per questo record raggiunto. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,I seguenti campi obbligatori devono essere riempiti:
DocType: Email Alert,View Properties (via Customize Form),Proprietà della vista (attraverso Personalizza modulo) DocType: Note Seen By,Note Seen By,Nota Visto da @@ -648,17 +648,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,I Report generati con Report Builder vengono gestite direttamente. Niente da fare. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Per cortesia verifichi il suo indirizzo email apps/frappe/frappe/model/document.py +903,none of,nessuno dei -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Inviami una copia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Inviami una copia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Carica autorizzazioni utente DocType: Dropbox Settings,App Secret Key,App chiave segreta apps/frappe/frappe/config/website.py +7,Web Site,Sito web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Gli elementi selezionati verranno visualizzati sulla Scrivania -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} non può essere impostato per Tipi Singoli +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} non può essere impostato per Tipi Singoli apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Consiglio {0} non esiste. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} stanno attualmente visualizzando questo documento DocType: ToDo,Assigned By Full Name,Assegnato By Nome completo apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} aggiornato -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapporto non può essere impostato per i tipi semplici +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporto non può essere impostato per i tipi semplici apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} giorni fà DocType: Email Account,Awaiting Password,In attesa di password DocType: Address,Address Line 1,Indirizzo @@ -668,7 +668,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stati del flusso di lavoro (p. es. Bozza, Approvato, Annullato)." DocType: Print Settings,Allow Print for Draft,Consentire la stampa per Progetto apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Quantità -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Presenta questo documento per confermare +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Presenta questo documento per confermare DocType: Contact,Unsubscribed,Disiscritto apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Impostare ruoli personalizzati per la pagina e la relazione apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Valutazione: @@ -676,9 +676,9 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Strumento per Importare Dati DocType: Address,Dadra and Nagar Haveli,Dadra e Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,file Caricamento aspetta prego alcuni secondi. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Allega la tua foto +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Allega la tua foto apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valori riga modificata -DocType: Workflow State,Stop,stop +DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link alla pagina che si desidera aprire. Lascia vuoto se si vuole fare un capogruppo. DocType: DocType,Is Single,È single apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Registrati è disattivato @@ -691,7 +691,7 @@ DocType: Print Format,Align Labels to the Left,Allineare le etichette per la Sin DocType: Help Article,Expert,Esperto DocType: Workflow State,circle-arrow-right,cerchio-freccia-destra DocType: LDAP Settings,LDAP Server Url,LDAP Server URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Impossibile aprire esempio quando il suo {0} è aperto +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Impossibile aprire esempio quando il suo {0} è aperto apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,In coda per l'installazione DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizzato DocType: Newsletter,Send Unsubscribe Link,Invia Cancellati link @@ -708,7 +708,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} rimossa DocType: Custom DocPerm,Apply User Permissions,Applica autorizzazioni utente DocType: User,Modules HTML,Moduli HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Impostazione> Gestione autorizzazioni utente apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Valori mancanti richiesti DocType: DocType,Other Settings,Altre impostazioni DocType: Social Login Keys,Frappe,Frappé @@ -726,7 +725,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth portatore Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nessun documento selezionato apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Evento -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Il {0}, {1} ha scritto:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Il {0}, {1} ha scritto:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Impossibile eliminare campo standard. È possibile nascondere, se volete" DocType: Top Bar Item,For top bar,Per i top bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Impossibile identificare {0} @@ -740,7 +739,7 @@ DocType: Role,Desk Access,Accesso Scrivania DocType: Workflow State,minus,meno apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Errore del server : Si prega di controllare i log del server o contattare il supporto tecnico . apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Email di benvenuto inviata con successo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Prepariamo il sistema per il primo utilizzo. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Prepariamo il sistema per il primo utilizzo. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,In primo piano apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Già Registrato DocType: System Settings,Float Precision,Float Precision @@ -753,7 +752,7 @@ DocType: Web Form,Allow Print,consentire la stampa apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No applicazioni installate apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Segna il campo come obbligatorio DocType: Communication,Clicked,Cliccato -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nessuna autorizzazione per ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nessuna autorizzazione per ' {0} ' {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,In programma per inviare DocType: DocType,Track Seen,Traccia Visto @@ -822,7 +821,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Sessioni Simultanee DocType: OAuth Client,Client Credentials,Credenziali client -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Aprire un modulo o strumento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Aprire un modulo o strumento DocType: Communication,Delivery Status,Stato Consegna DocType: Module Def,App Name,Nome App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,dimensione massima del file consentita è di {0} MB @@ -834,8 +833,8 @@ DocType: Feedback Request,Reference Communication,Riferimento Comunicazione DocType: Email Queue,Unsubscribe Method,Modalità di disiscrizione DocType: GSuite Templates,Related DocType,DocType correlato apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Modifica per aggiungere contenuti -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,selezionare le lingue -apps/frappe/frappe/__init__.py +510,No permission for {0},Nessun permesso per {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,selezionare le lingue +apps/frappe/frappe/__init__.py +509,No permission for {0},Nessun permesso per {0} DocType: DocType,Advanced,Avanzato apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Sembra chiave API o API Secret è sbagliato !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Riferimento: {0} {1} @@ -857,7 +856,7 @@ DocType: Customize Form,Enter Form Type,Inserisci Tipo Modulo apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nessun record marcato. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Eliminare campo DocType: User,Send Password Update Notification,Invia notifica aggiornamento password -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Permettere DocType , DocType . Fate attenzione !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permettere DocType , DocType . Fate attenzione !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formati su misura per la stampa, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Aggiornato alla nuova versione DocType: Custom Field,Depends On,Dipende da @@ -950,6 +949,7 @@ apps/frappe/frappe/model/document.py +902,one of,Uno apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Seleziona il file da copiare apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Controllo un momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Mostra tag +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Se l'opzione Applica autorizzazione utente rigorosa è selezionata e la licenza utente è definita per un DocType per un utente, tutti i documenti in cui il valore del collegamento è vuoto non verranno visualizzati a tale utente" DocType: Address,Billing,Fatturazione DocType: Email Queue,Not Sent,Non Inviato DocType: Web Form,Actions,Azioni @@ -979,6 +979,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,chiaro apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Ogni giorno gli eventi dovrebbero terminare nello stesso giorno. DocType: Communication,User Tags,Tags Utente apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Cattura immagini .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Impostazione> Utente DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Il download App {0} DocType: Communication,Feedback Request,Feedback Richiesta @@ -995,7 +996,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Aggiungi contatto DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opzionale: Invia sempre a questi ID. Ogni indirizzo email su una nuova riga -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Nascondi Dettagli +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Nascondi Dettagli DocType: Workflow State,Tasks,Attività DocType: Event,Tuesday,Martedì DocType: Blog Settings,Blog Settings,Impostazioni Blog @@ -1015,9 +1016,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Scrivi un file Python nella stessa cartella in cui è salvato e restituisce la colonna e il risultato. DocType: DocType,Sort Field,Ordina campo DocType: Razorpay Settings,Razorpay Settings,Impostazioni Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Modifica filtro -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Il campo {0} di tipo {1} non può essere obbligatorio -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ad es. Se l'applicazione delle autorizzazioni utente è verificata la relazione DocType ma non Autorizzazioni utente sono definite per report per un utente, quindi tutte le relazioni sono indicate a tale utente" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Modifica filtro +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Il campo {0} di tipo {1} non può essere obbligatorio apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Aggiungere altro apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Nascondi Grafico DocType: System Settings,Session Expiry Mobile,Durata Sessione Dispositivo Mobile @@ -1032,6 +1032,7 @@ DocType: Communication,Delayed,Ritardato apps/frappe/frappe/config/setup.py +128,List of backups available for download,Elenco dei backup disponibili per il download apps/frappe/frappe/www/login.html +89,Sign up,Iscriviti DocType: Test Runner,Output,Produzione +DocType: Email Alert,Set Property After Alert,Imposta proprietà dopo avvisi apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Aggiungere campi alle forme . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Sembra che qualcosa non va con la configurazione Paypal di questo sito. DocType: File,rgt,rgt @@ -1039,6 +1040,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,foglia DocType: Portal Menu Item,Portal Menu Item,Portal voce di menu DocType: User Email,Email ID,ID Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Se l'opzione Applica autorizzazioni utente è selezionata per Documento di report ma non sono definite autorizzazioni utente per Rapporto per un utente, tutte le relazioni vengono visualizzate a tale utente" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Un elenco di risorse che l'applicazione client avrà accesso a dopo che l'utente lo permette.
ad esempio, del progetto" DocType: Translation,Translated Text,Testo tradotto DocType: Contact Us Settings,Query Options,Opzioni query @@ -1056,7 +1058,7 @@ DocType: Address,Contacts,Contatti DocType: System Settings,Setup Complete,installazione completa apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapporto del totale delle azioni di documenti apps/frappe/frappe/www/update-password.html +18,New Password,Nuova password -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtro {0} mancante +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtro {0} mancante apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Scusate! Non è possibile eliminare i commenti generati automaticamente DocType: Website Theme,Style using CSS,Stile usando i CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Riferimento DocType @@ -1108,7 +1110,7 @@ DocType: User,Block Modules,Block Moduli apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Ripristino lunghezza {0} per '{1}' a '{2}'; Impostare la lunghezza come {3} causerà troncamento dei dati. DocType: Print Format,Custom CSS,CSS Personalizzato apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Aggiungi un commento -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorato: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorato: {0} a {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log di errori sugli eventi automatici ( scheduler ) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Non è un valido Comma Separated Value ( CSV File ) @@ -1117,7 +1119,7 @@ DocType: Email Account,Default Incoming,Posta in arrivo predefinita DocType: Workflow State,repeat,ripetizione DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Se disattivato, questo ruolo verrà rimosso da tutti gli utenti." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Aiuto su Cerca +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Aiuto su Cerca apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrato ma disabilitato DocType: DocType,Hide Copy,Nascondi Copia apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Cancellare tutti i ruoli @@ -1149,7 +1151,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Nazione apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Indirizzi DocType: Communication,Shared,diviso -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Allega documento Stampa +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Allega documento Stampa DocType: Bulk Update,Field,Campo DocType: Communication,Received,Ricevuto DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1170,12 +1172,12 @@ DocType: Report,Query Report,Report sulle query DocType: User,Set New Password,Imposta nuova password DocType: User,Github User ID,Github ID utente apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Se Tipo di Documento -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Impossibile eliminare o annullare perché {0} {1} è collegato con {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Impossibile eliminare o annullare perché {0} {1} è collegato con {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Applicazione sconosciuta {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s non è un formato di report valido. Il formato del Report dovrebbe \ uno dei seguenti %s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Il nome del campo {0} appare più volte nelle file {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Il nome del campo {0} appare più volte nelle file {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} da {1} a {2} nella riga # {3} DocType: Communication,Expired,Scaduto DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numero di colonne per un campo in una griglia (Totale Colonne in una griglia deve essere inferiore a 11) @@ -1185,29 +1187,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Hai un account? Acc apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Formato di Stampa Sconosciuto: {0} DocType: Workflow State,arrow-down,freccia verso il basso apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Collassa -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},L'utente non ha permesso di eliminare {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},L'utente non ha permesso di eliminare {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Ultimo aggiornamento il DocType: Help Article,Likes,Piace DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Codice Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Crea posta elettronica utente -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nessuna autorizzazione specificata +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nessuna autorizzazione specificata apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Impostazioni globali: gli utenti saranno in grado di scegliere le icone controllato apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} non trovato DocType: Custom Role,Custom Role,ruolo personalizzato apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home/Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignora Autorizzazioni utente Se mancante -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Si prega di salvare il documento prima di caricare. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Si prega di salvare il documento prima di caricare. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Inserisci la tua password DocType: Dropbox Settings,Dropbox Access Secret,Accesso Segreto Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Aggiungi un altro Commento apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Modifica DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Disiscritto dalla Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Piegare deve venire prima di un'interruzione di sezione +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Piegare deve venire prima di un'interruzione di sezione apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Ultima modifica Di DocType: Workflow State,hand-down,mano giù DocType: Address,GST State,Stato GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Impossibile Annullare senza Confermare +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Impossibile Annullare senza Confermare DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Ci sono stati degli errori. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Reindirizzamento URI destinato a codice Auth @@ -1226,7 +1228,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Le mi DocType: Website Theme,Text Color,Colore testo DocType: Desktop Icon,Force Show,forza Visualizza apps/frappe/frappe/auth.py +78,Invalid Request,Richiesta non valida -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Questo modulo non ha alcun input +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Questo modulo non ha alcun input apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Durata Sessione deve essere nel formato {0} DocType: Website Sidebar Item,Group,Gruppo DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Selezionare target = "" _blank "" per aprire in una nuova pagina ." @@ -1235,7 +1237,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignora errori di codifica. DocType: Workflow State,wrench,chiave apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Non Impostato -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Impostazione> Utente DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,Disabilita Iscrizione apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Attendere mentre il sistema è in corso di installazione . Questa operazione potrebbe richiedere alcuni minuti. @@ -1246,7 +1247,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Aggiungi un commento DocType: DocField,Mandatory,Obbligatorio apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Esportazione Modulo -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nessun set di autorizzazioni di base +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nessun set di autorizzazioni di base apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,L'abbonamento scadrà il {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Link per il download per il backup sarà inviata all'indirizzo e-mail seguente: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significato di Confermare, Cancellare, Rettificare" @@ -1259,11 +1260,11 @@ DocType: Desktop Icon,query-report,query-report apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Assegnato a {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtri salvati DocType: DocField,Percent,Percentuale -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Si prega di impostare filtri +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Si prega di impostare filtri apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Collegato con DocType: Workflow State,book,libro DocType: Website Settings,Landing Page,Pagina di destinazione -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Errore in script personalizzato +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Errore in script personalizzato apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nome apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Richiesta di importazione in coda. L'operazione potrebbe richiedere alcuni minuti, per favore sii paziente." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Permessi non impostati per questo criterio. @@ -1275,7 +1276,7 @@ DocType: System Settings,Allow Login using Mobile Number,Consenti l'accesso apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Non si dispone di autorizzazioni sufficienti per accedere a questa risorsa. Si prega di contattare il responsabile per ottenere l'accesso. DocType: Custom Field,Custom,Personalizzato apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert basa su diversi criteri. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Gli articoli archiviati in {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Gli articoli archiviati in {0} DocType: Email Alert,Send alert if date matches this field's value,Invia avviso se la data coincide con il valore di questo campo DocType: Workflow,Transitions,Transizioni apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Rimuovere {0} e cancellare tutti i dati? @@ -1284,9 +1285,8 @@ DocType: User,Login After,Accedi Dopo DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Stampa DocType: Workflow State,thumbs-up,pollice in su -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account di posta elettronica non configurato. Crea un nuovo account di posta elettronica da Setup> Email> Account di posta elettronica DocType: DocPerm,DocPerm,PermessiDoc -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precisione deve essere compresa tra 1 e 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precisione deve essere compresa tra 1 e 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,e DocType: Error Snapshot,Frames,Cornici @@ -1295,7 +1295,7 @@ DocType: About Us Team Member,Image Link,Link Immagine DocType: Auto Email Report,Report Filters,Filtri Report apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,adesso DocType: Workflow State,step-backward,passo indietro -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Si prega di impostare tasti di accesso Dropbox nel tuo sito config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminare questo record per consentire l'invio a questo indirizzo email apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Solo campi obbligatori sono necessari per i nuovi record. È possibile eliminare le colonne non obbligatori, se lo si desidera." @@ -1317,8 +1317,7 @@ DocType: File,Is Attachments Folder,È Allegati Cartella apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Espandi tutto apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Valido Accedi id richiesto. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Riaprire -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Hai annullato il pagamento -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Selezionare un file csv valido con i dati +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Selezionare un file csv valido con i dati apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ha rimosso la condivisione da questo documento con {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Transizione Stato documento da {0} a {1} non è consentito DocType: DocType,"Make ""name"" searchable in Global Search","Rendi ""nome"" trovabile nella Ricerca Globale" @@ -1331,15 +1330,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Val DocType: Help Category,Help Category,Aiuto Categoria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Utente {0} è disattivato apps/frappe/frappe/www/404.html +8,Page missing or moved,Pagina mancante o spostato -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Modifica {0} proprietà DocType: DocType,Route,Itinerario apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay impostazioni del gateway di pagamento DocType: DocField,Name,Nome apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,È stato superato lo spazio massimo di {0} per il piano. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cerca i documenti DocType: OAuth Authorization Code,Valid,Valido -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,La tua lingua +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,La tua lingua apps/frappe/frappe/desk/form/load.py +46,Did not load,Non caricare apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Aggiungi riga DocType: Tag Category,Doctypes,DOCTYPE @@ -1354,7 +1352,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,È la richies DocType: Address,Lakshadweep Islands,Isole Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Può Scrivere apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alcuni documenti , come una fattura , non devono essere cambiati una volta finale . Lo stato finale di tali documenti è chiamata inoltrata . È possibile limitare le quali ruoli possono Submit ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Non sei autorizzato a esportare questo report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Non sei autorizzato a esportare questo report apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 elemento selezionato DocType: Newsletter,Test Email Address,Prova Indirizzo e-mail DocType: ToDo,Sender,Mittente @@ -1389,7 +1387,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Importa .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Documento Num. DocType: Print Settings,Letter,Lettera -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Campo immagine deve essere di tipo Allega immagine +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Campo immagine deve essere di tipo Allega immagine DocType: DocField,Columns,colonne DocType: Async Task,Succeeded,Riuscito apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},I campi obbligatori richiesti in {0} @@ -1439,7 +1437,7 @@ DocType: DocField,Text Editor,Editor di testo apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Impostazioni per Chi Siamo. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Modifica HTML personalizzato DocType: Error Snapshot,Error Snapshot,Snapshot Errore -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,In +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,In DocType: Email Alert,Value Change,Valore Change DocType: Standard Reply,Standard Reply,Risposta standard apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Larghezza casella di input @@ -1455,12 +1453,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilizzare questo nome campo per generare titolo apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importa posta elettronica da apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Invita come utente -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Selezionare Allegati +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Selezionare Allegati apps/frappe/frappe/model/naming.py +94, for {0},per {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Ci sono stati errori. Si prega di segnalare questo. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Non sei autorizzato a stampare questo documento +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Non sei autorizzato a stampare questo documento apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Si prega di impostare il valore di filtri nella tabella Filtro report. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Caricamento report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Caricamento report apps/frappe/frappe/limits.py +72,Your subscription will expire today.,L'abbonamento scade oggi. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Allega File @@ -1490,7 +1488,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Estensioni Regionali DocType: LDAP Settings,Base Distinguished Name (DN),Base Nome distinto (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Lasciare questa conversazione -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Le opzioni non impostate per il campo link {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Le opzioni non impostate per il campo link {0} DocType: Customize Form,"Must be of type ""Attach Image""",Deve essere di tipo "Allega immagine" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Deseleziona tutto apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Non è possibile rimuovere 'Sola lettura' per il campo {0} @@ -1531,9 +1529,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Nota apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Report di Errore apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Le condizioni di feedback non corrispondono -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,campo Timeline deve essere un nome di campo valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,campo Timeline deve essere un nome di campo valido DocType: Currency,Symbol,Simbolo -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nuova password inviata per email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Accesso non consentito in questo momento DocType: Email Account,Email Sync Option,Email Sync Option @@ -1555,7 +1553,7 @@ DocType: DocField,Text,Testo apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard risponde a domande comuni. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Invio di default DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Utile per {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Utile per {0} DocType: Footer Item,Footer Item,footer Articolo ,Download Backups,Scarica Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home/Test Folder 1 @@ -1588,7 +1586,7 @@ DocType: Web Page,Text Align,Allineamento testo apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Il nome non può contenere caratteri speciali come {0} DocType: Contact Us Settings,Forward To Email Address,Inoltra a Indirizzo e-mail apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostra tutti i dati -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Campo del titolo deve essere un nome di campo valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Campo del titolo deve essere un nome di campo valido apps/frappe/frappe/config/core.py +7,Documents,Documenti DocType: Email Flag Queue,Is Completed,È completato apps/frappe/frappe/www/me.html +22,Edit Profile,Modifica Profilo @@ -1598,7 +1596,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Questo campo viene visualizzato solo se il nome del campo definito qui ha valore o le regole sono veri (esempi): eval myfield: doc.myfield == 'il mio valore' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Oggi +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Oggi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Dopo aver impostato questo, gli utenti saranno solo documenti di accesso in grado (es. post del blog ) in cui è presente il link (es. Blogger ) ." DocType: Error Log,Log of Scheduler Errors,Log degli errori Scheduler DocType: User,Bio,Bio @@ -1622,6 +1620,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stella per avere il rating più basso e 5 stelle per avere il più alto DocType: Event,Ref Name,Nome Rif. DocType: Web Page,Center,Centro +DocType: Email Alert,Value To Be Set,Valore da impostare apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primo livello DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Rappresenta gli stati ammessi in un unico documento e il ruolo assegnato per cambiare lo stato. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Aggiorna Form @@ -1642,18 +1641,18 @@ DocType: DocType,Has Web View,Ha Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Il nome di DocType dovrebbe iniziare con una lettera e può consistere solo di lettere, numeri, spazi e underscore" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Integrazione Richiesta -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Gentile +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Gentile DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Accounts User DocType: Web Page,HTML for header section. Optional,HTML per la sezione in intestazione.Oopzionale apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Questa funzione è nuovo e ancora in fase sperimentale -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Massimo {0} righe ammesse +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Massimo {0} righe ammesse DocType: Email Unsubscribe,Global Unsubscribe,Annullamento iscrizione globale apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Questa è una password molto comune. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Vista DocType: Communication,Assigned,addetto DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Selezionare Formato di stampa +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selezionare Formato di stampa apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,modelli di tastiera brevi sono facili da indovinare DocType: Portal Settings,Portal Menu,Menu del Portale apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lunghezza {0} deve essere compreso tra 1 e 1000 @@ -1691,7 +1690,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,L'utente non può cercare apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Formato di uscita non valido DocType: Custom DocPerm,Apply this rule if the User is the Owner,Applicare questa regola se l'utente è il proprietario -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Sarà il tuo ID di login +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Sarà il tuo ID di login apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Crea Report DocType: Note,Notify users with a popup when they log in,Notifica agli utenti con un popup quando il log-in apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} non esiste, selezionare un nuovo obiettivo da unire" @@ -1710,17 +1709,18 @@ DocType: User Permission for Page and Report,Roles Permission,ruoli permesso apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aggiornare DocType: Error Snapshot,Snapshot View,Istantanea vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Si prega di salvare la Newsletter prima di inviare -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opzioni necessario essere un DocType valido per il campo {0} in riga {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} anno (i) fa +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opzioni necessario essere un DocType valido per il campo {0} in riga {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Modifica Proprietà DocType: Patch Log,List of patches executed,Elenco di patch eseguita apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} iscrizione già cancellata -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Mezzo di comunicazione +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Mezzo di comunicazione DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Si prega di selezionare un altro metodo di pagamento. Razorpay non supporta le transazioni in valuta '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,In coda per il backup. Si può richiedere alcuni minuti a un'ora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrati OAuth client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} non può essere ""{2}"". Dovrebbe essere uno di ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} non può essere ""{2}"". Dovrebbe essere uno di ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} o {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Mostrare o nascondere le icone del desktop apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Aggiornamento password @@ -1746,7 +1746,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Mostra interruzioni di riga dopo Sezioni DocType: Blogger,Short Name,Nome breve apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Pagina {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Si sta selezionando Sync Opzione mentre tutto, sarà risincronizzazione all \ leggere e messaggi non letti dal server. Ciò può anche causare la duplicazione \ di comunicazione (e-mail)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Dimensione dei files @@ -1758,6 +1758,7 @@ DocType: Contact,Purchase Manager,Responsabile Acquisti DocType: Custom Script,Sample,Esempio apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Tags senza categoria DocType: Event,Every Week,Ogni Settimana +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account di posta elettronica non configurato. Crea un nuovo account di posta elettronica da Setup> Email> Account di posta elettronica apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Clicca qui per controllare l'utilizzo o l'aggiornamento a un piano più alto DocType: Custom Field,Is Mandatory Field,È Campo obbligatorio DocType: User,Website User,Website Utente @@ -1780,16 +1781,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Personalizzato Sidebar Menu DocType: Workflow State,pencil,matita apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Messaggi di chat e altre notifiche. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Inserisci dopo non può essere impostato come {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Inserisci dopo non può essere impostato come {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Condividi {0} con apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Configurazione account e-mail si prega di inserire la propria password per: DocType: Workflow State,hand-up,mano su DocType: Blog Settings,Writers Introduction,Scrittori Introduzione DocType: Address,Phone,Telefono -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Errore durante la valutazione di notifiche tramite email {0}. Si prega di correggere il modello. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Errore durante la valutazione di notifiche tramite email {0}. Si prega di correggere il modello. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Per iniziare seleziona il Tipo di Documento o il Ruolo. DocType: Contact,Passive,Passive DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Il tuo pagamento viene annullato. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Selezionare il tipo di file DocType: Help Article,Knowledge Base Editor,Conoscenza Editor Base apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pagina non trovata @@ -1816,6 +1818,7 @@ DocType: Property Setter,Property Type,Tipo di proprietà DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Solo l'amministratore può salvare un report standard. Si prega di rinominarlo e dopo salvare. DocType: System Settings,Background Workers,Servizi in background +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nome di campo {0} in conflitto con l'oggetto meta DocType: Deleted Document,Data,Dati apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stato Documento apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Hai fatto {0} di {1} @@ -1840,7 +1843,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Permessi Mostra utenti apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Devi essere loggato ed avere il ruolo di Amministratore di sistema per poter accedere ai backup. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Disponibile -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Salvare prima di allegare. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Salvare prima di allegare. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Aggiunti {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema di Default si trova in {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType non può essere modificato da {0} a {1} in riga {2} @@ -1860,11 +1863,10 @@ DocType: System Settings,System Settings,Impostazioni di sistema apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,La sessione non è riuscita apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Questa email è stata inviata a {0} e copiato in {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Imposta l'account di posta elettronica predefinito da Setup> Email> Account di posta elettronica -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Creare un nuovo {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Creare un nuovo {0} DocType: Email Rule,Is Spam,è spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Apri {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Apri {0} DocType: OAuth Client,Default Redirect URI,Predefinito Redirect URI DocType: Email Alert,Recipients,Destinatari DocType: Workflow State,ok-sign,ok-sign @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Aiuto articoli ,Modules Setup,Impostazione Moduli apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipo: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Il tuo pagamento non è riuscito. DocType: Communication,Unshared,Non condiviso DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modulo Non Trovato @@ -1927,7 +1930,7 @@ DocType: Website Settings,Brand Image,Immagine di marca DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Impostazione di barra di navigazione superiore, piè di pagina e il logo." DocType: Web Form Field,Max Value,Max Valore -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Per {0} a livello {1} {2} in riga {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Per {0} a livello {1} {2} in riga {3} DocType: Contact,All,Tutto DocType: Email Queue,Recipient,Destinatario DocType: Communication,Has Attachment,ha allegato @@ -1944,7 +1947,8 @@ DocType: Workflow State,align-right,allineare a destra DocType: Auto Email Report,Email To,Invia una email a apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Cartella {0} non è vuoto DocType: Page,Roles,Ruoli -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Il campo {0} non è selezionabile . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Errore: valore mancante per {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Il campo {0} non è selezionabile . DocType: System Settings,Session Expiry,Durata Sessione DocType: Workflow State,ban-circle,ban-cerchio DocType: Email Flag Queue,Unread,Non letto @@ -1959,7 +1963,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Defaults Profilo apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Crea nuovo DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail non inviato a {0} (sottoscritte / disabilitato) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail non inviato a {0} (sottoscritte / disabilitato) DocType: Async Task,Traceback,Rintracciare DocType: Currency,Smallest Currency Fraction Value,Il più piccolo di valuta Frazione Valore apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Assegna a @@ -1970,12 +1974,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Da DocType: Website Theme,Google Font (Heading),Google Font (Intestazione) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Selezionare un nodo primo gruppo. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Trova {0} in {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Trova {0} in {1} DocType: OAuth Client,Implicit,Implicito DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Aggiunge come comunicazione contro questo DocType (deve avere i campi, ""Stato"", ""Subject"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI per ricevere il codice di autorizzazione una volta che l'utente consente l'accesso, così come risposte guasto. Tipicamente un endpoint REST esposta dal Cliente App.
ad esempio http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Non è permesso di cambiare {0} dopo la presentazione +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Non è permesso di cambiare {0} dopo la presentazione DocType: Communication,Comment Type,Commento Type DocType: OAuth Client,OAuth Client,OAuth client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Utenti @@ -1989,7 +1993,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Impossibile leggere il formato di file per {0} DocType: Auto Email Report,Filter Data,Filtro Dati apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Aggiungi un tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Si prega di allegare un file. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Si prega di allegare un file. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Ci sono stati alcuni errori durante l'impostazione del nome, si prega di contattare l'amministratore" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,L'account di posta in arrivo non è corretto apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2004,11 +2008,11 @@ DocType: Blog Post,Email Sent,E-mail Inviata DocType: DocField,Ignore XSS Filter,Ignora filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,rimosso apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,impostazioni di backup Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Invia +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Invia DocType: Website Theme,Link Color,Colore link apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Utente {0} non può essere disattivato apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Spettabile Responsabile di Sistema," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Il tuo paese +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Il tuo paese DocType: Event,Sunday,Domenica apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In Grid View DocType: Address Template,Template,Modelli @@ -2016,7 +2020,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Impostazioni LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Rettificativo apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,impostazioni di gateway di pagamento PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) saranno troncati, il numero massimo di caratteri è pari a {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) saranno troncati, il numero massimo di caratteri è pari a {2}" DocType: OAuth Client,Resource Owner Password Credentials,Risorsa Proprietario credenziali di password DocType: OAuth Client,Response Type,Tipo di risposta apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max utenti @@ -2033,7 +2037,7 @@ DocType: DocField,Table,Tabella DocType: File,File Size,Dimensione File apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Devi effettuare il login per confermare questo modulo DocType: User,Background Image,Immagine Sfondo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Seleziona il tuo Paese, fuso orario e valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Seleziona il tuo Paese, fuso orario e valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Fra DocType: Async Task,Queued,In coda @@ -2042,6 +2046,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Crea apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro non valido: {0} DocType: Email Account,no failed attempts,tentativi non riusciti +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Non è stato trovato alcun modello di indirizzo predefinito. Crea un nuovo dalla configurazione> Stampa e branding> Template indirizzo. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Accessibilità DocType: OAuth Bearer Token,Access Token,Token di accesso @@ -2059,8 +2064,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Username DocType: DocType,Image View,Visualizza immagine apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Sembra che qualcosa è andato storto durante la transazione. Dal momento che non abbiamo confermato il pagamento, Paypal automaticamente vi rimborserà tale importo. In caso contrario, vi preghiamo di inviarci una e-mail e parlare l'ID di correlazione: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Includi simboli, numeri e lettere maiuscole nella password" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Inserisci dopo campo '{0}' di cui al campo personalizzato '{1}', con etichetta '{2}', non esiste" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Includi simboli, numeri e lettere maiuscole nella password" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Inserisci dopo campo '{0}' di cui al campo personalizzato '{1}', con etichetta '{2}', non esiste" DocType: Workflow State,signal,segnalare DocType: DocType,Show Print First,Mostra Stampa Prima apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter per inviare @@ -2090,13 +2095,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' non trovato apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Rimuovere Sezione DocType: User,Change Password,Cambiare la password -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email non valida: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Ciao! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email non valida: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Ciao! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Fine evento deve essere successiva partenza apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Non hai il permesso di ottenere una relazione su: {0} +DocType: System Settings,Apply Strict User Permissions,Applicare autorizzazioni utente rigorose DocType: DocField,Allow Bulk Edit,Consenti la modifica bulk DocType: Blog Post,Blog Post,Articolo Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Ricerca Avanzata +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Ricerca Avanzata apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Le istruzioni per la reimpostazione della password sono state inviate al tuo indirizzo email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Livello 0 è per le autorizzazioni a livello di documento, \ livelli più elevati per le autorizzazioni a livello di campo." @@ -2114,15 +2120,14 @@ DocType: OAuth Bearer Token,Revoked,revocato DocType: Web Page,Sidebar and Comments,Sidebar e commenti apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quando si modifica un documento dopo Cancel e salvarlo , si otterrà un nuovo numero che è una versione del vecchio numero ." DocType: Stripe Settings,Publishable Key,Chiave pubblicabile -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} anno (i) fa DocType: Workflow State,circle-arrow-left,cerchio-freccia-sinistra apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Il server di cache Redis non è in esecuzione. Si prega di contattare l'Amministratore o l'Assistenza Tecnica. -apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nome partito -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Aggiungi un nuovo record +apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nome del Partner +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Aggiungi un nuovo record apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Ricerca DocType: Currency,Fraction,Frazione DocType: LDAP Settings,LDAP First Name Field,LDAP Nome campo -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Seleziona da allegati esistenti +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Seleziona da allegati esistenti DocType: Custom Field,Field Description,Descrizione Campo apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nome non impostato tramite Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail in arrivo @@ -2168,11 +2173,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Livello di autorizzazione DocType: User,Send Notifications for Transactions I Follow,Invia notifiche per le operazioni che seguo -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Impossibile impostare Invia, Annulla, Modifica senza Scrivere" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Impossibile impostare Invia, Annulla, Modifica senza Scrivere" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Eliminare Veramente questo Allegato? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Impossibile eliminare o annullare perché {0} {1} è collegato con {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nessun risultato trovato per '

-apps/frappe/frappe/__init__.py +1063,Thank you,Grazie +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Impossibile eliminare o annullare perché {0} {1} è collegato con {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Grazie apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Salvataggio DocType: Print Settings,Print Style Preview,Stile di stampa Anteprima apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2184,10 +2188,10 @@ DocType: DocField,In List View,In Vista Elenco DocType: Email Account,Use TLS,Usa TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Login o password non validi apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Aggiungi javascript personalizzato alle forme . -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No ,Role Permissions Manager,Gestore Autorizzazioni Ruolo apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nome del nuovo formato di stampa -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Cancella Allegato +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Cancella Allegato apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obbligatorio: ,User Permissions Manager,Amministratore Permessi Utente DocType: Property Setter,New value to be set,Nuovo valore da impostare @@ -2216,26 +2220,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 gior apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Categorizzare i post sul blog. DocType: Workflow State,Time,Tempo DocType: DocField,Attach,Allega -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} non è un modello fieldname valido. Dovrebbe essere {{nome_campo}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} non è un modello fieldname valido. Dovrebbe essere {{nome_campo}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Invia Feedback Richiesta solo se vi è almeno una comunicazione è disponibile per il documento. DocType: Custom Role,Permission Rules,Regole di autorizzazione DocType: GSuite Settings,GSuite Settings,Impostazioni di GSuite DocType: Address,Links,Collegamenti -apps/frappe/frappe/model/base_document.py +428,Value missing for,Valore mancante per +apps/frappe/frappe/model/base_document.py +427,Value missing for,Valore mancante per apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Aggiungi una sottovoce -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record confermato non può essere eliminato. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record confermato non può essere eliminato. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Dimensione del Backup DocType: GSuite Templates,Template Name,Nome modello -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nuovo tipo di documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nuovo tipo di documento DocType: Custom DocPerm,Read,Leggi DocType: Role Permission for Page and Report,Role Permission for Page and Report,Autorizzazione dei ruoli per pagina e rapporto apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,allineare Valore apps/frappe/frappe/www/update-password.html +14,Old Password,Vecchia Password -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Messaggi di {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Messaggi di {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Per formattare le colonne, inserire le etichette delle colonne nella query." DocType: Has Domain,Has Domain,Ha il dominio apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Non hai ancora un account? Registrati -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Impossibile impostare Assegna la Correzione se non Confermabile +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Impossibile impostare Assegna la Correzione se non Confermabile DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Modifica Autorizzazioni di Ruolo DocType: Communication,Link DocType,collegamento DocType @@ -2263,7 +2267,7 @@ DocType: DocType,InnoDB,InnoDB DocType: File,Is Folder,È Cartella ,Feedback Ratings,Commenti Valutazioni DocType: DocType,DocType,TipoDoc -apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +9,Party Type,Tipo partito +apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +9,Party Type,Tipo Partner DocType: Website Theme,"If image is selected, color will be ignored.","Se si seleziona l'immagine, il colore verrà ignorato." DocType: User,Mute Sounds,Disattiva Suoni DocType: Top Bar Item,Top Bar Item,Top Bar articolo @@ -2335,7 +2339,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Assicurati che il tuo profilo ha un indirizzo di posta elettronica apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Hai delle modifiche non salvate in questo modulo. Prego salvare prima di procedere. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Predefinito per {0} deve essere un'opzione +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Predefinito per {0} deve essere un'opzione DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categoria DocType: User,User Image,Immagini Utente apps/frappe/frappe/email/queue.py +289,Emails are muted,Le E-mail sono disattivati @@ -2368,7 +2372,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Prossime a DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Questi valori saranno aggiornati automaticamente nelle transazioni e anche sarà utile per limitare le autorizzazioni per l'utente sulle operazioni che contengono questi valori. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Editore -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Non riuscita: {0} a {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Non riuscita: {0} a {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,selezionare obbligatoria apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Sfoglia apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Messaggi di posta elettronica inviati @@ -2380,7 +2384,7 @@ DocType: Async Task,Running,Di corsa apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reimposta Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Aggiornare Per aggiungere più di {0} abbonati DocType: Workflow State,hand-left,mano sinistra -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} a {1} non può essere unico +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} a {1} non può essere unico DocType: Email Account,Use SSL,Usa SSL DocType: Workflow State,play-circle,play-cerchio apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Selezionare Stampa Formato Modifica @@ -2435,7 +2439,7 @@ DocType: DocField,No Copy,Copia Assente DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Accesso con LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Se Proprietario +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Se Proprietario DocType: OAuth Authorization Code,Expiration time,Data di scadenza DocType: Web Page,Website Sidebar,Sito Sidebar DocType: Web Form,Show Sidebar,Mostra barra laterale @@ -2455,7 +2459,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Impossibile trova apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Nomi e cognomi di per sé sono facili da indovinare. apps/frappe/frappe/config/website.py +93,Knowledge Base,base di conoscenza DocType: Workflow State,briefcase,ventiquattrore -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Il valore non può essere cambiato per {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Il valore non può essere cambiato per {0} DocType: Feedback Request,Is Manual,è manuale DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style rappresenta il colore del pulsante: Successo - Verde, Pericolo - Rosso, Inverse - Nero, primario - Dark Blue, Info - Light Blue, Warning - Arancione" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Nessun Report Caricato. Utilizzare query-report/[Nome report] per eseguire un report. @@ -2532,7 +2536,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Progresso apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,per Ruolo apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,campi mancanti apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname non valido '{0}' in Autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Cerca in un tipo di documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cerca in un tipo di documento apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Lasciare campo di rimanere modificabile anche dopo la presentazione DocType: Custom DocPerm,Role and Level,Ruolo e livello DocType: File,Thumbnail URL,URL Thumbnail @@ -2549,18 +2553,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Maggiori informazioni DocType: Desktop Icon,Desktop Icon,Icona della Scrivania -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Il pagamento è stato accettato con successo +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Il pagamento è stato accettato con successo apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Spiacenti! Non si hanno le autorizzazioni per visualizzare la pagina. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: Doppio cella clic per modificare DocType: Workflow State,bell,campana apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Errore nell'avviso di posta elettronica apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Condividi questo documento con +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Impostazione> Gestione autorizzazioni utente apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} non può essere una foglia dato che ha figli DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Aggiungi allegato +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Aggiungi allegato DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Grazie per il tuo messaggio -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Invia conferma di lettura +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Invia conferma di lettura DocType: Stripe Settings,Stripe Settings,Impostazioni Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Setup Dropbox tramite Config sito apps/frappe/frappe/www/login.py +64,Invalid Login Token,Invalid Login Token @@ -2630,13 +2635,14 @@ DocType: Module Def,Module Name,Nome Modulo apps/frappe/frappe/public/js/frappe/views/image/image_view.js +172,No Images found,Nessuna immagine trovata DocType: DocType,DocType is a Table / Form in the application.,DocType è una tabella / form nell'applicazione. DocType: Email Account,GMail,GMail -DocType: Address,Party GSTIN,Partito GSTIN +DocType: Address,Party GSTIN,GSTIN del Partner apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Report DocType: Communication,SMS,sms DocType: DocType,Web View,Vista web apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Attenzione: questo formato di stampa è in vecchio stile e non può essere generato tramite l'API. DocType: DocField,Print Width,Larghezza di stampa ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,Numero di stato GST DocType: User,Allow user to login only before this hour (0-24),Consentire Login Utente solo prima di questo orario (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder è obbligatoria apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2662,7 +2668,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Testo piccolo apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Accesso amministratore {0} il {1} tramite indirizzo IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,uguale -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opzioni 'Dynamic Link' il tipo di campo deve puntare ad un altro campo Link con opzioni come 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opzioni 'Dynamic Link' il tipo di campo deve puntare ad un altro campo Link con opzioni come 'DocType' DocType: About Us Settings,Team Members Heading,Membri del team Rubrica apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Invalid Formato CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Imposta il numero di backup @@ -2670,10 +2676,10 @@ DocType: DocField,Do not allow user to change after set the first time,Non perme apps/frappe/frappe/public/js/frappe/upload.js +252,Private or Public?,Pubblica o privata? apps/frappe/frappe/utils/data.py +560,1 year ago,1 anno fa DocType: Contact,Contact,Contatto -DocType: User,Third Party Authentication,L'autenticazione di terze parti +DocType: User,Third Party Authentication,Autenticazione di terze parti DocType: Website Settings,Banner is above the Top Menu Bar.,Il Banner è sopra la Barra Menu DocType: Razorpay Settings,API Secret,API Segreto -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Rapporto Export: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Rapporto Export: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} non esiste DocType: Email Account,Port,Porta DocType: Print Format,Arial,Arial @@ -2696,7 +2702,7 @@ DocType: Kanban Board Column,Column Name,Nome colonna DocType: Language,Based On,Basato su apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Imposta come default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Controllare URL Frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} a {1} non possono essere indicizzati +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} a {1} non possono essere indicizzati DocType: Communication,Email Account,Account Email DocType: Workflow State,Download,Scarica DocType: Blog Post,Blog Intro,Intro Blog @@ -2707,7 +2713,7 @@ DocType: Web Page,Insert Code,Inserire Codice DocType: ToDo,Low,Basso apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,È possibile aggiungere proprietà dinamiche del documento utilizzando Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limite non valido {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Elencare un tipo di documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Elencare un tipo di documento DocType: Event,Ref Type,Tipo Rif. apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Se si sta caricando nuovi record, lasciare il ""nome"" (ID) colonna vuota." DocType: Address,Chattisgarh,Chattisgarh @@ -2729,25 +2735,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Invia Stampa in formato PDF DocType: Web Form,Amount,Importo DocType: Workflow Transition,Allowed,Consenti -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Ci può essere un solo Fold in forma +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Ci può essere un solo Fold in forma apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Impossibile scrivere il formato di file per {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Ripristinare le impostazioni predefinite? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Home Page non valida apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Login non valido. Riprova. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opzioni richieste per il campo Tipo di collegamento o tabella {0} nella riga {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opzioni richieste per il campo Tipo di collegamento o tabella {0} nella riga {1} DocType: Auto Email Report,Send only if there is any data,Invia solo se non vi è alcun dato apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Azzera i filtri -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: L'autorizzazione al livello 0 deve essere impostata prima dei livelli più elevati +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: L'autorizzazione al livello 0 deve essere impostata prima dei livelli più elevati apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assegnazione chiuso da {0} DocType: Integration Request,Remote,A distanza -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calcola +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcola apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Seleziona DocType primo apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Conferma La Tua Email apps/frappe/frappe/www/login.html +42,Or login with,O login con DocType: Error Snapshot,Locals,La gente del posto apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicato via {0} il {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ti ha menzionato in un commento a {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p. es. (55 + 434) / 4 or = Math.sin(Math.PI/2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p. es. (55 + 434) / 4 or = Math.sin(Math.PI/2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} è richiesto DocType: Integration Request,Integration Type,Integrazione Tipo DocType: Newsletter,Send Attachements,Invia Allegati @@ -2757,14 +2763,14 @@ DocType: DocField,Perm Level,Perm Livello apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Eventi nel Calendario di Oggi DocType: Web Page,Web Page,Pagina Web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In ricerca globale' non consentito per il tipo {0} nella riga {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In ricerca globale' non consentito per il tipo {0} nella riga {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Visualizza elenco -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},La data deve essere in formato : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},La data deve essere in formato : {0} DocType: Workflow,Don't Override Status,Non override Stato apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Si prega di dare una valutazione. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Richiesta Feedback apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Termine di ricerca -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Il Primo Utente: Sei tu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Il Primo Utente: Sei tu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Seleziona colonne DocType: Translation,Source Text,Testo sorgente apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parametri mancanti per il login @@ -2786,7 +2792,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importazione DocType: ToDo,Assigned By,Assegnato By apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,È possibile utilizzare Personalizza modulo per impostare i livelli sui campi . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Seleziona la tua regione +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Seleziona la tua regione DocType: Custom DocPerm,Level,Livello DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,L'importo deve essere maggiore di 0. @@ -2806,7 +2812,7 @@ DocType: Website Theme,Background,Sfondo DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Lista JSON di DOCTYPE utilizzati per applicare autorizzazioni utente. Se vuoto, saranno utilizzati tutti i DOCTYPE legati ad applicare autorizzazioni utente." DocType: Report,Ref DocType,DocType Rif. apps/frappe/frappe/www/feedback.py +42,Please add a rating,Aggiungi un voto -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Impossibile impostare Modifica senza Annulla +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Impossibile impostare Modifica senza Annulla apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Pagina completa DocType: DocType,Is Child Table,È Tabella Figlio apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} deve essere uno di {1} @@ -2821,7 +2827,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Questo va al di sopra apps/frappe/frappe/config/setup.py +260,Install Applications.,Installare Applicazioni. DocType: Contact,Last Name,Cognome DocType: Event,Private,Privato -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nessun avviso per oggi +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nessun avviso per oggi DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Invia Email Print allegati in formato PDF (consigliata) DocType: Web Page,Left,Sinistra DocType: Event,All Day,Intera giornata @@ -2835,7 +2841,7 @@ DocType: Event,Send an email reminder in the morning,Invia un promemoria tramite DocType: Blog Post,Published On,Edizione del DocType: Contact,Gender,Genere apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informazione obbligatoria mancante: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Il campo '{0}' non può essere impostato come unico in quanto ha valori non univoci +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Il campo '{0}' non può essere impostato come unico in quanto ha valori non univoci apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Solo 200 inserti ammessi in una sola richiesta DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Tipo di riferimento @@ -2848,7 +2854,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,avvertimento-sign DocType: Workflow State,User,Utente DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostra titolo nella finestra del browser come "Prefisso - titolo" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,testo tipo di documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,testo tipo di documento apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Esegui test apps/frappe/frappe/handler.py +91,Logged Out,Disconnesso apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Di Più... @@ -2873,13 +2879,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Si sta visualizzando DocType: DocField,Default,Predefinito apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} aggiunto -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Cerca '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cerca '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Si prega di salvare il rapporto prima apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abbonati aggiunti apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Non In DocType: Workflow State,star,stella -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valori separati da virgole -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Larghezza massima per il tipo di valuta è 100px in riga {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valori separati da virgole +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Larghezza massima per il tipo di valuta è 100px in riga {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Si prega di condividere le vostre risposte per {0} apps/frappe/frappe/config/website.py +13,Content web page.,Contenuto Pagina Web. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Aggiungere un nuovo ruolo @@ -2897,7 +2903,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Non un utente LDAP valida apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} non è uno Stato valido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Si prega di selezionare un altro metodo di pagamento. PayPal non supporta le transazioni in valuta '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Cerca campo {0} non è valido +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Cerca campo {0} non è valido DocType: Workflow State,ok-circle,ok-cerchio apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',È possibile trovare le cose chiedendo 'trova arancio nei clienti' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Sorry! L'utente dovrebbe avere accesso completo al proprio record. @@ -2957,7 +2963,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtro Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Testo da visualizzare per collegamento alla pagina Web, se questa forma ha una pagina web. Percorso di collegamento verrà automaticamente generato in base `page_name` e` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Commenti trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Impostare {0} prima +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Impostare {0} prima DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Impossibile diff --git a/frappe/translations/ja.csv b/frappe/translations/ja.csv index 19fc7db2af..a881710ce3 100644 --- a/frappe/translations/ja.csv +++ b/frappe/translations/ja.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebookのユーザー名 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,注:複数のセッションは、モバイルデバイスの場合に許可されます apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ユーザーのための有効電子メールの受信トレイ{ユーザー} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,この電子メールを送信することはできません。あなたは今月の{0}の電子メールの送信制限を超えています。 -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,完全に{0}を提出しますか? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,完全に{0}を提出しますか? DocType: Address,County,郡 DocType: Workflow,If Checked workflow status will not override status in list view,チェックワークフローステータスは、リストビューのステータスを上書きしない場合 apps/frappe/frappe/client.py +280,Invalid file path: {0},無効なファイルパス:{0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ファ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0}ツリー DocType: User,User Emails,ユーザーの電子メール DocType: User,Username,ユーザー名 -apps/frappe/frappe/model/base_document.py +581,Value too big,あまりにも大きな値 +apps/frappe/frappe/model/base_document.py +580,Value too big,あまりにも大きな値 DocType: DocField,DocField,文書フィールド DocType: GSuite Settings,Run Script Test,スクリプトテストを実行する DocType: Contact,Department,部門 @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,ログ DocType: Custom DocPerm,This role update User Permissions for a user,この「役割」はユーザーの「ユーザー権限」を更新します apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},名称変更 {0} DocType: Workflow State,zoom-out,ズームアウト -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,自身のインスタンスが開いているときに{0}を開くことはできません +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,自身のインスタンスが開いているときに{0}を開くことはできません apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,表{0}は空にできません。 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,元帳と apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,画像 DocType: Communication,Reference Owner,参照オーナー DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,最小の循環小数ユニット(コイン)。 USDのための例えば1セントのために、それは0.01のように入力する必要があります DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0}、{1}行 +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0}、{1}行 apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,フルネームを教えてください。 apps/frappe/frappe/model/document.py +904,Beginning with,次の文字で開始: apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,データのインポートテンプレート apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,親 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",有効にすると、パスワード強度は最小パスワードスコア値に基づいて適用されます。 2の値は中程度の強さであり、4は非常に強い値である。 DocType: About Us Settings,"""Team Members"" or ""Management""",「チームメンバー」または「管理」 -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',「チェック」タイプのフィールドでは、デフォルトは「0」か「1」でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',「チェック」タイプのフィールドでは、デフォルトは「0」か「1」でなければなりません apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,昨日 DocType: Contact,Designation,肩書 DocType: Test Runner,Test Runner,テストランナー @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,フィールド公開されています DocType: Email Group,Email Group,メールグループ DocType: Note,Seen By,で見られる apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,複数追加 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,みたいではなく +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,みたいではなく apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,フィールドの表示ラベルを設定 apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},不正な値:{0} は {1} {2}でなければなりません apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",変更フィールドのプロパティ(非表示、読み取り専用、アクセス権など) @@ -80,7 +80,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,お問い apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,管理者がログインしました DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",新しい行またはカンマで区切られた「セールスクエリ、サポートクエリ」などのような連絡先オプション apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2.ダウンロード -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,挿入 +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,挿入 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0}を選択 DocType: Print Settings,Classic,クラシック DocType: Desktop Icon,Color,色 @@ -121,7 +121,7 @@ DocType: Translation,Translation,翻訳 apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,インストール apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,氏 DocType: Custom Script,Client,クライアント -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,このフォームは読み込み後に変更されています +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,このフォームは読み込み後に変更されています DocType: User Permission for Page and Report,User Permission for Page and Report,ページおよびレポートのためのユーザー権限 DocType: Address,Himachal Pradesh,ヒマーチャルプラデーシュ州 DocType: System Settings,"If not set, the currency precision will depend on number format",設定されていない場合、通貨の精度は数値形式に依存します @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,理由 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ユーザーを指定してください DocType: Email Unsubscribe,Email Unsubscribe,メール配信停止 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,最良の結果を得るため、透過背景で幅150ピクセル程度の画像を選択してください -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,最初のユーザーは、システムマネージャとなります。(後で変更できます) +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,最初のユーザーは、システムマネージャとなります。(後で変更できます) ,App Installer,アプリケーションインストーラー DocType: Workflow State,circle-arrow-up,円矢印(上) apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,アップロードしています... DocType: Email Domain,Email Domain,メールドメイン DocType: Workflow State,italic,斜体 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,すべての人のために -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}:作成せずにインポートを設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}:作成せずにインポートを設定することはできません apps/frappe/frappe/config/desk.py +26,Event and other calendars.,イベントや他のカレンダー apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,すべてのフィールドは、コメントを送信するために必要です。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,ドラッグして列を並べ替え @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,標準のサイドバーのメニ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ホームおよび添付ファイルフォルダを削除することはできません apps/frappe/frappe/config/desk.py +19,Files,ファイル apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,アクセス権限は、割り当てられている役割に基づいてユーザーに適用されます。 -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,この書類に関連するメールを送信することが許可されていません。 -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0}ソートする/グループからの少なくとも1列を選択してください +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,この書類に関連するメールを送信することが許可されていません。 +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0}ソートする/グループからの少なくとも1列を選択してください DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,あなたはサンドボックスAPIを使用してお支払いをテストしている場合は、これをチェック apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,標準のWebサイトテーマを削除することは許可されていません DocType: Feedback Trigger,Example,例 @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,総登録者数 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",「役割」にレベル0のアクセス権が無い場合、より高いレベルには意味がありません。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,名前を付けて保存 DocType: Communication,Seen,閲覧済 -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,詳細を表示 +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,詳細を表示 DocType: System Settings,Run scheduled jobs only if checked,スケジュールされたジョブを実行(チェックを入れた場合のみ) apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,セクションの見出しが有効になっている場合にのみ表示されます apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,アーカイブ @@ -220,7 +220,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,グラフの表 apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,有効なメールアドレスと名前が必要です。 DocType: DocType,Hide Heading,見出しを非表示にする DocType: Address,Current,現在 -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,関連ドキュメント apps/frappe/frappe/config/core.py +17,Groups of DocTypes,文書タイプのグループ DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,削除アイコン @@ -236,10 +235,9 @@ DocType: Workflow State,Filter,フィルタ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},フィールド名{0}には、{1}などの特殊文字を含めることはできません apps/frappe/frappe/config/setup.py +121,Update many values at one time.,一度に多くの値を更新します。 apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,エラー:あなたが文書を開いた後に変更されています -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトアドレステンプレートが見つかりません。 「設定」>「印刷とブランド」>「アドレステンプレート」から新しいものを作成してください。 apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0}ログアウト:{1} DocType: Address,West Bengal,西ベンガル州 -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}:提出可能になっていない場合は、割当の提出が設定できません +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}:提出可能になっていない場合は、割当の提出が設定できません DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","""{0}""でフィルタリング" DocType: Salutation,Administrator,管理者 @@ -249,7 +247,7 @@ DocType: Blog Settings,Blog Title,ブログのタイトル apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,標準ロールは無効にすることはできません DocType: Address,Mizoram,ミゾラム DocType: Newsletter,Newsletter,ニュースレター -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,順にサブクエリを使用することはできません +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,順にサブクエリを使用することはできません DocType: Web Form,Button Help,ボタンのヘルプ DocType: Kanban Board Column,purple,紫の DocType: About Us Settings,Team Members,チームメンバー @@ -263,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",あなたのサブスクリプションは、{0}に有効期限が切れています。更新するには、{1}。 DocType: Workflow State,plus-sign,プラス記号 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,すでに完全なセットアップ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,アプリケーション{0}がインストールされていません +apps/frappe/frappe/__init__.py +889,App {0} is not installed,アプリケーション{0}がインストールされていません DocType: Workflow State,Refresh,再読込 DocType: Event,Public,公開 apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,表示するものがありません @@ -271,7 +269,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,に好か apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,メールサポート DocType: DocField,Print Hide If No Value,値なしの場合プリントを隠します DocType: Event,yellow,黄 -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,公開されているフィールドは、有効なフィールド名でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,公開されているフィールドは、有効なフィールド名でなければなりません apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,添付ファイルをアップロード DocType: Block Module,Block Module,ブロックモジュール apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,テンプレートのエクスポート @@ -290,7 +288,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,グ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},新しいアカウントは {0} に作成されています apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,メールでの指示 -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),電子メールの受信者(複数可)を入力してください +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),電子メールの受信者(複数可)を入力してください DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,メール旗キュー apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,{0}のオープン識別することはできません。何か他のものを試してみてください。 @@ -304,8 +302,8 @@ DocType: Communication,Message ID,メッセージID DocType: Property Setter,Field Name,フィールド名 apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuiteは設定されていません。 apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,または -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,モジュール名... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,継続 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,モジュール名... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,継続 DocType: Custom Field,Fieldname,フィールド名 DocType: Workflow State,certificate,証明書 DocType: User,Tile,タイル @@ -314,6 +312,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,すべてのバージョンを表示 DocType: Workflow State,Print,印刷 DocType: User,Restrict IP,IPアドレス制限 +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ダッシュボード apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,メールを送信することができません。 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,検索またはコマンド入力 DocType: Communication,Timeline Name,タイムライン名 @@ -324,7 +323,7 @@ DocType: Contact,Sales Master Manager,販売マスターマネージャー apps/frappe/frappe/www/complete_signup.html +13,One Last Step,最後のステップ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"このフィールドにリンクしたい文書タイプの名前。(例:""Customer"")" DocType: User,Roles Assigned,割当された役割 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,検索ヘルプ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,検索ヘルプ DocType: Top Bar Item,Parent Label,親ラベル apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",お問い合わせを受け付けました。すぐに折り返しご連絡いたします。追加の情報などがある場合は、このメールにご返信ください apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,アクセス権限は、自動的に標準レポートおよび検索に変換されます。 @@ -341,6 +340,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,見出しを編集 DocType: File,File URL,ファイルURL DocType: Version,Table HTML,表HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'の検索結果はありません'

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,登録者を追加 apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,今日の予定 DocType: Email Alert Recipient,Email By Document Field,文書フィールドによるメール @@ -360,17 +360,16 @@ DocType: Web Form,Amount Based On Field,金額フィールドに基づいて apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,共有にはユーザーが必須です DocType: DocField,Hidden,隠された DocType: Web Form,Allow Incomplete Forms,不完全なフォームを許可 -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0}を最初に設定する必要があります +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0}を最初に設定する必要があります apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",一般的なフレーズを避けるため、いくつかの単語を使用してください。 DocType: Workflow State,plane,飛行機 -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,おっとっと。お支払いに失敗しました。 apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",新しいレコードをアップロードする際には「命名シリーズ」が必須になります(存在する場合) -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,今日のためのアラートを取得 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,今日のためのアラートを取得 apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,文書タイプは管理者のみ名前を変更することができます apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},{0}の変更された値 DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,検証のためにあなたの電子メールをチェックしてください -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,フォールドはフォームの最後にすることはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,フォールドはフォームの最後にすることはできません DocType: Communication,Bounced,不達 DocType: Deleted Document,Deleted Name,削除された名前 apps/frappe/frappe/config/setup.py +14,System and Website Users,システムとウェブサイトユーザー @@ -389,13 +388,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,文書キュー DocType: GSuite Templates,Destination ID,宛先ID DocType: Desktop Icon,List,リスト DocType: Communication,Link Name,リンク名 -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,フィールド{0}の行{1}は、デフォルト以外、非表示・必須とすることはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,フィールド{0}の行{1}は、デフォルト以外、非表示・必須とすることはできません DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,無効なパスワード: DocType: Print Settings,Send document web view link in email,電子メールでのドキュメントのWebビューのリンクを送信 apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,{0}は正常に保存された文書のためのご意見、ご感想 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,前 -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{1}の{0}行 DocType: Currency,"Sub-currency. For e.g. ""Cent""",サブ通貨(例:セント) apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,アップロードされたファイルを選択します @@ -406,10 +405,11 @@ DocType: Desktop Icon,Link,リンク apps/frappe/frappe/utils/file_manager.py +96,No file attached,添付ファイルがありません DocType: Version,Version,バージョン DocType: User,Fill Screen,フルスクリーン -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",データが存在しないため、このツリーのレポートを表示することができません。権限によって除外されている可能性があります +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,セットアップ>電子メール>電子メールアカウントからデフォルトの電子メールアカウントを設定してください +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",データが存在しないため、このツリーのレポートを表示することができません。権限によって除外されている可能性があります apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. [ファイル] apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,アップロード経由で編集 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",文書タイプ 例:顧客 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",文書タイプ 例:顧客 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,条件は、 '{0}'が無効です DocType: Workflow State,barcode,バーコード apps/frappe/frappe/config/setup.py +232,Add your own translations,独自の翻訳を追加 @@ -420,7 +420,7 @@ DocType: Event,Wednesday,水曜日 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",役割に基づく権限ルールとは別に、文書タイプに基づいてユーザーのアクセス許可を適用することができます。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","これらの権限は、権限レコードがリンクされているすべての取引に適用されます。 例えば、ユーザXのユーザー権限にC社が追加された場合、ユーザXだけがC社にリンクされた取引を見ることができます。" -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Imageフィールドは、有効なフィールド名でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Imageフィールドは、有効なフィールド名でなければなりません DocType: OAuth Client,Token,トークン DocType: Property Setter,ID (name) of the entity whose property is to be set,プロパティが設定されるエンティティのID(名前) apps/frappe/frappe/limits.py +82,"To renew, {0}.",更新するには、{0}。 @@ -429,7 +429,7 @@ DocType: Web Form,Sidebar Items,サイドバーのアイテム apps/frappe/frappe/installer.py +125,App {0} already installed,App {0}は既にインストールされています DocType: Workflow State,exclamation-sign,感嘆符記号 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,表示するアクセス許可 -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,タイムラインのフィールドは、リンクまたはダイナミックリンクでなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,タイムラインのフィールドは、リンクまたはダイナミックリンクでなければなりません apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,日付範囲 apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,ガント apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ページ {0} / {1} @@ -437,7 +437,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ウェ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",暗号化キーが無効です。site_config.jsonを確認してください。 apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,To DocType: Kanban Board Column,darkgrey,濃い灰色 -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},成功:{0} {1}へ +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},成功:{0} {1}へ apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,デモでユーザーの詳細を変更することはできません。 https://erpnext.comで新規アカウントにサインアップしてください apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,複製した後、変更してください apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,画像リンクが壊れているため、PDFの生成に失敗しました @@ -454,24 +454,24 @@ DocType: DocField,Collapsible,折り畳み apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,保存済 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,どんな助けが必要ですか? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,選択オプション。各オプションは新しい行となります。 -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,完全に{0}をキャンセルしますか? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,完全に{0}をキャンセルしますか? DocType: Workflow State,music,音楽 DocType: Web Page,Settings,設定 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,文書タイプを指定してください DocType: Print Format,Style Settings,スタイル設定 -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ソートフィールド{0}は、有効なフィールド名でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ソートフィールド{0}は、有効なフィールド名でなければなりません apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,続き DocType: Contact,Sales Manager,営業部長 apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,名称変更 DocType: Print Format,Format Data,書式データ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,いいね! +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,いいね! DocType: Customize Form Field,Customize Form Field,フォームフィールドをカスタマイズ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,ユーザを許可 DocType: OAuth Client,Grant Type,グラントの種類 apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ユーザーが読み取り可能なドキュメントにチェック apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,アプリを表示できない -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ワイルドカードとして%を使用して下さい。 -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",メールのドメインは、1を作成し、このアカウント用に構成されていませんか? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ワイルドカードとして%を使用して下さい。 +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",メールのドメインは、1を作成し、このアカウント用に構成されていませんか? DocType: User,Reset Password Key,パスワードキーリセット DocType: Email Account,Enable Auto Reply,自動返信を有効にする apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,閲覧なし @@ -514,7 +514,7 @@ DocType: DocField,Set Only Once,1度だけ設定 DocType: Email Queue Recipient,Email Queue Recipient,メールキューの受信者 DocType: Address,Nagaland,ナガランド apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ユーザー名{0}はすでに存在しています -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}:{1}がインポート不可のためインポートを設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}:{1}がインポート不可のためインポートを設定することはできません apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},あなたのアドレステンプレート{0}にエラーがあります DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,ハードディスク @@ -526,7 +526,7 @@ DocType: Communication,From Full Name,フルネームから apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},レポートへのアクセス権がありません:{0} DocType: User,Send Welcome Email,ウェルカムメールを送信 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ダウンロードと同じ形式で全ユーザーのアクセス許可を含むCSVファイルをアップロードします。 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,フィルタの削除 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,フィルタの削除 DocType: Address,Daman and Diu,ダマンとジュー DocType: Address,Personal,個人情報 apps/frappe/frappe/config/setup.py +113,Bulk Rename,一括名前変更 @@ -556,11 +556,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",標準のDocTypeは、デフォルトの印刷フォーマットを持つことはできません。 DocType: Report,Query,クエリー DocType: DocType,Sort Order,並び順 -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},「リスト表示」は行{1}のタイプ{0}では許可されません +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},「リスト表示」は行{1}のタイプ{0}では許可されません DocType: Custom Field,Select the label after which you want to insert new field.,新たなフィールドを挿入後にラベルを選択してください。 ,Document Share Report,文書共有レポート DocType: User,Last Login,最新ログイン -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},行{0}にはフィールド名が必要です +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},行{0}にはフィールド名が必要です apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,列 DocType: Custom Field,Adds a custom field to a DocType,文書タイプにカスタムフィールドを追加 DocType: File,Is Home Folder,ホームフォルダ @@ -585,7 +585,7 @@ DocType: File,Folder,フォルダ DocType: DocField,Index,索引 DocType: Email Group,Newsletter Manager,ニュースレターマネージャー apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,オプション1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,全ての記事 +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0}から{1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,リクエスト中のエラーのログ。 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0}正常に電子メールグループに追加されました。 DocType: Address,Uttar Pradesh,ウッタル・プラデーシュ州 @@ -595,7 +595,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,インジケータ DocType: DocShare,Everyone,全員 DocType: Workflow State,backward,後方 -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:同じ役割、レベル、{1} にには1つのルールのみ許可されます +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:同じ役割、レベル、{1} にには1つのルールのみ許可されます DocType: Email Queue,Add Unsubscribe Link,解除リンクを追加 apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,コメントはまだありません。新しいディスカッションを開始します。 DocType: Workflow State,share,共有 @@ -613,7 +613,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,は許 apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,登録者表示 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,女史 DocType: Website Theme,Background Color,背景色 -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,メールの送信中にエラーが発生しました。もう一度お試しください。 +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,メールの送信中にエラーが発生しました。もう一度お試しください。 DocType: Portal Settings,Portal Settings,ポータル設定 DocType: Web Page,0 is highest,0が上限です apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,あなたはに{0}この通信を再リンクしてもよろしいですか? @@ -640,7 +640,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,お問い合わせの設定 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,検索中... DocType: Workflow State,text-width,テキスト幅 -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,レコードの添付ファイルの最大制限値に到達しました +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,レコードの添付ファイルの最大制限値に到達しました apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,次の必須フィールドが満たされている必要があります。
DocType: Email Alert,View Properties (via Customize Form),ビュー属性(カスタマイズフォーム経由) DocType: Note Seen By,Note Seen By,から見たノート @@ -650,17 +650,17 @@ DocType: Address,Rajasthan,ラージャスターン apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,レポートビルダのレポートは、レポートビルダーによって直接管理されています。何もする必要がありません。 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,あなたのメールアドレスを確認してください apps/frappe/frappe/model/document.py +903,none of,のどれも -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,自分にコピーを送付 +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,自分にコピーを送付 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ユーザー権限をアップロード DocType: Dropbox Settings,App Secret Key,アプリの秘密鍵 apps/frappe/frappe/config/website.py +7,Web Site,ウェブサイト apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,チェックしたアイテムは、デスクトップ上に表示されます -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0}シングルタイプに設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0}シングルタイプに設定することはできません apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,かんばんボードは{0}が存在しません。 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0}が現在この文書を表示しています DocType: ToDo,Assigned By Full Name,フルネームによって割り当て apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} 更新 -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,レポートはシングルタイプに設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,レポートはシングルタイプに設定することはできません apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0}日前 DocType: Email Account,Awaiting Password,パスワードを待っています DocType: Address,Address Line 1,住所 1行目 @@ -670,7 +670,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",ワークフローの状態(例:ドラフト・承認・キャンセル) DocType: Print Settings,Allow Print for Draft,下書きの印刷を許可 apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,数量を設定 -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,確認のため、この文書を提出 +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,確認のため、この文書を提出 DocType: Contact,Unsubscribed,購読解除 apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,ページおよびレポートのために設定したカスタムの役割 apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,評価: @@ -678,7 +678,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,データインポートツール DocType: Address,Dadra and Nagar Haveli,ダドラとナーガー・ハベリ apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,アップロードファイルは、数秒間待ってください。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,あなたの写真を添付 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,あなたの写真を添付 apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,行の値を変更します DocType: Workflow State,Stop,停止 DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,開きたいページへのリンク。グループの親にする場合は空白のままにします。 @@ -693,7 +693,7 @@ DocType: Print Format,Align Labels to the Left,左へのラベルの位置を合 DocType: Help Article,Expert,専門家 DocType: Workflow State,circle-arrow-right,円形矢印右 DocType: LDAP Settings,LDAP Server Url,LDAPサーバのURL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,自身の{0}が開いているときにインスタンスを開くことはできません +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,自身の{0}が開いているときにインスタンスを開くことはできません apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,インストールのためにキューイング DocType: Custom DocPerm,Custom DocPerm,カスタムDocPerm DocType: Newsletter,Send Unsubscribe Link,解除リンクを送ります @@ -710,7 +710,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,アプリは{0}削除します DocType: Custom DocPerm,Apply User Permissions,ユーザーのアクセス許可を適用 DocType: User,Modules HTML,モジュールHTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,セットアップ>ユーザーパーミッションマネージャ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,欠損値が必要です DocType: DocType,Other Settings,その他設定 DocType: Social Login Keys,Frappe,フラッペ @@ -728,7 +727,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuthのベアラトークン apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,文書が選択されていません apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,借方 DocType: Event,Event,イベント -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0}で{1}が記述: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0}で{1}が記述: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,標準のフィールドを削除することはできません。必要に応じて非表示にできます DocType: Top Bar Item,For top bar,トップバー用 apps/frappe/frappe/utils/bot.py +148,Could not identify {0},識別できませんでした{0} @@ -742,7 +741,7 @@ DocType: Role,Desk Access,デスクのアクセス DocType: Workflow State,minus,マイナス apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,サーバーエラー:サーバーのログを確認するか、技術サポートに連絡してください。 apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ウェルカムメールが送信されました。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,システムを準備して使い始めましょう +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,システムを準備して使い始めましょう apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,おすすめ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,既に登録されています DocType: System Settings,Float Precision,小数精度 @@ -755,7 +754,7 @@ DocType: Web Form,Allow Print,印刷を許可します apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,アプリがインストールされていません apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,フィールドに「必須」をマーク DocType: Communication,Clicked,クリック済 -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},権限がありません '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},権限がありません '{0}' {1} DocType: User,Google User ID,GoogleのユーザーID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,送信するスケジュール DocType: DocType,Track Seen,トラックは見ました @@ -824,7 +823,7 @@ DocType: Address,Kerala,ケララ州 DocType: File,Lft,左 DocType: User,Simultaneous Sessions,同時セッション DocType: OAuth Client,Client Credentials,クライアントの資格情報 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,モジュールまたはツールを開く +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,モジュールまたはツールを開く DocType: Communication,Delivery Status,納品ステータス DocType: Module Def,App Name,アプリケーション名 apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,許可された最大ファイルサイズは{0} MB @@ -836,8 +835,8 @@ DocType: Feedback Request,Reference Communication,参考コミュニケーショ DocType: Email Queue,Unsubscribe Method,配信停止方法 DocType: GSuite Templates,Related DocType,関連するDocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,コンテンツを追加して編集 -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,言語を選択 -apps/frappe/frappe/__init__.py +510,No permission for {0},{0} には許可がありません +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,言語を選択 +apps/frappe/frappe/__init__.py +509,No permission for {0},{0} には許可がありません DocType: DocType,Advanced,高度な apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,APIキーまたはAPIの秘密は間違っているようです! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},参照:{0} {1} @@ -859,7 +858,7 @@ DocType: Customize Form,Enter Form Type,フォームタイプを入力してく apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,タグ付けされたレコードがありません apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,フィールドを削除します DocType: User,Send Password Update Notification,パスワード更新通知の送信 -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",文書タイプを許可(慎重に!) +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",文書タイプを許可(慎重に!) apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",印刷、電子メールのためにカスタマイズされた形式 apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,新しいバージョンに更新 DocType: Custom Field,Depends On,依存関係 @@ -953,6 +952,7 @@ apps/frappe/frappe/model/document.py +902,one of,一部 apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,コピーするファイルを選択してください apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,一瞬の確認 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,ショータグ +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",[厳密なユーザー権限を適用する]チェックボックスがオンで、ユーザーのDocTypeにユーザー権限が定義されている場合は、リンクの値が空白のドキュメントはすべてそのユーザーに表示されません DocType: Address,Billing,請求 DocType: Email Queue,Not Sent,送信されていません DocType: Web Form,Actions,動作 @@ -982,6 +982,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,クリア apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,日次イベントは、同じ日に終了する必要があります。 DocType: Communication,User Tags,ユーザータグ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,画像を取得中... +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,セットアップ>ユーザー DocType: Workflow State,download-alt,ダウンロード-ALT apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},アプリケーション{0}をダウンロード中 DocType: Communication,Feedback Request,フィードバック要求 @@ -998,7 +999,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,バックアップ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,連絡先を追加 DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,オプション:常にこれらのIDに送ります。新しい行の各メールアドレス -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,詳細を隠す +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,詳細を隠す DocType: Workflow State,Tasks,タスク DocType: Event,Tuesday,火曜日 DocType: Blog Settings,Blog Settings,ブログ設定 @@ -1018,9 +1019,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Pythonファイルを保存先と同じフォルダに保存し、カラムと数値を返却します DocType: DocType,Sort Field,並べ替えフィールド DocType: Razorpay Settings,Razorpay Settings,Razorpay設定 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,フィルタ編集 -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,フィールド{0}の型{1}は必須にすることはできません -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",例:レポートの文書タイプに「ユーザーの権限を適用」がチェックされているにもかかわらず、ユーザーのレポートにユーザー権限が指定されていない場合、該当ユーザーは全てのレポートを閲覧可能となります +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,フィルタ編集 +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,フィールド{0}の型{1}は必須にすることはできません apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,さらに追加 apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,隠すチャート DocType: System Settings,Session Expiry Mobile,セッション有効期限(モバイル) @@ -1035,6 +1035,7 @@ DocType: Communication,Delayed,遅延 apps/frappe/frappe/config/setup.py +128,List of backups available for download,ダウンロード可能なバックアップのリスト apps/frappe/frappe/www/login.html +89,Sign up,サインアップ DocType: Test Runner,Output,出力 +DocType: Email Alert,Set Property After Alert,アラート後のプロパティの設定 apps/frappe/frappe/config/setup.py +226,Add fields to forms.,フォームにフィールドを追加。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,何かがこのサイトのPaypal設定で間違っているように見えます。 DocType: File,rgt,右 @@ -1042,6 +1043,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,リーフ DocType: Portal Menu Item,Portal Menu Item,ポータルメニューアイテム DocType: User Email,Email ID,メールアドレス +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",レポートDocTypeに対して「ユーザー権限の適用」が選択されているが、「ユーザーのレポート」にユーザー権限が定義されていない場合、すべてのレポートがそのユーザーに表示されます DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,クライアントアプリケーションは、ユーザがそれを可能にした後にアクセスする必要がありますリソースのリスト。
例えばプロジェクト DocType: Translation,Translated Text,翻訳された文章 DocType: Contact Us Settings,Query Options,クエリーオプション @@ -1059,7 +1061,7 @@ DocType: Address,Contacts,連絡先 DocType: System Settings,Setup Complete,セットアップ完了 apps/frappe/frappe/config/setup.py +66,Report of all document shares,すべての共有文書のレポート apps/frappe/frappe/www/update-password.html +18,New Password,新しいパスワード -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,フィルター{0}欠落 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,フィルター{0}欠落 apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,自動生成されたコメントを削除することはできません DocType: Website Theme,Style using CSS,CSSを使用したスタイル apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,参照文書型 @@ -1111,7 +1113,7 @@ DocType: User,Block Modules,ブロックモジュール apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,'{1}'の{0}に長さを戻す '{2}'に。長さを設定すると、{3}のデータの切り捨ての原因になりますように。 DocType: Print Format,Custom CSS,カスタムCSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,コメントを追加 -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},無視されます:{0} {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},無視されます:{0} {1} DocType: Address,Gujarat,グジャラート州 apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,自動化されたイベント(スケジューラ)のエラーログ。 apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),有効なカンマ区切り値(CSVファイル)がありません @@ -1120,7 +1122,7 @@ DocType: Email Account,Default Incoming,デフォルト収益 DocType: Workflow State,repeat,繰り返し DocType: Website Settings,Banner,バナー DocType: Role,"If disabled, this role will be removed from all users.",無効にした場合、このロールは、すべてのユーザーから削除されます。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,検索のヘルプ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,検索のヘルプ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,登録されていますが、無効 DocType: DocType,Hide Copy,コピーを非表示にする apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,すべての役割をクリア @@ -1152,7 +1154,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,国 apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,住所 DocType: Communication,Shared,共有済 -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,文書印刷を添付 +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,文書印刷を添付 DocType: Bulk Update,Field,フィールド DocType: Communication,Received,受領 DocType: Social Login Keys,Google Client ID,GoogleのClient ID @@ -1173,12 +1175,12 @@ DocType: Report,Query Report,クエリーレポート DocType: User,Set New Password,新しいパスワードを設定 DocType: User,Github User ID,GitHubのユーザーID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,文書タイプの場合 -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","削除するか、{0}ので、キャンセルすることはできません{1}とリンクされている{2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","削除するか、{0}ので、キャンセルすることはできません{1}とリンクされている{2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},不明なアプリ{0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%sは有効なレポート形式ではありません。レポートの形式は、次の%sのいずれかを\する必要があります DocType: Communication,Chat,チャット -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},フィールド名{0}は行{1}で複数回表示されます +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},フィールド名{0}は行{1}で複数回表示されます apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0}から{1} {2}内の行#に{3} DocType: Communication,Expired,期限切れ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),グリッド内のフィールドの列数(グリッド内の合計の列が11未満でなければなりません) @@ -1188,29 +1190,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,アカウントを apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},不明な印刷形式:{0} DocType: Workflow State,arrow-down,下矢印 apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,折りたたむ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ユーザーは{0}を削除できません:{1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ユーザーは{0}を削除できません:{1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,最終更新日 DocType: Help Article,Likes,いいね! DocType: Website Settings,Top Bar,トップバー DocType: GSuite Settings,Script Code,スクリプトコード apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ユーザーメールを作成する -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,許可が指定されていません +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,許可が指定されていません apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,グローバル設定:ユーザーにのみチェックアイコンを選択することができます apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0}が見つかりません DocType: Custom Role,Custom Role,カスタムロール apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ホーム/テスト フォルダ2 DocType: System Settings,Ignore User Permissions If Missing,不足している場合はユーザー権限を無視 -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,アップロードする前に書類を保存してください +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,アップロードする前に書類を保存してください apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,パスワードを入力 DocType: Dropbox Settings,Dropbox Access Secret,Dropboxのアクセスの秘密 apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,別のコメントの追加 apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,編集DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ニュースレターから退会し -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,フォールドはセクション区切りの前に来なければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,フォールドはセクション区切りの前に来なければなりません apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,最終更新者 DocType: Workflow State,hand-down,手(下) DocType: Address,GST State,GSTの状態 -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}:提出せずにキャンセルを設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}:提出せずにキャンセルを設定することはできません DocType: Website Theme,Theme,テーマ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,エラーが発生しました。 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,認証コードにバインドされたURIをリダイレクト @@ -1229,7 +1231,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,私 DocType: Website Theme,Text Color,テキストの色 DocType: Desktop Icon,Force Show,フォースショー apps/frappe/frappe/auth.py +78,Invalid Request,無効なリクエスト -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,このフォームは入力されていません +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,このフォームは入力されていません apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},セッションの有効期限は {0}のようなフォーマットでなければなりません DocType: Website Sidebar Item,Group,グループ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","新しいページで開くようにするには target=""_blank"" を選択してください。" @@ -1238,7 +1240,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,エンコーディングエラーを無視 DocType: Workflow State,wrench,レンチ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,設定されていません -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,セットアップ>ユーザー DocType: Authentication Log,Date,日付 DocType: Website Settings,Disable Signup,登録を無効にする apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,システムがセットアップされている間お待ちください。しばらく時間がかかる場合があります。 @@ -1249,7 +1250,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,コメントを追加 DocType: DocField,Mandatory,必須 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,モジュールがエクスポートします -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}:基本的なアクセス権が設定されていません +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}:基本的なアクセス権が設定されていません apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,あなたのサブスクリプションは、{0}に有効期限が切れます。 apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},バックアップのダウンロードリンクは、次のメールアドレスに送信されます:{0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",提出、キャンセル、修正の意味 @@ -1262,11 +1263,11 @@ DocType: Desktop Icon,query-report,クエリレポート apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},{0}に割当:{1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,保存したフィルタ DocType: DocField,Percent,割合(%) -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,フィルタを設定してください +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,フィルタを設定してください apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,とリンク DocType: Workflow State,book,本 DocType: Website Settings,Landing Page,ランディングページ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,カスタムスクリプトでエラーが発生しました +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,カスタムスクリプトでエラーが発生しました apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0}の名前 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",インポート要求キュー。時間がかかる場合がありますので、しばらくお待ちください。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,この条件には権限が設定されていません。 @@ -1278,7 +1279,7 @@ DocType: System Settings,Allow Login using Mobile Number,携帯電話番号で apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,あなたはこのリソースにアクセスするための十分な権限がありません。アクセスを得るためにあなたのマネージャーに連絡してください。 DocType: Custom Field,Custom,カスタム apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,様々な基準に基づいてメールでの警告をセットアップします。 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},{0}配下の投稿 +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},{0}配下の投稿 DocType: Email Alert,Send alert if date matches this field's value,日付がこのフィールドの値と一致した場合にアラートを送信 DocType: Workflow,Transitions,移行 apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0}を削除し、すべてのデータを削除しますか? @@ -1287,9 +1288,8 @@ DocType: User,Login After,ログイン後 DocType: Print Format,Monospace,等幅 DocType: Letter Head,Printing,印刷 DocType: Workflow State,thumbs-up,賛成 -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子メールアカウントは設定されません。セットアップ>電子メール>電子メールアカウントから新しい電子メールアカウントを作成してください DocType: DocPerm,DocPerm,文書管理 -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,精度は1と6の間でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,精度は1と6の間でなければなりません apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW:{0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,& DocType: Error Snapshot,Frames,フレーム @@ -1298,7 +1298,7 @@ DocType: About Us Team Member,Image Link,画像リンク DocType: Auto Email Report,Report Filters,レポートフィルタ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,今 DocType: Workflow State,step-backward,戻る -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,サイト設定でDropboxのアクセスキーを設定してください apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,このメールアドレスに送信できるようにするには、このレコードを削除します apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,新しいレコードには必須フィールドのみが必要です。非必須の列は削除することができます。 @@ -1320,8 +1320,7 @@ DocType: File,Is Attachments Folder,添付ファイルフォルダ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,すべて展開 apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,有効なログインIDが必要です。 apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,再オープン -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,あなたが支払いをキャンセルしました -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,有効なCSVファイルを選択してください +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,有効なCSVファイルを選択してください apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} はこの文書を{1}と共有解除しました apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,ドキュメントのステータスを{0}から{1}に変更することはできません DocType: DocType,"Make ""name"" searchable in Global Search",グローバル検索で検索可能にする "名前" @@ -1334,15 +1333,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,元 DocType: Help Category,Help Category,ヘルプカテゴリ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ユーザー{0}無効になっています apps/frappe/frappe/www/404.html +8,Page missing or moved,ページが存在しません(または移動されました) -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,編集{0}のプロパティ DocType: DocType,Route,ルート apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay支払いゲートウェイの設定 DocType: DocField,Name,名前 apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,あなたは、あなたの計画のために、{0}の最大容量を超えています。 {1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ドキュメントを検索する DocType: OAuth Authorization Code,Valid,有効な -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,リンクを開く -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,あなたの言語 +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,リンクを開く +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,あなたの言語 apps/frappe/frappe/desk/form/load.py +46,Did not load,ロードされませんでした apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,行の追加 DocType: Tag Category,Doctypes,文書型 @@ -1358,7 +1356,7 @@ DocType: Address,Lakshadweep Islands,ラクシャディープ島 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,書込可能 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","一部の文書(例:請求書)は、一回で最終変更すべきではありません。文書の最終的な状態は「提出」と呼ばれています。 「提出」は「役割」によって制限することができます。" -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,この記事をエクスポートすることは許可されていません +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,この記事をエクスポートすることは許可されていません apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1項目選択 DocType: Newsletter,Test Email Address,テスト電子メールアドレス DocType: ToDo,Sender,送信者 @@ -1393,7 +1391,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,インポートの.zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ドキュメントID DocType: Print Settings,Letter,手紙 -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Imageフィールドには、画像を添付タイプでなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Imageフィールドには、画像を添付タイプでなければなりません DocType: DocField,Columns,コラム DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},{0}に必要な必須フィールド @@ -1443,7 +1441,7 @@ DocType: DocField,Text Editor,テキストエディタ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,会社概要ページの設定 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,カスタムHTMLを編集 DocType: Error Snapshot,Error Snapshot,エラースナップショット -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,In +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,In DocType: Email Alert,Value Change,値変更 DocType: Standard Reply,Standard Reply,標準返答 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,入力ボックスの幅 @@ -1459,12 +1457,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,タイトルを生成するには、このフィールド名を使用します apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,メールインポート元 apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,ユーザーとして招待 -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,添付ファイルを選択 +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,添付ファイルを選択 apps/frappe/frappe/model/naming.py +94, for {0},{0}のために apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,エラーが発生しました。これを報告してください。 -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,この文書を印刷することが許可されていません。 +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,この文書を印刷することが許可されていません。 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,レポートフィルタテーブル内のフィルタ値を設定してください。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,レポートを読み込み中 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,レポートを読み込み中 apps/frappe/frappe/limits.py +72,Your subscription will expire today.,あなたのサブスクリプションは、今日期限切れになります。 DocType: Page,Standard,標準 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ファイルを添付 @@ -1494,7 +1492,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,地域の拡張 DocType: LDAP Settings,Base Distinguished Name (DN),基本識別名(DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,この会話を残します -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},リンクフィールド{0}に設定されていないオプション +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},リンクフィールド{0}に設定されていないオプション DocType: Customize Form,"Must be of type ""Attach Image""",「画像添付」タイプでなければなりません apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,すべての選択を解除 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},フィールド {0} の「読み取り専用」設定を解除することはできません @@ -1536,9 +1534,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ノート apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,エラーレポート apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,フィードバック条件が一致しません -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,タイムラインのフィールドは、有効なフィールド名でなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,タイムラインのフィールドは、有効なフィールド名でなければなりません DocType: Currency,Symbol,シンボル -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,行 {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,行 {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,新しいパスワードをメールで送信しました apps/frappe/frappe/auth.py +245,Login not allowed at this time,この時点でログインは許可されていません。 DocType: Email Account,Email Sync Option,メール同期オプション @@ -1560,7 +1558,7 @@ DocType: DocField,Text,文章 apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,一般的な問い合わせへの標準的な返答 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,デフォルトの送信 DocType: Workflow State,volume-off,無音 -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},{0}に好か +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},{0}に好か DocType: Footer Item,Footer Item,フッターアイテム ,Download Backups,バックアップダウンロード apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ホーム/テスト フォルダ1 @@ -1593,7 +1591,7 @@ DocType: Web Page,Text Align,行揃え apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},名前には {0} などの特殊文字を含めることはできません DocType: Contact Us Settings,Forward To Email Address,メールアドレスに転送 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,すべてのデータを表示 -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,タイトルフィールドは、有効なフィールド名である必要があります。 apps/frappe/frappe/config/core.py +7,Documents,文書 DocType: Email Flag Queue,Is Completed,完成されました apps/frappe/frappe/www/me.html +22,Edit Profile,プロフィール編集 @@ -1603,7 +1601,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",ここで定義されたフィールド名が値を持っているかのルールが真(例)である場合にのみ、このフィールドが表示されます:myFieldでのeval:doc.myfield == 'マイ値'のeval:doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,今日 +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,今日 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",この設定によりユーザーはリンクのあるドキュメント(ブログ記事など)にアクセス可能となります(例:Blogger)。 DocType: Error Log,Log of Scheduler Errors,スケジューラーのエラーログ DocType: User,Bio,自己紹介 @@ -1627,6 +1625,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1つ星が最低&5つ星が最高の評価であること DocType: Event,Ref Name,参照名 DocType: Web Page,Center,中央 +DocType: Email Alert,Value To Be Set,設定する値 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,第1レベル DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,状態を変更するために割り当てられた文書と役割で許可状況を表す apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,フォームを更新 @@ -1647,18 +1646,18 @@ DocType: DocType,Has Web View,Web表示を持っています apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",文書タイプ名は文字、数字、スペース、アンダースコアで開始する必要があります DocType: Communication,Spam,スパム DocType: Integration Request,Integration Request,統合要求 -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,親愛なる 様 +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,親愛なる 様 DocType: Address,Maharashtra,マハラシュトラ DocType: Address,Accounts User,会計ユーザー DocType: Web Page,HTML for header section. Optional,(オプション)ヘッダー部分のHTML。 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,この機能は、ブランドの新しい、まだ実験的なものです -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,最大 {0} 行許容 +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,最大 {0} 行許容 DocType: Email Unsubscribe,Global Unsubscribe,グローバル配信停止 apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,これは非常に一般的なパスワードです。 apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,表示 DocType: Communication,Assigned,割当済 DocType: Print Format,Js,Jsの -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,印刷形式を選択 +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,印刷形式を選択 apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ショートキーボードパターンが推測するのは簡単です DocType: Portal Settings,Portal Menu,ポータルメニュー apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0}の長さは、1〜1000の間であるべきです @@ -1696,7 +1695,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ユーザーが検索できません apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,無効な出力フォーマット DocType: Custom DocPerm,Apply this rule if the User is the Owner,ユーザーが所有者である場合にこのルールを適用 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,あなたのログインIDになります +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,あなたのログインIDになります apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,レポートを作成 DocType: Note,Notify users with a popup when they log in,彼らがログインするときにポップアップでユーザーに通知 apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1}は存在しないため、マージする新しいターゲットを選択してください @@ -1715,17 +1714,18 @@ DocType: User Permission for Page and Report,Roles Permission,ロールパーミ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,更新 DocType: Error Snapshot,Snapshot View,スナップショットの表示 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,送信する前にニュースレターを保存してください -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},フィールド{0}行{1}のオプションは有効な文書型でなければなりません +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0}年前 +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},フィールド{0}行{1}のオプションは有効な文書型でなければなりません apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,プロパティ編集 DocType: Patch Log,List of patches executed,実行されるパッチのリスト apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} は登録解除済です -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,通信メディア +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,通信メディア DocType: Website Settings,Banner HTML,バナーのHTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',他のお支払い方法を選択してください。 Razorpayは「{0}」通貨で取引をサポートしていません apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,バックアップのためにキューに入れられました。それは時間に数分かかることがあります。 DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,登録のOAuthクライアントアプリ -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} は""{2}""にすることはできません。""{3}""のいずれかでなければなりません" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} は""{2}""にすることはできません。""{3}""のいずれかでなければなりません" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0}または{1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,デスクトップアイコンを表示または非表示 apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,パスワード更新 @@ -1751,7 +1751,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,セクションの後に表示する改行 DocType: Blogger,Short Name,略名 apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},ページ{0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",あなたにALL同期オプションを選択している、これは、サーバーからすべての\読みだけでなく、未読メッセージを再同期されます。これはまた、コミュニケーション(電子メール)の重複\を引き起こす可能性があります。 apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ファイルサイズ @@ -1763,6 +1763,7 @@ DocType: Contact,Purchase Manager,仕入マネージャー DocType: Custom Script,Sample,サンプル apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,未分類タグ DocType: Event,Every Week,毎週 +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子メールアカウントは設定されません。セットアップ>電子メール>電子メールアカウントから新しい電子メールアカウントを作成してください apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,あなたの使用状況を確認したり、より高いプランにアップグレードするには、ここをクリックしてください DocType: Custom Field,Is Mandatory Field,必須フィールド DocType: User,Website User,ウェブサイトのユーザー @@ -1785,16 +1786,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,カスタムサイドバーメニュー DocType: Workflow State,pencil,鉛筆 apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,メッセージや他の通知をチャット。 -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},{0}に設定することはできませんした後に挿入します +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},{0}に設定することはできませんした後に挿入します apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,{0}と共有 apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,メールアカウントの設定は、のためにパスワードを入力してください。 DocType: Workflow State,hand-up,手(上) DocType: Blog Settings,Writers Introduction,作家紹介 DocType: Address,Phone,電話 -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,電子メール警告{0}を評価中にエラー。あなたのテンプレートを修正してください。 +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,電子メール警告{0}を評価中にエラー。あなたのテンプレートを修正してください。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,開始する文書タイプまたは役割を選択してください DocType: Contact,Passive,消極的 DocType: Contact,Accounts Manager,会計管理者 +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,お支払いはキャンセルされます。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ファイルタイプを選択します DocType: Help Article,Knowledge Base Editor,ナレッジベースエディタ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ページが見つかりません @@ -1821,6 +1823,7 @@ DocType: Property Setter,Property Type,属性タイプ DocType: Workflow State,screenshot,スクリーンショット apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,標準レポートを保存することができるのは管理者だけです。名前を変更し、保存してください。 DocType: System Settings,Background Workers,バックグラウンドワーカー +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,フィールド名{0}はメタオブジェクトと競合しています DocType: Deleted Document,Data,データ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,文書ステータス apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},あなたは{0} {1}で作られています @@ -1845,7 +1848,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,ユーザー権限表示 apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,バックアップにアクセスするには、ログインしていること、システムマネージャーの役割を持っていることが必要です apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,残り -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,添付する前に保存してください +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,添付する前に保存してください apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),追加された{0}({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},デフォルトのテーマは{0}に設定されています apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},行{2}のフィールドタイプは{0}から{1}に変更することはできません @@ -1865,11 +1868,10 @@ DocType: System Settings,System Settings,システム設定 apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,セッションの開始に失敗しました apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},このメールは{0}に送信され、{1}にコピーされました DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,セットアップ>電子メール>電子メールアカウントからデフォルトの電子メールアカウントを設定してください -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},新しい{0}を作成する +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},新しい{0}を作成する DocType: Email Rule,Is Spam,スパムはあります apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},レポート {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},{0}を開く +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},{0}を開く DocType: OAuth Client,Default Redirect URI,デフォルトリダイレクトURI DocType: Email Alert,Recipients,受信者 DocType: Workflow State,ok-sign,OKサイン @@ -1887,6 +1889,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,ヘルプ記事 ,Modules Setup,モジュールのセットアップ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,タイプ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,お支払いは失敗しました。 DocType: Communication,Unshared,共有解除済 DocType: Address,Karnataka,カルナタカ apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,モジュールが見つかりません @@ -1933,7 +1936,7 @@ DocType: Website Settings,Brand Image,ブランドイメージ DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",上部のナビゲーションバー・フッター・ロゴ設定 DocType: Web Form Field,Max Value,最大値 -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},行{3}の{2}のレベル{1}の{0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},行{3}の{2}のレベル{1}の{0} DocType: Contact,All,すべて DocType: Email Queue,Recipient,受信者 DocType: Communication,Has Attachment,添付ファイルを持っています @@ -1950,7 +1953,8 @@ DocType: Workflow State,align-right,右寄せ DocType: Auto Email Report,Email To,メール送信先 apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,フォルダ{0}が空ではありません DocType: Page,Roles,役割 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,フィールド{0}は選択できません。 +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},エラー:{0}の値がありません:{1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,フィールド{0}は選択できません。 DocType: System Settings,Session Expiry,セッションの有効期限 DocType: Workflow State,ban-circle,×印 DocType: Email Flag Queue,Unread,未読 @@ -1965,7 +1969,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ユーザーデフォルト apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,新規作成 DocType: Workflow State,chevron-down,山カッコ(下) -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),メール{0}(無効/非購読)に送信されません +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),メール{0}(無効/非購読)に送信されません DocType: Async Task,Traceback,トレースバック DocType: Currency,Smallest Currency Fraction Value,最小通貨分数値 apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,割当先 @@ -1978,12 +1982,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,から DocType: Website Theme,Google Font (Heading),Googleフォント(見出し) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,はじめにグループノードを選択してください -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} {1}で見つける +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} {1}で見つける DocType: OAuth Client,Implicit,暗黙 DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",この文書タイプに対するコミュニケーションの追加(「ステータス」「件名」のフィールドを持っている必要があります) DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",ユーザー一度認証コードを受信するためのURIは、アクセスを可能にするだけでなく、失敗応答。典型的には、RESTエンドポイントは、クライアントアプリケーションによって公開されました。
例えばのhttp://hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,送信後{0}を変更することはできません +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,送信後{0}を変更することはできません DocType: Communication,Comment Type,コメントタイプ DocType: OAuth Client,OAuth Client,OAuthクライアント apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ユーザー @@ -1997,7 +2001,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},{0}のファイル形式を読み取ることができません DocType: Auto Email Report,Filter Data,データのフィルタリング apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,タグを追加 -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,ファイルを添付してください +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ファイルを添付してください apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",名前の設定でいくつかエラーが発生しました。管理者に連絡してください。 apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,受信メールアカウントが正しくない apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2012,11 +2016,11 @@ DocType: Blog Post,Email Sent,メール送信済 DocType: DocField,Ignore XSS Filter,XSSフィルターを無視 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,削除 apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropboxのバックアップの設定 -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,電子メールとして送信 +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,電子メールとして送信 DocType: Website Theme,Link Color,リンク色 apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ユーザー{0}無効にすることはできません apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",システムマネージャーさん -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,あなたの国 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,あなたの国 DocType: Event,Sunday,日曜日 apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,グリッドビューで DocType: Address Template,Template,テンプレート @@ -2024,7 +2028,7 @@ DocType: Address,Delhi,デリー apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP設定 apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,修正 apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPalの支払いゲートウェイの設定 -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:許可された最大の文字があるように '{1}'({3})、切り捨てされます{2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:許可された最大の文字があるように '{1}'({3})、切り捨てされます{2} DocType: OAuth Client,Resource Owner Password Credentials,リソース所有者のパスワード資格情報 DocType: OAuth Client,Response Type,応答タイプ apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,最大ユーザ数 @@ -2041,7 +2045,7 @@ DocType: DocField,Table,表 DocType: File,File Size,ファイル サイズ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,このフォームを送信するにはログインしてください DocType: User,Background Image,背景画像 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",国、時間帯、通貨を選択 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",国、時間帯、通貨を選択 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,の間に DocType: Async Task,Queued,キュー追加済 @@ -2050,6 +2054,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,作成 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},無効なフィルタ:{0} DocType: Email Account,no failed attempts,いいえ失敗した試み +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,デフォルトアドレステンプレートが見つかりません。 「設定」>「印刷とブランド」>「アドレステンプレート」から新しいものを作成してください。 DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,アプリのアクセスキー DocType: OAuth Bearer Token,Access Token,アクセストークン @@ -2067,8 +2072,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHubのユーザー名 DocType: DocType,Image View,画像を見る apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",何かがトランザクション中に間違っていたように見えます。私たちが支払いを確認していないので、ペイパルが自動的にあなたにこの金額を返金いたします。そうでない場合は、私達に電子メールを送信し、相関IDを言及してください:{0}。 -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",パスワードに記号、数字、大文字を含む -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",'{2}'ラベルで、 '{1}'カスタムフィールドに記載された '{0}'フィールドの後に挿入、存在しません。 +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",パスワードに記号、数字、大文字を含む +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",'{2}'ラベルで、 '{1}'カスタムフィールドに記載された '{0}'フィールドの後に挿入、存在しません。 DocType: Workflow State,signal,信号 DocType: DocType,Show Print First,まず印刷を表示 apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter で投稿 @@ -2098,13 +2103,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ファイル '{0}'が見つかりません apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,セクションを削除 DocType: User,Change Password,パスワードを変更する -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},無効なメール:{0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,こんにちは! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},無効なメール:{0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,こんにちは! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,イベント終了は開始後でなければなりません apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},あなたは次のレポートを取得する権限がありません:{0} +DocType: System Settings,Apply Strict User Permissions,厳格なユーザー権限を適用する DocType: DocField,Allow Bulk Edit,一括編集を許可する DocType: Blog Post,Blog Post,ブログの投稿 -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,詳細検索 +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,詳細検索 apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,パスワードのリセット手順をメールで送信しました apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",レベル0は、ドキュメントレベルのアクセス許可、フィールドレベルのアクセス許可の上位レベルです。 @@ -2122,15 +2128,14 @@ DocType: OAuth Bearer Token,Revoked,失効しました DocType: Web Page,Sidebar and Comments,サイドバーとコメント apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",キャンセル後に書類を修正・保存した場合、その書類には新規の番号が付与されます。 DocType: Stripe Settings,Publishable Key,パブリッシュ可能なキー -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0}年前 DocType: Workflow State,circle-arrow-left,円矢印(左) apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redisのキャッシュサーバが実行されていません。管理者/技術サポートにお問い合わせください apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,党の名前 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,新しいレコードを作る +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,新しいレコードを作る apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,検索 DocType: Currency,Fraction,分数 DocType: LDAP Settings,LDAP First Name Field,LDAPファーストネームフィールド -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,既存の添付ファイルから選択 +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,既存の添付ファイルから選択 DocType: Custom Field,Field Description,フィールド説明 apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,プロンプトから名前が設定されていません apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,メールの受信トレイ @@ -2176,11 +2181,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,情報: DocType: Custom Field,Permission Level,権限レベル DocType: User,Send Notifications for Transactions I Follow,次の取引の通知を送信 -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}:書き込みせずに提出・キャンセル・修正を設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}:書き込みせずに提出・キャンセル・修正を設定することはできません apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,添付ファイルを削除してもよろしいですか? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","削除するか、{0}ので、キャンセルすることはできません{1}とリンクされている{2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'の検索結果はありません'

-apps/frappe/frappe/__init__.py +1063,Thank you,ありがとうございます +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","削除するか、{0}ので、キャンセルすることはできません{1}とリンクされている{2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ありがとうございます apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,保存 DocType: Print Settings,Print Style Preview,印刷スタイルプレビュー apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2192,10 +2196,10 @@ DocType: DocField,In List View,リストビュー内 DocType: Email Account,Use TLS,TLSを使用 apps/frappe/frappe/email/smtp.py +24,Invalid login or password,無効なログインまたはパスワード apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,フォームへのカスタムJavaScriptを追加します。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,シリアル番号 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,シリアル番号 ,Role Permissions Manager,役割権限マネージャー apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,新しい印刷形式の名前 -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,クリアアタッチメント +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,クリアアタッチメント apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,必須: ,User Permissions Manager,ユーザー権限マネージャー DocType: Property Setter,New value to be set,新しい値を設定する必要があります @@ -2224,26 +2228,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 日 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ブログの記事を分類。 DocType: Workflow State,Time,時間 DocType: DocField,Attach,添付する -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}は有効なフィールド名のパターンではありません。これは{{}} field_nameにする必要があります。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}は有効なフィールド名のパターンではありません。これは{{}} field_nameにする必要があります。 DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,少なくとも1つの通信がある場合にのみ、フィードバック要求を送信すると、ドキュメントのために利用可能です。 DocType: Custom Role,Permission Rules,権限ルール DocType: GSuite Settings,GSuite Settings,GSuiteの設定 DocType: Address,Links,リンク -apps/frappe/frappe/model/base_document.py +428,Value missing for,値の記入漏れ +apps/frappe/frappe/model/base_document.py +427,Value missing for,値の記入漏れ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,子を追加 -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提出済レコードを削除することはできません。 +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提出済レコードを削除することはできません。 apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,バックアップのサイズ DocType: GSuite Templates,Template Name,テンプレート名 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,文書の新しいタイプ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,文書の新しいタイプ DocType: Custom DocPerm,Read,読む DocType: Role Permission for Page and Report,Role Permission for Page and Report,ページおよびレポートのためのロール権限 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,値を合わせます apps/frappe/frappe/www/update-password.html +14,Old Password,以前のパスワード -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},投稿 {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},投稿 {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",カラムを設定するには、クエリ内にカラムラベルを付与します DocType: Has Domain,Has Domain,ドメインを持っている apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,アカウントを持っていないのですか?サインアップ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}:提出可能になっていない場合は、割当の修正が設定できません +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}:提出可能になっていない場合は、割当の修正が設定できません DocType: Address,Bihar,ビハール apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,役割権限を編集 DocType: Communication,Link DocType,リンク文書タイプ @@ -2342,7 +2346,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,プロフィールにメールアドレスが入力されているかご確認ください apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,この書式に保存されていない変更事項があります。継続する前に、保存してください。 DocType: Address,Telangana,テランガナ -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0}のデフォルトはオプションでなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0}のデフォルトはオプションでなければなりません DocType: Tag Doc Category,Tag Doc Category,タグドクカテゴリ DocType: User,User Image,ユーザー画像 apps/frappe/frappe/email/queue.py +289,Emails are muted,メールはミュートされました @@ -2375,7 +2379,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,次のア DocType: Workflow State,ok,OK DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,これらの値は自動的に処理の段階で更新され、また取引にこの値が含まれているユーザーの権限を制限するのに役立つでしょう。 apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,パブリッシャー -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},**失敗しました:{0}の{1}:{2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},**失敗しました:{0}の{1}:{2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,必須選択 apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ブラウズ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,送信された電子メール @@ -2387,7 +2391,7 @@ DocType: Async Task,Running,実行中 apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,パスワード再設定 apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,以上の{0}の加入者を追加するには、アップグレードしてください DocType: Workflow State,hand-left,手(左) -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,{1}のFIELDTYPE {0}は一意にすることができません +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,{1}のFIELDTYPE {0}は一意にすることができません DocType: Email Account,Use SSL,SSLを使用 DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,編集する印刷形式を選択 @@ -2442,7 +2446,7 @@ DocType: DocField,No Copy,コピーがありません DocType: Workflow State,qrcode,QRコード apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAPを使用してログイン DocType: Web Form,Breadcrumbs,パンくずリスト -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,所有者の場合 +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,所有者の場合 DocType: OAuth Authorization Code,Expiration time,呼気時間 DocType: Web Page,Website Sidebar,ウェブサイトのサイドバー DocType: Web Form,Show Sidebar,表示するサイドバー @@ -2462,7 +2466,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{1}に{0}が見 apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,それ自体で名前と姓を推測するのは簡単です。 apps/frappe/frappe/config/website.py +93,Knowledge Base,知識ベース DocType: Workflow State,briefcase,書類鞄 -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},{0}の値は変更することはできません。 +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},{0}の値は変更することはできません。 DocType: Feedback Request,Is Manual,マニュアルは、 DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",スタイルはボタンの色を表しています。成功 - グリーン、危険 - 赤、逆 - ブラック、主 - ダークブルー、情報 - ライトブルー、警告 - オレンジ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,レコードが読み込まれていません。レポートを実行するためには、クエリレポート/ [レポート名]を使用してください @@ -2539,7 +2543,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,進捗 apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,by 役割 apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,行方不明のフィールド apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,AUTONAMEに無効なフィールド名 '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,文書タイプで検索 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,文書タイプで検索 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,登録後にフィールドを編集可能なままにすることを許可する DocType: Custom DocPerm,Role and Level,役割とレベル DocType: File,Thumbnail URL,サムネイルのURL @@ -2556,18 +2560,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,詳細 DocType: Desktop Icon,Desktop Icon,デスクトップアイコン -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,お支払いが正常に受理されました +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,お支払いが正常に受理されました apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,このページを表示する権限がありません。 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ヒント:ダブルクリックしてセル編集します DocType: Workflow State,bell,鐘 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,電子メール警告のエラー apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,この文書を共有 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,セットアップ>ユーザーパーミッションマネージャ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1}には子ノードがあるため、リーフノードにすることはできません DocType: Communication,Info,情報 -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,添付ファイルを追加します。 +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,添付ファイルを追加します。 DocType: Communication,Email,メール apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,メッセージありがとうございました。 -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,開封確認を送信 +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,開封確認を送信 DocType: Stripe Settings,Stripe Settings,ストライプ設定 DocType: Dropbox Settings,Dropbox Setup via Site Config,サイトConfigを介して、Dropboxのセットアップ apps/frappe/frappe/www/login.py +64,Invalid Login Token,無効なログイントークン @@ -2645,6 +2650,7 @@ DocType: DocType,Web View,Web表示 apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,警告:印刷フォーマットが古いため、API経由で生成することができません DocType: DocField,Print Width,印刷幅 ,Setup Wizard,セットアップウィザード +DocType: Address,GST State Number,GSTの状態番号 DocType: User,Allow user to login only before this hour (0-24),(0-24)以前の時間のみユーザーログインを許可 apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,フォルダが必須です apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2670,7 +2676,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,小さいテキスト apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,管理者がIPアドレス{2}から{1}の{0}にアクセスしました。 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,= -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',オプション「ダイナミックリンク」型のフィールドは「DocType」オプションなどの別のリンクフィールドを指している必要があります +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',オプション「ダイナミックリンク」型のフィールドは「DocType」オプションなどの別のリンクフィールドを指している必要があります DocType: About Us Settings,Team Members Heading,チームメンバーの方針 apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,無効なCSV形式 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,バックアップのセット番号 @@ -2681,7 +2687,7 @@ DocType: Contact,Contact,連絡先 DocType: User,Third Party Authentication,第三者認証 DocType: Website Settings,Banner is above the Top Menu Bar.,バナーは、上部のメニューバーの上にある。 DocType: Razorpay Settings,API Secret,APIの秘密 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,レポートのエクスポート: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,レポートのエクスポート: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1}が存在しません DocType: Email Account,Port,ポート DocType: Print Format,Arial,Arial @@ -2704,7 +2710,7 @@ DocType: Kanban Board Column,Column Name,列名 DocType: Language,Based On,参照元 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,デフォルト作成 apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,フラッペサーバーのURLを確認してください -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,{1}のFIELDTYPE {0}にはインデックスを付けることができません +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,{1}のFIELDTYPE {0}にはインデックスを付けることができません DocType: Communication,Email Account,メールアカウント DocType: Workflow State,Download,ダウンロード DocType: Blog Post,Blog Intro,ブログイントロ @@ -2715,7 +2721,7 @@ DocType: Web Page,Insert Code,コードを挿入 DocType: ToDo,Low,低 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Jinjaテンプレートを使用して文書から動的プロパティを追加することができます apps/frappe/frappe/commands/site.py +451,Invalid limit {0},無効な制限{0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ドキュメントタイプを一覧表示します +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ドキュメントタイプを一覧表示します DocType: Event,Ref Type,参照タイプ apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",新しいレコードをアップロードする場合、「名前」(ID)欄を空白のままにします DocType: Address,Chattisgarh,チャティスガル @@ -2737,25 +2743,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDFで書類を送信 DocType: Web Form,Amount,額 DocType: Workflow Transition,Allowed,許可されている -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,フォールドはフォーム内に1つしかない場合もあります +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,フォールドはフォーム内に1つしかない場合もあります apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0}のファイル形式を書き込めません apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,デフォルト設定に復元しますか? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,無効なホームページ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,不正なログイン。再試行する。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},行{1}のリンクまたはテーブルタイプフィールド{0}に必要なオプション +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},行{1}のリンクまたはテーブルタイプフィールド{0}に必要なオプション DocType: Auto Email Report,Send only if there is any data,任意のデータがある場合にのみ送ります apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,検索条件をリセット -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}:より高いレベルを設定する前に、レベル0の権限を設定しなければなりません +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}:より高いレベルを設定する前に、レベル0の権限を設定しなければなりません apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},{0}が割当をクローズ済 DocType: Integration Request,Remote,リモート -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,計算 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,計算 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,文書タイプを選択してください apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,メール確認 apps/frappe/frappe/www/login.html +42,Or login with,またはでログイン DocType: Error Snapshot,Locals,地元の人々 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},介して通信{0} {1}:{2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} が {1} へのコメントであなたを話題にしています -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例:(55 + 434) / 4 または =Math.sin(Math.PI/2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例:(55 + 434) / 4 または =Math.sin(Math.PI/2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0}が必要です DocType: Integration Request,Integration Type,統合型 DocType: Newsletter,Send Attachements,添付を送信 @@ -2765,14 +2771,14 @@ DocType: DocField,Perm Level,権限レベル apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,今日のカレンダーのイベント DocType: Web Page,Web Page,ウェブページ DocType: Blog Category,Blogger,ブロガー -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},行{1}の{0}型に対して 'グローバル検索中'が許可されていません +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}の{0}型に対して 'グローバル検索中'が許可されていません apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ビューの一覧 -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},日付が形式である必要があります:{0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},日付が形式である必要があります:{0} DocType: Workflow,Don't Override Status,ステータスを上書きしないでください apps/frappe/frappe/www/feedback.html +90,Please give a rating.,評価をお願いします。 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0}フィードバック要求 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,検索語 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,最初のユーザー:あなたです。 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,最初のユーザー:あなたです。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,列を選択 DocType: Translation,Source Text,ソーステキスト apps/frappe/frappe/www/login.py +55,Missing parameters for login,ログインパラメータ不足 @@ -2794,7 +2800,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,インポート DocType: ToDo,Assigned By,割当元 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,カスタマイズフォームを使用してフィールドの制限を設定できます -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,あなたの地域を選択 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,あなたの地域を選択 DocType: Custom DocPerm,Level,レベル DocType: Custom DocPerm,Report,レポート apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,量は0より大きくなければなりません。 @@ -2815,7 +2821,7 @@ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. I 空の場合は、リンクされている全ての文書タイプが、ユーザーの権限を適用するために使用されます。" DocType: Report,Ref DocType,参照文書タイプ apps/frappe/frappe/www/feedback.py +42,Please add a rating,評価を追加してください -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}:キャンセルせずに修正を設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}:キャンセルせずに修正を設定することはできません apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,全ページ DocType: DocType,Is Child Table,子表 apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0}は{1}のいずれかである必要があります @@ -2830,7 +2836,7 @@ DocType: Website Slideshow,This goes above the slideshow.,スライドショー apps/frappe/frappe/config/setup.py +260,Install Applications.,アプリケーションをインストールします。 DocType: Contact,Last Name,お名前(姓) DocType: Event,Private,個人 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,今日のためのアラートはありません +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,今日のためのアラートはありません DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),書類をPDFでメールに添付して送信(推奨) DocType: Web Page,Left,退職 DocType: Event,All Day,一日中 @@ -2844,7 +2850,7 @@ DocType: Event,Send an email reminder in the morning,午前中にリマインダ DocType: Blog Post,Published On,公開 DocType: Contact,Gender,性別 apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,不足している必須の情報: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,フィールド '{0}' は非ユニークの値を持つためユニークに設定することはできません +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,フィールド '{0}' は非ユニークの値を持つためユニークに設定することはできません apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,1リクエストで許可された唯一の200インサート DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,参照タイプ @@ -2857,7 +2863,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,警告サイン DocType: Workflow State,User,ユーザー DocType: Website Settings,"Show title in browser window as ""Prefix - title""",「接頭辞 - タイトル」のようにブラウザでタイトルを表示 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,文書タイプのテキスト +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,文書タイプのテキスト apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,テストを実行する apps/frappe/frappe/handler.py +91,Logged Out,ログアウト apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,もっと... @@ -2882,13 +2888,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,現在の表示 DocType: DocField,Default,初期値 apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}を追加 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}'を検索する +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}'を検索する apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,最初のレポートを保存してください apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0}登録者追加済 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,除外 DocType: Workflow State,star,星 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,カンマで区切られた値 -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},行{0}の通貨表記の最大幅は100pxです +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,カンマで区切られた値 +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},行{0}の通貨表記の最大幅は100pxです apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},{0}のためにあなたの意見をお寄せください apps/frappe/frappe/config/website.py +13,Content web page.,コンテンツのWebページ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,新しい役割の追加 @@ -2906,7 +2912,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,いない有効なLDAPユーザー apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0}は有効ではありません apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',他のお支払い方法を選択してください。 PayPalは「{0}」通貨で取引をサポートしていません -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,検索フィールド{0}は有効ではありません +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,検索フィールド{0}は有効ではありません DocType: Workflow State,ok-circle,OKマーク apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',あなたは「顧客にオレンジ色を見つける」尋ねることによって物事を見つけることができます apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,ユーザーは、自分のレコードへの完全なアクセス権限を持っている必要があります @@ -2965,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,メタをフィルタリング DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,このフォームがウェブページを持っている場合、テキストは、ウェブページへのリンクとして表示されます。リンク先は `page_name`と` parent_website_route`に基づいて自動的に生成されます DocType: Feedback Request,Feedback Trigger,フィードバックトリガー -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,{0}を設定してください +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,{0}を設定してください DocType: Unhandled Email,Message-id,メッセージID DocType: Patch Log,Patch,パッチ DocType: Async Task,Failed,失敗 diff --git a/frappe/translations/km.csv b/frappe/translations/km.csv index 05d8685765..2e6556f8e4 100644 --- a/frappe/translations/km.csv +++ b/frappe/translations/km.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ហ្វេសប៊ុកឈ្មោះអ្ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ចំណាំ: វគ្គច្រើននឹងត្រូវបានអនុញ្ញាតនៅក្នុងករណីនៃឧបករណ៍ចល័ត apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},បានបើកប្រអប់ទទួលអ៊ីម៉ែសម្រាប់អ្នកប្រើ {user} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,មិនអាចផ្ញើអ៊ីម៉ែលនេះទេ។ អ្នកបានឆ្លងកាត់ដែនកំណត់ផ្ញើ {0} អ៊ីម៉ែលសម្រាប់ខែនេះ។ -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,អចិន្ត្រៃ {0} ដាក់ស្នើ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,អចិន្ត្រៃ {0} ដាក់ស្នើ? DocType: Address,County,ខោនធី DocType: Workflow,If Checked workflow status will not override status in list view,ប្រសិនបើមានស្ថានភាពលំហូរការងារដែលបានធីកនឹងមិនបដិសេធស្ថានភាពនៅក្នុងទិដ្ឋភាពបញ្ជី apps/frappe/frappe/client.py +280,Invalid file path: {0},ផ្លូវឯកសារមិនត្រឹមត្រូវ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,សូ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,ដើមឈើ {0} DocType: User,User Emails,អ៊ីមែលរបស់អ្នកប្រើ DocType: User,Username,ឈ្មោះអ្នកប្រើ -apps/frappe/frappe/model/base_document.py +581,Value too big,តម្លៃធំពេក +apps/frappe/frappe/model/base_document.py +580,Value too big,តម្លៃធំពេក DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,រត់ការសាកល្បងស្គ្រីប DocType: Contact,Department,នាយកដ្ឋាន @@ -40,21 +40,21 @@ apps/frappe/frappe/config/core.py +42,Logs,កំណត់ហេតុ DocType: Custom DocPerm,This role update User Permissions for a user,ធ្វើឱ្យទាន់សម័យក្នុងតួនាទីនេះសិទ្ធិអ្នកប្រើសម្រាប់អ្នកប្រើ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},ប្តូរឈ្មោះ {0} DocType: Workflow State,zoom-out,បង្រួម -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,មិនអាចបើក {0} ពេលរបស់វាគឺបើកចំហហរណ៍ +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,មិនអាចបើក {0} ពេលរបស់វាគឺបើកចំហហរណ៍ apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,តារាង {0} មិនអាចទទេ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,ដោយមានសៀវភៅ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,រូបភាព DocType: Communication,Reference Owner,ម្ចាស់ឯកសារយោង DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,អង្គភាពប្រភាគចរាចរដែលតូចជាងគេបំផុត (កាក់) ។ ឧទាហរណ៍ៈ 1 ភាគរយសម្រាប់ប្រាក់ដុល្លារអាមេរិកហើយវាគួរតែត្រូវបានបញ្ចូលជា 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0} {1} ជួរដេក +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0} {1} ជួរដេក apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,សូមផ្តល់ឈ្មោះពេញមួយ។ apps/frappe/frappe/model/document.py +904,Beginning with,ចាប់ផ្តើមជាមួយនឹងការ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ទំព័រគំរូទិន្នន័យដែលបាននាំចូល apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,មាតាឬបិតា DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",ប្រសិនបើបានបើកកម្លាំងពាក្យសម្ងាត់នឹងត្រូវបានអនុវត្តដោយផ្អែកលើតម្លៃអប្បបរមាពាក្យសម្ងាត់ពិន្ទុ។ តម្លៃនៃការក្លាយជារឹងមាំ 2 និង 4 ក្លាយជាមធ្យមខ្លាំងណាស់។ DocType: About Us Settings,"""Team Members"" or ""Management""","សមាជិកក្រុម" ឬ "ការគ្រប់គ្រង" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',លំនាំដើមសម្រាប់ 'ធីក' ប្រភេទនៃវាលត្រូវតែមានទាំង '0' ឬ '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',លំនាំដើមសម្រាប់ 'ធីក' ប្រភេទនៃវាលត្រូវតែមានទាំង '0' ឬ '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,កាលពីម្សិលមិញ DocType: Contact,Designation,ការរចនា DocType: Test Runner,Test Runner,ការធ្វើតេស្តរង @@ -70,7 +70,7 @@ DocType: DocType,Is Published Field,ត្រូវបានចេញផ្ស DocType: Email Group,Email Group,គ្រុបអ៊ីម៉ែល DocType: Note,Seen By,បានឃើញដោយ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,បន្ថែមច្រើន -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,មិនចូលចិត្ត +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,មិនចូលចិត្ត apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,កំណត់ស្លាកបង្ហាញសម្រាប់វាលនេះ apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","លក្ខណៈសម្បត្តិនៃការផ្លាស់ប្តូរវាល (លាក់, បានតែអាន, ការអនុញ្ញាតល)" apps/frappe/frappe/integrations/oauth2.py +109,Define Frappe Server URL in Social Login Keys,កំណត់ URL របស់ម៉ាស៊ីនបម្រើ Frappe ក្នុងគ្រាប់ចុចចូលសង្គម @@ -79,7 +79,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ការ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,អ្នកគ្រប់គ្រងចូលទេ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ជម្រើសនៃការទំនាក់ទំនង, ដូចជា "ការលក់សំណួរជំនួយសំណួរ" លនៅលើបន្ទាត់ថ្មីឬបំបែកដោយសញ្ញាក្បៀស។" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ទាញយក -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,បញ្ចូល +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,បញ្ចូល apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ជ្រើស {0} DocType: Print Settings,Classic,បុរាណ DocType: Desktop Icon,Color,ពណ៌ @@ -120,7 +120,7 @@ DocType: Translation,Translation,ការបកប្រែ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ដំឡើង apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,លោក DocType: Custom Script,Client,ម៉ាស៊ីនភ្ញៀវ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,សំណុំបែបបទនេះត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានផ្ទុកវា +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,សំណុំបែបបទនេះត្រូវបានកែប្រែបន្ទាប់ពីអ្នកបានផ្ទុកវា DocType: User Permission for Page and Report,User Permission for Page and Report,សិទ្ធិអ្នកប្រើសម្រាប់ Page និងរបាយការណ៍ DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format",ប្រសិនបើមិនបានកំណត់ភាពជាក់លាក់រូបិយប័ណ្ណនឹងពឹងផ្អែកលើទ្រង់ទ្រាយលេខ @@ -151,14 +151,14 @@ DocType: Unhandled Email,Reason,ហេតុផល apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,សូមបញ្ជាក់របស់អ្នកប្រើ DocType: Email Unsubscribe,Email Unsubscribe,អ៊ីម៉ែលលុបឈ្មោះ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ជ្រើសរូបភាពនៃទទឹងប្រមាណ 150px មួយជាមួយនឹងផ្ទៃខាងក្រោយមានតម្លាភាពសម្រាប់លទ្ធផលល្អបំផុត។ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,អ្នកប្រើដំបូងនឹងក្លាយជាអ្នកគ្រប់គ្រងប្រព័ន្ធ (អ្នកអាចផ្លាស់ប្តូរនៅពេលក្រោយនេះ) ។ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,អ្នកប្រើដំបូងនឹងក្លាយជាអ្នកគ្រប់គ្រងប្រព័ន្ធ (អ្នកអាចផ្លាស់ប្តូរនៅពេលក្រោយនេះ) ។ ,App Installer,កម្មវិធីដំឡើង DocType: Workflow State,circle-arrow-up,សញ្ញាព្រួញរង្វង់ឡើង apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,ផ្ទុកឡើង ... DocType: Email Domain,Email Domain,ដែនអ៊ីម៉ែល DocType: Workflow State,italic,ទ្រេត apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,សម្រាប់មនុស្សគ្រប់គ្នា -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: មិនអាចកំណត់ការនាំចូលដោយគ្មានបង្កើត +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: មិនអាចកំណត់ការនាំចូលដោយគ្មានបង្កើត apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ព្រឹត្តិការណ៍និងប្រតិទិនផ្សេងទៀត។ apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,វាលទាំងអស់គឺចាំបាច់ដើម្បីដាក់មតិយោបល់។ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,អូសដើម្បីតម្រៀបជួរឈរ @@ -170,8 +170,8 @@ DocType: Portal Settings,Standard Sidebar Menu,ម៉ឺនុយរបារច apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,មិនអាចលុបថតផ្ទះនិងឯកសារភ្ជាប់ apps/frappe/frappe/config/desk.py +19,Files,ឯកសារ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,សិទ្ធិទទួលបានអនុវត្តនៅលើអ្នកប្រើប្រាស់ដោយផ្អែកលើអ្វីដែលពួកគេត្រូវបានផ្ដល់តួនាទី។ -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យផ្ញើអ៊ីម៉ែលដែលទាក់ទងទៅនឹងឯកសារនេះ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,សូមជ្រើសរើសយ៉ាងហោចណាស់ជួរទី 1 ពី {0} ដើម្បីតម្រៀប / ក្រុម +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យផ្ញើអ៊ីម៉ែលដែលទាក់ទងទៅនឹងឯកសារនេះ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,សូមជ្រើសរើសយ៉ាងហោចណាស់ជួរទី 1 ពី {0} ដើម្បីតម្រៀប / ក្រុម DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ធីកប្រអប់នេះប្រសិនបើអ្នកកំពុងធ្វើតេស្តការទូទាត់របស់អ្នកដោយប្រើ API របស់ប្រអប់សាកល្បង Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យលុបស្បែកគេហទំព័រស្តង់ដារ DocType: Feedback Trigger,Example,ឧទាហរណ៏ @@ -202,7 +202,7 @@ DocType: Email Group,Total Subscribers,អតិថិជនសរុប apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",ប្រសិនបើមានតួនាទីមួយមិនមានសិទ្ធិចូលដំណើរការនៅថ្នាក់ 0 កម្រិតខ្ពស់គឺជាគ្មានន័យ។ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,រក្សាទុកជា DocType: Communication,Seen,គេមើលឃើញ -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,បង្ហាញតែការព័ត៌មានលម្អិតបន្ថែមទៀត +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,បង្ហាញតែការព័ត៌មានលម្អិតបន្ថែមទៀត DocType: System Settings,Run scheduled jobs only if checked,រត់ការងារដែលបានកំណត់ពេលតែប៉ុណ្ណោះប្រសិនបើបានគូសធីក apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,នឹងត្រូវបានបង្ហាញតែប៉ុណ្ណោះប្រសិនបើក្បាលត្រូវបានអនុញ្ញាតផ្នែក apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,បណ្ណសារ @@ -218,7 +218,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,បង្ហា apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,ឈ្មោះនិងអ៊ីមែលដែលមានសុពលភាពបានទាមទារ DocType: DocType,Hide Heading,លាក់ក្បាល DocType: Address,Current,នាពេលបច្ចុប្បន្ន -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,ឯកសារដែលពាក់ព័ន្ធ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,ក្រុម DOCTYPE DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,យក-រង្វង់ @@ -234,10 +233,9 @@ DocType: Workflow State,Filter,តម្រង apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} មិនអាចមានតួអក្សរពិសេសដូចជា {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ធ្វើឱ្យទាន់សម័យតម្លៃជាច្រើននៅពេលតែមួយ។ apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,កំហុស: ឯកសារបានត្រូវកែប្រែបន្ទាប់ពីអ្នកបានបើកវា -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញអាសយដ្ឋានលំនាំដើមពុម្ព។ សូមបង្កើតថ្មីមួយពីការដំឡើង> បោះពុម្ពនិងម៉ាក> អាស័យពុម្ព។ apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} បានចេញ: {1} DocType: Address,West Bengal,រដ្ឋ West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: មិនអាចកំណត់ឱយដាក់ស្នើប្រសិនបើមិនបានបញ្ជូន +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: មិនអាចកំណត់ឱយដាក់ស្នើប្រសិនបើមិនបានបញ្ជូន DocType: Social Login Keys,Facebook,ហ្វេសប៊ុក apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",ត្រងដោយ "{0}" DocType: Salutation,Administrator,អ្នកគ្រប់គ្រង @@ -247,7 +245,7 @@ DocType: Blog Settings,Blog Title,ចំណងជើងកំណត់ហេត apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,តួនាទីស្ដង់ដារមិនអាចត្រូវបានបិទ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,ព្រឹត្តិប័ត្រព័ត៌មាន -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,មិនអាចប្រើអនុសំណួរនៅក្នុងលំដាប់ដោយ +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,មិនអាចប្រើអនុសំណួរនៅក្នុងលំដាប់ដោយ DocType: Web Form,Button Help,ជំនួយប៊ូតុង DocType: Kanban Board Column,purple,ស្វាយ DocType: About Us Settings,Team Members,សមាជិកក្រុម @@ -261,7 +259,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,ទទួល apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ជាវរបស់អ្នកបានផុតកំណត់នៅលើ {0} ។ ដើម្បីបន្តជាថ្មី, {1} ។" DocType: Workflow State,plus-sign,បូកសញ្ញា apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ការរៀបចំបានបញ្ចប់រួចទៅហើយ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,កម្មវិធី {0} មិនត្រូវបានដំឡើង +apps/frappe/frappe/__init__.py +889,App {0} is not installed,កម្មវិធី {0} មិនត្រូវបានដំឡើង DocType: Workflow State,Refresh,ធ្វើឱ្យស្រស់ DocType: Event,Public,សាធារណៈ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,គ្មានអ្វីដែលបានបង្ហាញ @@ -269,7 +267,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ចូលចិ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ការគាំទ្រអ៊ីម៉ែល DocType: DocField,Print Hide If No Value,លាក់ប្រសិនបើគ្មានការបោះពុម្ពតម្លៃ DocType: Event,yellow,លឿង -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,ត្រូវបានចេញផ្សាយនៅវាលត្រូវតែជា fieldname ត្រឹមត្រូវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,ត្រូវបានចេញផ្សាយនៅវាលត្រូវតែជា fieldname ត្រឹមត្រូវ apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,ឯកសារភ្ជាប់ផ្ទុកឡើង DocType: Block Module,Block Module,ម៉ូឌុលប្លុក apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ការនាំចេញទំព័រគំរូ @@ -288,7 +286,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,ស DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},គណនីថ្មីត្រូវបានបង្កើតឡើងសម្រាប់អ្នកនៅ {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,សេចក្តីណែនាំអ៊ីមែល -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),បញ្ចូលអ្នកទទួលអ៊ីម៉ែល (s បាន) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),បញ្ចូលអ្នកទទួលអ៊ីម៉ែល (s បាន) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ជួរទង់អ៊ីម៉ែល apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,មិនអាចកំណត់អត្តសញ្ញាណបានបើកចំហ {0} ។ សូមព្យាយាមអ្វីផ្សេងទៀត។ @@ -302,8 +300,8 @@ DocType: Communication,Message ID,លេខសម្គាល់សារ DocType: Property Setter,Field Name,ឈ្មោះវាល apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ក្រុមហ៊ុន Google GSuite មិនបានកំណត់រចនាសម្ព័ន្ធ។ apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ឬ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ឈ្មោះម៉ូឌុល ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ការបន្ត +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ឈ្មោះម៉ូឌុល ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ការបន្ត DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,វិញ្ញាបនបត្រ DocType: User,Tile,ក្រឡាក្បឿង @@ -312,6 +310,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,បង្ហាញកំណែទាំងអស់ DocType: Workflow State,Print,បោះពុម្ព DocType: User,Restrict IP,ដាក់កម្រិត IP របស់ +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ផ្ទាំងគ្រប់គ្រង apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,មិនអាចផ្ញើអ៊ីម៉ែលនៅពេលនេះ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ស្វែងរកឬវាយពាក្យបញ្ជា DocType: Communication,Timeline Name,ឈ្មោះកំណត់ពេលវេលា @@ -322,7 +321,7 @@ DocType: Contact,Sales Master Manager,កម្មវិធីគ្រប់គ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,មួយជំហានមុន apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ឈ្មោះរបស់ប្រភេទឯកសារនេះ (ចង្អុលបង្ហាញ) ដែលអ្នកចង់បានក្នុងវាលនេះនឹងត្រូវបានភ្ជាប់ទៅនឹង។ ឧអតិថិជន DocType: User,Roles Assigned,តួនាទី -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ស្វែងរកជំនួយ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ស្វែងរកជំនួយ DocType: Top Bar Item,Parent Label,មាតាឬបិតាស្លាក apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",សំណួររបស់អ្នកត្រូវបានទទួល។ យើងនឹងឆ្លើយតបវិញក្នុងរយៈពេលខ្លី។ ប្រសិនបើអ្នកមានពត៌មានបន្ថែមសូមឆ្លើយតបទៅនឹងសំបុត្រនេះ។ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,សិទ្ធិត្រូវបានបកប្រែដោយស្វ័យប្រវត្តិទៅជាស្តង់ដានិងរបាយការណ៏ស្វែងរក។ @@ -339,6 +338,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,កែសម្រួលក្បាល DocType: File,File URL,URL ឯកសារ DocType: Version,Table HTML,តារាង HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

បានរកឃើញសម្រាប់ 'គ្មានលទ្ធផល

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,បន្ថែមអតិថិជន apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ព្រឹត្តិការណ៍ជិតមកដល់សម្រាប់ថ្ងៃនេះ DocType: Email Alert Recipient,Email By Document Field,អ៊ីម៉ែលដោយវាលឯកសារ @@ -358,17 +358,16 @@ DocType: Web Form,Amount Based On Field,ចំនួនទឹកប្រាក apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,អ្នកប្រើគឺជាការចាំបាច់បំផុតសម្រាប់ចែករំលែក DocType: DocField,Hidden,ដែលបានលាក់ DocType: Web Form,Allow Incomplete Forms,អនុញ្ញាតឱ្យសំណុំបែបបទមិនពេញលេញ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ត្រូវតែត្រូវបានបង្កើតជាលើកដំបូង +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ត្រូវតែត្រូវបានបង្កើតជាលើកដំបូង apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",ប្រើពាក្យមួយចំនួនជៀសវាងឃ្លាធម្មតា។ DocType: Workflow State,plane,យន្តហោះ -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,អូ។ ការបង់ប្រាក់របស់អ្នកបានបរាជ័យ។ apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ប្រសិនបើអ្នកកំពុងផ្ទុកកំណត់ត្រាថ្មី»ដាក់ឈ្មោះស៊េរី "បានក្លាយទៅជាចាំបាច់, ប្រសិនបើបច្ចុប្បន្ន។" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,យកការជូនដំណឹងសម្រាប់ថ្ងៃនេះ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,យកការជូនដំណឹងសម្រាប់ថ្ងៃនេះ apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE អាចត្រូវបានប្ដូរឈ្មោះតែប៉ុណ្ណោះដោយអ្នកគ្រប់គ្រង apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},តម្លៃផ្លាស់ប្តូរ {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,សូមពិនិត្យមើលអ៊ីមែលរបស់អ្នកសម្រាប់ការផ្ទៀងផ្ទាត់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ដងមិនអាចមាននៅចុងបញ្ចប់នៃសំណុំបែបបទនេះ +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ដងមិនអាចមាននៅចុងបញ្ចប់នៃសំណុំបែបបទនេះ DocType: Communication,Bounced,លោត DocType: Deleted Document,Deleted Name,ឈ្មោះបានលុប apps/frappe/frappe/config/setup.py +14,System and Website Users,ប្រព័ន្ធនិងអ្នកប្រើប្រាស់វេបសាយ @@ -387,13 +386,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ជូរឯកសា DocType: GSuite Templates,Destination ID,លេខសម្គាល់ទិសដៅ DocType: Desktop Icon,List,បញ្ជី DocType: Communication,Link Name,ឈ្មោះតំណភ្ជាប់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,វាល {0} នៅក្នុងជួរដេក {1} មិនអាចត្រូវបានលាក់និងជាចាំបាច់ដោយគ្មានលំនាំដើម +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,វាល {0} នៅក្នុងជួរដេក {1} មិនអាចត្រូវបានលាក់និងជាចាំបាច់ដោយគ្មានលំនាំដើម DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy ឆ្នាំ apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,ពាក្យសម្ងាត់មិនត្រឹមត្រូវ: DocType: Print Settings,Send document web view link in email,ផ្ញើឯកសារតំណទិដ្ឋភាពបណ្ដាញនៅក្នុងអ៊ីមែល apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,មតិរបស់អ្នកសម្រាប់ឯកសារ {0} ត្រូវបានរក្សាទុកដោយជោគជ័យ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,មុន -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} ជួរដេកសម្រាប់ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",អនុរូបិយប័ណ្ណ។ ឧទាហរណ៍ៈ "រយ" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,ជ្រើសឯកសារដែលបានផ្ទុកឡើង @@ -404,10 +403,11 @@ DocType: Desktop Icon,Link,តំណភ្ជាប់ apps/frappe/frappe/utils/file_manager.py +96,No file attached,ឯកសារភ្ជាប់គ្មាន DocType: Version,Version,កំណែ DocType: User,Fill Screen,បំពេញអេក្រង់ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",មិនអាចបង្ហាញរបាយការណ៍របស់មែកធាងនេះដោយសារតែទិន្នន័យដែលបាត់ខ្លួន។ ភាគច្រើនវាត្រូវបានត្រងចេញដោយសារតែសិទ្ធិ។ +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,សូមគណនីអ៊ីម៉ែលដែលបានមកពីការដំឡើងលំនាំដើមដំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",មិនអាចបង្ហាញរបាយការណ៍របស់មែកធាងនេះដោយសារតែទិន្នន័យដែលបាត់ខ្លួន។ ភាគច្រើនវាត្រូវបានត្រងចេញដោយសារតែសិទ្ធិ។ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ជ្រើសឯកសារ apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,កែសម្រួលតាមរយៈការផ្ទុកឡើង -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",ប្រភេទឯកសារ ... ឧអតិថិជន +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",ប្រភេទឯកសារ ... ឧអតិថិជន apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,លក្ខខណ្ឌ '{0}' មិនត្រឹមត្រូវ DocType: Workflow State,barcode,លេខកូដ apps/frappe/frappe/config/setup.py +232,Add your own translations,បន្ថែមបកប្រែផ្ទាល់ខ្លួនរបស់អ្នក @@ -417,7 +417,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,ថ្ងៃពុធ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","ក្រៅពីការមានមូលដ្ឋានតួនាទីសិទ្ធិក្បួន, អ្នកអាចអនុវត្តសិទ្ធិអ្នកប្រើដែលមានមូលដ្ឋានលើ DOCTYPE ។" apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","សិទ្ធិទាំងនេះនឹងត្រូវបានអនុវត្តសម្រាប់ប្រតិបត្តិការទាំងអស់ដែលទិន្នន័យត្រូវបានអនុញ្ញាតត្រូវបានតភ្ជាប់។ ឧទាហរណ៍ប្រសិនបើក្រុមហ៊ុន C ដែលត្រូវបានបន្ថែមទៅសិទ្ធិអ្នកប្រើរបស់អ្នកប្រើ X បាន, អ្នកប្រើ X នឹងត្រឹមតែអាចមើលឃើញជាក្រុមហ៊ុនប្រតិបត្តិការដែលមានគជាតម្លៃដែលបានតភ្ជាប់។" -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,វាលរូបភាពត្រូវតែជា fieldname ត្រឹមត្រូវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,វាលរូបភាពត្រូវតែជា fieldname ត្រឹមត្រូវ DocType: OAuth Client,Token,សញ្ញាសម្ងាត់ DocType: Property Setter,ID (name) of the entity whose property is to be set,លេខសម្គាល់ (ឈ្មោះ) នៃអង្គភាពដែលអចលនទ្រព្យត្រូវបានកំណត់ apps/frappe/frappe/limits.py +82,"To renew, {0}.","ដើម្បីបន្តជាថ្មី, {0} ។" @@ -426,7 +426,7 @@ DocType: Web Form,Sidebar Items,ធាតុរបារចំហៀង apps/frappe/frappe/installer.py +125,App {0} already installed,កម្មវិធី {0} បានដំឡើងរួចហើយ DocType: Workflow State,exclamation-sign,ឧទានសញ្ញា apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,បង្ហាញសិទ្ធិ -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,វាលកំណត់ពេលវេលាត្រូវតែជាតំណមួយឬគេហទំព័រភ្ជាប់ជាថាមវន្ត +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,វាលកំណត់ពេលវេលាត្រូវតែជាតំណមួយឬគេហទំព័រភ្ជាប់ជាថាមវន្ត apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ជួរកាលបរិច្ឆេទ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ទំព័រ {0} {1} នៃ @@ -434,7 +434,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ណែ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","កូនសោអ៊ិនគ្រីបគឺមិនត្រឹមត្រូវ, សូមពិនិត្យមើល site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ដើម្បី DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ទទួលបានជោគជ័យ: {0} ទៅ {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ទទួលបានជោគជ័យ: {0} ទៅ {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,មិនអាចផ្លាស់ប្តូរការបង្ហាញសេចក្តីលម្អិតអ្នកប្រើនៅក្នុង។ សូមចុះឈ្មោះសម្រាប់គណនីថ្មីមួយនៅ https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,សូមចម្លងនេះដើម្បីធ្វើការផ្លាស់ប្តូរ apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,ជំនាន់ឯកសារ PDF បានបរាជ័យដោយសារតែការខូចតំណភ្ជាប់រូបភាព @@ -451,24 +451,24 @@ DocType: DocField,Collapsible,ការដួលរលំ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ដែលបានរក្សាទុក apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,តើអ្នកត្រូវការអ្វីខ្លះជួយជាមួយនឹង? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ជម្រើសសម្រាប់ជ្រើស។ ជម្រើសនៅលើបន្ទាត់ថ្មី។ -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,អចិន្ត្រៃបោះបង់ {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,អចិន្ត្រៃបោះបង់ {0}? DocType: Workflow State,music,តន្ត្រី DocType: Web Page,Settings,ការកំណត់ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,សូមបញ្ជាក់ DOCTYPE DocType: Print Format,Style Settings,ការកំណត់រចនាប័ទ្ម -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,វាលតម្រៀប {0} ត្រូវតែជា fieldname ត្រឹមត្រូវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,វាលតម្រៀប {0} ត្រូវតែជា fieldname ត្រឹមត្រូវ apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ច្រើនទៀត DocType: Contact,Sales Manager,ប្រធានផ្នែកលក់ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,ប្តូរឈ្មោះ DocType: Print Format,Format Data,ទ្រង់ទ្រាយទិន្នន័យ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,ដូចជា +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,ដូចជា DocType: Customize Form Field,Customize Form Field,ប្ដូរតាមវាលសំណុំបែបបទ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,អនុញ្ញាតឱ្យអ្នកប្រើ DocType: OAuth Client,Grant Type,ប្រភេទជំនួយឥតសំណង apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,មើលឯកសារដែលអាចអានបានដោយអ្នកប្រើ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,ឈ្មោះកម្មវិធីមិនត្រូវបានអនុញ្ញាត -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ប្រើ% ដែលជាតួអក្សរជំនួស -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","អ៊ីម៉ែលដែលមិនបានកំណត់រចនាសម្ព័ន្ធដែនសម្រាប់គណនីនេះ, បង្កើតមួយ?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ប្រើ% ដែលជាតួអក្សរជំនួស +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","អ៊ីម៉ែលដែលមិនបានកំណត់រចនាសម្ព័ន្ធដែនសម្រាប់គណនីនេះ, បង្កើតមួយ?" DocType: User,Reset Password Key,គន្លឹះពាក្យសម្ងាត់កំណត់ឡើងវិញ DocType: Email Account,Enable Auto Reply,អនុញ្ញាតការឆ្លើយតបដោយស្វ័យប្រវត្តិ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,មិនដែលឃើញ @@ -511,7 +511,7 @@ DocType: DocField,Set Only Once,កំណត់តែម្តងប៉ុណ្ DocType: Email Queue Recipient,Email Queue Recipient,អ្នកទទួលម៉ែលជួរ DocType: Address,Nagaland,រដ្ឋ Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ឈ្មោះអ្នកប្រើ {0} មានរួចហើយ -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: មិនអាចកំណត់ការនាំចូលជា {1} គឺមិនសំខាន់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: មិនអាចកំណត់ការនាំចូលជា {1} គឺមិនសំខាន់ apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},មានកំហុសក្នុងការអាសយដ្ឋានទំព័រគំរូរបស់អ្នកគឺ {0} DocType: Footer Item,"target = ""_blank""",គោលដៅ = "_blank" DocType: Workflow State,hdd,HDD @@ -523,7 +523,7 @@ DocType: Communication,From Full Name,បានមកពីឈ្មោះពេ apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},អ្នកមិនមានសិទ្ធិចូលដំណើរការទៅរាយការណ៍: {0} DocType: User,Send Welcome Email,ផ្ញើរអ៊ីម៉ែលសូមស្វាគមន៏ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ផ្ទុកឡើងឯកសារ CSV ដែលមានសិទ្ធិអ្នកប្រើទាំងអស់នៅក្នុងទ្រង់ទ្រាយដូចទាញយក។ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,យកតម្រងចេញ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,យកតម្រងចេញ DocType: Address,Daman and Diu,ដាមេននិង Diu DocType: Address,Personal,ផ្ទាល់ខ្លួន apps/frappe/frappe/config/setup.py +113,Bulk Rename,ប្តូរឈ្មោះភាគច្រើន @@ -553,11 +553,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","ស្ដង់ដារប្រភេទឯកសារមិនអាចមានទ្រង់ទ្រាយម៉ាស៊ីនបោះពុម្ពលំនាំដើម, ប្រើទម្រង់បែបបទប្តូរតាមបំណង" DocType: Report,Query,សំណួរ DocType: DocType,Sort Order,តម្រៀបតាមលំដាប់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},«នៅក្នុងទិដ្ឋភាពបញ្ជី 'មិនបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},«នៅក្នុងទិដ្ឋភាពបញ្ជី 'មិនបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} DocType: Custom Field,Select the label after which you want to insert new field.,ជ្រើសស្លាកបន្ទាប់ពីការដែលអ្នកចង់បញ្ចូលវាលថ្មី។ ,Document Share Report,ឯកសារដែលបានចែករំលែករបាយការណ៍ DocType: User,Last Login,ចូលចុងក្រោយ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname ត្រូវបានទាមទារនៅក្នុងជួរដេក {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname ត្រូវបានទាមទារនៅក្នុងជួរដេក {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ជួរឈរ DocType: Custom Field,Adds a custom field to a DocType,បន្ថែមវាលផ្ទាល់ខ្លួនមួយដើម្បីចង្អុលបង្ហាញមួយ DocType: File,Is Home Folder,នេះគឺជាថតផ្ទះ @@ -582,7 +582,7 @@ DocType: File,Folder,ថត DocType: DocField,Index,សន្ទស្សន៍ DocType: Email Group,Newsletter Manager,កម្មវិធីគ្រប់គ្រងព្រឹត្តិប័ត្រព័ត៌មាន apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ជម្រើសទី 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,ប្រកាសទាំងអស់ +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ទៅ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ចូលមានកំហុសក្នុងអំឡុងពេលសំណើ។ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ត្រូវបានបន្ថែមដោយជោគជ័យទៅគ្រុបអ៊ីម៉ែល។ DocType: Address,Uttar Pradesh,រដ្ឋ Uttar Pradesh @@ -592,7 +592,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,ទ្រនិចបង្ហាញ DocType: DocShare,Everyone,មនុស្សគ្រប់គ្នា DocType: Workflow State,backward,ថយក្រោយ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: មានតែមួយក្បួនអនុញ្ញាតឱ្យតួនាទីដូចគ្នាជាមួយ, កំរិតនិង {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: មានតែមួយក្បួនអនុញ្ញាតឱ្យតួនាទីដូចគ្នាជាមួយ, កំរិតនិង {1}" DocType: Email Queue,Add Unsubscribe Link,បន្ថែមឈប់ជាវតំណ apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,គ្មានយោបល់នៅឡើយទេ។ ចាប់ផ្តើមការពិភាក្សាថ្មី។ DocType: Workflow State,share,ចំណែក @@ -610,7 +610,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,មិ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,មើលអតិថិជន apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,លោកស្រី DocType: Website Theme,Background Color,ពណ៌ផ្ទៃខាងក្រោយ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,មានកំហុសខណៈពេលដែលការផ្ញើអ៊ីម៉ែលនោះទេ។ សូមព្យាយាមម្តងទៀត។ +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,មានកំហុសខណៈពេលដែលការផ្ញើអ៊ីម៉ែលនោះទេ។ សូមព្យាយាមម្តងទៀត។ DocType: Portal Settings,Portal Settings,ការកំណត់ផតថល DocType: Web Page,0 is highest,0 គឺខ្ពស់បំផុត apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,តើអ្នកពិតជាចង់ relink ការទំនាក់ទំនងទៅនឹង {0} នេះ? @@ -637,7 +637,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,ទំនាក់ទំនងការកំណត់ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ស្វែងរក ... DocType: Workflow State,text-width,អត្ថបទដែលមានទទឹង -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ដែនកំណត់អតិបរមាសម្រាប់កំណត់ត្រាឯកសារភ្ជាប់នេះបានឈានដល់។ +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ដែនកំណត់អតិបរមាសម្រាប់កំណត់ត្រាឯកសារភ្ជាប់នេះបានឈានដល់។ apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,វាលដែលចាំបាច់ដូចខាងក្រោមនេះត្រូវតែត្រូវបានបំពេញ:
DocType: Email Alert,View Properties (via Customize Form),លក្ខណៈសម្បត្តិទិដ្ឋភាព (ទម្រង់បែបបទតាមបំណងតាមរយៈការ) DocType: Note Seen By,Note Seen By,ចំណាំមើលឃើញដោយ @@ -647,17 +647,17 @@ DocType: Address,Rajasthan,រដ្ឋ Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,របាយការណ៏ដែលត្រូវបានគ្រប់គ្រងរបាយការសាងសង់ដោយផ្ទាល់ដោយសាងសង់របាយការណ៍។ គ្មានអ្វីដែលត្រូវធ្វើ។ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,សូមផ្ទៀងផ្ទាត់អាសយដ្ឋានអ៊ីមែលរបស់អ្នក apps/frappe/frappe/model/document.py +903,none of,គ្មាននរណាម្នាក់ក្នុងចំណោម -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ផ្ញើច្បាប់ចម្លងពីខ្ញុំ +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ផ្ញើច្បាប់ចម្លងពីខ្ញុំ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ផ្ទុកឡើងសិទ្ធិរបស់អ្នកប្រើប្រាស់ DocType: Dropbox Settings,App Secret Key,កម្មវិធីកូនសោសម្ងាត់ apps/frappe/frappe/config/website.py +7,Web Site,គេហទំព័រ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ធាតុបានធីកនឹងត្រូវបានបង្ហាញនៅលើផ្ទៃតុ -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} មិនអាចត្រូវបានកំណត់សម្រាប់ប្រភេទនៅលីវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} មិនអាចត្រូវបានកំណត់សម្រាប់ប្រភេទនៅលីវ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,ក្រុមប្រឹក្សាភិបាល Kanban {0} មិនមានទេ។ apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} បច្ចុប្បន្នកំពុងមើលឯកសារនេះ DocType: ToDo,Assigned By Full Name,បានផ្ដល់ដោយឈ្មោះពេញ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ធ្វើឱ្យទាន់សម័យ -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,របាយការណ៏ដែលមិនអាចត្រូវបានកំណត់សម្រាប់ប្រភេទលីវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,របាយការណ៏ដែលមិនអាចត្រូវបានកំណត់សម្រាប់ប្រភេទលីវ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ថ្ងៃមុន DocType: Email Account,Awaiting Password,រង់ចាំការពាក្យសម្ងាត់ DocType: Address,Address Line 1,អាសយដ្ឋានបន្ទាត់ 1 @@ -667,7 +667,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","អាមេរិកសម្រាប់លំហូរការងារ (ឧសេចក្តីព្រាងអនុម័ត, លុបចោល) ។" DocType: Print Settings,Allow Print for Draft,អនុញ្ញាតឱ្យបោះពុម្ពសម្រាប់សេចក្តីព្រាង apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,កំណត់បរិមាណ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់ +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ដាក់ស្នើឯកសារនេះដើម្បីបញ្ជាក់ DocType: Contact,Unsubscribed,ជាវ apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,កំណត់តួនាទីផ្ទាល់ខ្លួនសម្រាប់ទំព័រនិងរបាយការណ៍ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,ការផ្តល់ចំណាត់ថ្នាក់: @@ -675,7 +675,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ឧបករណ៍នាំចូលទិន្នន័យដែលបាន DocType: Address,Dadra and Nagar Haveli,Dadra និង Nagar មាន apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ឯកសារដែលបានផ្ទុកឡើងសូមរង់ចាំពីរបីវិនាទី។ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ភ្ជាប់រូបភាពរបស់អ្នក +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ភ្ជាប់រូបភាពរបស់អ្នក apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,តម្លៃជួរដេកផ្លាស់ប្តូរ DocType: Workflow State,Stop,បញ្ឈប់ DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,តំណភ្ជាប់ទៅទំព័រដែលអ្នកចង់បើក។ ទុកឱ្យវានៅទទេប្រសិនបើអ្នកចង់ធ្វើឱ្យវាឪពុកម្តាយក្រុម។ @@ -690,7 +690,7 @@ DocType: Print Format,Align Labels to the Left,តម្រឹមទៅឆ្វ DocType: Help Article,Expert,អ្នកជំនាញ DocType: Workflow State,circle-arrow-right,-ព្រួញស្តាំរង្វង់ DocType: LDAP Settings,LDAP Server Url,បម្រើ LDAP & URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,មិនអាចបើកកម្មវិធីពេលដែលរបស់ខ្លួន {0} គឺបើកចំហ +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,មិនអាចបើកកម្មវិធីពេលដែលរបស់ខ្លួន {0} គឺបើកចំហ apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ដាក់ជាជួរសម្រាប់ការដំឡើង DocType: Custom DocPerm,Custom DocPerm,DocPerm ផ្ទាល់ខ្លួន DocType: Newsletter,Send Unsubscribe Link,ផ្ញើឈប់ជាវតំណ @@ -707,7 +707,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,កម្មវិធី {0} បានយកចេញ DocType: Custom DocPerm,Apply User Permissions,អនុវត្តសិទ្ធិរបស់អ្នកប្រើប្រាស់ DocType: User,Modules HTML,ម៉ូឌុលរបស់ HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ការដំឡើង> កម្មវិធីគ្រប់គ្រងសិទ្ធិអ្នកប្រើ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,តម្លៃដែលបាត់ត្រូវការ DocType: DocType,Other Settings,ការកំណត់ផ្សេងទៀត DocType: Social Login Keys,Frappe,Frappe @@ -725,7 +724,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ដែលជាអ្នក apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ឯកសារដែលបានជ្រើសមិនមាន apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,លោកបណ្ឌិត DocType: Event,Event,ព្រឹត្តការណ៍ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","នៅលើ {0}, {1} បានសរសេរថា:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","នៅលើ {0}, {1} បានសរសេរថា:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,មិនអាចលុបវាលស្តង់ដារ។ អ្នកអាចលាក់វាប្រសិនបើអ្នកចង់បាន DocType: Top Bar Item,For top bar,សម្រាប់របារកំពូល apps/frappe/frappe/utils/bot.py +148,Could not identify {0},មិនអាចកំណត់អត្តសញ្ញាណ {0} @@ -739,7 +738,7 @@ DocType: Role,Desk Access,ការចូលដំណើរការលើតុ DocType: Workflow State,minus,ដក apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,កំហុសក្នុងការម៉ាស៊ីនបម្រើ: សូមពិនិត្យមើលកំណត់ហេតុម៉ាស៊ីនបម្រើរបស់អ្នកឬទាក់ទងគាំទ្របច្ចេកវិទ្យា។ apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,អ៊ីម៉ែលសូមស្វាគមន៏ដែលបានផ្ញើ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,ចូរយើងរៀបចំប្រព័ន្ធសម្រាប់ការប្រើប្រាស់ជាលើកដំបូង។ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,ចូរយើងរៀបចំប្រព័ន្ធសម្រាប់ការប្រើប្រាស់ជាលើកដំបូង។ apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,លក្ខណៈពិសេស apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ចុះឈ្មោះរួចហើយ DocType: System Settings,Float Precision,ខ្ទង់ទសភាគ @@ -752,7 +751,7 @@ DocType: Web Form,Allow Print,អនុញ្ញាតឱ្យបោះពុ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,គ្មានកម្មវិធីដំឡើង apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,សម្គាល់វាលនេះចាំបាច់ជាការ DocType: Communication,Clicked,ចុច -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},គ្មានសិទ្ធិ '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},គ្មានសិទ្ធិ '{0}' {1} DocType: User,Google User ID,ក្រុមហ៊ុន Google លេខសម្គាល់អ្នកប្រើ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,គ្រោងនឹងផ្ញើ DocType: DocType,Track Seen,បទឃើញ @@ -821,7 +820,7 @@ DocType: Address,Kerala,រដ្ឋ Kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,សម័យដំណាលគ្នា DocType: OAuth Client,Client Credentials,សារតាំងរបស់ម៉ាស៊ីនភ្ញៀវ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,បើកម៉ូឌុលឬឧបករណ៍ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,បើកម៉ូឌុលឬឧបករណ៍ DocType: Communication,Delivery Status,ស្ថានភាពដឹកជញ្ជូន DocType: Module Def,App Name,ឈ្មោះកម្មវិធី apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,ទំហំឯកសារអតិបរមាដែលត្រូវបានអនុញ្ញាតគឺ {0} មេកាបៃ @@ -833,8 +832,8 @@ DocType: Feedback Request,Reference Communication,ការទំនាក់ទ DocType: Email Queue,Unsubscribe Method,វិធីសាស្រ្តឈប់ជាវ DocType: GSuite Templates,Related DocType,ប្រភេទឯកសារដែលទាក់ទង apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,កែសម្រួលដើម្បីបន្ថែមមាតិកា -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ជ្រើសភាសា -apps/frappe/frappe/__init__.py +510,No permission for {0},មិនមានសិទ្ធិដើម្បី {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ជ្រើសភាសា +apps/frappe/frappe/__init__.py +509,No permission for {0},មិនមានសិទ្ធិដើម្បី {0} DocType: DocType,Advanced,កម្រិតខ្ពស់ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,ហាក់ដូចជា API របស់សោ API ឬជាខុស !!! សម្ងាត់ apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ឯកសារយោង: {0} {1} @@ -856,7 +855,7 @@ DocType: Customize Form,Enter Form Type,បញ្ចូលប្រភេទស apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,គ្មានកំណត់ត្រាដែលបានដាក់ស្លាក។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,យកវាល DocType: User,Send Password Update Notification,ផ្ញើការជូនដំណឹងធ្វើឱ្យទាន់សម័យពាក្យសម្ងាត់ -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","អនុញ្ញាតឱ្យចង្អុលបង្ហាញ, ចង្អុលបង្ហាញ។ ចូរប្រយ័ត្ន!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","អនុញ្ញាតឱ្យចង្អុលបង្ហាញ, ចង្អុលបង្ហាញ។ ចូរប្រយ័ត្ន!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ទ្រង់ទ្រាយប្ដូរតាមបំណងសម្រាប់ការបោះពុម្ព, អ៊ីម៉ែល" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,ធ្វើឱ្យទាន់សម័យទៅកំណែថ្មី DocType: Custom Field,Depends On,អាស្រ័យទៅលើ @@ -949,6 +948,7 @@ apps/frappe/frappe/model/document.py +902,one of,មួយក្នុងចំ apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,សូមជ្រើសឯកសារដើម្បីចម្លង apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,កំពុងពិនិត្យមើលមួយពេល apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,បង្ហាញស្លាក +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ប្រសិនបើការអនុវត្តសិទ្ធិអ្នកប្រើយ៉ាងតឹងរឹងត្រូវបានធីកនិងសិទ្ធិអ្នកប្រើត្រូវបានកំណត់សម្រាប់ប្រភេទឯកសារសម្រាប់អ្នកប្រើមួយ, បន្ទាប់មកឯកសារទាំងអស់ដែលជាកន្លែងដែលតម្លៃនៃតំណភ្ជាប់នេះគឺទទេនឹងមិនត្រូវបានបង្ហាញទៅអ្នកប្រើដែល" DocType: Address,Billing,វិក័យប័ត្រ DocType: Email Queue,Not Sent,មិនបានផ្ញើរ DocType: Web Form,Actions,ការប្រព្រឹត្ដ @@ -978,6 +978,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ការច apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ព្រឹត្តិការណ៍ថ្ងៃជារៀងរាល់គួរបញ្ចប់នៅថ្ងៃដដែលនោះ។ DocType: Communication,User Tags,ស្លាករបស់អ្នកប្រើ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,កំពុងទៅប្រមូលយក .. រូបភាព +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ការដំឡើង> អ្នកប្រើ DocType: Workflow State,download-alt,ទាញយក-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ទាញយកកម្មវិធី {0} DocType: Communication,Feedback Request,មតិអ្នកសំណើ @@ -994,7 +995,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ការបម្រុងទុក apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,បន្ថែមទំនាក់ទំនង DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ស្រេចចិត្ត: ផ្ញើទៅកាន់លេខសម្គាល់ជានិច្ចទាំងនេះ។ អាសយដ្ឋានអ៊ីម៉ែលគ្នានៅលើជួរដេកថ្មីមួយ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,លាក់ពត៌មានលំអិត +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,លាក់ពត៌មានលំអិត DocType: Workflow State,Tasks,ភារកិច្ច DocType: Event,Tuesday,កាលពីថ្ងៃអង្គារ DocType: Blog Settings,Blog Settings,ការកំណត់កំណត់ហេតុបណ្ដាញ @@ -1014,9 +1015,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,សរសេរឯកសារ Python នៅក្នុងថតដូចគ្នានេះដែរដែលជាកន្លែងដែលការនេះត្រូវបានរក្សាទុកហើយត្រឡប់ជួរឈរនិងលទ្ធផល។ DocType: DocType,Sort Field,តម្រៀបវាល DocType: Razorpay Settings,Razorpay Settings,ការកំណត់ Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,កែសម្រួលតម្រង -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,វាល {0} នៃប្រភេទ {1} មិនអាចមានជាចាំបាច់ -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",ឧ។ ប្រសិនបើការអនុវត្តសិទ្ធិអ្នកប្រើគឺត្រូវបានពិនិត្យរបាយការណ៍ DOCTYPE ប៉ុន្តែមិនមានសិទ្ធិអ្នកប្រើត្រូវបានកំណត់សម្រាប់របាយការណ៍សម្រាប់អ្នកប្រើមួយបន្ទាប់មករបាយការណ៍ទាំងអស់ត្រូវបានបង្ហាញទៅកាន់អ្នកប្រើដែល +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,កែសម្រួលតម្រង +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,វាល {0} នៃប្រភេទ {1} មិនអាចមានជាចាំបាច់ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,បន្ថែមទៀត apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,លាក់តារាង DocType: System Settings,Session Expiry Mobile,សម័យដែលបានផុតកំណត់ចល័ត @@ -1031,6 +1031,7 @@ DocType: Communication,Delayed,បានពន្យាពេល apps/frappe/frappe/config/setup.py +128,List of backups available for download,បញ្ជីនៃការបម្រុងអាចទាញយកបាន apps/frappe/frappe/www/login.html +89,Sign up,ចុះឈ្មោះ DocType: Test Runner,Output,ទិន្នផល +DocType: Email Alert,Set Property After Alert,កំណត់អចលនទ្រព្យបន្ទាប់ពីការព្រមាន apps/frappe/frappe/config/setup.py +226,Add fields to forms.,បន្ថែមវាលទៅទម្រង់។ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,មើលទៅដូចជាមានអ្វីមួយគឺជាការខុសដោយការកំណត់រចនាសម្ព័ន្ធលើ Paypal របស់តំបន់បណ្ដាញនេះ។ DocType: File,rgt,rgt @@ -1038,6 +1039,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ស្លឹក DocType: Portal Menu Item,Portal Menu Item,ធាតុម៉ឺនុយវិបផតថល DocType: User Email,Email ID,លេខសម្គាល់អ៊ីម៉ែល +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ប្រសិនបើអ្នកអនុវត្តសិទ្ធិរបស់អ្នកប្រើគឺត្រូវបានពិនិត្យរបាយការណ៍ប្រភេទឯកសារប៉ុន្តែគ្មានសិទ្ធិរបស់អ្នកប្រើត្រូវបានកំណត់សម្រាប់របាយការណ៍សម្រាប់អ្នកប្រើមួយ, បន្ទាប់មករបាយការណ៍ទាំងអស់ត្រូវបានបង្ហាញទៅអ្នកប្រើដែល" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,បញ្ជីនៃធនធានដែលកម្មវិធីអតិថិជននឹងមានសិទ្ធិចូលដំណើរការទៅបន្ទាប់ពីអ្នកប្រើអនុញ្ញាតឱ្យវា។
គម្រោងឧ DocType: Translation,Translated Text,អត្ថបទបកប្រែ DocType: Contact Us Settings,Query Options,ជម្រើសសំណួរ @@ -1055,7 +1057,7 @@ DocType: Address,Contacts,ទំនក់ទំនង DocType: System Settings,Setup Complete,រៀបចំការបំពេញ apps/frappe/frappe/config/setup.py +66,Report of all document shares,របាយការណ៏នៃការចែករំលែកឯកសារទាំងអស់ apps/frappe/frappe/www/update-password.html +18,New Password,ពាក្យសម្ងាត់ថ្មីមួយ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,តម្រង {0} ដែលបាត់ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,តម្រង {0} ដែលបាត់ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,សូមអភ័យទោស! អ្នកមិនអាចលុបមតិបានបង្កើតដោយស្វ័យប្រវត្តិ DocType: Website Theme,Style using CSS,រចនាប័ទ្មប្រើ CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,ចង្អុលបង្ហាញសេចក្តីយោង @@ -1107,7 +1109,7 @@ DocType: User,Block Modules,ម៉ូឌុលប្លុក apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ត្រលប់ប្រវែង {0} សម្រាប់ '{1}' ក្នុង '{2}'; ការកំណត់ប្រវែងដែលជា {3} នឹងបង្កឱ្យ truncation នៃទិន្នន័យ។ DocType: Print Format,Custom CSS,CSS ផ្ទាល់ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,បន្ថែមសេចក្តីអធិប្បាយ -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},មិនអើពើ: {0} ទៅ {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},មិនអើពើ: {0} ទៅ {1} DocType: Address,Gujarat,រដ្ឋ Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,កំណត់ហេតុនៃការមានកំហុសនៅលើព្រឹត្តិការណ៍ដោយស្វ័យប្រវត្តិ (កម្មវិធីកំណត់ពេល & ‧) ។ apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),មិនមែនជាការបំបែកដោយសញ្ញាក្បៀសដែលមានសុពលភាពតម្លៃ (ឯកសារ CSV) @@ -1116,7 +1118,7 @@ DocType: Email Account,Default Incoming,លំនាំដើមចូល DocType: Workflow State,repeat,ការធ្វើឡើងវិញ DocType: Website Settings,Banner,បដា DocType: Role,"If disabled, this role will be removed from all users.","ប្រសិនបើអ្នកបានបិទ, តួនាទីនេះនឹងត្រូវបានយកចេញពីអ្នកប្រើទាំងអស់។" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ជំនួយអំពីស្វែងរក +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ជំនួយអំពីស្វែងរក apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,បានចុះឈ្មោះប៉ុន្តែពិការ DocType: DocType,Hide Copy,លាក់ចម្លង apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ជម្រះតួនាទីទាំងអស់ @@ -1148,7 +1150,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ប្រទេស apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,អាសយដ្ឋាន DocType: Communication,Shared,ចែករំលែក -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ភ្ជាប់បោះពុម្ពឯកសារ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ភ្ជាប់បោះពុម្ពឯកសារ DocType: Bulk Update,Field,វាល DocType: Communication,Received,ទទួលបាន DocType: Social Login Keys,Google Client ID,ក្រុមហ៊ុន Google លេខសម្គាល់អតិថិជន @@ -1169,12 +1171,12 @@ DocType: Report,Query Report,របាយការណ៍សំណួរ DocType: User,Set New Password,កំណត់ពាក្យសម្ងាត់ថ្មី DocType: User,Github User ID,GitHub លេខសម្គាល់អ្នកប្រើ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ប្រសិនបើមានប្រភេទឯកសារ -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","មិនអាចលុបឬលុបចោលទេព្រោះ {0} {1} ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងការ {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","មិនអាចលុបឬលុបចោលទេព្រោះ {0} {1} ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងការ {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},កម្មវិធីមិនស្គាល់ {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% s មិនត្រឹមត្រូវទ្រង់ទ្រាយរបាយការណ៍មួយ។ ទ្រង់ទ្រាយរបាយការណ៍គួរមួយនៃ \% s ដែលខាងក្រោម DocType: Communication,Chat,ការជជែកកំសាន្ត -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ហាក់ដូចជាច្រើនដងក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} ហាក់ដូចជាច្រើនដងក្នុងជួរដេក {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} ពី {1} ទៅ {2} នៅក្នុងជួរដេក # {3} DocType: Communication,Expired,ផុតកំណត់ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ចំនួនជួរឈរសម្រាប់វាលមួយក្នុងក្រឡាចត្រង្គមួយ (ជួរឈរសរុបនៅក្នុងក្រឡាចត្រង្គមួយគួរតែមានតិចជាង 11) @@ -1184,29 +1186,29 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,មានគណន apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},មិនស្គាល់ទ្រង់ទ្រាយបោះពុម្ព: {0} DocType: Workflow State,arrow-down,ព្រួញចុះ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ការដួលរលំ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},អ្នកប្រើមិនត្រូវបានអនុញ្ញាតឱ្យលុប {0} {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},អ្នកប្រើមិនត្រូវបានអនុញ្ញាតឱ្យលុប {0} {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,បន្ទាន់សម័យចុងក្រោយនៅថ្ងៃទី DocType: Help Article,Likes,ចុច Like DocType: Website Settings,Top Bar,របារកំពូល DocType: GSuite Settings,Script Code,កូដស្គ្រីប apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,បង្កើតអ្នកប្រើអ៊ីម៉ែល -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,គ្មានសិទ្ធិដែលបានបញ្ជាក់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,គ្មានសិទ្ធិដែលបានបញ្ជាក់ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ការកំណត់សកល: អ្នកប្រើប្រាស់នឹងអាចជ្រើសរូបតំណាងដែលបានពិនិត្យ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} មិនត្រូវបានរកឃើញ DocType: Custom Role,Custom Role,តួនាទីផ្ទាល់ខ្លួន apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ទំព័រដើម / ការធ្វើតេស្តថត 2 DocType: System Settings,Ignore User Permissions If Missing,មិនអើពើសិទ្ធិអ្នកប្រើប្រសិនបើបាត់ -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,សូមរក្សាទុកឯកសារមុនពេលផ្ទុកឡើង។ +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,សូមរក្សាទុកឯកសារមុនពេលផ្ទុកឡើង។ apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,បញ្ចូលពាក្យសម្ងាត់របស់អ្នក DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ចូលដំណើរការសម្ងាត់ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,បន្ថែមសេចក្តីអធិប្បាយមួយទៀត apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,កែសម្រួល DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ជាវពីព្រឹត្តិបត្រ -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,បត់ត្រូវតែមកមុនពេលដែលបំបែកផ្នែក +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,បត់ត្រូវតែមកមុនពេលដែលបំបែកផ្នែក apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,បានកែប្រែចុងក្រោយដោយ DocType: Workflow State,hand-down,ដៃចុះ DocType: Address,GST State,រដ្ឋជីអេសធី -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: មិនអាចកំណត់ដោយមិនបានដាក់ស្នើបោះបង់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: មិនអាចកំណត់ដោយមិនបានដាក់ស្នើបោះបង់ DocType: Website Theme,Theme,ស្បែក apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,មានកំហុស។ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,ប្តូរទិស URI ដែលបានចងទៅ Auth ក្រម @@ -1225,7 +1227,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ក DocType: Website Theme,Text Color,ពណ៌អត្ថបទ DocType: Desktop Icon,Force Show,កម្លាំងបង្ហាញ apps/frappe/frappe/auth.py +78,Invalid Request,ស្នើសុំមិនត្រឹមត្រូវ -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,សំណុំបែបបទនេះមិនមានបញ្ចូលណាមួយ +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,សំណុំបែបបទនេះមិនមានបញ្ចូលណាមួយ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},វគ្គជួញដូរនៅទីផ្សារផុតកំណត់ត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ {0} DocType: Website Sidebar Item,Group,ជាក្រុម DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ជ្រើសគោលដៅ = "_blank" ដើម្បីបើកនៅក្នុងទំព័រថ្មីមួយ។ @@ -1234,7 +1236,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,មិនអើពើការអ៊ិនកូដកំហុស។ DocType: Workflow State,wrench,ម៉ាឡេត apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,មិនបានកំណត់ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ការដំឡើង> អ្នកប្រើ DocType: Authentication Log,Date,កាលបរិច្ឆេទ DocType: Website Settings,Disable Signup,បិទការចុះឈ្មោះ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,ចូរអង្គុយយ៉ាងតឹងខណៈពេលដែលប្រព័ន្ធរបស់អ្នកត្រូវបានរៀបចំ។ វាអាចចំណាយពេលមួយស្របក់។ @@ -1245,7 +1246,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,បន្ថែមសេចក្តីអធិប្បាយ DocType: DocField,Mandatory,ជាចាំបាច់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ម៉ូឌុលនាំ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: មិនមានសំណុំសិទ្ធិជាមូលដ្ឋាន +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: មិនមានសំណុំសិទ្ធិជាមូលដ្ឋាន apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,ការជាវរបស់អ្នកនឹងផុតកំណត់នៅ {0} ។ apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},ទាញយកតំណសម្រាប់បម្រុងទុករបស់អ្នកនឹងត្រូវបានផ្ញើតាមអ៊ីមែលនៅលើអាសយដ្ឋានអ៊ីម៉ែលដូចខាងក្រោម: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","អត្ថន័យនៃការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្ម" @@ -1258,11 +1259,11 @@ DocType: Desktop Icon,query-report,របាយការណ៍សំណួរ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ដែលបានផ្ដល់ទៅនឹង {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,តម្រងដែលបានរក្សាទុក DocType: DocField,Percent,ភាគរយ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,សូមកំណត់តម្រង +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,សូមកំណត់តម្រង apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ភ្ជាប់ជាមួយនឹង DocType: Workflow State,book,សៀវភៅ DocType: Website Settings,Landing Page,ទំព័រចុះចត -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,កំហុសក្នុងស្គ្រីបផ្ទាល់ខ្លួន +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,កំហុសក្នុងស្គ្រីបផ្ទាល់ខ្លួន apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,ឈ្មោះ {0} apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ស្នើសុំដាក់ជាជួរនាំចូល។ វាអាចចំណាយពេលមួយស្របក់, សូមអត់ធ្មត់។" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,គ្មានសិទ្ធិកំណត់សម្រាប់លក្ខណៈវិនិច្ឆ័យនេះ។ @@ -1274,7 +1275,7 @@ DocType: System Settings,Allow Login using Mobile Number,អនុញ្ញា apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,អ្នកមិនមានសិទ្ធិគ្រប់គ្រាន់ក្នុងការចូលដំណើរការធនធាននេះ។ សូមទាក់ទងអ្នកគ្រប់គ្រងរបស់អ្នកដើម្បីទទួលបានការចូលដំណើរការ។ DocType: Custom Field,Custom,ផ្ទាល់ខ្លួន apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,ការដំឡើងអ៊ីម៉ែលព្រមានផ្អែកលើលក្ខណៈវិនិច្ឆ័យផ្សេងគ្នា។ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},ប្រកាសបានដាក់នៅក្រោម {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},ប្រកាសបានដាក់នៅក្រោម {0} DocType: Email Alert,Send alert if date matches this field's value,ផ្ញើការជូនដំណឹងប្រសិនបើតម្លៃរបស់វាលកាលបរិច្ឆេទផ្គូផ្គងនេះ DocType: Workflow,Transitions,ដំណើរផ្លាស់ប្តូរ apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,យក {0} និងលុបទិន្នន័យទាំងអស់? @@ -1283,9 +1284,8 @@ DocType: User,Login After,ចូលបន្ទាប់ពី DocType: Print Format,Monospace,ដកឃ្លា DocType: Letter Head,Printing,ការបោះពុម្ព DocType: Workflow State,thumbs-up,មេដៃឡើង -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីម៉ែលមិនត្រូវបានដំឡើង។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីការដំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,ភាពជាក់លាក់គួរតែត្រូវបានរវាង 1 និងទី 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,ភាពជាក់លាក់គួរតែត្រូវបានរវាង 1 និងទី 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,និង DocType: Error Snapshot,Frames,ស៊ុម @@ -1294,7 +1294,7 @@ DocType: About Us Team Member,Image Link,រូបភាពភ្ជាប់ DocType: Auto Email Report,Report Filters,តម្រងរបាយការណ៍ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ឥឡូវនេះ DocType: Workflow State,step-backward,ជំហានថយក្រោយ -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,សូមកំណត់កូនសោកំណត់រចនាសម្ព័ន្ធការចូលដំណើរការ Dropbox ក្នុងតំបន់របស់អ្នក apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,លុបកំណត់ត្រានេះដើម្បីឱ្យផ្ញើទៅកាន់អាសយដ្ឋានអ៊ីមែលនេះ apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,មានតែវាលជាចាំបាច់គឺចាំបាច់សម្រាប់កំណត់ត្រាថ្មីមួយ។ អ្នកអាចលុបជួរឈរដែលមិនចាំបាច់ប្រសិនបើអ្នកចង់។ @@ -1316,8 +1316,7 @@ DocType: File,Is Attachments Folder,តើការថតឯកសារភ្ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,ពង្រីកទាំងអស់ apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,លេខសម្គាល់ការចូលមានសុពលភាពបានទាមទារ។ apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,បើកឡើងវិញ -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,អ្នកបានបោះបង់ការទូទាត់ -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,សូមជ្រើសឯកសារ CSV ដែលមានសុពលភាពជាមួយនឹងទិន្នន័យ +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,សូមជ្រើសឯកសារ CSV ដែលមានសុពលភាពជាមួយនឹងទិន្នន័យ apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ចែករំលែកឯកសារអ៊ុនេះជាមួយនឹង {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,ការផ្លាស់ប្តូរស្ថានភាពឯកសារពី {0} ទៅ {1} មិនត្រូវបានអនុញ្ញាត DocType: DocType,"Make ""name"" searchable in Global Search",ធ្វើឱ្យ "ឈ្មោះ" ស្វែងរកបានក្នុងការស្វែងរកសកល @@ -1330,15 +1329,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ត DocType: Help Category,Help Category,ជំនួយចំណាត់ថ្នាក់ក្រុម apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ប្រើ {0} ត្រូវបានបិទ apps/frappe/frappe/www/404.html +8,Page missing or moved,ទំព័របាត់ឬបានផ្លាស់ប្តូរ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,កែសម្រួលលក្ខណៈសម្បត្តិ {0} DocType: DocType,Route,ផ្លូវ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,ការកំណត់ផ្លូវចេញចូលការទូទាត់ Razorpay DocType: DocField,Name,ឈ្មោះ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,អ្នកបានលើសពីទំហំអតិបរមានៃ {0} សម្រាប់ផែនការរបស់អ្នក។ {1} ។ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ស្វែងរកឯកសារនេះ DocType: OAuth Authorization Code,Valid,សុពលភាព -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,បើកតំណ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ភាសារបស់អ្នក +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,បើកតំណ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ភាសារបស់អ្នក apps/frappe/frappe/desk/form/load.py +46,Did not load,មិនបានផ្ទុក apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,បន្ថែមជួរដេក DocType: Tag Category,Doctypes,DOCTYPE @@ -1353,7 +1351,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,ត្រូ DocType: Address,Lakshadweep Islands,កោះ Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,អាចសរសេរ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",ឯកសារជាក់លាក់មួយចំនួនដូចជាវិក័យប័ត្រមួយដែលមិនគួរត្រូវបានផ្លាស់ប្តូរផ្តាច់ព្រ័ត្រម្តង។ នៅរដ្ឋចុងក្រោយសម្រាប់ឯកសារទាំងនោះត្រូវបានគេហៅថាផ្តល់ជូន។ អ្នកអាចដាក់កម្រិតដែលមានតួនាទីអាចដាក់ស្នើ។ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យនាំចេញរបាយការណ៍នេះ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យនាំចេញរបាយការណ៍នេះ apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ធាតុដែលបានជ្រើស DocType: Newsletter,Test Email Address,ការធ្វើតេស្តអាសយដ្ឋានអ៊ីមែល DocType: ToDo,Sender,អ្នកផ្ញើ @@ -1388,7 +1386,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,នាំចូល .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,លេខសម្គាល់ឯកសារ DocType: Print Settings,Letter,លិខិត -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,វាលរូបភាពត្រូវតែមានប្រភេទភ្ជាប់រូបភាព +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,វាលរូបភាពត្រូវតែមានប្រភេទភ្ជាប់រូបភាព DocType: DocField,Columns,ជួរឈរ DocType: Async Task,Succeeded,ទទួលបានជោគជ័យ apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},វាលដែលចាំបាច់តម្រូវឱ្យមាននៅ {0} @@ -1438,7 +1436,7 @@ DocType: DocField,Text Editor,កម្មវិធីនិពន្ធអត apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,ការកំណត់សម្រាប់អំពីយើងទំព័រ។ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,កែសម្រួល HTML ផ្ទាល់ខ្លួន DocType: Error Snapshot,Error Snapshot,រូបថតកំហុសក្នុងការ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ក្នុង +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ក្នុង DocType: Email Alert,Value Change,តម្លៃរបស់ការផ្លាស់ប្តូរ DocType: Standard Reply,Standard Reply,ឆ្លើយតបស្ដង់ដារ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ទទឹងនៃប្រអប់បញ្ចូល @@ -1454,12 +1452,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ប្រើ fieldname នេះដើម្បីបង្កើតចំណងជើង apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,នាំចូលអ៊ីមែលពី apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,អញ្ជើញជាអ្នកប្រើប្រាស់ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,ជ្រើសឯកសារភ្ជាប់ +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,ជ្រើសឯកសារភ្ជាប់ apps/frappe/frappe/model/naming.py +94, for {0},សម្រាប់ {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,មានកំហុស។ សូមរាយការណ៍នេះ។ -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពឯកសារនេះ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបោះពុម្ពឯកសារនេះ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,សូមកំណត់តម្លៃតម្រងក្នុងតារាងរបាយការណ៍តម្រង។ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,កំពុងផ្ទុករបាយការណ៍ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,កំពុងផ្ទុករបាយការណ៍ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ការជាវរបស់អ្នកនឹងផុតកំណត់នៅថ្ងៃនេះ។ DocType: Page,Standard,ស្ដង់ដារ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ភ្ជាប់ឯកសារ @@ -1489,7 +1487,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ផ្នែកបន្ថែមប្រចាំតំបន់ DocType: LDAP Settings,Base Distinguished Name (DN),មូលដ្ឋានឈ្មោះកិត្តិយស (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ទុកឱ្យការសន្ទនានេះ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ជម្រើសមិនត្រូវបានកំណត់សម្រាប់វាលតំណ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ជម្រើសមិនត្រូវបានកំណត់សម្រាប់វាលតំណ {0} DocType: Customize Form,"Must be of type ""Attach Image""",ត្រូវតែមានប្រភេទ "ភ្ជាប់រូបភាព" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,មិនជ្រើសទាំងអស់ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},អ្នកមិនអាចកំណត់ទៅ "បានតែអាន" សម្រាប់វាល {0} @@ -1530,9 +1528,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ចំណាំ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,របាយការណ៍កំហុស & ‧; apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,លក្ខខណ្ឌមតិអ្នកប្រើមិនត្រូវគ្នា -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,វាលកំណត់ពេលវេលាត្រូវតែជា fieldname ត្រឹមត្រូវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,វាលកំណត់ពេលវេលាត្រូវតែជា fieldname ត្រឹមត្រូវ DocType: Currency,Symbol,និមិត្តសញ្ញា -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ជួរដេក # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ជួរដេក # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,ពាក្យសម្ងាត់ថ្មីតាមអ៊ីមែលនៅ apps/frappe/frappe/auth.py +245,Login not allowed at this time,មិនអនុញ្ញាតឱ្យចូលនៅពេលនេះ DocType: Email Account,Email Sync Option,ធ្វើសមកាលកម្មជម្រើសអ៊ីម៉ែល @@ -1554,7 +1552,7 @@ DocType: DocField,Text,អត្ថបទ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,ស្ដង់ដារឆ្លើយទៅនឹងសំណួរទូទៅ។ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,លំនាំដើមផ្ញើ DocType: Workflow State,volume-off,បរិមាណបិទ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},ចូលចិត្តដោយ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},ចូលចិត្តដោយ {0} DocType: Footer Item,Footer Item,ធាតុបាតកថា ,Download Backups,ទាញយកឯកសារបម្រុងទុក apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ទំព័រដើម / ការធ្វើតេស្តថត 1 @@ -1587,7 +1585,7 @@ DocType: Web Page,Text Align,អត្ថបទតម្រឹម apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ឈ្មោះមិនអាចមានតួអក្សរពិសេសដូចជា {0} DocType: Contact Us Settings,Forward To Email Address,បញ្ចូនបន្តទៅអាសយដ្ឋានអ៊ីម៉ែ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,បង្ហាញទិន្នន័យទាំងអស់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,វាលចំណងជើងត្រូវតែជា fieldname ដែលមានសុពលភាព +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,វាលចំណងជើងត្រូវតែជា fieldname ដែលមានសុពលភាព apps/frappe/frappe/config/core.py +7,Documents,ឯកសារ DocType: Email Flag Queue,Is Completed,ត្រូវបានបញ្ចប់ apps/frappe/frappe/www/me.html +22,Edit Profile,កែសម្រួលទម្រង់ @@ -1597,7 +1595,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",វាលនេះនឹងបង្ហាញតែប៉ុណ្ណោះប្រសិនបើបានកំណត់នៅទីនេះ fieldname តម្លៃឬច្បាប់ដែលមាននេះគឺជាការពិត (ឧទាហរណ៍): myfield eval: doc.myfield == 'តម្លៃរបស់ខ្ញុំ' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ថ្ងៃនេះ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ថ្ងៃនេះ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",នៅពេលដែលអ្នកបានកំណត់នេះអ្នកប្រើនឹងត្រូវបានចូលដំណើរការឯកសារដែលអាច (ឧ។ ប្រកាសកំណត់ហេតុបណ្ដាញ) ដែលជាកន្លែងដែលតំណនេះមាន (អ្នកសរសេរប្លុកឧ។ ) ។ DocType: Error Log,Log of Scheduler Errors,កំណត់ហេតុនៃកំហុសកម្មវិធីកំណត់ពេល DocType: User,Bio,ជីវប្រវត្តិ @@ -1621,6 +1619,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,តារា 1 ត្រូវបានទាបបំផុតនិងផ្កាយ 5 ត្រូវបានចំណាត់ថ្នាក់ខ្ពស់បំផុត DocType: Event,Ref Name,ឈ្មោះយោង DocType: Web Page,Center,មជ្ឈមណ្ឌល +DocType: Email Alert,Value To Be Set,តម្លៃត្រូវបានកំណត់ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,កម្រិតទីមួយ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,តំណាងឱ្យបណ្តារដ្ឋដែលត្រូវបានអនុញ្ញាតនៅក្នុងឯកសារមួយដែលបានផ្ដល់តម្លៃនិងតួនាទីរបស់ការផ្លាស់ប្តូររដ្ឋ។ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,សំណុំបែបបទធ្វើឱ្យស្រស់ @@ -1641,18 +1640,18 @@ DocType: DocType,Has Web View,មានមើលបណ្តាញ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",ឈ្មោះ DOCTYPE គួរតែចាប់ផ្តើមជាមួយលិខិតមួយហើយវាគ្រាន់តែអាចមានអក្សរលេខនិងសញ្ញាគូសចន្លោះ DocType: Communication,Spam,សារឥតបានការ DocType: Integration Request,Integration Request,សំណើសមាហរណកម្ម -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,សូមគោរព +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,សូមគោរព DocType: Address,Maharashtra,រដ្ឋ Maharashtra DocType: Address,Accounts User,គណនីអ្នកប្រើប្រាស់ DocType: Web Page,HTML for header section. Optional,HTML សម្រាប់ផ្នែកបឋមកថា។ ស្រេចចិត្ត apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,លក្ខណៈពិសេសនេះគឺជាម៉ាកថ្មីនិងពិសោធន៍នៅតែមាន -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,ជាអតិបរមា {0} ជួរដេកដែលបានអនុញ្ញាត +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,ជាអតិបរមា {0} ជួរដេកដែលបានអនុញ្ញាត DocType: Email Unsubscribe,Global Unsubscribe,លុបឈ្មោះជាសកល apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,នេះគឺជាពាក្យសម្ងាត់ជារឿងធម្មតាណាស់។ apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,មើល DocType: Communication,Assigned,ដែលបានផ្ដល់ DocType: Print Format,Js,jS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,ជ្រើសទ្រង់ទ្រាយម៉ាស៊ីនបោះពុម្ព +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ជ្រើសទ្រង់ទ្រាយម៉ាស៊ីនបោះពុម្ព apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,លំនាំក្តារចុចខ្លីគឺជាការងាយស្រួលក្នុងការទាយ DocType: Portal Settings,Portal Menu,ម៉ឺនុយវិបផតថល apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,ប្រវែងនៃ {0} គួរត្រូវបានរវាង 1 និង 1000 @@ -1690,7 +1689,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,អ្នកប្រើដែលមិនអាចស្វែងរក apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,ទ្រង់ទ្រាយលទ្ធផលមិនត្រឹមត្រូវ DocType: Custom DocPerm,Apply this rule if the User is the Owner,អនុវត្តក្បួននេះបើអ្នកប្រើត្រូវបានម្ចាស់ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,នឹងមានលេខសម្គាល់ការចូលរបស់អ្នក +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,នឹងមានលេខសម្គាល់ការចូលរបស់អ្នក apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,កសាងរបាយការណ៍ DocType: Note,Notify users with a popup when they log in,ជូនដំណឹងអ្នកប្រើដែលមានលេចឡើងនៅពេលដែលពួកគេចូល apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} មិនមានជ្រើសគោលដៅថ្មីដើម្បីបញ្ចូលចូលគ្នា @@ -1709,17 +1708,18 @@ DocType: User Permission for Page and Report,Roles Permission,តួនាទី apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,ធ្វើឱ្យទាន់សម័យ DocType: Error Snapshot,Snapshot View,រូបថតមើល apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,សូមរក្សាទុកព្រឹត្តិប័ត្រព័ត៌មានមុនពេលបញ្ជូន -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ជម្រើសត្រូវតែជា DOCTYPE សុពលភាពសម្រាប់វាល {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ឆ្នាំ (s បាន) មុន +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ជម្រើសត្រូវតែជា DOCTYPE សុពលភាពសម្រាប់វាល {0} នៅក្នុងជួរដេក {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,កែសម្រួលលក្ខណៈសម្បត្តិ DocType: Patch Log,List of patches executed,បញ្ជីនៃបំណះត្រូវបានប្រតិបត្តិ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} មិនជាវរួចទៅហើយ -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ការទំនាក់ទំនងមធ្យម +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ការទំនាក់ទំនងមធ្យម DocType: Website Settings,Banner HTML,បដារបស់ HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',សូមជ្រើសវិធីសាស្ត្រទូទាត់ផ្សេងទៀត។ Razorpay មិនគាំទ្រការតិបត្តិការនៅក្នុងរូបិយប័ណ្ណ '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,បានដាក់ជាជួរសម្រាប់ការបម្រុងទុក។ វាអាចចំណាយពេលពីរបីនាទីទៅមួយម៉ោង។ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,ចុះឈ្មោះកម្មវិធីម៉ាស៊ីនភ្ញៀវ OAuth -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} មិនអាចត្រូវបាន "{2}" ។ វាគួរតែជាផ្នែកមួយនៃ "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} មិនអាចត្រូវបាន "{2}" ។ វាគួរតែជាផ្នែកមួយនៃ "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ឬ {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,បង្ហាញឬលាក់រូបតំណាងផ្ទៃតុ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,ធ្វើឱ្យទាន់សម័យពាក្យសម្ងាត់ @@ -1745,7 +1745,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,បង្ហាញការចុះបន្ទាត់បន្ទាប់ពីផ្នែក DocType: Blogger,Short Name,ឈ្មោះខ្លី apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},ទំព័រ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","អ្នកត្រូវបានជ្រើសជម្រើសនេះធ្វើសមកាលកម្មជាការទាំងអស់, វានឹងសមកាលកម្មឡើងវិញទាំងអស់ \ អានព្រមទាំងសារមិនទាន់អានពីម៉ាស៊ីនបម្រើ។ នេះអាចបណ្តាលចម្លង \ នៃការទំនាក់ទំនង (អ៊ីម៉ែល) ។" apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ទំហំឯកសារ @@ -1757,6 +1757,7 @@ DocType: Contact,Purchase Manager,កម្មវិធីគ្រប់គ្ DocType: Custom Script,Sample,គំរូ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ស្លាក DocType: Event,Every Week,ជារៀងរាល់សប្តាហ៍ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,គណនីអ៊ីម៉ែលមិនត្រូវបានដំឡើង។ សូមបង្កើតគណនីអ៊ីម៉ែលថ្មីពីការដំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,សូមចុចទីនេះដើម្បីពិនិត្យមើលការប្រើប្រាស់របស់អ្នកឬធ្វើឱ្យប្រសើរឡើងចំពោះផែនការមួយខ្ពស់ DocType: Custom Field,Is Mandatory Field,គឺជាវាលដោយបង្ខំ DocType: User,Website User,វេបសាយរបស់អ្នកប្រើប្រាស់ @@ -1779,16 +1780,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,ម៉ឺនុយរបារចំហៀងផ្ទាល់ខ្លួន DocType: Workflow State,pencil,ខ្មៅដៃ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,សារជជែកកំសាន្តនិងការជូនដំណឹងផ្សេងទៀត។ -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},បញ្ចូលបន្ទាប់ពីមិនអាចត្រូវបានកំណត់ជា {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},បញ្ចូលបន្ទាប់ពីមិនអាចត្រូវបានកំណត់ជា {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,ចែករំលែកជាមួយ {0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ការដំឡើងគណនីអ៊ីម៉ែលសូមបញ្ចូលពាក្យសម្ងាត់របស់អ្នកសម្រាប់: DocType: Workflow State,hand-up,ដៃឡើង DocType: Blog Settings,Writers Introduction,អ្នកនិពន្ធសេចក្តីផ្តើម DocType: Address,Phone,ទូរស័ព្ទ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,មានកំហុសខណៈពេលដែលការវាយតំលៃផ្ញើអ៊ីមែលជូនដំណឹង {0} ។ សូមជួសជុលពុម្ពរបស់អ្នក។ +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,មានកំហុសខណៈពេលដែលការវាយតំលៃផ្ញើអ៊ីមែលជូនដំណឹង {0} ។ សូមជួសជុលពុម្ពរបស់អ្នក។ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ជ្រើសប្រភេទឯកសារឬតួនាទីដើម្បីចាប់ផ្តើម។ DocType: Contact,Passive,អកម្ម DocType: Contact,Accounts Manager,ការគ្រប់គ្រងគណនី +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,ការបង់ប្រាក់របស់អ្នកត្រូវបានលុបចោល។ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ជ្រើសប្រភេទឯកសារ DocType: Help Article,Knowledge Base Editor,កម្មវិធីនិពន្ធចំនេះដឹងមូលដ្ឋាន apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,រកមិនឃើញទំព័រ @@ -1815,6 +1817,7 @@ DocType: Property Setter,Property Type,ប្រភេទអចលនទ្រ DocType: Workflow State,screenshot,រូបថតអេក្រង់ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,មានតែអ្នកគ្រប់គ្រងអាចរក្សាទុករបាយការណ៍ស្តង់ដារមួយ។ សូមប្តូរឈ្មោះនិងរក្សាទុក។ DocType: System Settings,Background Workers,កម្មករផ្ទៃខាងក្រោយ +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} ការប៉ះទង្គិចជាមួយវត្ថុមេតា DocType: Deleted Document,Data,ទិន្នន័យដែលបាន apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ស្ថានភាពឯកសារ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},អ្នកបានធ្វើ {0} {1} នៃ @@ -1839,7 +1842,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,សិទ្ធិបង្ហាញអ្នកប្រើប្រាស់ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,អ្នកត្រូវការដើម្បីត្រូវបានកត់ឈ្មោះចូលនិងមានតួនាទីនៃប្រព័ន្ធអ្នកគ្រប់គ្រងដើម្បីអាចចូលដំណើរការបានព័ត៌មានបម្រុងទុក។ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ដែលនៅសល់ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។ +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,សូមរក្សាទុកមុនពេលភ្ជាប់។ apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),បន្ថែម {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ស្បែកលំនាំដើមគឺត្រូវបានកំណត់នៅក្នុង {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype មិនអាចត្រូវបានផ្លាស់ប្តូរពី {0} ទៅ {1} នៅក្នុងជួរ {2} @@ -1860,11 +1863,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ចាប apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ចាប់ផ្ដើមសម័យបានបរាជ័យ apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},អ៊ីម៉ែលនេះបានផ្ញើទៅ {0} និងបានចម្លងទៅ {1} DocType: Workflow State,th,ទី -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,សូមគណនីអ៊ីម៉ែលដែលបានមកពីការដំឡើងលំនាំដើមដំឡើង> អ៊ីមែល> គណនីអ៊ីម៉ែល -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},បង្កើតថ្មីមួយ {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},បង្កើតថ្មីមួយ {0} DocType: Email Rule,Is Spam,នេះគឺជាសារឥតបានការ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},របាយការណ៍ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ការបើកចំហរ {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ការបើកចំហរ {0} DocType: OAuth Client,Default Redirect URI,ប្ដូរទិស URI លំនាំដើម DocType: Email Alert,Recipients,អ្នកទទួល DocType: Workflow State,ok-sign,អីសញ្ញា @@ -1882,6 +1884,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,អត្ថបទជំនួយ ,Modules Setup,ម៉ូឌុលការរៀបចំ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ប្រភេទ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,ការបង់ប្រាក់របស់អ្នកបានបរាជ័យ។ DocType: Communication,Unshared,មិនចែករំលែក DocType: Address,Karnataka,កាណាតាកា apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,រកមិនឃើញម៉ូឌុល @@ -1929,7 +1932,7 @@ DocType: Website Settings,Brand Image,រូបភាពយីហោ DocType: Print Settings,A4,រថយន្ត A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",ការរៀបចំនៃរបាររុករកកំពូលរបស់បាតកថានិងស្លាកសញ្ញា។ DocType: Web Form Field,Max Value,តម្លៃអតិបរមា -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},សម្រាប់ {0} នៅក្នុងកម្រិត {1} នៅក្នុង {2} នៅក្នុងជួរដេក {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},សម្រាប់ {0} នៅក្នុងកម្រិត {1} នៅក្នុង {2} នៅក្នុងជួរដេក {3} DocType: Contact,All,ទាំងអស់ DocType: Email Queue,Recipient,អ្នកទទួល DocType: Communication,Has Attachment,មានឯកសារភ្ជាប់ @@ -1946,7 +1949,8 @@ DocType: Workflow State,align-right,តម្រឹមស្តាំ DocType: Auto Email Report,Email To,ផ្ញើអ៊ីមែលទៅ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ថត {0} គឺមិនទទេ DocType: Page,Roles,តួនាទី -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,វាល {0} គឺជាការមិនជ្រើស។ +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},កំហុស: បាត់ខ្លួនសម្រាប់តម្លៃ {0} {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,វាល {0} គឺជាការមិនជ្រើស។ DocType: System Settings,Session Expiry,ផុតកំណត់សម័យប្រជុំ DocType: Workflow State,ban-circle,ការហាមឃាត់-រង្វង់ DocType: Email Flag Queue,Unread,មិនទាន់អាន @@ -1961,7 +1965,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,លំនាំដើមអ្នកប្រើ apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,បង្កើតថ្មី DocType: Workflow State,chevron-down,ក្រុមហ៊ុន Chevron ចុះ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),អ៊ីម៉ែលមិនត្រូវបានបញ្ជូនទៅនឹង {0} (មិនជាវ / បិទ) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),អ៊ីម៉ែលមិនត្រូវបានបញ្ជូនទៅនឹង {0} (មិនជាវ / បិទ) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,តម្លៃប្រភាគតូចជាងគេបំផុតរូបិយប័ណ្ណ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ផ្ដល់ទៅឱ្យ @@ -1972,12 +1976,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,ចាប់ពី DocType: Website Theme,Google Font (Heading),នឹង Google Font (កណ្តាល) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,ជ្រើសថ្នាំងជាក្រុមមួយជាលើកដំបូង។ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},សែ្វងរកនៅ {0} {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},សែ្វងរកនៅ {0} {1} DocType: OAuth Client,Implicit,ជាក់ច្បាស់ DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",បន្ថែមខាងចុងជាការទំនាក់ទំនងប្រឆាំងនឹងការចង្អុលបង្ហាញនេះ (ត្រូវតែមានវាល "ស្ថានភាព" "ប្រធានបទ") DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",URI ដែលសំរាប់ការទទួលកូដអនុញ្ញាតពេលដែលអ្នកប្រើអនុញ្ញាតឱ្យចូលដំណើរការដូចជាការឆ្លើយតបបរាជ័យ។ ជាធម្មតាជាចំណុចបញ្ចប់សម្រាកប៉ះពាល់ដោយម៉ាស៊ីនភ្ញៀវកម្មវិធីនេះ។
ឧ http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរ {0} បន្ទាប់ពីការដាក់ស្នើ +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរ {0} បន្ទាប់ពីការដាក់ស្នើ DocType: Communication,Comment Type,ប្រភេទការអត្ថាធិប្បាយបានទេ DocType: OAuth Client,OAuth Client,អតិថិជន OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,អ្នកប្រើប្រាស់ @@ -1992,7 +1996,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,ទិន្នន័យតម្រង DocType: Auto Email Report,Filter Data,ទិន្នន័យតម្រង apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,បន្ថែមស្លាក -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,សូមភ្ជាប់ឯកសារមួយជាលើកដំបូង។ +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,សូមភ្ជាប់ឯកសារមួយជាលើកដំបូង។ apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","មានកំហុសមួយចំនួនការកំណត់ឈ្មោះនេះត្រូវបានគេ, សូមទាក់ទងអ្នកគ្រប់គ្រង" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,គណនីអ៊ីម៉ែលចូលមិនត្រឹមត្រូវ apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2007,11 +2011,11 @@ DocType: Blog Post,Email Sent,អ៊ីម៉ែល DocType: DocField,Ignore XSS Filter,មិនអើពើតម្រង XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,បានយកចេញ apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,កំណត់ការបម្រុងទុក Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ផ្ញើជាអ៊ីម៉ែល +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ផ្ញើជាអ៊ីម៉ែល DocType: Website Theme,Link Color,តំណពណ៌ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,{0} អ្នកប្រើមិនអាចត្រូវបានបិទ apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",ប្រព័ន្ធអ្នកគ្រប់គ្រងការជាទីគោរព -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ប្រទេសរបស់អ្នក +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ប្រទេសរបស់អ្នក DocType: Event,Sunday,កាលពីថ្ងៃអាទិត្យ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ក្នុងក្រឡាចត្រង្គមើល DocType: Address Template,Template,ទំព័រគំរូ @@ -2019,7 +2023,7 @@ DocType: Address,Delhi,ដេលី apps/frappe/frappe/config/integrations.py +48,LDAP Settings,ការកំណត់ LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,ការធ្វើវិសោធនកម្មច្បាប់ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,ការកំណត់ការទូទាត់បានតាមរយៈ -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) នឹងទទួលបានកាត់ឱ្យខ្លី, ដែលជាតួអក្សរអតិបរមាដែលត្រូវបានអនុញ្ញាតគឺ {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) នឹងទទួលបានកាត់ឱ្យខ្លី, ដែលជាតួអក្សរអតិបរមាដែលត្រូវបានអនុញ្ញាតគឺ {2}" DocType: OAuth Client,Resource Owner Password Credentials,ម្ចាស់ធនធានធម្មលិខិតសម្គាល់ពាក្យសម្ងាត់ DocType: OAuth Client,Response Type,ប្រភេទឆ្លើយតប apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,អ្នកប្រើអតិបរមា @@ -2036,7 +2040,7 @@ DocType: DocField,Table,តារាង DocType: File,File Size,ទំហំឯកសារ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,អ្នកត្រូវតែចូលក្នុងការដាក់ស្នើសំណុំបែបបទនេះ DocType: User,Background Image,រូបភាពផ្ទៃខាងក្រោយ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","ជ្រើសប្រទេស, ម៉ោងក្នុងតំបន់និងរូបិយវត្ថុរបស់អ្នក" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","ជ្រើសប្រទេស, ម៉ោងក្នុងតំបន់និងរូបិយវត្ថុរបស់អ្នក" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,រវាង DocType: Async Task,Queued,បានដាក់ជាជួរ @@ -2045,6 +2049,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,បង្កើត apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},តម្រងមិនត្រឹមត្រូវ: {0} DocType: Email Account,no failed attempts,ការបរាជ័យនោះទេ +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,រកមិនឃើញអាសយដ្ឋានលំនាំដើមពុម្ព។ សូមបង្កើតថ្មីមួយពីការដំឡើង> បោះពុម្ពនិងម៉ាក> អាស័យពុម្ព។ DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,ការចូលដំណើរការកម្មវិធីគន្លឹះ DocType: OAuth Bearer Token,Access Token,ការចូលដំណើរការ Token @@ -2062,8 +2067,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,ឈ្មោះអ្នកប្រើ GitHub DocType: DocType,Image View,មើលរូបភាព apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","មើលទៅដូចជាមានអ្វីមួយខុសក្នុងអំឡុងពេលប្រតិបត្តិការនេះ។ ចាប់តាំងពីពេលដែលយើងបានមិនបានបញ្ជាក់ថាការទូទាត់, PayPal នឹងបង្វិលសងវិញអ្នកដោយស្វ័យប្រវត្តិចំនួននេះ។ ប្រសិនបើវាមិន, សូមផ្ញើអ៊ីម៉ែលនិងការនិយាយអំពីការជាប់ទាក់ទងគ្នាលេខសម្គាល់: {0} ។" -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",រួមបញ្ចូលនិមិត្តសញ្ញាលេខនិងអក្សរមូលធននៅក្នុងពាក្យសម្ងាត់ -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",បញ្ចូលបន្ទាប់ពីវាល '{0}' បានរៀបរាប់នៅក្នុងវាលផ្ទាល់ខ្លួន '{1}' ដោយមានស្លាក '{2} "មិនមាន +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",រួមបញ្ចូលនិមិត្តសញ្ញាលេខនិងអក្សរមូលធននៅក្នុងពាក្យសម្ងាត់ +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",បញ្ចូលបន្ទាប់ពីវាល '{0}' បានរៀបរាប់នៅក្នុងវាលផ្ទាល់ខ្លួន '{1}' ដោយមានស្លាក '{2} "មិនមាន DocType: Workflow State,signal,សញ្ញា DocType: DocType,Show Print First,បង្ហាញការបោះពុម្ពជាលើកដំបូង apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,ចុច Ctrl + Enter ដើម្បីប្រកាស @@ -2094,14 +2099,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ឯកសារ '{0} "រកមិនឃើញ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,យកផ្នែកទី DocType: User,Change Password,ផ្លាស់ប្តូរពាក្យសម្ងាត់ -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},អ៊ីមែលមិនត្រឹមត្រូវ: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ជំរាបសួរ! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},អ៊ីមែលមិនត្រឹមត្រូវ: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ជំរាបសួរ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ការបញ្ចប់ព្រឹត្តិការណ៍មួយត្រូវតែមានបន្ទាប់ពីការចាប់ផ្តើម apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},អ្នកមិនមានសិទ្ធិដើម្បីទទួលបានរបាយការណ៍នៅលើ: {0} +DocType: System Settings,Apply Strict User Permissions,អនុវត្តសិទ្ធិរបស់អ្នកប្រើយ៉ាងតឹងរឹង DocType: DocField,Allow Bulk Edit,អនុញ្ញាតការកែសម្រួលជាដុំ DocType: DocField,Allow Bulk Edit,អនុញ្ញាតការកែសម្រួលជាដុំ DocType: Blog Post,Blog Post,ភ្នំពេញប៉ុស្តិ៍កំណត់ហេតុបណ្ដាញ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ស្វែងរកកំរិតខ្ពស់ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ស្វែងរកកំរិតខ្ពស់ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,សេចក្តីណែនាំអំពីការកំណត់ពាក្យសម្ងាត់ត្រូវបានគេបញ្ជូនទៅកាន់អ៊ីម៉ែលរបស់អ្នក apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",កម្រិត 0 គឺសម្រាប់សិទ្ធិកម្រិតឯកសារ \ កម្រិតខ្ពស់សម្រាប់សិទ្ធិកម្រិតវាល។ @@ -2120,16 +2126,15 @@ DocType: Web Page,Sidebar and Comments,របារចំហៀងនិងក apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",នៅពេលដែលអ្នកធ្វើវិសោធនកម្មឯកសារមួយបន្ទាប់ពីការបោះបង់និងរក្សាទុកវាវានឹងទទួលបានមួយចំនួនថ្មីដែលជាកំណែនៃចំនួនចាស់។ DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ DocType: Stripe Settings,Publishable Key,គន្លឹះបោះពុម្ពផ្សាយ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ឆ្នាំ (s បាន) មុន DocType: Workflow State,circle-arrow-left,សញ្ញាព្រួញរង្វង់-ចាកចេញ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,ម៉ាស៊ីនបម្រើឃ្លាំងសម្ងាត់ Redis មិនកំពុងរត់ទេ។ សូមទាក់ទងអ្នកគ្រប់គ្រង / គាំទ្របច្ចេកវិទ្យា apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,ឈ្មោះគណបក្ស -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ធ្វើឱ្យកំណត់ត្រាថ្មី +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ធ្វើឱ្យកំណត់ត្រាថ្មី apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ស្វែងរក apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ស្វែងរក DocType: Currency,Fraction,ប្រភាគ DocType: LDAP Settings,LDAP First Name Field,ឈ្មោះវាលដំបូងរបស់ LDAP -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,ឯកសារភ្ជាប់ដែលមានស្រាប់ជ្រើសពី +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ឯកសារភ្ជាប់ដែលមានស្រាប់ជ្រើសពី DocType: Custom Field,Field Description,វាលទិសដៅ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,មិនបានកំណត់តាមរយៈការពីឈ្មោះវីនដូ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ប្រអប់ទទួលអ៊ីម៉ែល @@ -2175,11 +2180,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,ពត៌មាន: DocType: Custom Field,Permission Level,កម្រិតសិទ្ធិ DocType: User,Send Notifications for Transactions I Follow,ផ្ញើការជូនដំណឹងសម្រាប់ប្រតិបត្តិការខ្ញុំសូមអនុវត្ត -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: មិនអាចកំណត់ការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្មដោយគ្មានការសរសេរ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: មិនអាចកំណត់ការដាក់ស្នើ, បោះបង់ធ្វើវិសោធនកម្មដោយគ្មានការសរសេរ" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,តើអ្នកពិតជាចង់លុបឯកសារភ្ជាប់ហើយឬនៅ? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","មិនអាចលុបឬលុបចោលទេព្រោះ {0} {1} ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងការ {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

បានរកឃើញសម្រាប់ 'គ្មានលទ្ធផល

-apps/frappe/frappe/__init__.py +1063,Thank you,សូមអរគុណអ្នក +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","មិនអាចលុបឬលុបចោលទេព្រោះ {0} {1} ត្រូវបានផ្សារភ្ជាប់ជាមួយនឹងការ {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,សូមអរគុណអ្នក apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ការរក្សាទុកដោយ DocType: Print Settings,Print Style Preview,បោះពុម្ពរចនាប័ទ្មមើលជាមុន apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2191,10 +2195,10 @@ DocType: DocField,In List View,នៅក្នុងទិដ្ឋភាពប DocType: Email Account,Use TLS,ការប្រើប្រាស់ឱ្យ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ការចូលឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,បន្ថែម JavaScript ផ្ទាល់ខ្លួនទៅទម្រង់។ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,លេខសំគាល់ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,លេខសំគាល់ ,Role Permissions Manager,កម្មវិធីគ្រប់គ្រងសិទ្ធិតួនាទីយ៉ាង apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ឈ្មោះនៃទ្រង់ទ្រាយបោះពុម្ពថ្មី -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,ជម្រះការឯកសារភ្ជាប់ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,ជម្រះការឯកសារភ្ជាប់ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ជាចាំបាច់: ,User Permissions Manager,កម្មវិធីគ្រប់គ្រងសិទ្ធិអ្នកប្រើ DocType: Property Setter,New value to be set,តម្លៃថ្មីត្រូវបានកំណត់ @@ -2224,26 +2228,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ថ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ប្រភេទប្រកាសកំណត់ហេតុបណ្ដាញ។ DocType: Workflow State,Time,ម៉ោង DocType: DocField,Attach,ភ្ជាប់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} គឺមិនមែនលំនាំ fieldname ត្រឹមត្រូវ។ វាគួរតែត្រូវ {{FIELD_NAME}} ។ +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} គឺមិនមែនលំនាំ fieldname ត្រឹមត្រូវ។ វាគួរតែត្រូវ {{FIELD_NAME}} ។ DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ផ្ញើមតិសំណើរតែប៉ុណ្ណោះប្រសិនបើមានគឺជាការទំនាក់ទំនងយ៉ាងហោចណាស់មួយគឺអាចប្រើបានសម្រាប់ឯកសារ។ DocType: Custom Role,Permission Rules,វិធានការអនុញ្ញាត DocType: GSuite Settings,GSuite Settings,ការកំណត់ GSuite DocType: Address,Links,តំណភ្ជាប់ -apps/frappe/frappe/model/base_document.py +428,Value missing for,តម្លៃរបស់បាត់ខ្លួន +apps/frappe/frappe/model/base_document.py +427,Value missing for,តម្លៃរបស់បាត់ខ្លួន apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,បន្ថែមកុមារ -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: កំណត់ត្រាផ្តល់ជូនមិនអាចត្រូវបានលុប។ +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: កំណត់ត្រាផ្តល់ជូនមិនអាចត្រូវបានលុប។ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ទំហំបម្រុងទុក DocType: GSuite Templates,Template Name,ឈ្មោះពុម្ព -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ប្រភេទថ្មីមួយនៃឯកសារ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ប្រភេទថ្មីមួយនៃឯកសារ DocType: Custom DocPerm,Read,អាន DocType: Role Permission for Page and Report,Role Permission for Page and Report,សិទ្ធិតួនាទីសម្រាប់ Page និងរបាយការណ៍ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,តម្រឹមតម្លៃ apps/frappe/frappe/www/update-password.html +14,Old Password,ពាក្យសម្ងាត់ចាស់ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},ប្រកាសដោយ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ប្រកាសដោយ {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",ទៅជួរឈរទ្រង់ទ្រាយដែលបានផ្តល់ឱ្យស្លាកជួរឈរក្នុងសំណួរ។ DocType: Has Domain,Has Domain,មានដែន apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,មិនមានគណនីមួយ? ចុះឈ្មោះ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: មិនអាចកំណត់ការផ្តល់តម្លៃឱ្យធ្វើវិសោធនកម្មប្រសិនបើមិនបានបញ្ជូន +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: មិនអាចកំណត់ការផ្តល់តម្លៃឱ្យធ្វើវិសោធនកម្មប្រសិនបើមិនបានបញ្ជូន DocType: Address,Bihar,ប៊ីហារ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,សិទ្ធិកែសម្រួលតួនាទី DocType: Communication,Link DocType,DOCTYPE តំណ @@ -2342,7 +2346,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,សូមប្រាកដថាទម្រង់របស់អ្នកមានអាសយដ្ឋានអ៊ីម៉ែល apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,ការផ្លាស់ប្តូរមិនបានរក្សាទុកដែលអ្នកមាននៅក្នុងសំណុំបែបបទនេះ។ សូមរក្សាទុកមុនពេលអ្នកបន្ត។ DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,លំនាំដើមសម្រាប់ {0} ត្រូវតែជាជម្រើសមួយ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,លំនាំដើមសម្រាប់ {0} ត្រូវតែជាជម្រើសមួយ DocType: Tag Doc Category,Tag Doc Category,ស្លាកប្រភេទដុក DocType: User,User Image,រូបភាពរបស់អ្នកប្រើ apps/frappe/frappe/email/queue.py +289,Emails are muted,អ៊ីម៉ែលគឺមានបំបិទ @@ -2375,7 +2379,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,សកម DocType: Workflow State,ok,យល់ព្រម DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,តម្លៃទាំងនេះនឹងត្រូវបានធ្វើឱ្យទាន់សម័យដោយស្វ័យប្រវត្តិនៅក្នុងប្រតិបត្តិការនិងការផងដែរនឹងមានប្រយោជន៍ដើម្បីដាក់កម្រិតសិទ្ធិសម្រាប់អ្នកប្រើនៅលើប្រតិបត្ដិការដែលមានតម្លៃទាំងនេះ។ apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,អ្នកបោះផ្សាយ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** បរាជ័យក្នុង: {0} ទៅ {1} {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** បរាជ័យក្នុង: {0} ទៅ {1} {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,ជ្រើសចាំបាច់ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,រកមើល apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ផ្ញើអ៊ីម៉ែល @@ -2387,7 +2391,7 @@ DocType: Async Task,Running,ការរត់ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,ពាក្យសម្ងាត់កំណត់ឡើងវិញ apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,សូមធ្វើឱ្យប្រសើរឡើងបន្ថែម {0} អតិថិជន DocType: Workflow State,hand-left,ដៃឆ្វេង -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} សម្រាប់ការមិនអាចមានតែមួយគត់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} សម្រាប់ការមិនអាចមានតែមួយគត់ DocType: Email Account,Use SSL,ប្រើ SSL DocType: Workflow State,play-circle,លេងរង្វង់ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,ជ្រើសបោះពុម្ពទ្រង់ទ្រាយដើម្បីកែសម្រួល @@ -2442,7 +2446,7 @@ DocType: DocField,No Copy,គ្មានការចម្លង DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,ចូលជាមួយនឹងបម្រើ LDAP DocType: Web Form,Breadcrumbs,របារនាំទិស -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,បើសិនជាម្ចាស់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,បើសិនជាម្ចាស់ DocType: OAuth Authorization Code,Expiration time,ពេលផុតកំណត់ DocType: Web Page,Website Sidebar,របារចំហៀងគេហទំព័រ DocType: Web Form,Show Sidebar,បង្ហាញរបារចំហៀង @@ -2462,7 +2466,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},មិនអា apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,នាមនិងគោត្តនាមដោយខ្លួនឯងគឺជាការងាយស្រួលក្នុងការស្មាន។ apps/frappe/frappe/config/website.py +93,Knowledge Base,មូលដ្ឋានចំណេះដឹង DocType: Workflow State,briefcase,ថង់យយ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},តម្លៃមិនអាចត្រូវបានផ្លាស់ប្តូរ {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},តម្លៃមិនអាចត្រូវបានផ្លាស់ប្តូរ {0} DocType: Feedback Request,Is Manual,នេះគឺជាសៀវភៅដៃ DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style ដែលតំណាងឱ្យពណ៌ប៊ូតុងនេះ: ភាពជោគជ័យ - បៃតងគ្រោះថ្នាក់ - ក្រហម, ច្រាស - ខ្មៅ, បឋមសិក្សា - ងងឹតពណ៌ខៀវ, ពត៌មាន - ពន្លឺខៀវព្រមាន - ពណ៌ទឹកក្រូច" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,មិនមានរបាយការណ៍ដែលបានផ្ទុក។ សូមប្រើសំណួររបាយការណ៍ / [ឈ្មោះរបាយការណ៍] ដើម្បីរត់របាយការណ៍។ @@ -2541,7 +2545,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ការរ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ដោយតួនាទី apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,វាលបាត់ខ្លួន apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname មិនត្រឹមត្រូវ '{0} "នៅក្នុង autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ស្វែងរកក្នុងប្រភេទឯកសារ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ស្វែងរកក្នុងប្រភេទឯកសារ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,អនុញ្ញាតឱ្យវាលទៅនៅតែសូម្បីតែបន្ទាប់ពីការដាក់ស្នើអាចកែសម្រួលបាន DocType: Custom DocPerm,Role and Level,តួនាទីនិងកំរិត DocType: File,Thumbnail URL,URL ដែលកូនរូបភាព @@ -2558,19 +2562,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),បញ្ជា (Ctrl + G) DocType: Contact,More Information,ពត៌មានបន្ថែម DocType: Desktop Icon,Desktop Icon,រូបតំណាងផ្ទៃតុ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ការបង់ប្រាក់របស់អ្នកត្រូវបានទទួលយកដោយជោគជ័យ +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ការបង់ប្រាក់របស់អ្នកត្រូវបានទទួលយកដោយជោគជ័យ apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,សូមទោស! អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យមើលទំព័រនេះ។ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ជំនួយ: កោសិកាចុចទ្វេដងដើម្បីកែសម្រួល DocType: Workflow State,bell,កណ្តឹង apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,មានកំហុសក្នុងការជូនដំណឹងអ៊ីមែល apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,មានកំហុសក្នុងការជូនដំណឹងអ៊ីមែល apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ចែករំលែកជាមួយឯកសារនេះ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ការដំឡើង> កម្មវិធីគ្រប់គ្រងសិទ្ធិអ្នកប្រើ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} មិនអាចមានការថ្នាំងស្លឹកមួយដូចដែលវាបានមានកូន DocType: Communication,Info,ពត៌មាន -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,បន្ថែមឯកសារភ្ជាប់ +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,បន្ថែមឯកសារភ្ជាប់ DocType: Communication,Email,អ៊ីម៉ែល apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,សូមអរគុណអ្នកសម្រាប់សាររបស់អ្នក -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ផ្ញើបង្កាន់ដៃអាន +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ផ្ញើបង្កាន់ដៃអាន DocType: Stripe Settings,Stripe Settings,ការកំណត់ឆ្នូត DocType: Stripe Settings,Stripe Settings,ការកំណត់ឆ្នូត DocType: Dropbox Settings,Dropbox Setup via Site Config,ការដំឡើង Dropbox តាមរយៈតំបន់បណ្តាញកំណត់រចនាសម្ព័ន្ធ @@ -2637,6 +2642,7 @@ DocType: DocType,Web View,មើលបណ្ដាញ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ព្រមាន & ‧;: ទ្រង់ទ្រាយបោះពុម្ពនេះគឺនៅក្នុងរចនាប័ទ្មចាស់និងមិនអាចត្រូវបានបង្កើតតាមរយៈ API ។ DocType: DocField,Print Width,បោះពុម្ពទទឹង ,Setup Wizard,អ្នកជំនួយការដំឡើង +DocType: Address,GST State Number,លេខរដ្ឋជីអេសធី DocType: User,Allow user to login only before this hour (0-24),អនុញ្ញាតឱ្យអ្នកប្រើដើម្បីចូលតែមុនពេលម៉ោងនេះ (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ថតគឺជាការចាំបាច់ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2665,7 +2671,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,អត្ថបទខ្នាតតូច apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,អ្នកគ្រប់គ្រងបានចូលដំណើរការនៅលើ {0} {1} បានតាមរយៈអាសយដ្ឋាន IP {2} ។ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,ស្មើ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ប្រភេទជម្រើស 'គេហទំព័រភ្ជាប់ជាថាមវន្ត "របស់វាលត្រូវតែចង្អុលទៅវាលតំណផ្សេងទៀតជាមួយនឹងជម្រើសជា' ចង្អុលបង្ហាញ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ប្រភេទជម្រើស 'គេហទំព័រភ្ជាប់ជាថាមវន្ត "របស់វាលត្រូវតែចង្អុលទៅវាលតំណផ្សេងទៀតជាមួយនឹងជម្រើសជា' ចង្អុលបង្ហាញ" DocType: About Us Settings,Team Members Heading,សមាជិកក្រុមក្បាល apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,ទ្រង់ទ្រាយជា CSV មិនត្រឹមត្រូវ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,កំណត់ចំនួននៃការបម្រុងទុក @@ -2676,7 +2682,7 @@ DocType: Contact,Contact,ការទំនាក់ទំនង DocType: User,Third Party Authentication,ការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវរបស់បក្សលើកទីបី DocType: Website Settings,Banner is above the Top Menu Bar.,បដាខាងលើគឺជារបារម៉ឺនុយខាងលើ។ DocType: Razorpay Settings,API Secret,សម្ងាត់ API របស់ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,របាយការណ៍នាំចេញ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,របាយការណ៍នាំចេញ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} មិនមាន DocType: Email Account,Port,កំពង់ផែ DocType: Print Format,Arial,Arial @@ -2699,7 +2705,7 @@ DocType: Kanban Board Column,Column Name,ឈ្មោះជួរឈរ DocType: Language,Based On,ដោយផ្អែកលើការ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ធ្វើឱ្យលំនាំដើម apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,ពិនិត្យមើល URL Frappe ម៉ាស៊ីនបម្រើ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} សម្រាប់ការមិនអាចត្រូវបានធ្វើលិបិក្រម +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} សម្រាប់ការមិនអាចត្រូវបានធ្វើលិបិក្រម DocType: Communication,Email Account,គណនីអ៊ីម៉ែល DocType: Workflow State,Download,ទាញយក DocType: Blog Post,Blog Intro,កំណត់ហេតុបណ្ដាញសេចក្ដីណែនាំ @@ -2710,7 +2716,7 @@ DocType: Web Page,Insert Code,បញ្ចូលលេខកូដ DocType: ToDo,Low,កម្រិតទាប apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,អ្នកអាចបន្ថែមលក្ខណៈសម្បត្តិថាមវន្តពីឯកសារដោយប្រើពុម្ព Jinja ។ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ដែនកំណត់មិនត្រឹមត្រូវ {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,រាយប្រភេទឯកសារ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,រាយប្រភេទឯកសារ DocType: Event,Ref Type,ប្រភេទយោង apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ប្រសិនបើអ្នកកំពុងផ្ទុកកំណត់ត្រាថ្មី, ទុកឱ្យនៅទទេ "ឈ្មោះ" ជួរឈរ (ID) ។" DocType: Address,Chattisgarh,Chattisgarh @@ -2732,26 +2738,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,ផ្ញើការបោះពុម្ពជា PDF DocType: Web Form,Amount,ចំនួនទឹកប្រាក់ DocType: Workflow Transition,Allowed,ត្រូវបានអនុញ្ញាត -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,អាចមានតែមួយគត់បោះបង់ចោលនៅក្នុងសំណុំបែបបទ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,អាចមានតែមួយគត់បោះបង់ចោលនៅក្នុងសំណុំបែបបទ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},មិនអាចសរសេរទ្រង់ទ្រាយឯកសារសម្រាប់ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,ស្តារការកំណត់លំនាំដើម? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ទំព័រដើមមិនត្រឹមត្រូវ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,ការចូលមិនត្រឹមត្រូវ។ ព្យាយាមម្តងទៀត។ -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ជម្រើសដែលបានទាមទារសម្រាប់តំណឬប្រភេទតារាងវាល {0} នៅក្នុងជួរដេក {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ជម្រើសដែលបានទាមទារសម្រាប់តំណឬប្រភេទតារាងវាល {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ជម្រើសដែលបានទាមទារសម្រាប់តំណឬប្រភេទតារាងវាល {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ជម្រើសដែលបានទាមទារសម្រាប់តំណឬប្រភេទតារាងវាល {0} នៅក្នុងជួរដេក {1} DocType: Auto Email Report,Send only if there is any data,ផ្ញើតែប៉ុណ្ណោះប្រសិនបើមានគឺជាទិន្នន័យណាមួយ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,តម្រងកំណត់ឡើងវិញ -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: សិទ្ធិនៅកម្រិត 0 ត្រូវបានកំណត់មុនពេលដែលត្រូវបានកំណត់កម្រិតខ្ពស់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: សិទ្ធិនៅកម្រិត 0 ត្រូវបានកំណត់មុនពេលដែលត្រូវបានកំណត់កម្រិតខ្ពស់ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ការចាត់តាំងបិទដោយ {0} DocType: Integration Request,Remote,ពីចម្ងាយ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,គណនា +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,គណនា apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,សូមជ្រើសចង្អុលបង្ហាញជាលើកដំបូង apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,បញ្ជាក់ការម៉ែលរបស់អ្នក apps/frappe/frappe/www/login.html +42,Or login with,ឬការចូលជាមួយនឹង DocType: Error Snapshot,Locals,អ្នកស្រុក apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},បានទាក់ទងតាមរយៈ {0} {1} លើ: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} និយាយអំពីអ្នកក្នុងការអត្ថាធិប្បាយបានទេនៅក្នុង {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ឧទាហរណ៏ (55 + + 434) / 4 ឬ = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ឧទាហរណ៏ (55 + + 434) / 4 ឬ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} គឺត្រូវបានទាមទារ DocType: Integration Request,Integration Type,ប្រភេទសមាហរណកម្ម DocType: Newsletter,Send Attachements,ផ្ញើឯកសារភ្ជាប់ @@ -2761,15 +2767,15 @@ DocType: DocField,Perm Level,កម្រិត Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,ព្រឹត្តការណ៍ក្នុងប្រតិទិនថ្ងៃនេះ DocType: Web Page,Web Page,ទំព័របណ្ដាញ DocType: Blog Category,Blogger,អ្នកសរសេរប្លុក -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"នៅក្នុងការស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"នៅក្នុងការស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"នៅក្នុងការស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"នៅក្នុងការស្វែងរកសកល 'មិនត្រូវបានអនុញ្ញាតសម្រាប់ប្រភេទ {0} នៅក្នុងជួរដេក {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ទិដ្ឋភាពបញ្ជី -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},កាលបរិច្ឆេទត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},កាលបរិច្ឆេទត្រូវតែមាននៅក្នុងទ្រង់ទ្រាយ: {0} DocType: Workflow,Don't Override Status,កុំបដិសេធស្ថានភាព apps/frappe/frappe/www/feedback.html +90,Please give a rating.,សូមផ្តល់ចំណាត់ថ្នាក់មួយ។ apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ប្រតិកម្មសំណើ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,ពាក្យស្វែងរក -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,អ្នកប្រើដំបូង: អ្នក +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,អ្នកប្រើដំបូង: អ្នក apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,ជ្រើសជួរឈរ DocType: Translation,Source Text,អត្ថបទប្រភព apps/frappe/frappe/www/login.py +55,Missing parameters for login,ប៉ារ៉ាម៉ែត្រដើម្បីចូលបាត់ @@ -2791,7 +2797,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,ការនាំចូល DocType: ToDo,Assigned By,ដែលបានផ្ដល់ដោយ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,អ្នកអាចប្រើសំណុំបែបបទតាមបំណងដើម្បីកំណត់កម្រិតលើវាល។ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,ជ្រើសរើសតំបន់របស់អ្នក +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,ជ្រើសរើសតំបន់របស់អ្នក DocType: Custom DocPerm,Level,កំរិត DocType: Custom DocPerm,Report,របាយការណ៏ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ចំនួនទឹកប្រាក់ត្រូវតែធំជាង 0 ។ @@ -2811,7 +2817,7 @@ DocType: Website Theme,Background,ផ្ទៃខាងក្រោយ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",បញ្ជី JSON នៃ DOCTYPE បានប្រើដើម្បីអនុវត្តសិទ្ធិអ្នកប្រើ។ បើទទេ DOCTYPE បានតភ្ជាប់ទាំងអស់នឹងត្រូវបានប្រើដើម្បីអនុវត្តសិទ្ធិអ្នកប្រើ។ DocType: Report,Ref DocType,យោងចង្អុលបង្ហាញ apps/frappe/frappe/www/feedback.py +42,Please add a rating,សូមបន្ថែមចំណាត់ថ្នាក់ -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: មិនអាចកំណត់ការធ្វើវិសោធនកម្មច្បាប់ដោយមិនបោះបង់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: មិនអាចកំណត់ការធ្វើវិសោធនកម្មច្បាប់ដោយមិនបោះបង់ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,ទំព័រពេញ DocType: DocType,Is Child Table,គឺជាតារាងកុមារ apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ត្រូវតែជាផ្នែកមួយនៃ {1} @@ -2826,7 +2832,7 @@ DocType: Website Slideshow,This goes above the slideshow.,នេះទៅបង apps/frappe/frappe/config/setup.py +260,Install Applications.,ដំឡើងកម្មវិធី។ DocType: Contact,Last Name,ឈ្មោះចុងក្រោយ DocType: Event,Private,ឯកជន -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,គ្មានការជូនដំណឹងសម្រាប់ថ្ងៃនេះ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,គ្មានការជូនដំណឹងសម្រាប់ថ្ងៃនេះ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ផ្ញើអ៊ីមែលបោះពុម្ពឯកសារភ្ជាប់ជា PDF (ផ្ដល់អនុសាសន៍) DocType: Web Page,Left,ពីឆ្វេង DocType: Event,All Day,ថ្ងៃទាំងអស់ @@ -2840,7 +2846,7 @@ DocType: Event,Send an email reminder in the morning,ផ្ញើការរំ DocType: Blog Post,Published On,បានចេញផ្សាយនៅថ្ងៃទី DocType: Contact,Gender,យែនឌ័រ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ពជាចាំបាច់បាត់ខ្លួន: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,វាល '{0}' មិនអាចត្រូវបានកំណត់ជាមានតែមួយគត់ជាវាមានតម្លៃមិនមែនជាតែមួយគត់ +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,វាល '{0}' មិនអាចត្រូវបានកំណត់ជាមានតែមួយគត់ជាវាមានតម្លៃមិនមែនជាតែមួយគត់ apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,មានតែ 200 បញ្ចូលត្រូវបានអនុញ្ញាតក្នុងសំណើរមួយ DocType: Footer Item,URL,URL ដែល DocType: ToDo,Reference Type,ប្រភេទឯកសារយោង @@ -2853,7 +2859,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ការព្រមានសញ្ញា DocType: Workflow State,User,របស់អ្នកប្រើ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",បង្ហាញចំណងជើងនៅក្នុងបង្អួចកម្មវិធីរុករកជា "បុព្វបទ - ចំណងជើងថា" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,អត្ថបទក្នុងប្រភេទឯកសារ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,អត្ថបទក្នុងប្រភេទឯកសារ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,រត់ការធ្វើតេស្ត apps/frappe/frappe/handler.py +91,Logged Out,ចេញ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,ច្រើនទៀត ... @@ -2879,13 +2885,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,បច្ចុប្បន្ននេះការមើល DocType: DocField,Default,លំនាំដើម apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} បានបន្ថែម -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',ស្វែងរក '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ស្វែងរក '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,សូមរក្សាទុករបាយការណ៍ជាលើកដំបូង apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} អតិថិជនបន្ថែមទៀត apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,មិននៅក្នុង DocType: Workflow State,star,តារា -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,តម្លៃដែលបំបែកដោយសញ្ញាក្បៀស -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},ទទឹងអតិបរមាសម្រាប់ប្រភេទរូបិយប័ណ្ណគឺ 100px នៅក្នុងជួរ {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,តម្លៃដែលបំបែកដោយសញ្ញាក្បៀស +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},ទទឹងអតិបរមាសម្រាប់ប្រភេទរូបិយប័ណ្ណគឺ 100px នៅក្នុងជួរ {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},សូមចែករំលែកមតិរបស់អ្នកសម្រាប់ {0} apps/frappe/frappe/config/website.py +13,Content web page.,មាតិកាបណ្ដាញទំព័រ។ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,បន្ថែមតួនាទីថ្មី @@ -2904,7 +2910,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,មិនមែនជាការត្រឹមត្រូវរបស់ LDAP អ្នកប្រើ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} មិនមែនជារដ្ឋដែលមានសុពលភាព apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',សូមជ្រើសវិធីសាស្ត្រទូទាត់ផ្សេងទៀត។ បានតាមរយៈការមិនគាំទ្រការតិបត្តិការនៅក្នុងរូបិយប័ណ្ណ '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,វាលស្វែងរក {0} មិនត្រឹមត្រូវ +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,វាលស្វែងរក {0} មិនត្រឹមត្រូវ DocType: Workflow State,ok-circle,អី-រង្វង់ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',អ្នកអាចរកឃើញអ្វីដោយសួរ "បានរកឃើញក្រូចអតិថិជន apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,សូមទោស! អ្នកប្រើដែលគួរតែមានសិទ្ធិចូលដំណើរការពេញលេញក្នុងកំណត់ត្រាផ្ទាល់ខ្លួនរបស់ពួកគេ។ @@ -2965,7 +2971,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,តម្រងមេតា DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,អត្ថបទដែលត្រូវបង្ហាញសម្រាប់តំណទៅទំព័របណ្តាញប្រសិនបើសំណុំបែបបទនេះមានទំព័របណ្ដាញ។ ផ្លូវតំណនឹងត្រូវបានបង្កើតដោយស្វ័យប្រវត្តិដែលមានមូលដ្ឋានលើ `` parent_website_route` និង page_name` DocType: Feedback Request,Feedback Trigger,មតិអ្នកប្រើកេះ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,សូមកំណត់ {0} ដំបូង +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,សូមកំណត់ {0} ដំបូង DocType: Unhandled Email,Message-id,លេខសម្គាល់សារ DocType: Patch Log,Patch,បំណះ DocType: Async Task,Failed,បានបរាជ័យ diff --git a/frappe/translations/kn.csv b/frappe/translations/kn.csv index 466b0a76d6..717fef8d72 100644 --- a/frappe/translations/kn.csv +++ b/frappe/translations/kn.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ಫೇಸ್ಬುಕ್ ಬಳಕೆದಾ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ಗಮನಿಸಿ: ಬಹು ಅವಧಿಗಳ ಮೊಬೈಲ್ ಸಾಧನದ ಸಂದರ್ಭದಲ್ಲಿ ಅನುಮತಿಸಲಾಗುವುದು apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ಬಳಕೆದಾರರ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ {ಬಳಕೆದಾರರು} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ಈ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ಈ ತಿಂಗಳು {0} ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಮಿತಿಯನ್ನು ದಾಟಿತು. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಸಲ್ಲಿಸಿ ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,ಶಾಶ್ವತವಾಗಿ {0} ಸಲ್ಲಿಸಿ ? DocType: Address,County,ಕೌಂಟಿ DocType: Workflow,If Checked workflow status will not override status in list view,ಪರಿಶೀಲಿಸಲ್ಪಟ್ಟ ಕೆಲಸದೊತ್ತಡದ ಸ್ಥಿತಿ ಪಟ್ಟಿ ವೀಕ್ಷಣೆಯಲ್ಲಿ ಸ್ಥಿತಿಯನ್ನು ಅತಿಕ್ರಮಿಸಲು ಹೋದಲ್ಲಿ apps/frappe/frappe/client.py +280,Invalid file path: {0},ಅಮಾನ್ಯ ಕಡತ ಪಥವನ್ನು: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ಒಂ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ಟ್ರೀ DocType: User,User Emails,ಬಳಕೆದಾರ ಇಮೇಲ್ಗಳನ್ನು DocType: User,Username,ಬಳಕೆದಾರ ಹೆಸರು -apps/frappe/frappe/model/base_document.py +581,Value too big,ಮೌಲ್ಯ ತುಂಬಾ ದೊಡ್ಡ +apps/frappe/frappe/model/base_document.py +580,Value too big,ಮೌಲ್ಯ ತುಂಬಾ ದೊಡ್ಡ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ರನ್ ಸ್ಕ್ರಿಪ್ಟ್ ಟೆಸ್ಟ್ DocType: Contact,Department,ವಿಭಾಗ @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,ದಾಖಲೆಗಳು DocType: Custom DocPerm,This role update User Permissions for a user,ಒಂದು ಬಳಕೆದಾರ ಈ ಪಾತ್ರವನ್ನು ಅಪ್ಡೇಟ್ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},ಮರುಹೆಸರಿಸು {0} DocType: Workflow State,zoom-out,ಜೂಮ್ ಔಟ್ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆಗೆ ತೆರೆದುಕೊಂಡಿದ್ದಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,ಅದರ ಉದಾಹರಣೆಗೆ ತೆರೆದುಕೊಂಡಿದ್ದಾಗ {0} ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ಟೇಬಲ್ {0} ಖಾಲಿ ಇರುವಂತಿಲ್ಲ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,ಲೆಡ್ಜರ್ನೊಂದಿಗೆ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,ಚಿತ್ರಗಳು DocType: Communication,Reference Owner,ರೆಫರೆನ್ಸ್ ಮಾಲೀಕ DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ಚಿಕ್ಕ ಪರಿಚಲನೆಯು ಭಾಗ ಘಟಕ (ನಾಣ್ಯ). ಇದು 0.01 ಎಂದು ದಾಖಲಿಸಬೇಕಾಗುತ್ತದೆ ಮತ್ತು ಡಾಲರ್ ಉದಾ 1 ಶೇಕಡಾ DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, ರೋ {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, ರೋ {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,ದಯವಿಟ್ಟು ಪೂರ್ಣಹೆಸರು ನೀಡಿ. apps/frappe/frappe/model/document.py +904,Beginning with,ಆರಂಭಗೊಂಡು apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ಆಮದು ಟೆಂಪ್ಲೇಟು @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,ಪೋಷಕ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ಸಕ್ರಿಯಗೊಳಿಸಿದರೆ, ಪಾಸ್ವರ್ಡ್ ಸಾಮರ್ಥ್ಯ ಕನಿಷ್ಠ ಪಾಸ್ವರ್ಡ್ ಸ್ಕೋರ್ ಮೌಲ್ಯವನ್ನು ಆಧರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗುತ್ತದೆ. 2 ಮೌಲ್ಯ ಸಾಧಾರಣ ಬಲಶಾಲಿಯಾಗಿ ಮತ್ತು 4 ಬಹಳ ಬಲಶಾಲಿಯಾಗಿ." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ಸಕ್ರಿಯಗೊಳಿಸಿದರೆ, ಪಾಸ್ವರ್ಡ್ ಸಾಮರ್ಥ್ಯ ಕನಿಷ್ಠ ಪಾಸ್ವರ್ಡ್ ಸ್ಕೋರ್ ಮೌಲ್ಯವನ್ನು ಆಧರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಲಾಗುತ್ತದೆ. 2 ಮೌಲ್ಯ ಸಾಧಾರಣ ಬಲಶಾಲಿಯಾಗಿ ಮತ್ತು 4 ಬಹಳ ಬಲಶಾಲಿಯಾಗಿ." DocType: About Us Settings,"""Team Members"" or ""Management""","""ತಂಡದ ಸದಸ್ಯರು"" ಅಥವಾ "" ನಿರ್ವಹಣೆ """ -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',ಕ್ಷೇತ್ರದ 'ಪರಿಶೀಲಿಸಿ' ಕೌಟುಂಬಿಕತೆ ಡೀಫಾಲ್ಟ್ ಎರಡೂ '0' ಅಥವಾ '1' ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',ಕ್ಷೇತ್ರದ 'ಪರಿಶೀಲಿಸಿ' ಕೌಟುಂಬಿಕತೆ ಡೀಫಾಲ್ಟ್ ಎರಡೂ '0' ಅಥವಾ '1' ಇರಬೇಕು apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ನಿನ್ನೆ DocType: Contact,Designation,ಹುದ್ದೆ DocType: Test Runner,Test Runner,ಟೆಸ್ಟ್ ರನ್ನರ್ @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ಪ್ರಕಟಿಸಲಾಗಿದೆ ಫ DocType: Email Group,Email Group,ಇಮೇಲ್ ಗುಂಪು DocType: Note,Seen By,ಸೀನ್ ಬೈ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,ಬಹು ಸೇರಿಸಿ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ಲೈಕ್ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ಲೈಕ್ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ಕ್ಷೇತ್ರಕ್ಕೆ ಪ್ರದರ್ಶನ ಲೇಬಲ್ ಹೊಂದಿಸಿ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ತಪ್ಪಾದ ಮೌಲ್ಯವು: {0} ಇರಬೇಕು {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","ಬದಲಾಯಿಸಿ ಕ್ಷೇತ್ರ ಗುಣಗಳನ್ನು ( ಮರೆಮಾಡಲು , ಮಾತ್ರ , ಅನುಮತಿ , ಇತ್ಯಾದಿ ಓದಲು )" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ನಮ್ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ನಿರ್ವಾಹಕ ಲಾಗ್ ಇನ್ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ಇತ್ಯಾದಿ "" ಮಾರಾಟದ ಪ್ರಶ್ನೆ , ಪ್ರಶ್ನೆ ಬೆಂಬಲ "" ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಅಥವಾ ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ನಂತಹ ಸಂಪರ್ಕ ಆಯ್ಕೆಗಳನ್ನು ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ಡೌನ್ಲೋಡ್ -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,ಸೇರಿಸಿ +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,ಸೇರಿಸಿ apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ಆಯ್ಕೆ {0} DocType: Print Settings,Classic,ಅತ್ಯುತ್ಕೃಷ್ಟ DocType: Desktop Icon,Color,ಬಣ್ಣ @@ -122,7 +122,7 @@ DocType: Translation,Translation,ಅನುವಾದ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ಅನುಸ್ಥಾಪಿಸಲು apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,ಶ್ರೀ DocType: Custom Script,Client,ಕಕ್ಷಿಗಾರ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,ನೀವು ಲೋಡ್ ನಂತರ ಈ ರೂಪ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,ನೀವು ಲೋಡ್ ನಂತರ ಈ ರೂಪ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ DocType: User Permission for Page and Report,User Permission for Page and Report,ಪುಟ ಮತ್ತು ವರದಿಗಾಗಿ ಸದಸ್ಯರ ಅನುಮತಿ DocType: Address,Himachal Pradesh,ಹಿಮಾಚಲ ಪ್ರದೇಶ DocType: System Settings,"If not set, the currency precision will depend on number format","ಹೊಂದಿಸದಿದ್ದಲ್ಲಿ, ಕರೆನ್ಸಿ ನಿಖರ ಸಂಖ್ಯೆ ಫಾರ್ಮ್ಯಾಟ್ ಅವಲಂಬಿಸಿರುತ್ತದೆ" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,ಕಾರಣ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ಬಳಕೆದಾರನಿಗಾಗಿ ದಯವಿಟ್ಟು DocType: Email Unsubscribe,Email Unsubscribe,ಇಮೇಲ್ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ಉತ್ತಮ ಫಲಿತಾಂಶಗಳಿಗಾಗಿ ಒಂದು ಪಾರದರ್ಶಕ ಹಿನ್ನೆಲೆ ಸುಮಾರು ಅಗಲ 150px ಚಿತ್ರವನ್ನು ಆಯ್ಕೆ . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,ವ್ಯವಸ್ಥೆ ನಿರ್ವಾಹಕರಾಗುತ್ತೀರಿ ಮೊದಲ ಬಳಕೆದಾರ (ನೀವು ನಂತರ ಬದಲಾಯಿಸಬಹುದು). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,ವ್ಯವಸ್ಥೆ ನಿರ್ವಾಹಕರಾಗುತ್ತೀರಿ ಮೊದಲ ಬಳಕೆದಾರ (ನೀವು ನಂತರ ಬದಲಾಯಿಸಬಹುದು). ,App Installer,ಅಪ್ಲಿಕೇಶನ್ ಅನುಸ್ಥಾಪಕವನ್ನು DocType: Workflow State,circle-arrow-up,ಸರ್ಕಲ್ ಬಾಣದ ಅಪ್ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,ಅಪ್ಲೋಡ್ ... DocType: Email Domain,Email Domain,ಇಮೇಲ್ ಡೊಮೈನ್ DocType: Workflow State,italic,ಪುರಾತನ ಇಟಲಿಯ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,ಎಲ್ಲರಿಗೂ -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : ರಚಿಸಿ ಇಲ್ಲದೆ ಆಮದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : ರಚಿಸಿ ಇಲ್ಲದೆ ಆಮದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ಈವೆಂಟ್ ಮತ್ತು ಇತರ ಪಂಚಾಂಗಗಳಲ್ಲಿ. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ಎಲ್ಲಾ ಜಾಗ ಕಾಮೆಂಟ್ ಸಲ್ಲಿಸಲು ಅವಶ್ಯಕ. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,ಕಾಲಮ್ಗಳನ್ನು ವಿಂಗಡಿಸಲು ಎಳೆಯಿರಿ @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,ಸ್ಟ್ಯಾಂಡರ್ಡ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ಮುಖಪುಟ ಮತ್ತು ಲಗತ್ತುಗಳು ಫೋಲ್ಡರ್ಗಳನ್ನು ಅಳಿಸಿಹಾಕಲಾಗದು apps/frappe/frappe/config/desk.py +19,Files,ಕಡತಗಳನ್ನು apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,ಅನುಮತಿಗಳು ಅವರು ವಹಿಸಿಕೊಡಲಾಗುತ್ತದೆ ಏನು ಪಾತ್ರಗಳು ಆಧರಿಸಿ ಅಪ್ಲೈಡ್ ಬಳಕೆದಾರ ಪಡೆಯಲು . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ಗೆ ಸಂಬಂಧಿಸಿದ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿ ಇಲ್ಲ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,ದಯವಿಟ್ಟು ಕನಿಷ್ಠ 1 {0} ವಿಂಗಡಿಸಲು / ಗುಂಪಿನಿಂದ ಕಾಲಮ್ ಆಯ್ಕೆಮಾಡಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,ಈ ಡಾಕ್ಯುಮೆಂಟ್ಗೆ ಸಂಬಂಧಿಸಿದ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಅನುಮತಿ ಇಲ್ಲ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,ದಯವಿಟ್ಟು ಕನಿಷ್ಠ 1 {0} ವಿಂಗಡಿಸಲು / ಗುಂಪಿನಿಂದ ಕಾಲಮ್ ಆಯ್ಕೆಮಾಡಿ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ನೀವು ಸ್ಯಾಂಡ್ಬಾಕ್ಸ್ API ಅನ್ನು ಬಳಸಿಕೊಂಡು ನಿಮ್ಮ ಪಾವತಿ ಪರೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ ಇದನ್ನು ಗುರುತುಹಾಕಿ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,ನೀವು ಪ್ರಮಾಣಿತ ವೆಬ್ಸೈಟ್ ಥೀಮ್ ಅಳಿಸಲು ಅನುಮತಿ ಇಲ್ಲ DocType: Feedback Trigger,Example,ಉದಾಹರಣೆಗೆ @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,ಒಟ್ಟು ಚಂದಾದಾರರ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ಒಂದು ಪಾತ್ರ ಮಟ್ಟದ 0 ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲ ವೇಳೆ , ನಂತರ ಹೆಚ್ಚಿನ ಮಟ್ಟದಲ್ಲಿ ಅರ್ಥಹೀನ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,ಉಳಿಸಿ DocType: Communication,Seen,ಸೀನ್ -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,ಇನ್ನಷ್ಟು ವಿವರಗಳನ್ನು ತೋರಿಸು +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,ಇನ್ನಷ್ಟು ವಿವರಗಳನ್ನು ತೋರಿಸು DocType: System Settings,Run scheduled jobs only if checked,ಪರೀಕ್ಷಿಸಿದ್ದು ಮಾತ್ರ ನಿಗದಿತ ಉದ್ಯೋಗಗಳು ರನ್ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,ವಿಭಾಗ ಶೀರ್ಷಿಕೆಗಳ ಶಕ್ತಗೊಳಿಸಿದಲ್ಲಿ ಮಾತ್ರ ತೋರಿಸಲಾಗುತ್ತದೆ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,ಆರ್ಕೈವ್ @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,ಅಡಗಿಸು ಶಿರೋನಾಮೆ DocType: Address,Current,ಪ್ರಸ್ತುತ DocType: Address,Current,ಪ್ರಸ್ತುತ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,ಸಂಬಂಧಿತ ಡಾಕ್ಯುಮೆಂಟ್ಸ್ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DOCTYPES ಗುಂಪುಗಳು DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,ತೆಗೆದು ವೃತ್ತ @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,ಫಿಲ್ಟರ್ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} ನಂತಹ ವಿಶೇಷ ಅಕ್ಷರಗಳು ಹೊಂದುವಂತಿಲ್ಲ {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ಒಂದು ಸಮಯದಲ್ಲಿ ಅನೇಕ ಮೌಲ್ಯಗಳು ನವೀಕರಿಸಿ. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ದೋಷ : ನೀವು ತೆರೆದಿದ್ದೀರಿ ನಂತರ ಡಾಕ್ಯುಮೆಂಟ್ ಮಾರ್ಪಡಿಸಲಾಗಿದೆ -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಮುದ್ರಣ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಒಂದು ಹೊಸದನ್ನು ರಚಿಸಿ. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ಲಾಗ್ ಔಟ್: {1} DocType: Address,West Bengal,ಪಶ್ಚಿಮ ಬಂಗಾಳ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : ನಿಯೋಜನೆ ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : ನಿಯೋಜನೆ ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ DocType: Social Login Keys,Facebook,ಫೇಸ್ಬುಕ್ apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",ಫಿಲ್ಟರ್ "{0}" DocType: Salutation,Administrator,ನಿರ್ವಾಹಕ @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,ಬ್ಲಾಗ್ ಶೀರ್ಷಿಕೆ apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಪಾತ್ರಗಳನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ DocType: Address,Mizoram,ಮಿಜೋರಾಂ DocType: Newsletter,Newsletter,ಸುದ್ದಿಪತ್ರ -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ಮೂಲಕ ಸಲುವಾಗಿ ಉಪ ಪ್ರಶ್ನಾವಳಿ ಬಳಸುವಂತಿಲ್ಲ +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ಮೂಲಕ ಸಲುವಾಗಿ ಉಪ ಪ್ರಶ್ನಾವಳಿ ಬಳಸುವಂತಿಲ್ಲ DocType: Web Form,Button Help,ಬಟನ್ ಸಹಾಯ DocType: Kanban Board Column,purple,ನೇರಳೆ DocType: About Us Settings,Team Members,ತಂಡದ ಸದಸ್ಯರು @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು {0} ರಂದು ಮುಕ್ತಾಯಗೊಂಡಿದೆ. ನವೀಕರಿಸಲು, {1}." DocType: Workflow State,plus-sign,ಪ್ಲಸ್ ಚಿಹ್ನೆ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ಸೆಟಪ್ ಈಗಾಗಲೇ ಸಂಪೂರ್ಣ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ +apps/frappe/frappe/__init__.py +889,App {0} is not installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಅನುಸ್ಥಾಪಿತಗೊಂಡಿಲ್ಲ DocType: Workflow State,Refresh,ರಿಫ್ರೆಶ್ DocType: Event,Public,ಸಾರ್ವಜನಿಕ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ತೋರಿಸಲು ಏನೂ @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ಇಷ್ಟಪ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ಇಮೇಲ್ ಬೆಂಬಲ DocType: DocField,Print Hide If No Value,ಪ್ರಿಂಟ್ ಮರೆಮಾಡಿ ವೇಳೆ ಯಾವುದೇ ಮೌಲ್ಯ DocType: Event,yellow,ಹಳದಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,ಪ್ರಕಟವಾಗಿದ್ದು ಫೀಲ್ಡ್ ಒಂದು ಮಾನ್ಯ FIELDNAME ಎಂದು +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,ಪ್ರಕಟವಾಗಿದ್ದು ಫೀಲ್ಡ್ ಒಂದು ಮಾನ್ಯ FIELDNAME ಎಂದು apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,ಬಾಂಧವ್ಯ ಅಪ್ಲೋಡ್ DocType: Block Module,Block Module,ಬ್ಲಾಕ್ ಘಟಕ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ರಫ್ತು ಟೆಂಪ್ಲೇಟು @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},ಒಂದು ಹೊಸ ಖಾತೆ ನಿಮಗಾಗಿ ರಚಿಸಲಾಗಿದೆ {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ಸೂಚನೆಗಳು ಇಮೇಲ್ apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ಸೂಚನೆಗಳು ಇಮೇಲ್ -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ನಮೂದಿಸಿ ಇಮೇಲ್ ಸ್ವೀಕರಿಸುವವರ (ರು) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ನಮೂದಿಸಿ ಇಮೇಲ್ ಸ್ವೀಕರಿಸುವವರ (ರು) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ಇಮೇಲ್ ಫ್ಲಾಗ್ ಸರದಿಗೆ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ತೆರೆದ ಗುರುತಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ {0}. ಯಾವುದೋ ಪ್ರಯತ್ನಿಸಿ. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ಸಂದೇಶ ID DocType: Property Setter,Field Name,ಕ್ಷೇತ್ರ ಹೆಸರು apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ಗೂಗಲ್ GSuite ಕಾನ್ಫಿಗರ್ ಮಾಡಲಾಗಿಲ್ಲ. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ಅಥವಾ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ಘಟಕ ಹೆಸರು ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ಮುಂದುವರಿಸಿ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ಘಟಕ ಹೆಸರು ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ಮುಂದುವರಿಸಿ DocType: Custom Field,Fieldname,ಕ್ಷೇತ್ರ ಹೆಸರು DocType: Workflow State,certificate,ಪ್ರಮಾಣಪತ್ರ DocType: User,Tile,ಟೈಲ್ @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ಎಲ್ಲಾ ಆವೃತ್ತಿಗಳು ತೋರಿಸಿ DocType: Workflow State,Print,ಮುದ್ರಣ DocType: User,Restrict IP,ಐಪಿ ನಿರ್ಬಂಧಿಸಿ +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ಡ್ಯಾಶ್ಬೋರ್ಡ್ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ಈ ಸಮಯದಲ್ಲಿ ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ಆಜ್ಞಾ ಹುಡುಕಿ ಅಥವಾ ಟೈಪ್ DocType: Communication,Timeline Name,ಟೈಮ್ಲೈನ್ ಹೆಸರು @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,ಮಾರಾಟ ಮಾಸ್ಟರ್ ಮ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ಕೊನೆಯ ಹೆಜ್ಜೆ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ನೀವು ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಲಿಂಕ್ ಬಯಸುವ ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ (doctype) ನ ಹೆಸರು. ಉದಾ ಗ್ರಾಹಕ DocType: User,Roles Assigned,ನಿಯೋಜಿಸಲಾಗಿದೆ ಪಾತ್ರಗಳು -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ಹುಡುಕಾಟ ಸಹಾಯ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ಹುಡುಕಾಟ ಸಹಾಯ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ಹುಡುಕಾಟ ಸಹಾಯ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ಹುಡುಕಾಟ ಸಹಾಯ DocType: Top Bar Item,Parent Label,ಪೋಷಕ ಲೇಬಲ್ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ನಿಮ್ಮ ಪ್ರಶ್ನೆ ಸ್ವೀಕರಿಸಲಾಗಿದೆ. ನಾವು ಬೇಗನೆ ಮರಳಿ ಪ್ರತ್ಯುತ್ತರ ಕಾಣಿಸುತ್ತದೆ. ನೀವು ಯಾವುದೇ ಹೆಚ್ಚುವರಿ ಮಾಹಿತಿ ಹೊಂದಿದ್ದರೆ, ಈ ಮೇಲ್ ಪ್ರತ್ಯುತ್ತರ ದಯವಿಟ್ಟು." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,ಅನುಮತಿಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಸ್ಟ್ಯಾಂಡರ್ಡ್ ವರದಿಗಳು ಮತ್ತು ಹುಡುಕಾಟಗಳು ಅನುವಾದಿಸಬಹುದು. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ಸಂಪಾದಿಸಿ ಶಿರೋನಾಮೆ DocType: File,File URL,ಫೈಲ್ URL ಅನ್ನು DocType: Version,Table HTML,ಟೇಬಲ್ ಎಚ್ಟಿಎಮ್ಎಲ್ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು 'ಕಂಡುಬಂದಿಲ್ಲ

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ಚಂದಾದಾರರು ಸೇರಿಸಿ apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ಇಂದು ಮುಂಬರುವ ಕಾರ್ಯಕ್ರಮಗಳು DocType: Email Alert Recipient,Email By Document Field,ಡಾಕ್ಯುಮೆಂಟ್ ಕ್ಷೇತ್ರವು ಇಮೇಲ್ @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,ಪ್ರಮಾಣ ಫೀಲ್ಡ್ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ಬಳಕೆದಾರ ಹಂಚಿಕೊಳ್ಳಿ ಕಡ್ಡಾಯವಾದರೂ DocType: DocField,Hidden,ಗುಪ್ತ DocType: Web Form,Allow Incomplete Forms,ಅಪೂರ್ಣ ಫಾರ್ಮ್ಸ್ ಅನುಮತಿಸಿ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ಮೊದಲ ಸೆಟ್ ಮಾಡಬೇಕು +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ಮೊದಲ ಸೆಟ್ ಮಾಡಬೇಕು apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","ತಪ್ಪಿಸಲು ಸಾಮಾನ್ಯ ನುಡಿಗಟ್ಟುಗಳು, ಕೆಲವು ಪದಗಳನ್ನು ಬಳಸಿ." DocType: Workflow State,plane,ಫಿಲ್ಮುಗಳು -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,ಓಹ್. ನಿಮ್ಮ ಪಾವತಿ ವಿಫಲವಾಗಿದೆ. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ನೀವು ಹೊಸ ದಾಖಲೆ ಅಪ್ಲೋಡ್ ಮಾಡುತ್ತಿದ್ದರೆ ಅಳವಡಿಸಿದ್ದರೆ, ""ಸರಣಿ ಹೆಸರಿಸುವ"", ಕಡ್ಡಾಯವಾಗಿ ಆಗುತ್ತದೆ." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,ಇಂದು ಎಚ್ಚರಿಕೆಗಳನ್ನು ಪಡೆಯಿರಿ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,ಇಂದು ಎಚ್ಚರಿಕೆಗಳನ್ನು ಪಡೆಯಿರಿ apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE ಮಾತ್ರ ನಿರ್ವಾಹಕರಿಂದ ಮರುನಾಮಕರಣ ಮಾಡಬಹುದು apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},ಬದಲಾವಣೆ ಮೌಲ್ಯವನ್ನು {0} DocType: Report,JSON,JSON ಅನ್ನು apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,ದಯವಿಟ್ಟು ಪರಿಶೀಲನೆ ನಿಮ್ಮ ಇಮೇಲ್ ಪರಿಶೀಲಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ಪಟ್ಟು ರೂಪ ಕೊನೆಯಲ್ಲಿ ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ಪಟ್ಟು ರೂಪ ಕೊನೆಯಲ್ಲಿ ಸಾಧ್ಯವಿಲ್ಲ DocType: Communication,Bounced,ಪುಟಿದೇಳುವ DocType: Deleted Document,Deleted Name,ಅಳಿಸಲಾಗಿದೆ ಹೆಸರು apps/frappe/frappe/config/setup.py +14,System and Website Users,ವ್ಯವಸ್ಥೆ ಮತ್ತು ವೆಬ್ಸೈಟ್ ಬಳಕೆದಾರರು @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ಡಾಕ್ಯುಮ DocType: GSuite Templates,Destination ID,ಗಮ್ಯಸ್ಥಾನ ID DocType: Desktop Icon,List,ಪಟ್ಟಿ DocType: Communication,Link Name,ಲಿಂಕ್ ಹೆಸರು -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ಫೀಲ್ಡ್ {0} ಸತತವಾಗಿ {1} ಡೀಫಾಲ್ಟ್ ಇಲ್ಲದೆ ಮರೆಮಾಡಲಾಗಿದೆ ಮತ್ತು ಕಡ್ಡಾಯ ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ಫೀಲ್ಡ್ {0} ಸತತವಾಗಿ {1} ಡೀಫಾಲ್ಟ್ ಇಲ್ಲದೆ ಮರೆಮಾಡಲಾಗಿದೆ ಮತ್ತು ಕಡ್ಡಾಯ ಸಾಧ್ಯವಿಲ್ಲ DocType: System Settings,mm/dd/yyyy,DD / MM / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,ಅಮಾನ್ಯ ಪಾಸ್ವರ್ಡ್: DocType: Print Settings,Send document web view link in email,ಇಮೇಲ್ ಡಾಕ್ಯುಮೆಂಟ್ ವೆಬ್ ವೀಕ್ಷಿಸಿ ಲಿಂಕ್ ಕಳುಹಿಸಿ apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ದಾಖಲೆ ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆ {0} ಯಶಸ್ವಿಯಾಗಿ ಉಳಿಸಲಾಗಿದೆ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,ಹಿಂದಿನ -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,ಮರು: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,ಮರು: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} ಸಾಲುಗಳನ್ನು {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","ಉಪ ಕರೆನ್ಸಿ . ಇ ಜಿ ಫಾರ್ ""ಸೆಂಟ್ಸ್""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,ಅಪ್ಲೋಡ್ ಫೈಲ್ ಆಯ್ಕೆಮಾಡಿ @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,ಕೊಂಡಿ apps/frappe/frappe/utils/file_manager.py +96,No file attached,ಲಗತ್ತಿಸಲಾದ ಯಾವುದೇ ಕಡತ DocType: Version,Version,ರೂಪಾಂತರ DocType: User,Fill Screen,ಪರದೆಯನ್ನು ತುಂಬಿರಿ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","ಕಾರಣ ಕಾಣೆಯಾಗಿದೆ ಡೇಟಾ, ಈ ಮರದ ವರದಿ ತೋರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ. ಹೆಚ್ಚಾಗಿ, ಇದು ಕಾರಣ ಅನುಮತಿಗಳನ್ನು ಔಟ್ ಫಿಲ್ಟರ್ ಮಾಡಲಾಗುತ್ತಿದೆ." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಅನ್ನು ಹೊಂದಿಸಿ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","ಕಾರಣ ಕಾಣೆಯಾಗಿದೆ ಡೇಟಾ, ಈ ಮರದ ವರದಿ ತೋರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ. ಹೆಚ್ಚಾಗಿ, ಇದು ಕಾರಣ ಅನುಮತಿಗಳನ್ನು ಔಟ್ ಫಿಲ್ಟರ್ ಮಾಡಲಾಗುತ್ತಿದೆ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ಫೈಲ್ ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ಅಪ್ಲೋಡ್ ಮೂಲಕ ಸಂಪಾದಿಸಿ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","ದಾಖಲೆ ಪ್ರಕಾರ ..., ಉದಾ ಗ್ರಾಹಕ" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","ದಾಖಲೆ ಪ್ರಕಾರ ..., ಉದಾ ಗ್ರಾಹಕ" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,ಕಂಡಿಶನ್ '{0}' ಅಮಾನ್ಯವಾಗಿದೆ DocType: Workflow State,barcode,ಬಾರ್ಕೋಡ್ apps/frappe/frappe/config/setup.py +232,Add your own translations,ನಿಮ್ಮ ಸ್ವಂತ ಅನುವಾದಗಳು ಸೇರಿಸಬಹುದು @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,ಬುಧವಾರ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","ಹೊರತಾಗಿ ಪಾತ್ರ ಆಧಾರಿತ ಅನುಮತಿಯನ್ನು ನಿಯಮಗಳನ್ನು ರಿಂದ , ನೀವು DOCTYPES ಆಧರಿಸಿ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅನ್ವಯಿಸಬಹುದು." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",ಈ ಅನುಮತಿಗಳನ್ನು ಅನುಮತಿ ದಾಖಲೆ ಲಿಂಕ್ ಇದೆ ಅಲ್ಲಿ ಎಲ್ಲಾ ವ್ಯವಹಾರಗಳಿಗೆ ಅನ್ವಯಿಸುತ್ತದೆ . -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,ಚಿತ್ರ ಕ್ಷೇತ್ರ ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,ಚಿತ್ರ ಕ್ಷೇತ್ರ ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು DocType: OAuth Client,Token,ಟೋಕನ್ DocType: Property Setter,ID (name) of the entity whose property is to be set,ಅವರ ಆಸ್ತಿ ಸೆಟ್ ಆಗಿದೆ ಘಟಕದ ಆಫ್ ID ( ಹೆಸರು ) apps/frappe/frappe/limits.py +82,"To renew, {0}.","ನವೀಕರಿಸಲು, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,ಪಾರ್ಶ್ವಪಟ್ಟಿ ಐಟಂ apps/frappe/frappe/installer.py +125,App {0} already installed,ಅಪ್ಲಿಕೇಶನ್ {0} ಈಗಾಗಲೇ ಸ್ಥಾಪಿಸಲಾಗಿದೆ DocType: Workflow State,exclamation-sign,ಘೋಷಣಾ - ಚಿಹ್ನೆ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ಅನುಮತಿಗಳನ್ನು ತೋರಿಸು -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಲಿಂಕ್ ಅಥವಾ ಡೈನಾಮಿಕ್ ಲಿಂಕ್ ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಲಿಂಕ್ ಅಥವಾ ಡೈನಾಮಿಕ್ ಲಿಂಕ್ ಇರಬೇಕು apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ದಿನಾಂಕ ಶ್ರೇಣಿ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,ಗ್ಯಾಂಟ್ apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ಪುಟ {0} ನ {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ವೆ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","ಎನ್ಕ್ರಿಪ್ಶನ್ ಕೀಲಿ ಅಮಾನ್ಯವಾಗಿದೆ, ದಯವಿಟ್ಟು site_config.json ಪರಿಶೀಲಿಸಿ" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ಗೆ DocType: Kanban Board Column,darkgrey,ಕಡು ಬೂದು -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ಯಶಸ್ವಿ: {0} ಗೆ {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ಯಶಸ್ವಿ: {0} ಗೆ {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ಡೆಮೊ ಬಳಕೆದಾರ ವಿವರಗಳನ್ನು ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. https://erpnext.com ನಲ್ಲಿ ಹೊಸ ಖಾತೆ ಸೈನ್ ಅಪ್ ಮಾಡಿ apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,ಬದಲಾವಣೆಗಳನ್ನು ಮಾಡಲು ಈ ನಕಲು ದಯವಿಟ್ಟು apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,ಪಿಡಿಎಫ್ ಪೀಳಿಗೆಯ ಏಕೆಂದರೆ ಮುರಿದ ಚಿತ್ರ ಕೊಂಡಿಗಳು ಉಂಟಾಗಿದ್ದರಿಂದ @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,ಬಾಗಿಕೊಳ್ಳಬಹುದಾದ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ಉಳಿಸಿದ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ನೀವು ಸಹಾಯ ಬೇಕು? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ಆಯ್ದ ಆಯ್ಕೆಗಳು. ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಆಯ್ಕೆಯನ್ನು. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,ಶಾಶ್ವತವಾಗಿ {0} ರದ್ದು ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,ಶಾಶ್ವತವಾಗಿ {0} ರದ್ದು ? DocType: Workflow State,music,ಸಂಗೀತ DocType: Web Page,Settings,ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE ಸೂಚಿಸಲು ದಯವಿಟ್ಟು DocType: Print Format,Style Settings,ಶೈಲಿ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ಕ್ಷೇತ್ರದಲ್ಲಿ ರೀತಿಯ {0} ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ಕ್ಷೇತ್ರದಲ್ಲಿ ರೀತಿಯ {0} ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ಇನ್ನಷ್ಟು DocType: Contact,Sales Manager,ಸೇಲ್ಸ್ ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,ಹೊಸ ಹೆಸರಿಡು DocType: Print Format,Format Data,ಸ್ವರೂಪ ಡೇಟಾ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,ಲೈಕ್ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,ಲೈಕ್ DocType: Customize Form Field,Customize Form Field,ಫಾರ್ಮ್ ಫೀಲ್ಡ್ ಕಸ್ಟಮೈಸ್ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,ಬಳಕೆದಾರ ಅನುಮತಿಸಿ DocType: OAuth Client,Grant Type,ಗ್ರಾಂಟ್ ಕೌಟುಂಬಿಕತೆ apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ಡಾಕ್ಯುಮೆಂಟ್ಸ್ ಒಂದು ಬಳಕೆದಾರ ಮೂಲಕ ಓದಬಹುದಾದ ಇದು ಪರಿಶೀಲಿಸಿ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,ಅಪ್ಲಿಕೇಶನ್ ಪಟ್ಟಿಯ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ವೈಲ್ಡ್ಕಾರ್ಡ್ ಮಾಹಿತಿ% ಬಳಸಲು -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",ಇಮೇಲ್ ಡೊಮೈನ್ ಒಂದು ರಚಿಸಿ ಈ ಖಾತೆಗಾಗಿ ಕಾನ್ಫಿಗರ್ ಇಲ್ಲ? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ವೈಲ್ಡ್ಕಾರ್ಡ್ ಮಾಹಿತಿ% ಬಳಸಲು +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",ಇಮೇಲ್ ಡೊಮೈನ್ ಒಂದು ರಚಿಸಿ ಈ ಖಾತೆಗಾಗಿ ಕಾನ್ಫಿಗರ್ ಇಲ್ಲ? DocType: User,Reset Password Key,ಪಾಸ್ವರ್ಡ್ ಕೀ ಕೊಡುಗೆಗಳು DocType: Email Account,Enable Auto Reply,ಆಟೋ ಉತ್ತರಿಸಿ ಸಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ನೋಡಿಲ್ಲ @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ಕೇವಲ ಒಮ್ಮೆ ಹೊಂದ DocType: Email Queue Recipient,Email Queue Recipient,ಇಮೇಲ್ ಸರದಿಗೆ ಪುರಸ್ಕೃತರು DocType: Address,Nagaland,ನಾಗಾಲ್ಯಾಂಡ್ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ಬಳಕೆದಾರ ಹೆಸರು {0} ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : {1} importable ಅಲ್ಲ ಆಮದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : {1} importable ಅಲ್ಲ ಆಮದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},ನಿಮ್ಮ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ದೋಷ {0} DocType: Footer Item,"target = ""_blank""","ಗುರಿ = ""_blank""" DocType: Workflow State,hdd,ಎಚ್ಡಿಡಿ @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,ಪೂರ್ಣ ಹೆಸರು apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},ನೀವು ವರದಿ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿಲ್ಲ: {0} DocType: User,Send Welcome Email,ಸ್ವಾಗತ ಇಮೇಲ್ ಕಳುಹಿಸಿ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ಡೌನ್ಲೋಡ್ ಅದೇ ರೂಪದಲ್ಲಿ ಎಲ್ಲಾ ಬಳಕೆದಾರ ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿರುವ CSV ಕಡತ ಅಪ್ಲೋಡ್. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ಫಿಲ್ಟರ್ ತೆಗೆದುಹಾಕಿ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ಫಿಲ್ಟರ್ ತೆಗೆದುಹಾಕಿ DocType: Address,Daman and Diu,ದಮನ್ ಮತ್ತು ದಿಯು DocType: Address,Personal,ದೊಣ್ಣೆ apps/frappe/frappe/config/setup.py +113,Bulk Rename,ದೊಡ್ಡ ಮರುಹೆಸರಿಸು @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","ಸ್ಟ್ಯಾಂಡರ್ಡ್ DOCTYPE, ಡೀಫಾಲ್ಟ್ ಮುದ್ರಣ ರೂಪದಲ್ಲಿ ಹೊಂದುವಂತಿಲ್ಲ ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಬಳಸಲು" DocType: Report,Query,ಪ್ರಶ್ನೆಯ DocType: DocType,Sort Order,ವಿಂಗಡಣಾ ಕ್ರಮ -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},' ListView ರಲ್ಲಿ ' ಅವಕಾಶ ಮಾದರಿ {0} ಸತತವಾಗಿ {1} DocType: Custom Field,Select the label after which you want to insert new field.,ನೀವು ಹೊಸ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೇರಿಸಲು ಬಯಸುವ afterwhich ಲೇಬಲ್ ಆಯ್ಕೆ . ,Document Share Report,ಡಾಕ್ಯುಮೆಂಟ್ ಪಾಲಿನ ವರದಿಯು DocType: User,Last Login,ಕೊನೆಯ ಲಾಗಿನ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},ಕ್ಷೇತ್ರ ಹೆಸರು ಸತತವಾಗಿ ಅಗತ್ಯವಿದೆ {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},ಕ್ಷೇತ್ರ ಹೆಸರು ಸತತವಾಗಿ ಅಗತ್ಯವಿದೆ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ಅಂಕಣ DocType: Custom Field,Adds a custom field to a DocType,ಒಂದು DOCTYPE ಕಸ್ಟಮ್ ಕ್ಷೇತ್ರ ಸೇರಿಸುತ್ತದೆ DocType: File,Is Home Folder,ಮುಖಪುಟ ಫೋಲ್ಡರ್ @@ -594,7 +594,7 @@ DocType: File,Folder,ಫೋಲ್ಡರ್ DocType: DocField,Index,ಸೂಚಿ DocType: Email Group,Newsletter Manager,ಸುದ್ದಿಪತ್ರ ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ಆಯ್ಕೆ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,ಎಲ್ಲ ಪೋಸ್ಟ್ಗಳನ್ನು +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ನಿಂದ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ವಿನಂತಿಗಳನ್ನು ಸಮಯದಲ್ಲಿ ದೋಷ ಲಾಗ್. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ಯಶಸ್ವಿಯಾಗಿ ಇಮೇಲ್ ಗುಂಪು ಸೇರಿಸಲಾಗಿದೆ. DocType: Address,Uttar Pradesh,ಉತ್ತರ ಪ್ರದೇಶ @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,ಸೂಚಕ DocType: DocShare,Everyone,ಪ್ರತಿಯೊಬ್ಬರೂ DocType: Workflow State,backward,ಹಿಮ್ಮೊಗ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ಅದೇ ಪಾತ್ರ, ಮಟ್ಟ ಮತ್ತು ಅವಕಾಶ ಒಂದೇ ನಿಯಮ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ಅದೇ ಪಾತ್ರ, ಮಟ್ಟ ಮತ್ತು ಅವಕಾಶ ಒಂದೇ ನಿಯಮ {1}" DocType: Email Queue,Add Unsubscribe Link,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಲಿಂಕ್ ಸೇರಿಸಿ apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ಇನ್ನೂ ಇಲ್ಲ ಕಾಮೆಂಟ್ಗಳನ್ನು. ಹೊಸ ಚರ್ಚೆ ಪ್ರಾರಂಭಿಸಿ. DocType: Workflow State,share,ಪಾಲು @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ಅನ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,ವೀಕ್ಷಿಸಿ ಚಂದಾದಾರರು apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,MS DocType: Website Theme,Background Color,ಹಿನ್ನೆಲೆ ಬಣ್ಣ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ದೋಷಗಳು ಇದ್ದವು. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ಇಮೇಲ್ ಕಳುಹಿಸುವಾಗ ದೋಷಗಳು ಇದ್ದವು. ದಯವಿಟ್ಟು ಮತ್ತೆ ಪ್ರಯತ್ನಿಸಿ . DocType: Portal Settings,Portal Settings,ಪೋರ್ಟಲ್ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Web Page,0 is highest,0 ಅತಿ apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,ನೀವು {0} ಈ ಸಂವಹನ relink ಬಯಸಿದ್ದೀರಾ? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,ಸಂಪರ್ಕಿಸಿ ಸ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ಹುಡುಕಲಾಗುತ್ತಿದೆ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ಹುಡುಕಲಾಗುತ್ತಿದೆ ... DocType: Workflow State,text-width,ಪಠ್ಯ ಅಗಲ -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ಈ ರೆಕಾರ್ಡ್ ಗರಿಷ್ಠ ಲಗತ್ತು ಮಿತಿ ತಲುಪಿದೆ. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ಈ ರೆಕಾರ್ಡ್ ಗರಿಷ್ಠ ಲಗತ್ತು ಮಿತಿ ತಲುಪಿದೆ. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,ಕೆಳಗಿನ ಕಡ್ಡಾಯವಾಗಿ ಜಾಗ ಭರ್ತಿ ಮಾಡಬೇಕು:
DocType: Email Alert,View Properties (via Customize Form),(ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಮೂಲಕ) @ action: inmenu DocType: Note Seen By,Note Seen By,ಸೀನ್ ಬೈ ಗಮನಿಸಿ @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,ರಾಜಸ್ಥಾನ apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ವರದಿ ಬಿಲ್ಡರ್ ವರದಿಗಳು ವರದಿಯನ್ನು ಬಿಲ್ಡರ್ ನೇರವಾಗಿ ನಿರ್ವಹಿಸಲಾಗುತ್ತದೆ. ಏನೂ . apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,ದಯವಿಟ್ಟು ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಪರಿಶೀಲಿಸಿ apps/frappe/frappe/model/document.py +903,none of,ಯಾವುದೂ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ಮಿ ಪ್ರತಿಯನ್ನು ಕಳುಹಿಸಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ಮಿ ಪ್ರತಿಯನ್ನು ಕಳುಹಿಸಿ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅಪ್ಲೋಡ್ DocType: Dropbox Settings,App Secret Key,ಅಪ್ಲಿಕೇಶನ್ ಸೀಕ್ರೆಟ್ ಕೀ apps/frappe/frappe/config/website.py +7,Web Site,ವೆಬ್ ಸೈಟ್ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ಪರೀಕ್ಷಿಸಿದ್ದು ಐಟಂಗಳನ್ನು ಡೆಸ್ಕ್ಟಾಪ್ ತೋರಿಸಲಾಗುತ್ತದೆ -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ಏಕ ರೀತಿಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ಏಕ ರೀತಿಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,ಕನ್ಬನ್ ಬೋರ್ಡ್ {0} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ಪ್ರಸ್ತುತ ದಾಖಲೆ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ DocType: ToDo,Assigned By Full Name,ಪೂರ್ಣ ಹೆಸರು ಅದಕ್ಕೆ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ಅಪ್ಡೇಟ್ಗೊಳಿಸಲಾಗಿದೆ -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,ವರದಿ ಒಂದೇ ರೀತಿಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,ವರದಿ ಒಂದೇ ರೀತಿಯ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ದಿನಗಳ ಹಿಂದೆ DocType: Email Account,Awaiting Password,ಕಾಯುತ್ತಿದ್ದ ಪಾಸ್ವರ್ಡ್ DocType: Address,Address Line 1,ಲೈನ್ 1 ವಿಳಾಸ @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","ಕೆಲಸದೊತ್ತಡದ ಸ್ಟೇಟ್ಸ್ ( ಉದಾ ಡ್ರಾಫ್ಟ್ , ಅನುಮೋದನೆ, ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ ) ." DocType: Print Settings,Allow Print for Draft,ಡ್ರಾಫ್ಟ್ ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,ಹೊಂದಿಸಿ ಪ್ರಮಾಣ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ಖಚಿತಪಡಿಸಲು ದಾಖಲೆ ಸಲ್ಲಿಸಿ +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ಖಚಿತಪಡಿಸಲು ದಾಖಲೆ ಸಲ್ಲಿಸಿ DocType: Contact,Unsubscribed,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,ಪುಟ ಮತ್ತು ವರದಿಗಾಗಿ ಕಸ್ಟಮ್ ಪಾತ್ರಗಳನ್ನು ಹೊಂದಿಸಿ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,ರೇಟಿಂಗ್: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ಡೇಟಾ ಆಮದು ಟೂಲ್ DocType: Address,Dadra and Nagar Haveli,ದಾದ್ರಾ ಮತ್ತು ನಗರ್ ಹವೇಲಿ apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ಅಪ್ಲೋಡ್ ಫೈಲ್ಗಳನ್ನು ದಯವಿಟ್ಟು ಕೆಲವು ಸೆಕೆಂಡುಗಳ ಕಾಲ ನಿರೀಕ್ಷಿಸಿ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ನಿಮ್ಮ ಚಿತ್ರ ಲಗತ್ತಿಸಿ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ನಿಮ್ಮ ಚಿತ್ರ ಲಗತ್ತಿಸಿ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ಸಾಲು ಮೌಲ್ಯಗಳನ್ನು ಬದಲಾವಣೆ DocType: Workflow State,Stop,ನಿಲ್ಲಿಸಲು DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,ನೀವು ತೆರೆಯಲು ಬಯಸುವ ಪುಟಕ್ಕೆ ಲಿಂಕ್. ನೀವು ಒಂದು ಗುಂಪು ಪೋಷಕ ಮಾಡಲು ಬಯಸಿದರೆ ಖಾಲಿ ಬಿಡಿ. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,ಎಡಕ್ಕೆ ಲೇಬ DocType: Help Article,Expert,ಎಕ್ಸ್ಪರ್ಟ್ DocType: Workflow State,circle-arrow-right,ವೃತ್ತದ ಬಾಣವನ್ನು ಬಲ DocType: LDAP Settings,LDAP Server Url,LDAP ಅನ್ನು ಪರಿಚಾರಕ URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಿರುತ್ತದೆ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,ಅದರ {0} ತೆರೆದಿರುತ್ತದೆ ಉದಾಹರಣೆಗೆ ತೆರೆಯಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ಅನುಸ್ಥಾಪಿಸಲು ಸರತಿಯಲ್ಲಿ DocType: Custom DocPerm,Custom DocPerm,ಕಸ್ಟಮ್ DocPerm DocType: Newsletter,Send Unsubscribe Link,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ಲಿಂಕ್ ಕಳುಹಿಸಿ @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,ಅಪ್ಲಿಕೇಶನ್ {0} ತೆಗೆದು DocType: Custom DocPerm,Apply User Permissions,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅನ್ವಯಿಸು DocType: User,Modules HTML,ಮಾಡ್ಯೂಲ್ಗಳು ಎಚ್ಟಿಎಮ್ಎಲ್ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ಸೆಟಪ್> ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ಅಗತ್ಯ ELEMENTARY ಸ್ಥಳ DocType: DocType,Other Settings,ಇತರೆ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Social Login Keys,Frappe,ಫ್ರಾಪ್ಪೆ @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ಅನ್ನು ಬೇ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ಆಯ್ಕೆ ಯಾವುದೇ ಡಾಕ್ಯುಮೆಂಟ್ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ಡಾ DocType: Event,Event,ಈವೆಂಟ್ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} ನಲ್ಲಿ, {1} ಬರೆದರು:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} ನಲ್ಲಿ, {1} ಬರೆದರು:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ಪ್ರಮಾಣಿತ ಕ್ಷೇತ್ರದಲ್ಲಿ ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಇದು ಮರೆಮಾಡಬಹುದು DocType: Top Bar Item,For top bar,ಅಗ್ರ ಬಾರ್ apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ಗುರುತಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,ಡೆಸ್ಕ್ ಪ್ರವೇಶ DocType: Workflow State,minus,ಮೈನಸ್ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,ಸರ್ವರ್ ದೋಷ : ನಿಮ್ಮ ಸರ್ವರ್ ದಾಖಲೆಗಳು ಅಥವಾ ಸಂಪರ್ಕ ಟೆಕ್ ಬೆಂಬಲ ಪರಿಶೀಲಿಸಿ. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ಕಳುಹಿಸಿದ ಇಮೇಲ್ ಸ್ವಾಗತ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,ಮೊದಲ ಬಳಕೆಗೆ ವ್ಯವಸ್ಥೆಯ ತಯಾರು ಮಾಡೋಣ. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,ಮೊದಲ ಬಳಕೆಗೆ ವ್ಯವಸ್ಥೆಯ ತಯಾರು ಮಾಡೋಣ. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ವಿಶಿಷ್ಟ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ನೋಂದಾಯಿಸಿದ್ದೀರಾ DocType: System Settings,Float Precision,ನಿಖರವಾದ ತೆಪ್ಪ @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,ಪ್ರಿಂಟ್ ಅನುಮತಿಸಿ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ಯಾವುದೇ ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರ ಗುರುತು DocType: Communication,Clicked,ಕ್ಲಿಕ್ -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ಯಾವುದೇ ಅನುಮತಿಯಿಲ್ಲ ' {0} ' {1} DocType: User,Google User ID,ಗೂಗಲ್ ಬಳಕೆದಾರ ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ಕಳುಹಿಸಲು ಪರಿಶಿಷ್ಟ DocType: DocType,Track Seen,ಟ್ರ್ಯಾಕ್ ಸೀನ್ @@ -838,7 +837,7 @@ DocType: Address,Kerala,ಕೇರಳ DocType: File,Lft,lft DocType: User,Simultaneous Sessions,ಏಕಕಾಲಿಕ ಸೆಷನ್ಸ್ DocType: OAuth Client,Client Credentials,ಕ್ಲೈಂಟ್ ರುಜುವಾತುಗಳು -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ಒಂದು ಘಟಕ ಅಥವಾ ಉಪಕರಣವನ್ನು ತೆರೆಯಿರಿ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ಒಂದು ಘಟಕ ಅಥವಾ ಉಪಕರಣವನ್ನು ತೆರೆಯಿರಿ DocType: Communication,Delivery Status,ಡೆಲಿವರಿ ಸ್ಥಿತಿ DocType: Module Def,App Name,ಅಪ್ಲಿಕೇಶನ್ ಹೆಸರು apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,ಅವಕಾಶ ಗರಿಷ್ಠ ಫೈಲ್ ಗಾತ್ರ ಇದಾಗಿದೆ {0} ಎಂಬಿ @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,ರೆಫರೆನ್ಸ್ DocType: Email Queue,Unsubscribe Method,ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ ವಿಧಾನ DocType: GSuite Templates,Related DocType,ಸಂಬಂಧಿತ doctype apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ವಿಷಯ ಸೇರಿಸಿ ಸಂಪಾದಿಸಿ -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ಭಾಷೆಗಳು ಆಯ್ಕೆ -apps/frappe/frappe/__init__.py +510,No permission for {0},ಯಾವುದೇ ಅನುಮತಿ {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ಭಾಷೆಗಳು ಆಯ್ಕೆ +apps/frappe/frappe/__init__.py +509,No permission for {0},ಯಾವುದೇ ಅನುಮತಿ {0} DocType: DocType,Advanced,ಸುಧಾರಿತ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API ಕೀ ತೋರುತ್ತದೆ ಅಥವಾ API ಸೀಕ್ರೆಟ್ ತಪ್ಪು !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ರೆಫರೆನ್ಸ್: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,FormTypeName ಯನ್ನು apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ಯಾವುದೇ ದಾಖಲೆಗಳು ಟ್ಯಾಗ್ . apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ಫೀಲ್ಡ್ ತೆಗೆದುಹಾಕಿ DocType: User,Send Password Update Notification,ಪಾಸ್ವರ್ಡ್ ಅಪ್ಡೇಟ್ ಅಧಿಸೂಚನೆ ಕಳುಹಿಸಿ -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",ಅವಕಾಶ doctype doctype . ಎಚ್ಚರಿಕೆ! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",ಅವಕಾಶ doctype doctype . ಎಚ್ಚರಿಕೆ! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ಮುದ್ರಣ, ಇಮೇಲ್ ಕಸ್ಟಮೈಸ್ ಸ್ವರೂಪಗಳು" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,ಹೊಸ ಆವೃತ್ತಿ ಅಪ್ಡೇಟ್ DocType: Custom Field,Depends On,ಅವಲಂಬಿಸಿರುತ್ತದೆ @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,ಒಂದು apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,ನಕಲಿಸಲು ಮಾಡಿ ಫೈಲ್ ಆಯ್ಕೆ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ಒಂದು ಕ್ಷಣ ಪರಿಶೀಲಿಸಲಾಗುತ್ತಿದೆ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,ತೋರಿಸು ಟ್ಯಾಗ್ಗಳು +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ಅನ್ವಯಿಸು ಕಟ್ಟುನಿಟ್ಟಾದ ಸದಸ್ಯರ ಅನುಮತಿ ಪರೀಕ್ಷಿಸುತ್ತಿರಬೇಕು ಸದಸ್ಯರ ಅನುಮತಿ ಒಂದು ಬಳಕೆದಾರ ಒಂದು DOCTYPE ಫಾರ್ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ, ಆಗ ಅಲ್ಲಿ ಲಿಂಕ್ ಮೌಲ್ಯವನ್ನು ಖಾಲಿಯಿದೆ ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ಗಳು ಎಂದು ಬಳಕೆದಾರ ತೋರಿಸಲಾಗುತ್ತದೆ" DocType: Address,Billing,ಬಿಲ್ಲಿಂಗ್ DocType: Email Queue,Not Sent,ಕಳುಹಿಸಲಾಗಿಲ್ಲ DocType: Web Form,Actions,ಕ್ರಿಯೆಗಳು @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ಸ್ಪಷ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ಪ್ರತಿ ದಿನ ಘಟನೆಗಳು ಅದೇ ದಿನ ಮುಗಿಸಲು ಮಾಡಬೇಕು. DocType: Communication,User Tags,ಬಳಕೆದಾರ ಟ್ಯಾಗ್ಗಳು apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ಪಡೆಯಲಾಗುತ್ತಿದೆ ಚಿತ್ರಗಳು .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: Workflow State,download-alt,ಡೌನ್ಲೋಡ್ ವಯಸ್ಸಿನ apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ಅಪ್ಲಿಕೇಶನ್ ಡೌನ್ಲೋಡ್ {0} DocType: Communication,Feedback Request,ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ಬ್ಯಾಕ್ಅಪ್ಗಳು apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,ಸಂಪರ್ಕ ಸೇರಿಸು DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ಐಚ್ಛಿಕ: ಯಾವಾಗಲೂ ಈ ಐಡಿಗಳನ್ನು ಕಳುಹಿಸಿ. ಹೊಸ ಸಾಲಿನಲ್ಲಿ ಪ್ರತಿ ಇಮೇಲ್ ವಿಳಾಸ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,ವಿವರಗಳನ್ನು ಮರೆಮಾಡಿ +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,ವಿವರಗಳನ್ನು ಮರೆಮಾಡಿ DocType: Workflow State,Tasks,ಕಾರ್ಯಗಳನ್ನು DocType: Event,Tuesday,ಮಂಗಳವಾರ DocType: Blog Settings,Blog Settings,ಬ್ಲಾಗ್ ಸೆಟ್ಟಿಂಗ್ಗಳು @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ಈ ಉಳಿಸಿದ ಅಲ್ಲಿ ಅದೇ ಫೋಲ್ಡರ್ನಲ್ಲಿ ಒಂದು ಪೈಥಾನ್ ಕಡತ ಬರೆಯಿರಿ ಮತ್ತು ಕಾಲಮ್ ಮತ್ತು ಫಲಿತಾಂಶವನ್ನು . DocType: DocType,Sort Field,ವಿಂಗಡಿಸಿ ಫೀಲ್ಡ್ DocType: Razorpay Settings,Razorpay Settings,Razorpay ಸೆಟ್ಟಿಂಗ್ಗಳು -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,ಸಂಪಾದಿಸಿ ಫಿಲ್ಟರ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ಫೀಲ್ಡ್ {0} ಬಗೆಯ {1} ಕಡ್ಡಾಯವಾಗಿ ಸಾಧ್ಯವಿಲ್ಲ -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ಉದಾ. ವರದಿ DOCTYPE ಪರೀಕ್ಷಿಸಲಾಗುತ್ತದೆ ಆದರೆ ಯಾವುದೇ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಒಂದು ಬಳಕೆದಾರ ವರದಿ ಉಲ್ಲೇಖಿಸಲ್ಪಡುತ್ತದೆ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅನ್ವಯಿಸು, ನಂತರ ಎಲ್ಲಾ ವರದಿಗಳು ಬಳಕೆದಾರ ತೋರಿಸಲಾಗಿದೆ" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,ಸಂಪಾದಿಸಿ ಫಿಲ್ಟರ್ +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ಫೀಲ್ಡ್ {0} ಬಗೆಯ {1} ಕಡ್ಡಾಯವಾಗಿ ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,ಸೇರಿಸಿ ಇನ್ನಷ್ಟು apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ಚಾರ್ಟ್ ಮರೆಮಾಡಿ DocType: System Settings,Session Expiry Mobile,ಸೆಷನ್ ಅಂತ್ಯ ಮೊಬೈಲ್ @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,ತಡವಾಗಿದೆ apps/frappe/frappe/config/setup.py +128,List of backups available for download,ಡೌನ್ಲೋಡ್ಗೆ ಲಭ್ಯವಿದೆ ಬ್ಯಾಕ್ಅಪ್ ಪಟ್ಟಿ apps/frappe/frappe/www/login.html +89,Sign up,ಸೈನ್ ಅಪ್ ಮಾಡಿ DocType: Test Runner,Output,ಔಟ್ಪುಟ್ +DocType: Email Alert,Set Property After Alert,ಎಚ್ಚರಿಕೆ ನಂತರ ಆಸ್ತಿ ಹೊಂದಿಸಿ apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ರೂಪಗಳು ಕ್ಷೇತ್ರಗಳಲ್ಲಿ ಸೇರಿಸಿ . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ಏನೋ ತೋರುತ್ತಿದೆ ಈ ಸೈಟ್ನ ಪೇಪಾಲ್ ಸಂರಚನಾ ಜೊತೆ ತಪ್ಪು. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ಎಲೆ DocType: Portal Menu Item,Portal Menu Item,ಪೋರ್ಟಲ್ ಮೆನು ಐಟಂ DocType: User Email,Email ID,ಇಮೇಲ್ +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ವರದಿ DOCTYPE ಪರೀಕ್ಷಿಸಲಾಗುತ್ತದೆ ಆದರೆ ಯಾವುದೇ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಒಂದು ಬಳಕೆದಾರ ವರದಿಗಾಗಿ ಉಲ್ಲೇಖಿಸಲ್ಪಡುತ್ತದೆ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅನ್ವಯಿಸು, ನಂತರ ಎಲ್ಲಾ ವರದಿಗಳು ಬಳಕೆದಾರರ ತೋರಿಸಲಾಗಿದೆ" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,ಪಟ್ಟಿ ಸಂಪನ್ಮೂಲಗಳ ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ ಬಳಕೆದಾರ ನಂತರ ಅನುಮತಿಸುತ್ತದೆ ಪ್ರವೇಶವನ್ನು ಹೊಂದಿರುತ್ತದೆ.
ಉದಾ ಯೋಜನೆಯ DocType: Translation,Translated Text,ಅನುವಾದ ಪಠ್ಯ DocType: Contact Us Settings,Query Options,ಪ್ರಶ್ನೆಯ ಆಯ್ಕೆಗಳು @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,ಸಂಪರ್ಕಗಳು DocType: System Settings,Setup Complete,ಸೆಟಪ್ ಕಂಪ್ಲೀಟ್ apps/frappe/frappe/config/setup.py +66,Report of all document shares,ಎಲ್ಲಾ ಡಾಕ್ಯುಮೆಂಟ್ ಷೇರುಗಳ ವರದಿ apps/frappe/frappe/www/update-password.html +18,New Password,ಹೊಸ ಪಾಸ್ವರ್ಡ್ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ಫಿಲ್ಟರ್ {0} ಕಾಣೆಯಾಗಿದೆ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ಫಿಲ್ಟರ್ {0} ಕಾಣೆಯಾಗಿದೆ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,ಕ್ಷಮಿಸಿ! ನೀವು ಸ್ವಯಂ ರಚಿತ ಕಾಮೆಂಟ್ಗಳನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ DocType: Website Theme,Style using CSS,ಸಿಎಸ್ಎಸ್ ಬಳಸಿ ಶೈಲಿ apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,ರೆಫರೆನ್ಸ್ doctype @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,ಬ್ಲಾಕ್ ಘಟಕಗಳನ್ನು apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ಸುದೀರ್ಘವಾಗಿ ಮರಳುವಂತೆ {0} ಫಾರ್ '{1}' ನಲ್ಲಿ '{2}'; ಉದ್ದ ಹೊಂದಿಸಲಾಗುತ್ತಿದೆ {3} ಡೇಟಾ ಮೊಟಕುಗೊಳಿಸುವ ಕಾರಣವಾಗುತ್ತದೆ ಎಂದು. DocType: Print Format,Custom CSS,ಕಸ್ಟಮ್ CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ಕಾಮೆಂಟ್ ಅನ್ನು ಸೇರಿಸಿ -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},ನಿರ್ಲಕ್ಷಿಸಲಾಗಿದೆ: {0} ಗೆ {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ನಿರ್ಲಕ್ಷಿಸಲಾಗಿದೆ: {0} ಗೆ {1} DocType: Address,Gujarat,ಗುಜರಾತ್ apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ಸ್ವಯಂಚಾಲಿತ ಘಟನೆಗಳು ( ಅನುಸೂಚಿಯ ) ಮೇಲೆ ದೋಷ ಲಾಗ್ . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ಮಾನ್ಯವಾದ ಅಲ್ಪವಿರಾಮದಿಂದ ಬೇರ್ಪಡಿಸಿರುವುದು ಮೌಲ್ಯ ( CSV ಫೈಲ್ ) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,ಡೀಫಾಲ್ಟ್ ಒಳಬರ DocType: Workflow State,repeat,ಪುನರಾವರ್ತಿತ DocType: Website Settings,Banner,ಗಮನಸೆಳೆಯುವ DocType: Role,"If disabled, this role will be removed from all users.","ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದಲ್ಲಿ, ಈ ಪಾತ್ರವನ್ನು ಎಲ್ಲಾ ಬಳಕೆದಾರರಿಗೆ ತೆಗೆದುಹಾಕಲಾಗುತ್ತದೆ." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ಹುಡುಕಾಟ ಸಹಾಯ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ಹುಡುಕಾಟ ಸಹಾಯ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,ನೋಂದಾಯಿತ ಆದರೆ ಅಂಗವಿಕಲ DocType: DocType,Hide Copy,ನಕಲಿಸಿ ಮರೆಮಾಡಿ apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ಎಲ್ಲಾ ಪಾತ್ರಗಳನ್ನು ತೆರವುಗೊಳಿಸಿ @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ದೇಶ apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,ವಿಳಾಸಗಳು DocType: Communication,Shared,ಹಂಚಿದ -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ದಸ್ತಾವೇಜನ್ನು ಮುದ್ರಿಸು ಲಗತ್ತಿಸಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ದಸ್ತಾವೇಜನ್ನು ಮುದ್ರಿಸು ಲಗತ್ತಿಸಿ DocType: Bulk Update,Field,ಫೀಲ್ಡ್ DocType: Communication,Received,ಸ್ವೀಕರಿಸಲಾಗಿದೆ DocType: Social Login Keys,Google Client ID,ಗೂಗಲ್ ಕ್ಲೈಂಟ್ ID @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,ಪ್ರಶ್ನೆಯ ವರದಿ DocType: User,Set New Password,ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸುವಿಕೆ DocType: User,Github User ID,GitHub ಬಳಕೆದಾರ ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ಡಾಕ್ಯುಮೆಂಟ್ ಕೌಟುಂಬಿಕತೆ ವೇಳೆ -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ಅಳಿಸಲು ಅಥವಾ {0} ಏಕೆಂದರೆ ರದ್ದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ {1} ಸಂಬಂಧ ಇದೆ {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ಅಳಿಸಲು ಅಥವಾ {0} ಏಕೆಂದರೆ ರದ್ದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ {1} ಸಂಬಂಧ ಇದೆ {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},ಅಜ್ಞಾತ ಅಪ್ಲಿಕೇಶನ್ {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% ಒಂದು ಮಾನ್ಯ ವರದಿ ರೂಪದಲ್ಲಿ ಅಲ್ಲ. ವಿನ್ಯಾಸವನ್ನು ಅನುಸರಿಸಿ% s ಒಂದು \ ಮಾಡಬೇಕು ವರದಿ DocType: Communication,Chat,ಚಾಟಿಂಗ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},ಕ್ಷೇತ್ರ ಹೆಸರು {0} ಸಾಲುಗಳಲ್ಲಿ ಅನೇಕ ಬಾರಿ ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತದೆ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},ಕ್ಷೇತ್ರ ಹೆಸರು {0} ಸಾಲುಗಳಲ್ಲಿ ಅನೇಕ ಬಾರಿ ಕಾಣಿಸಿಕೊಳ್ಳುತ್ತದೆ {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} ನಿಂದ {2} ಸಾಲು # {3} DocType: Communication,Expired,ಅವಧಿ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ಒಂದು ಗ್ರಿಡ್ ಒಂದು ಕ್ಷೇತ್ರದಲ್ಲಿ ಲಂಬಸಾಲುಗಳ ಸಂಖ್ಯೆ (ಗ್ರಿಡ್ನಲ್ಲಿ ಒಟ್ಟು ಕಾಲಮ್ಗಳು ಕಡಿಮೆ 11 ಇರಬೇಕು) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ಒಂದು ಖಾ apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},ಅಪರಿಚಿತ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್: {0} DocType: Workflow State,arrow-down,ಬಾಣದ ಡೌನ್ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ಕುಸಿತ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ಬಳಕೆದಾರ ಅಳಿಸಲು ನಿಮಗೆ ಅನುಮತಿ ಇಲ್ಲ {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,ಕೊನೆಯ ರಂದು ನವೀಕರಿಸಲಾಗಿದೆ DocType: Help Article,Likes,ಇಷ್ಟಗಳು DocType: Website Settings,Top Bar,ಟಾಪ್ ಬಾರ್ DocType: GSuite Settings,Script Code,ಸ್ಕ್ರಿಪ್ಟ್ ಕೋಡ್ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ಬಳಕೆದಾರ ಇಮೇಲ್ ರಚಿಸಿ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ಬಳಕೆದಾರ ಇಮೇಲ್ ರಚಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,ಯಾವುದೇ ಅನುಮತಿಗಳನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,ಯಾವುದೇ ಅನುಮತಿಗಳನ್ನು ನಿರ್ದಿಷ್ಟಪಡಿಸಲಾಗಿಲ್ಲ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ಜಾಗತಿಕ ಸೆಟ್ಟಿಂಗ್ಗಳು: ಬಳಕೆದಾರರು ಮಾತ್ರ ಪರಿಶೀಲಿಸಿದ ಐಕಾನ್ಗಳನ್ನು ಆಯ್ಕೆ ಸಾಧ್ಯವಾಗುತ್ತದೆ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ಕಂಡುಬಂದಿಲ್ಲ DocType: Custom Role,Custom Role,ಕಸ್ಟಮ್ ಪಾತ್ರ apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ಮುಖಪುಟ / ಟೆಸ್ಟ್ ಫೋಲ್ಡರ್ 2 DocType: System Settings,Ignore User Permissions If Missing,ಮಿಸ್ಸಿಂಗ್ ವೇಳೆ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ನಿರ್ಲಕ್ಷಿಸು -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,ಅಪ್ಲೋಡ್ ಮೊದಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಬಹುದು ದಯವಿಟ್ಟು. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ಅಪ್ಲೋಡ್ ಮೊದಲು ಡಾಕ್ಯುಮೆಂಟ್ ಉಳಿಸಬಹುದು ದಯವಿಟ್ಟು. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ DocType: Dropbox Settings,Dropbox Access Secret,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಪ್ರವೇಶ ಸೀಕ್ರೆಟ್ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ಮತ್ತೊಂದು ಕಾಮೆಂಟ್ ಸೇರಿಸಿ apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE ಸಂಪಾದಿಸಿ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ಸುದ್ದಿಪತ್ರ ಚಂದಾದಾರಿಕೆ ರದ್ದು -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ಒಂದು ವಿಭಾಗ ಬ್ರೇಕ್ ಮೊದಲು ಬರುವದು ಪಟ್ಟು +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ಒಂದು ವಿಭಾಗ ಬ್ರೇಕ್ ಮೊದಲು ಬರುವದು ಪಟ್ಟು apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ಕೊನೆಯ ಮಾರ್ಪಾಡು ಮೂಲಕ DocType: Workflow State,hand-down,ಕೈ ಕೆಳಗೆ DocType: Address,GST State,ಜಿಎಸ್ಟಿ ರಾಜ್ಯ -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : ಸಲ್ಲಿಸಿ ರದ್ದು ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : ಸಲ್ಲಿಸಿ ರದ್ದು ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ DocType: Website Theme,Theme,ಥೀಮ್ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,ದೋಷಗಳು ಇದ್ದವು. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ಅನ್ನು ದೃಢೀಕರಣ ಕೋಡ್ ತಲುಪಿದೆ ಮರುನಿರ್ದೇಶಿಸುತ್ತದೆ @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ನ DocType: Website Theme,Text Color,ಪಠ್ಯ ಬಣ್ಣ DocType: Desktop Icon,Force Show,ಫೋರ್ಸ್ ಶೋ apps/frappe/frappe/auth.py +78,Invalid Request,ಅಮಾನ್ಯ ವಿನಂತಿ -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ಈ ಮಾದರಿಯ ಇನ್ಪುಟ್ ಹೊಂದಿಲ್ಲ +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ಈ ಮಾದರಿಯ ಇನ್ಪುಟ್ ಹೊಂದಿಲ್ಲ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},ಅಧಿವೇಶನ ಮುಗಿಯುವ ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು {0} DocType: Website Sidebar Item,Group,ಗುಂಪು DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","ಆಯ್ಕೆ ಗುರಿ ಹೊಸ ಪುಟ ತೆರೆಯಲು = ""_blank"" ." @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ದೋಷಗಳನ್ನು ಎನ್ಕೋಡಿಂಗ್ ನಿರ್ಲಕ್ಷಿಸು. DocType: Workflow State,wrench,ಬಲಾತ್ಕಾರವಾಗಿ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ಹೊಂದಿಸಿ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ಸೆಟಪ್> ಬಳಕೆದಾರ DocType: Authentication Log,Date,ದಿನಾಂಕ DocType: Website Settings,Disable Signup,ಸೈನ್ ಅಪ್ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,ನಿಮ್ಮ ವ್ಯವಸ್ಥೆಯ ಸೆಟಪ್ ಬಂದಿದ್ದರೂ ಜಾಗ್ರತರಾಗಿ . ಈ ಜೂನ್ ಕೆಲವು ಕ್ಷಣಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಬಹುದು . @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,ಕಾಮೆಂಟ್ ಸೇರಿಸಿ DocType: DocField,Mandatory,ಆಜ್ಞಾಪಕ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ರಫ್ತು ಮಾಡ್ಯೂಲ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : ಇಲ್ಲ ಮೂಲಭೂತ ಅನುಮತಿಗಳನ್ನು ಸೆಟ್ +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : ಇಲ್ಲ ಮೂಲಭೂತ ಅನುಮತಿಗಳನ್ನು ಸೆಟ್ apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ರಂದು ಅಂತ್ಯಗೊಳ್ಳಲಿದೆ {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},ನಿಮ್ಮ ಬ್ಯಾಕ್ಅಪ್ ಡೌನ್ಲೋಡ್ ಲಿಂಕ್ ಕೆಳಗಿನ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ ಇಮೇಲ್ ನಡೆಯಲಿದೆ: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","ಆಫ್ , ಸಲ್ಲಿಸಿ ರದ್ದು , ಮಾಡಿರಿ ಅರ್ಥ" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,ಪ್ರಶ್ನಾವಳಿ ವರದಿ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ನಿಗದಿಪಡಿಸಲಾಗಿದೆ {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ಶೋಧಕಗಳು ಉಳಿಸಿದ DocType: DocField,Percent,ಪರ್ಸೆಂಟ್ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ಶೋಧಕಗಳು ಸೆಟ್ ಮಾಡಿ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ಶೋಧಕಗಳು ಸೆಟ್ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ಸಂಬಂಧ DocType: Workflow State,book,ಫೇಸ್ಬುಕ್ DocType: Website Settings,Landing Page,ಲ್ಯಾಂಡಿಂಗ್ ಪುಟ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,ಕಸ್ಟಮ್ ಸ್ಕ್ರಿಪ್ಟ್ ದೋಷ +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,ಕಸ್ಟಮ್ ಸ್ಕ್ರಿಪ್ಟ್ ದೋಷ apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} ಹೆಸರು apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ಆಮದು ವಿನಂತಿ ಸರತಿಯಲ್ಲಿ. ಈ ಕೆಲವು ಕ್ಷಣಗಳಲ್ಲಿ ತೆಗೆದುಕೊಳ್ಳಬಹುದು, ದಯವಿಟ್ಟು." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ಯಾವುದೇ ಅನುಮತಿಗಳು ಈ ಮಾನದಂಡಗಳನ್ನು ಸೆಟ್ . @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,ಮೊಬೈಲ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,ಈ ಸಂಪನ್ಮೂಲವನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅಗತ್ಯವಾದ ಅನುಮತಿ ಇಲ್ಲ. ಪ್ರವೇಶ ಪಡೆಯಲು ದಯವಿಟ್ಟು ನಿಮ್ಮ ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ. DocType: Custom Field,Custom,ಪದ್ಧತಿ apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,ಸೆಟಪ್ ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ ವಿವಿಧ ಮಾನದಂಡಗಳನ್ನು ಆಧರಿಸಿ. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},ಅಡಿಯಲ್ಲಿ ದಾಖಲಿಸಿದ ಪೋಸ್ಟ್ಗಳು {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},ಅಡಿಯಲ್ಲಿ ದಾಖಲಿಸಿದ ಪೋಸ್ಟ್ಗಳು {0} DocType: Email Alert,Send alert if date matches this field's value,ದಿನಾಂಕ ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮೌಲ್ಯದ ಹೊಂದುತ್ತಿದೆಯೇ ಎಚ್ಚರಿಕೆಯನ್ನು ಕಳಿಸಿ DocType: Workflow,Transitions,ಪರಿವರ್ತನೆಗಳು apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,ತೆಗೆದುಹಾಕಿ {0} ಮತ್ತು ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ಸಹ ಅಳಿಸುವುದೇ? @@ -1307,9 +1308,8 @@ DocType: User,Login After,ನಂತರ ಲಾಗಿನ್ DocType: Print Format,Monospace,ಮೊನೋಸ್ಪೇಸ್ DocType: Letter Head,Printing,ಮುದ್ರಣ DocType: Workflow State,thumbs-up,ಥಂಬ್ಸ್ ಅಪ್ -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆ ಹೊಂದಾಣಿಕೆ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಹೊಸ ಇಮೇಲ್ ಖಾತೆ ರಚಿಸಲು DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,ನಿಖರವಾದ 1 ಮತ್ತು 6 ನಡುವೆ ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,ನಿಖರವಾದ 1 ಮತ್ತು 6 ನಡುವೆ ಇರಬೇಕು apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},ಎಫ್ಡಬ್ಲ್ಯೂ: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ಮತ್ತು DocType: Error Snapshot,Frames,ಚೌಕಟ್ಟುಗಳು @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,ಚಿತ್ರ ಲಿಂಕ್ DocType: Auto Email Report,Report Filters,ವರದಿ ಶೋಧಕಗಳು apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ಈಗ DocType: Workflow State,step-backward,ಹಂತ ಹಿಂದುಳಿದ -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ App_title } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ App_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,ನಿಮ್ಮ ಸೈಟ್ ಸಂರಚನಾ ಡ್ರಾಪ್ಬಾಕ್ಸ್ accesskeys ಸೆಟ್ ದಯವಿಟ್ಟು apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ಈ ವಿಳಾಸಕ್ಕೆ ಕಳುಹಿಸಲು ಅವಕಾಶ ಈ ರೆಕಾರ್ಡ್ ಅಳಿಸು apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ಮಾತ್ರ ಕಡ್ಡಾಯವಾಗಿ ಜಾಗ ಹೊಸ ದಾಖಲೆಗಳು ಅವಶ್ಯಕ. ನೀವು ಬಯಸಿದರೆ ನೀವು ಕಡ್ಡಾಯವಲ್ಲದ ಕಾಲಮ್ಗಳನ್ನು ಅಳಿಸಬಹುದು. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,ಲಗತ್ತುಗಳು ಫೋಲ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,ಎಲ್ಲವನ್ನು ವಿಸ್ತರಿಸು apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,ಮಾನ್ಯ ಲಾಗಿನ್ ಐಡಿ ಅಗತ್ಯವಿದೆ. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,ಮತ್ತೆತೆರೆಯಿರಿ -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,ನೀವು ಪಾವತಿ ರದ್ದುಪಡಿಸುತ್ತೇವೆ -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ದತ್ತಾಂಶ ಮಾನ್ಯ CSV ಕಡತ ಆಯ್ಕೆ ಮಾಡಿ +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ದತ್ತಾಂಶ ಮಾನ್ಯ CSV ಕಡತ ಆಯ್ಕೆ ಮಾಡಿ apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ಅನ್ ಹಂಚಿಕೆಯ ಈ ಡಾಕ್ಯುಮೆಂಟ್ {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{1} ಗೆ {0} ನಿಂದ ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿಯನ್ನು ಪರಿವರ್ತನೆ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: DocType,"Make ""name"" searchable in Global Search","ಹೆಸರು" ಗ್ಲೋಬಲ್ ಸರ್ಚ್ ಹುಡುಕಲು ಮಾಡಿ @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ಮ DocType: Help Category,Help Category,ಸಹಾಯ ವರ್ಗ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ಬಳಕೆದಾರ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ apps/frappe/frappe/www/404.html +8,Page missing or moved,ಕಾಣೆಯಾಗಿದೆ ಅಥವಾ ತೆರಳಿದರು ಪುಟ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,ಸಂಪಾದಿಸಿ {0} ಗುಣಗಳನ್ನು DocType: DocType,Route,ಮಾರ್ಗ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ಪಾವತಿ ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು DocType: DocField,Name,ಹೆಸರು @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ಡಾಕ್ಸ್ ಹುಡುಕಾಟ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ಡಾಕ್ಸ್ ಹುಡುಕಾಟ DocType: OAuth Authorization Code,Valid,ಮಾನ್ಯ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,ಲಿಂಕ್ ತೆರೆಯಿರಿ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ನಿನ್ನ ಭಾಷೆ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ಲಿಂಕ್ ತೆರೆಯಿರಿ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ನಿನ್ನ ಭಾಷೆ apps/frappe/frappe/desk/form/load.py +46,Did not load,ಲೋಡ್ ಮಾಡಲಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ರೋ ಸೇರಿಸಿ DocType: Tag Category,Doctypes,DOCTYPES @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,ಪ್ರತ DocType: Address,Lakshadweep Islands,ಲಕ್ಷದ್ವೀಪಗಳನ್ನು apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,ಬರೆಯಬಹುದು apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","ಕೆಲವು ದಾಖಲೆಗಳನ್ನು , ಒಂದು ಸರಕುಪಟ್ಟಿ ಹಾಗೆ ಒಮ್ಮೆ ಅಂತಿಮ ಬದಲಾಗಿದೆ ಮಾಡಬಾರದು . ಹುಡುಕುವ ದಾಖಲೆಗಳಲ್ಲಿ ಅಂತಿಮ ರಾಜ್ಯದ ಸಲ್ಲಿಸಲಾಗಿದೆ ಎಂದು ಕರೆಯಲಾಗುತ್ತದೆ . ನೀವು ಪಾತ್ರಗಳನ್ನು ಸಲ್ಲಿಸಬಹುದು ಯಾವ ನಿರ್ಬಂಧಿಸಬಹುದು." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,ನೀವು ಈ ವರದಿಯನ್ನು ರಫ್ತು ಮಾಡಲು ಅನುಮತಿ ಇಲ್ಲ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ನೀವು ಈ ವರದಿಯನ್ನು ರಫ್ತು ಮಾಡಲು ಅನುಮತಿ ಇಲ್ಲ apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ಐಟಂ ಆಯ್ಕೆಮಾಡಲಾಗಿದೆ DocType: Newsletter,Test Email Address,ಟೆಸ್ಟ್ ಇಮೇಲ್ ವಿಳಾಸ DocType: ToDo,Sender,ಪ್ರೇಷಕ @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,ಆಮದು ಜಿಪ್ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ದಾಖಲೆ ID DocType: Print Settings,Letter,ಅಕ್ಷರಗಳು -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,ಚಿತ್ರ ಕ್ಷೇತ್ರ ಪ್ರಕಾರ ಇರಬೇಕು ಚಿತ್ರ ಲಗತ್ತಿಸಿ +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,ಚಿತ್ರ ಕ್ಷೇತ್ರ ಪ್ರಕಾರ ಇರಬೇಕು ಚಿತ್ರ ಲಗತ್ತಿಸಿ DocType: DocField,Columns,ಅಂಕಣ DocType: Async Task,Succeeded,ಉತ್ತರಾಧಿಕಾರಿ apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},ಅಗತ್ಯವಿದೆ ಕಡ್ಡಾಯ ಜಾಗ {0} @@ -1464,7 +1462,7 @@ DocType: DocField,Text Editor,ಪಠ್ಯ ಸಂಪಾದಕ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,ನಮ್ಮ ಬಗ್ಗೆ ಪುಟ ಸೆಟ್ಟಿಂಗ್ಗಳು. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,ಸಂಪಾದಿಸಿ ಕಸ್ಟಮ್ HTML DocType: Error Snapshot,Error Snapshot,ದೋಷ ಸ್ನ್ಯಾಪ್ಶಾಟ್ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ರಲ್ಲಿ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ರಲ್ಲಿ DocType: Email Alert,Value Change,ಮೌಲ್ಯ ಬದಲಾಯಿಸು DocType: Standard Reply,Standard Reply,ಗುಣಮಟ್ಟದ ಉತ್ತರ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ಇನ್ಪುಟ್ ಬಾಕ್ಸ್ ಅಗಲ @@ -1480,12 +1478,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ಶೀರ್ಷಿಕೆ ತಯಾರಿಸಲು ಈ FIELDNAME ಬಳಸಿ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,ಆಮದು ಇಮೇಲ್ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,ಬಳಕೆದಾರ ಎಂದು ಆಹ್ವಾನಿಸಿ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆ +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆ apps/frappe/frappe/model/naming.py +94, for {0},ಫಾರ್ {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,ದೋಷಗಳಾಗಿವೆ. ಈ ವರದಿ ಮಾಡಿ. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,ನೀವು ಈ ದಸ್ತಾವೇಜನ್ನು ಮುದ್ರಿಸು ಅನುಮತಿ ಇಲ್ಲ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,ನೀವು ಈ ದಸ್ತಾವೇಜನ್ನು ಮುದ್ರಿಸು ಅನುಮತಿ ಇಲ್ಲ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,ದಯವಿಟ್ಟು ವರದಿ ಫಿಲ್ಟರ್ ಟೇಬಲ್ ಶೋಧಕಗಳು ಮೌಲ್ಯವನ್ನು. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,ಲೋಡ್ ವರದಿ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ಲೋಡ್ ವರದಿ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ನಿಮ್ಮ ಚಂದಾದಾರಿಕೆಯನ್ನು ಇಂದು ಅಂತ್ಯಗೊಳ್ಳಲಿದೆ. DocType: Page,Standard,ಸ್ಟ್ಯಾಂಡರ್ಡ್ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ಫೈಲ್ ಲಗತ್ತಿಸಿ @@ -1515,7 +1513,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ಪ್ರಾದೇಶಿಕ ವಿಸ್ತರಣೆಗಳು DocType: LDAP Settings,Base Distinguished Name (DN),ಬೇಸ್ ಪ್ರತ್ಯೇಕ ಹೆಸರನ್ನು (ಡಿ) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ಈ ಸಂಭಾಷಣೆ ಬಿಡಿ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ಆಯ್ಕೆಗಳು ಲಿಂಕ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೆಟ್ ಅಲ್ಲ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ಆಯ್ಕೆಗಳು ಲಿಂಕ್ ಕ್ಷೇತ್ರದಲ್ಲಿ ಸೆಟ್ ಅಲ್ಲ {0} DocType: Customize Form,"Must be of type ""Attach Image""",ಮಾದರಿ ಇರಬೇಕು "ಚಿತ್ರ ಲಗತ್ತಿಸಿ" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ಆಯ್ಕೆ ಮಾಡದ ಎಲ್ಲಾ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ನೀವು ಕ್ಷೇತ್ರಕ್ಕೆ ಹೊಂದಿಸದೆ ಅಲ್ಲ 'ಓದಲು ಮಾತ್ರ' ಮಾಡಬಹುದು {0} @@ -1558,9 +1556,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ನೋಡು apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ದೋಷ ವರದಿ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,ಪ್ರತಿಕ್ರಿಯೆ ಪರಿಸ್ಥಿತಿಗಳು ಹೊಂದುತ್ತಿಲ್ಲ -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರ ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,ಟೈಮ್ಲೈನ್ ಕ್ಷೇತ್ರ ಮಾನ್ಯ FIELDNAME ಇರಬೇಕು DocType: Currency,Symbol,ವಿಗ್ರಹ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ರೋ # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ರೋ # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಇಮೇಲ್ apps/frappe/frappe/auth.py +245,Login not allowed at this time,ಲಾಗಿನ್ ಈ ಸಮಯದಲ್ಲಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Email Account,Email Sync Option,ಇಮೇಲ್ ಸಿಂಕ್ ಆಯ್ಕೆ @@ -1582,7 +1580,7 @@ DocType: DocField,Text,ಪಠ್ಯ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,ಸ್ಟ್ಯಾಂಡರ್ಡ್ ಸಾಮಾನ್ಯ ಪ್ರಶ್ನೆಗಳಿಗೆ ಉತ್ತರಿಸುತ್ತಾಳೆ. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ಡೀಫಾಲ್ಟ್ ಕಳುಹಿಸಲಾಗುತ್ತಿದೆ DocType: Workflow State,volume-off,ಪರಿಮಾಣ ಆಫ್ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},ಇಷ್ಟಪಟ್ಟಿದ್ದಾರೆ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},ಇಷ್ಟಪಟ್ಟಿದ್ದಾರೆ {0} DocType: Footer Item,Footer Item,ಅಡಿಟಿಪ್ಪಣಿ ಐಟಂ ,Download Backups,ಡೌನ್ಲೋಡ್ ಬ್ಯಾಕ್ಅಪ್ಗಳು apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ಮುಖಪುಟ / ಟೆಸ್ಟ್ ಫೋಲ್ಡರ್ 1 @@ -1617,7 +1615,7 @@ DocType: Web Page,Text Align,ಪಠ್ಯ align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ಹೆಸರು ವಿಶೇಷ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದುವಂತಿಲ್ಲ {0} DocType: Contact Us Settings,Forward To Email Address,ಫಾರ್ವರ್ಡ್ ಇಮೇಲ್ ವಿಳಾಸಕ್ಕೆ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ತೋರಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,ಶೀರ್ಷಿಕೆ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮಾನ್ಯ ಕ್ಷೇತ್ರ ಹೆಸರು ಇರಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,ಶೀರ್ಷಿಕೆ ಕ್ಷೇತ್ರದಲ್ಲಿ ಮಾನ್ಯ ಕ್ಷೇತ್ರ ಹೆಸರು ಇರಬೇಕು apps/frappe/frappe/config/core.py +7,Documents,ಡಾಕ್ಯುಮೆಂಟ್ಸ್ DocType: Email Flag Queue,Is Completed,ಮುಗಿದ apps/frappe/frappe/www/me.html +22,Edit Profile,ಪ್ರೊಫೈಲ್ಸಂಪಾದಿಸು @@ -1627,8 +1625,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",ಇಲ್ಲಿ ವ್ಯಾಖ್ಯಾನಿಸಲಾಗಿದೆ FIELDNAME ಮೌಲ್ಯವನ್ನು ಹೊಂದಿದೆ ಮಾತ್ರ ಅಥವಾ ನಿಯಮಗಳನ್ನು ನೈಜ (ಉದಾಹರಣೆಗಳು) ಈ ಕ್ಷೇತ್ರದಲ್ಲಿ ಕಾಣಿಸುತ್ತದೆ: myfield eval: doc.myfield == 'ನನ್ನ ಮೌಲ್ಯ' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ಇಂದು -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ಇಂದು +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ಇಂದು +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ಇಂದು apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ನೀವು ಈ ಹೊಂದಿರಬೇಕು, ಬಳಕೆದಾರರು ಮಾತ್ರ ಸಾಧ್ಯವಾಗುತ್ತದೆ ಪ್ರವೇಶ ದಾಖಲೆಗಳನ್ನು ಲಿಂಕ್ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ ಅಲ್ಲಿ ( ಉದಾ. ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ ) ( ಉದಾ. ಬ್ಲಾಗರ್ ) ಇರುತ್ತದೆ ." DocType: Error Log,Log of Scheduler Errors,ಶೆಡ್ಯೂಲರ ತಪ್ಪುಗಳಿಗೆ ಲಾಗ್ DocType: User,Bio,ಬಯೋ @@ -1652,6 +1650,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ನಕ್ಷತ್ರ ಎಂದು ಕಡಿಮೆ & 5 ನಕ್ಷತ್ರಗಳು ಅತ್ಯಧಿಕ ರೇಟಿಂಗ್ ಎಂಬ DocType: Event,Ref Name,ಉಲ್ಲೇಖ ಹೆಸರು DocType: Web Page,Center,ಕೇಂದ್ರ +DocType: Email Alert,Value To Be Set,ಮೌಲ್ಯ ಹೊಂದಿಸಿ ಬಿ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,ಮೊದಲ ಮಟ್ಟ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ರಾಜ್ಯದ ಬದಲಾಯಿಸಲು ನಿಗದಿಪಡಿಸಲಾಗಿದೆ ಒಂದು ದಸ್ತಾವೇಜು ಪಾತ್ರದಲ್ಲಿ ಅವಕಾಶ ರಾಜ್ಯಗಳಲ್ಲಿ ಪ್ರತಿನಿಧಿಸುತ್ತದೆ. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,ರಿಫ್ರೆಶ್ ಫಾರ್ಮ್ @@ -1672,18 +1671,18 @@ DocType: DocType,Has Web View,ವೆಬ್ ವೀಕ್ಷಣೆ ಹ್ಯಾ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE ಹೆಸರು ಒಂದು ಪತ್ರವನ್ನು ಪ್ರಾರಂಭಿಸಬೇಕು ಮತ್ತು ಅಕ್ಷರಗಳು, ಸಂಖ್ಯೆಗಳು, ಖಾಲಿ ಮತ್ತು ಅಡ್ಡಗೆರೆ ಒಳಗೊಂಡಿರಬಹುದು" DocType: Communication,Spam,ಸ್ಪಾಮ್ DocType: Integration Request,Integration Request,ಇಂಟಿಗ್ರೇಷನ್ ವಿನಂತಿ -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,ಪ್ರಿಯ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,ಪ್ರಿಯ DocType: Address,Maharashtra,ಮಹಾರಾಷ್ಟ್ರ DocType: Address,Accounts User,ಬಳಕೆದಾರ ಖಾತೆಗಳು DocType: Web Page,HTML for header section. Optional,ಹೆಡರ್ ಭಾಗವನ್ನುತೆರೆದು ಎಚ್ಟಿಎಮ್ಎಲ್ . ಐಚ್ಛಿಕ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ಈ ವೈಶಿಷ್ಟ್ಯವು ಹೊಚ್ಚ ಹೊಸ ಮತ್ತು ಇನ್ನೂ ಪ್ರಾಯೋಗಿಕ -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,{0} ಸಾಲುಗಳ ಗರಿಷ್ಠ ಅವಕಾಶ +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,{0} ಸಾಲುಗಳ ಗರಿಷ್ಠ ಅವಕಾಶ DocType: Email Unsubscribe,Global Unsubscribe,ಜಾಗತಿಕ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ಇದು ಬಹಳ ಸಾಮಾನ್ಯ ಗುಪ್ತಪದವನ್ನು. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,ವೀಕ್ಷಿಸಿ DocType: Communication,Assigned,ನಿಯೋಜಿಸಲಾಗಿದೆ DocType: Print Format,Js,ಉಪಯೋಗಿಸಿದ -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,ಆಯ್ಕೆ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ಆಯ್ಕೆ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ಸಣ್ಣ ಕೀಬೋರ್ಡ್ ಮಾದರಿಗಳನ್ನು ಊಹಿಸುವುದು ಸುಲಭ DocType: Portal Settings,Portal Menu,ಪೋರ್ಟಲ್ ಮೆನು apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} ಉದ್ದ 1 ಮತ್ತು 1000 ನಡುವೆ ಇರಬೇಕು @@ -1722,7 +1721,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ಬಳಕೆದಾರ ಹುಡುಕಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,ಔಟ್ಪುಟ್ ಸ್ವರೂಪ ಅಮಾನ್ಯವಾಗಿದೆ DocType: Custom DocPerm,Apply this rule if the User is the Owner,ಬಳಕೆದಾರ ಮಾಲೀಕ ವೇಳೆ ಈ ನಿಯಮ ಅನ್ವಯಿಸುವುದಿಲ್ಲ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,ನಿಮ್ಮ ಲಾಗಿನ್ ID ಅನ್ನು +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,ನಿಮ್ಮ ಲಾಗಿನ್ ID ಅನ್ನು apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,ವರದಿ ಬಿಲ್ಡ್ DocType: Note,Notify users with a popup when they log in,ಅವರು ಒಳಗೆ ಪ್ರವೇಶಿಸಿದಾಗ ಪಾಪ್ಅಪ್ ಬಳಕೆದಾರರಿಗೆ ಸೂಚಿಸಿ apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ , ವಿಲೀನಗೊಳ್ಳಲು ಹೊಸ ಗುರಿಯನ್ನು ಆಯ್ಕೆ" @@ -1741,17 +1740,18 @@ DocType: User Permission for Page and Report,Roles Permission,ಪಾತ್ರಗ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,ಅಪ್ಡೇಟ್ DocType: Error Snapshot,Snapshot View,ಸ್ನ್ಯಾಪ್ಶಾಟ್ ವೀಕ್ಷಿಸಿ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ಕಳುಹಿಸುವ ಮೊದಲು ಸುದ್ದಿಪತ್ರವನ್ನು ಉಳಿಸಲು ದಯವಿಟ್ಟು -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ಆಯ್ಕೆಗಳು {0} ಸತತವಾಗಿ {1} ಕ್ಷೇತ್ರದಲ್ಲಿ ಒಂದು ಮಾನ್ಯವಾದ DOCTYPE ಇರಬೇಕು +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳ) ಹಿಂದೆ +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ಆಯ್ಕೆಗಳು {0} ಸತತವಾಗಿ {1} ಕ್ಷೇತ್ರದಲ್ಲಿ ಒಂದು ಮಾನ್ಯವಾದ DOCTYPE ಇರಬೇಕು apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ಪ್ರಾಪರ್ಟೀಸ್ ಸಂಪಾದಿಸಿ DocType: Patch Log,List of patches executed,ತೇಪೆ ಪಟ್ಟಿ ಮರಣದಂಡನೆ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ಈಗಾಗಲೇ ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್ -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ಸಂವಹನ ಮಧ್ಯಮ +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ಸಂವಹನ ಮಧ್ಯಮ DocType: Website Settings,Banner HTML,ಬ್ಯಾನರ್ ಎಚ್ಟಿಎಮ್ಎಲ್ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',ಮತ್ತೊಂದು ಪಾವತಿ ವಿಧಾನವನ್ನು ಅನುಸರಿಸಿ. Razorpay ಚಲಾವಣೆಯ ವ್ಯವಹಾರದಲ್ಲಿ ಬೆಂಬಲಿಸದಿರುವುದರಿಂದ '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,ಬ್ಯಾಕ್ಅಪ್ ಸರತಿಯಲ್ಲಿ. ಅದು ಗಂಟೆ ಕೆಲವು ನಿಮಿಷಗಳನ್ನು ತೆಗೆದುಕೊಳ್ಳಬಹುದು. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,ನೋಂದಣಿ OAuth ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ಸಾಧ್ಯವಿಲ್ಲ ""{2}"". ಇದು ""{3}"" ಒಂದು ಆಗಿರಬೇಕು" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ಸಾಧ್ಯವಿಲ್ಲ ""{2}"". ಇದು ""{3}"" ಒಂದು ಆಗಿರಬೇಕು" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ಅಥವಾ {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,ತೋರಿಸಿ ಅಥವಾ ಮರೆಮಾಡಿ ಡೆಸ್ಕ್ಟಾಪ್ ಚಿಹ್ನೆಗಳು apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,ಪಾಸ್ವರ್ಡ್ ಅಪ್ಡೇಟ್ @@ -1778,7 +1778,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,ಶೋ ಲೈನ್ ಪರಿಚ್ಛೇದ ನಂತರ ಬ್ರೇಕ್ಸ್ DocType: Blogger,Short Name,ಚಿಕ್ಕ ಹೆಸರು apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},ಪುಟ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","ನೀವು ಎಲ್ಲಾ ಸಿಂಕ್ ಆಯ್ಕೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಲಾಗುತ್ತದೆ, ಇದು ಪರಿಚಾರಕದಿಂದ ಎಲ್ಲಾ \ ಓದಲು ಹಾಗೂ ಓದದಿರುವ ಸಂದೇಶವನ್ನು ಪುನಃ ಸಿಂಕ್ ಮಾಡುತ್ತದೆ. ಇದು ಸಂವಹನ (ಇಮೇಲ್ಗಳನ್ನು) ಪೋಲಾಗುವುದನ್ನು \ ಕಾರಣವಾಗಬಹುದು." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ಫೈಲ್ಸ್ ಗಾತ್ರ @@ -1790,6 +1790,7 @@ DocType: Contact,Purchase Manager,ಖರೀದಿ ಮ್ಯಾನೇಜರ DocType: Custom Script,Sample,ಮಾದರಿ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,ವರ್ಗಿಕರಿಸದ ಟ್ಯಾಗ್ಗಳು DocType: Event,Every Week,ಪ್ರತಿ ವಾರ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ಇಮೇಲ್ ಖಾತೆ ಹೊಂದಾಣಿಕೆ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಹೊಸ ಇಮೇಲ್ ಖಾತೆ ರಚಿಸಲು apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ನಿಮ್ಮ ಬಳಕೆಯ ಪರಿಶೀಲಿಸಿ ಅಥವಾ ಹೆಚ್ಚಿನ ಮೊತ್ತದ ಯೋಜನೆಯನ್ನು ಅಪ್ಗ್ರೇಡ್ ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ DocType: Custom Field,Is Mandatory Field,ಕಡ್ಡಾಯ ಕ್ಷೇತ್ರವಾಗಿದೆ DocType: User,Website User,ವೆಬ್ಸೈಟ್ ಬಳಕೆದಾರ @@ -1813,16 +1814,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,ಕಸ್ಟಮ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ ಮೆನು DocType: Workflow State,pencil,ಪೆನ್ಸಿಲ್ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,ಸಂದೇಶಗಳನ್ನು ಮತ್ತು ಇತರ ಅಧಿಸೂಚನೆಗಳನ್ನು ಚಾಟಿಂಗ್. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ನಂತರ ಸೇರಿಸಲು {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ನಂತರ ಸೇರಿಸಲು {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,ಹಂಚಿಕೊಳ್ಳಿ {0} ಜೊತೆ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ಇಮೇಲ್ ಖಾತೆ ಸೆಟಪ್ ಮಾಡಿ ನಿಮ್ಮ ಗುಪ್ತಪದವನ್ನು ನಮೂದಿಸಿ: DocType: Workflow State,hand-up,ಕೈ ಅಪ್ DocType: Blog Settings,Writers Introduction,ರೈಟರ್ಸ್ ಪರಿಚಯ DocType: Address,Phone,ದೂರವಾಣಿ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ದೋಷ ಮೌಲ್ಯಮಾಪನ ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ {0}. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಟೆಂಪ್ಲೇಟ್ ಸರಿಪಡಿಸಿ. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ದೋಷ ಮೌಲ್ಯಮಾಪನ ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ {0}. ದಯವಿಟ್ಟು ನಿಮ್ಮ ಟೆಂಪ್ಲೇಟ್ ಸರಿಪಡಿಸಿ. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ಆರಂಭಿಸಲು ದಾಖಲೆ ಪ್ರಕಾರ ಅಥವಾ ರೋಲ್ ಮಾಡಿ . DocType: Contact,Passive,ನಿಷ್ಕ್ರಿಯ DocType: Contact,Accounts Manager,ಖಾತೆಗಳು ಮ್ಯಾನೇಜರ್ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,ನಿಮ್ಮ ಪಾವತಿ ರದ್ದುಪಡಿಸಲಾಗಿದೆ. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ಕಡತ ಬಗೆಯ DocType: Help Article,Knowledge Base Editor,ಜ್ಞಾನ ನೆಲೆ ಸಂಪಾದಕ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ಪುಟ ಸಿಗಲಿಲ್ಲ @@ -1850,6 +1852,7 @@ DocType: Property Setter,Property Type,ಆಸ್ತಿ ಕೌಟುಂಬಿಕ DocType: Workflow State,screenshot,ಸ್ಕ್ರೀನ್ಶಾಟ್ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ಕೇವಲ ನಿರ್ವಾಹಕರು ಪ್ರಮಾಣಿತ ವರದಿ ಉಳಿಸಬಹುದು . ಮರುಹೆಸರಿಸು ಮತ್ತು ಉಳಿಸಲು ದಯವಿಟ್ಟು . DocType: System Settings,Background Workers,ಹಿನ್ನೆಲೆ ವರ್ಕರ್ಸ್ +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} ಮೆಟಾ ವಸ್ತು ಇವು DocType: Deleted Document,Data,ಡೇಟಾ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ಡಾಕ್ಯುಮೆಂಟ್ ಸ್ಥಿತಿ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ನೀವು ಮಾಡಿದ {0} ನ {1} @@ -1874,7 +1877,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,ಪ್ರದರ್ಶನ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,ನೀವು ಲಾಗ್ ಇನ್ ಮತ್ತು ಬ್ಯಾಕ್ಅಪ್ ಪ್ರವೇಶಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತದೆ ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್ ಪಾತ್ರ ಅಗತ್ಯವಿದೆ . apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ಉಳಿದ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು ಉಳಿಸಲು ದಯವಿಟ್ಟು. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,ಲಗತ್ತಿಸುತ್ತಿದ್ದೇನೆ ಮೊದಲು ಉಳಿಸಲು ದಯವಿಟ್ಟು. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ಸೇರಿಸಲಾಗಿದೆ {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ಡೀಫಾಲ್ಟ್ ಥೀಮ್ ಹೊಂದಿಸಿದ {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ಗೆ {0} ನಿಂದ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {1} ಸತತವಾಗಿ {2} @@ -1895,11 +1898,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ಸೆಷ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ಸೆಷನ್ ಪ್ರಾರಂಭಿಸಿ ವಿಫಲವಾಗಿದೆ apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ಈ ಇಮೇಲ್ {0} ಕಳುಹಿಸಲಾಗಿದೆ ಮತ್ತು ನಕಲು ಮಾಡಲಾಯಿತು {1} DocType: Workflow State,th,ನೇ -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ಸೆಟಪ್> ಇಮೇಲ್> ಇಮೇಲ್ ಖಾತೆಯಿಂದ ಅನ್ನು ಹೊಂದಿಸಿ ಡೀಫಾಲ್ಟ್ ಇಮೇಲ್ ಖಾತೆ -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ಹೊಸ {0} ರಚಿಸಿ +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ಹೊಸ {0} ರಚಿಸಿ DocType: Email Rule,Is Spam,ಸ್ಪಾಮ್ ಈಸ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},ವರದಿ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ಓಪನ್ {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ಓಪನ್ {0} DocType: OAuth Client,Default Redirect URI,ಡೀಫಾಲ್ಟ್ ಮರುನಿರ್ದೇಶನ URI ಅನ್ನು DocType: Email Alert,Recipients,ಸ್ವೀಕೃತದಾರರ DocType: Workflow State,ok-sign,ಸರಿ ಚಿಹ್ನೆ @@ -1917,6 +1919,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,ಲೇಖನಗಳು ಸಹಾಯ ,Modules Setup,ಮಾಡ್ಯೂಲ್ಗಳು ಸೆಟಪ್ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ಟೈಪ್: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,ನಿಮ್ಮ ಪಾವತಿ ವಿಫಲವಾಗಿದೆ. DocType: Communication,Unshared,ಹಂಚಿಕೊಳ್ಳದ DocType: Address,Karnataka,ಕರ್ನಾಟಕ apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ಮಾಡ್ಯೂಲ್ ಕಂಡುಬಂದಿಲ್ಲ @@ -1964,7 +1967,7 @@ DocType: Website Settings,Brand Image,ಬ್ರಾಂಡ್ ಇಮೇಜ್ DocType: Print Settings,A4,A4 ಕಾರು apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ಉನ್ನತ ಸಂಚರಣೆ ಬಾರ್ , ಅಡಿಟಿಪ್ಪಣಿ ಮತ್ತು ಲಾಂಛನವನ್ನು ಸೆಟಪ್ ." DocType: Web Form Field,Max Value,ಮ್ಯಾಕ್ಸ್ ಮೌಲ್ಯ -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},ಫಾರ್ {0} ಮಟ್ಟದಲ್ಲಿ {1} ಗೆ {2} ಸತತವಾಗಿ {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},ಫಾರ್ {0} ಮಟ್ಟದಲ್ಲಿ {1} ಗೆ {2} ಸತತವಾಗಿ {3} DocType: Contact,All,ಎಲ್ಲಾ DocType: Email Queue,Recipient,ಗ್ರಾಹಿ DocType: Communication,Has Attachment,ಲಗತ್ತು ಹೊಂದಿದೆ @@ -1981,7 +1984,8 @@ DocType: Workflow State,align-right,align ಬಲ DocType: Auto Email Report,Email To,ಇಮೇಲ್ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ಫೋಲ್ಡರ್ {0} ಖಾಲಿ DocType: Page,Roles,ಪಾತ್ರಗಳು -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ಫೀಲ್ಡ್ {0} ಆಯ್ಕೆಮಾಡಬಹುದಾದ ಅಲ್ಲ. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},ಮೌಲ್ಯ ಕಾಣೆಯಾಗಿದೆ {0}:: ದೋಷ {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ಫೀಲ್ಡ್ {0} ಆಯ್ಕೆಮಾಡಬಹುದಾದ ಅಲ್ಲ. DocType: System Settings,Session Expiry,ಅಧಿವೇಶನ ಮುಗಿಯುವ DocType: Workflow State,ban-circle,ನಿಷೇಧ ವಲಯವನ್ನು DocType: Email Flag Queue,Unread,ಓದದ @@ -1996,7 +2000,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ಬಳಕೆದಾರ ಪೂರ್ವನಿಯೋಜಿತಗಳು apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,ಹೊಸ ರಚಿಸಿ DocType: Workflow State,chevron-down,CHEVRON ಡೌನ್ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),ಕಳುಹಿಸಲಾಗಿಲ್ಲ ಇಮೇಲ್ {0} (ಅಂಗವಿಕಲ / ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),ಕಳುಹಿಸಲಾಗಿಲ್ಲ ಇಮೇಲ್ {0} (ಅಂಗವಿಕಲ / ಅನ್ಸಬ್ಸ್ಕ್ರೈಬ್) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,ಚಿಕ್ಕ ಕರೆನ್ಸಿ ಫ್ರ್ಯಾಕ್ಷನ್ ಮೌಲ್ಯ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ನಿಗದಿ @@ -2007,12 +2011,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,ಗೆ DocType: Website Theme,Google Font (Heading),ಗೂಗಲ್ ಫಾಂಟ್ (ಶಿರೋನಾಮೆ) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,ಮೊದಲ ಗುಂಪು ನೋಡ್ ಆಯ್ಕೆ. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},ರಲ್ಲಿ {0} ಕ್ಲಿಕ್ {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},ರಲ್ಲಿ {0} ಕ್ಲಿಕ್ {1} DocType: OAuth Client,Implicit,ನಿಸ್ಸಂದೇಹ DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, ಜಾಗ, ""ಸ್ಥಿತಿ"" ಹೊಂದಿರಬೇಕು ""ವಿಷಯ"") ಈ DOCTYPE ವಿರುದ್ಧ ಸಂವಹನ ಸೇರಿಸಲು" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",", ಹಾಗೂ ವೈಫಲ್ಯ ಪ್ರತಿಕ್ರಿಯೆಗಳನ್ನು ಒಮ್ಮೆ ಬಳಕೆದಾರ ಪ್ರವೇಶವನ್ನು ಅನುಮತಿಸುತ್ತದೆ ಅಧಿಕಾರ ಕೋಡ್ ಪಡೆಯುವ URI ಗಳನ್ನು. ಸಾಮಾನ್ಯವಾಗಿ ವಿರಾಮವನ್ನು ಎಂಡ್ಪೋಯಿಂಟ್ ಕ್ಲೈಂಟ್ ಅಪ್ಲಿಕೇಶನ್ ಬಹಿರಂಗಗೊಳಿಸಿದರು.
ಉದಾ: http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,ಸಲ್ಲಿಕೆ ನಂತರ {0} ಬದಲಾಯಿಸಲು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,ಸಲ್ಲಿಕೆ ನಂತರ {0} ಬದಲಾಯಿಸಲು ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ DocType: Communication,Comment Type,ಕಾಮೆಂಟ್ ಟೈಪ್ DocType: OAuth Client,OAuth Client,OAuth ಕ್ಲೈಂಟ್ apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ಬಳಕೆದಾರರು @@ -2027,7 +2031,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,ಫಿಲ್ಟರ್ ಡೇಟಾ DocType: Auto Email Report,Filter Data,ಫಿಲ್ಟರ್ ಡೇಟಾ apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ಟ್ಯಾಗ್ ಸೇರಿಸಿ -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,ಮೊದಲ ಒಂದು ಕಡತ ಲಗತ್ತಿಸಬಹುದು ದಯವಿಟ್ಟು . +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ಮೊದಲ ಒಂದು ಕಡತ ಲಗತ್ತಿಸಬಹುದು ದಯವಿಟ್ಟು . apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","ಹೆಸರು ಹೊಂದಿಸುವ ಕೆಲವು ದೋಷಗಳಿವೆ, ನಿರ್ವಾಹಕರನ್ನು ಸಂಪರ್ಕಿಸಿ" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ಒಳಬರುವ ಇಮೇಲ್ ಖಾತೆಯನ್ನು ಸರಿಯಾಗಿಲ್ಲ apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2042,11 +2046,11 @@ DocType: Blog Post,Email Sent,ಕಳುಹಿಸಲಾದ ಇಮೇಲ್ DocType: DocField,Ignore XSS Filter,XSS ಸಂಪರ್ಕ ಫಿಲ್ಟರ್ ನಿರ್ಲಕ್ಷಿಸು apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ತೆಗೆದು apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಬ್ಯಾಕಪ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ಇಮೇಲ್ ಕಳುಹಿಸಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ಇಮೇಲ್ ಕಳುಹಿಸಿ DocType: Website Theme,Link Color,ಲಿಂಕ್ ಬಣ್ಣ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ಬಳಕೆದಾರ {0} ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","ಆತ್ಮೀಯ ವ್ಯವಸ್ಥೆ ಮ್ಯಾನೇಜರ್," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ನಿನ್ನ ದೇಶ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ನಿನ್ನ ದೇಶ DocType: Event,Sunday,ಭಾನುವಾರ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ಗ್ರಿಡ್ ವೀಕ್ಷಿಸಿ DocType: Address Template,Template,ಟೆಂಪ್ಲೇಟು @@ -2054,7 +2058,7 @@ DocType: Address,Delhi,ದೆಹಲಿ apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP ಅನ್ನು ಸೆಟ್ಟಿಂಗ್ಗಳು apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,ಸಂಬಂಧಿಸಿದ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,ಪೇಪಾಲ್ ಪಾವತಿ ಗೇಟ್ವೇ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) ಅವಕಾಶ ಮ್ಯಾಕ್ಸ್ ಅಕ್ಷರಗಳ ಎಂದು, ಮೊಟಕುಗೊಂಡ ಪಡೆಯುತ್ತಾನೆ {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) ಅವಕಾಶ ಮ್ಯಾಕ್ಸ್ ಅಕ್ಷರಗಳ ಎಂದು, ಮೊಟಕುಗೊಂಡ ಪಡೆಯುತ್ತಾನೆ {2}" DocType: OAuth Client,Resource Owner Password Credentials,ಮಾಲೀಕ ಪಾಸ್ವರ್ಡ್ ರುಜುವಾತುಗಳು ಸಂಪನ್ಮೂಲ DocType: OAuth Client,Response Type,ಪ್ರತಿಕ್ರಿಯೆ ಪ್ರಕಾರ apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,ಮ್ಯಾಕ್ಸ್ ಬಳಕೆದಾರರು @@ -2071,7 +2075,7 @@ DocType: DocField,Table,ಮೇಜು DocType: File,File Size,ಫೈಲ್ ಗಾತ್ರ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,ಈ ಸಲ್ಲಿಸಲು ಲಾಗಿನ್ ಮಾಡಬೇಕು DocType: User,Background Image,ಹಿನ್ನೆಲೆ ಚಿತ್ರ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","ನಿಮ್ಮ ದೇಶ, ಕಾಲವಲಯವನ್ನು ಮತ್ತು ಕರೆನ್ಸಿ ಆಯ್ಕೆ" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","ನಿಮ್ಮ ದೇಶ, ಕಾಲವಲಯವನ್ನು ಮತ್ತು ಕರೆನ್ಸಿ ಆಯ್ಕೆ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ನಡುವೆ DocType: Async Task,Queued,ಸರತಿಯಲ್ಲಿ @@ -2080,6 +2084,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,ರಚಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},ಅಮಾನ್ಯವಾದ ಫಿಲ್ಟರ್ : {0} DocType: Email Account,no failed attempts,ಯಾವುದೇ ಪ್ರಯತ್ನಗಳು ವಿಫಲವಾದ +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ಡೀಫಾಲ್ಟ್ ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಕಂಡುಬಂದಿಲ್ಲ. ದಯವಿಟ್ಟು ಸೆಟಪ್> ಮುದ್ರಣ ಮತ್ತು ಬ್ರ್ಯಾಂಡಿಂಗ್> ವಿಳಾಸ ಟೆಂಪ್ಲೇಟು ಒಂದು ಹೊಸದನ್ನು ರಚಿಸಿ. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,ಅಪ್ಲಿಕೇಶನ್ ಪ್ರವೇಶ ಕೀ DocType: OAuth Bearer Token,Access Token,ಪ್ರವೇಶ ಟೋಕನ್ @@ -2097,8 +2102,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub ಬಳಕೆದಾರ DocType: DocType,Image View,ImageView apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ಏನೋ ವ್ಯವಹಾರ ಸಮಯದಲ್ಲಿ ತಪ್ಪಾಗಿದೆ ತೋರುತ್ತಿದೆ. ನಾವು ಪಾವತಿ ದೃಢಪಡಿಸಿದರು ಕಾರಣ, ಪೇಪಾಲ್ ಸ್ವಯಂಚಾಲಿತವಾಗಿ ಈ ಪ್ರಮಾಣದ ಮರುಪಾವತಿ ಮಾಡುತ್ತದೆ. ಇದು ಇದ್ದರೆ, ನಮಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಲು ಮತ್ತು ಪರಸ್ಪರ ID ಯನ್ನು ಸೂಚಿಸಿ: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","ಪಾಸ್ವರ್ಡ್ ಚಿಹ್ನೆಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ಅಕ್ಷರಗಳಲ್ಲಿ ಸೇರಿಸಿ" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ಕ್ಷೇತ್ರದಲ್ಲಿ '{0}' ಕಸ್ಟಮ್ ಫೀಲ್ಡ್ ಉಲ್ಲೇಖಿಸಲಾಗಿದೆ ನಂತರ ಸೇರಿಸಿ '{1}', ಲೇಬಲ್ '{2}' ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","ಪಾಸ್ವರ್ಡ್ ಚಿಹ್ನೆಗಳು, ಸಂಖ್ಯೆಗಳು ಮತ್ತು ಅಕ್ಷರಗಳಲ್ಲಿ ಸೇರಿಸಿ" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ಕ್ಷೇತ್ರದಲ್ಲಿ '{0}' ಕಸ್ಟಮ್ ಫೀಲ್ಡ್ ಉಲ್ಲೇಖಿಸಲಾಗಿದೆ ನಂತರ ಸೇರಿಸಿ '{1}', ಲೇಬಲ್ '{2}' ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ" DocType: Workflow State,signal,ಸಂಕೇತ DocType: DocType,Show Print First,ಪ್ರಿಂಟ್ ಮೊದಲ ಶೋ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + ಪೋಸ್ಟ್ ನಮೂದಿಸಿ @@ -2129,14 +2134,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ಫೈಲ್ '{0}' ಕಂಡುಬಂದಿಲ್ಲ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ವಿಭಾಗ ತೆಗೆದುಹಾಕಿ DocType: User,Change Password,ಗುಪ್ತಪದವನ್ನು ಬದಲಿಸಿ -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},ಅಮಾನ್ಯವಾದ ಇಮೇಲ್ : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ಹಲೋ! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},ಅಮಾನ್ಯವಾದ ಇಮೇಲ್ : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ಹಲೋ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ಇವೆಂಟ್ ಕೊನೆಯಲ್ಲಿ ಆರಂಭದ ನಂತರ ಇರಬೇಕು apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},ನೀವು ಮೇಲೆ ವರದಿಯನ್ನು ಪಡೆಯಲು ಅನುಮತಿ ಇಲ್ಲ: {0} +DocType: System Settings,Apply Strict User Permissions,ಕಟ್ಟುನಿಟ್ಟಾದ ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅನ್ವಯಿಸು DocType: DocField,Allow Bulk Edit,ಒಟ್ಟು ಸಂಪಾದನೆ ಅನುಮತಿಸಿ DocType: DocField,Allow Bulk Edit,ಒಟ್ಟು ಸಂಪಾದನೆ ಅನುಮತಿಸಿ DocType: Blog Post,Blog Post,ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ವಿಸ್ತೃತ ಹುಡುಕಾಟ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ವಿಸ್ತೃತ ಹುಡುಕಾಟ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,ಪಾಸ್ವರ್ಡ್ ರೀಸೆಟ್ ಸೂಚನೆಗಳನ್ನು ನಿಮ್ಮ ಇಮೇಲ್ ಕಳುಹಿಸಲಾಗಿದೆ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ಹಂತ 0 ಕ್ಷೇತ್ರದಲ್ಲಿ ಹಂತದ ಅನುಮತಿಗಳನ್ನು ಡಾಕ್ಯುಮೆಂಟ್ ಹಂತದ ಅನುಮತಿಗಳನ್ನು, \ ಹೆಚ್ಚಿನ ಮಟ್ಟದ ಹೊಂದಿದೆ." @@ -2155,16 +2161,15 @@ DocType: Web Page,Sidebar and Comments,ಪಾರ್ಶ್ವಪಟ್ಟಿ ಮ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ನೀವು ನಂತರ ರದ್ದು ಮತ್ತು ಅದನ್ನು ಉಳಿಸಲು ಡಾಕ್ಯುಮೆಂಟ್ ಮಾಡಿರಿ , ಇದು ಹೊಸ ಸಂಖ್ಯೆ ಸಿಗುತ್ತದೆ ಮಾಡಿದರು ಹಳೆಯ ಸಂಖ್ಯೆ ಒಂದು ಆವೃತ್ತಿಯಾಗಿದೆ." DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ DocType: Stripe Settings,Publishable Key,.ಪ್ರಕಟಿಸುವ ಕೀ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ವರ್ಷ (ಗಳ) ಹಿಂದೆ DocType: Workflow State,circle-arrow-left,ವೃತ್ತದ ಬಾಣವನ್ನು ಬಿಟ್ಟು apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis ಸಂಗ್ರಹ ಸರ್ವರ್ ಚಾಲನೆಯಲ್ಲಿಲ್ಲ. ನಿರ್ವಾಹಕ / ಟೆಕ್ ಬೆಂಬಲವನ್ನು ಸಂಪರ್ಕಿಸಿ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,ಪಾರ್ಟಿ ಹೆಸರು -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ಹೊಸ ದಾಖಲೆ ಮಾಡಿ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ಹೊಸ ದಾಖಲೆ ಮಾಡಿ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ಹುಡುಕುತ್ತಿರುವಿರೆ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ಹುಡುಕುತ್ತಿರುವಿರೆ DocType: Currency,Fraction,ಭಿನ್ನರಾಶಿ DocType: LDAP Settings,LDAP First Name Field,LDAP ಅನ್ನು ಮೊದಲ ಹೆಸರು ಫೀಲ್ಡ್ -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ಲಗತ್ತುಗಳನ್ನು ಆಯ್ಕೆಮಾಡಿ DocType: Custom Field,Field Description,ಫೀಲ್ಡ್ ವಿವರಣೆ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ಪ್ರಾಂಪ್ಟಿನಲ್ಲಿ ಮೂಲಕ ಸೆಟ್ ಹೆಸರು apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ಇಮೇಲ್ ಇನ್ಬಾಕ್ಸ್ @@ -2210,11 +2215,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,ಮಾಹಿತಿ: DocType: Custom Field,Permission Level,ಅನುಮತಿ ಮಟ್ಟ DocType: User,Send Notifications for Transactions I Follow,ನಾನು ಅನುಸರಿಸಿ ಟ್ರಾನ್ಸಾಕ್ಷನ್ಸ್ ಅಧಿಸೂಚನೆಗಳನ್ನು ಕಳುಹಿಸಲು -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : ಬರೆಯಿರಿ ಇಲ್ಲದೆ ಮಾಡಿರಿ , ರದ್ದು , ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : ಬರೆಯಿರಿ ಇಲ್ಲದೆ ಮಾಡಿರಿ , ರದ್ದು , ಸಲ್ಲಿಸಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ನೀವು ಬಾಂಧವ್ಯ ಅಳಿಸಲು ಬಯಸುತ್ತೀರೆ? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ಅಳಿಸಲು ಅಥವಾ {0} ಏಕೆಂದರೆ ರದ್ದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ {1} ಸಂಬಂಧ ಇದೆ {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ಯಾವುದೇ ಫಲಿತಾಂಶಗಳು 'ಕಂಡುಬಂದಿಲ್ಲ

-apps/frappe/frappe/__init__.py +1063,Thank you,ಧನ್ಯವಾದಗಳು +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ಅಳಿಸಲು ಅಥವಾ {0} ಏಕೆಂದರೆ ರದ್ದು ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ {1} ಸಂಬಂಧ ಇದೆ {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ಧನ್ಯವಾದಗಳು apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ಉಳಿಸಲಾಗುತ್ತಿದೆ DocType: Print Settings,Print Style Preview,ಮುದ್ರಣ ಶೈಲಿ ಮುನ್ನೋಟ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2226,10 +2230,10 @@ DocType: DocField,In List View,ListView ರಲ್ಲಿ DocType: Email Account,Use TLS,TLS ಅನ್ನು ಬಳಸಿ apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ಅಮಾನ್ಯ ಲಾಗಿನ್ ಪ್ರವೇಶಪದವನ್ನು apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ಸ್ವರೂಪಗಳಿಗೆ ಕಸ್ಟಮ್ ಜಾವಾಸ್ಕ್ರಿಪ್ಟ್ ಸೇರಿಸಿ . -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR ಯಾವುದೇ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR ಯಾವುದೇ ,Role Permissions Manager,ಪಾತ್ರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ಹೊಸ ಪ್ರಿಂಟ್ ಸ್ವರೂಪ ಹೆಸರು -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,ತೆರವುಗೊಳಿಸಿ ಲಗತ್ತು +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,ತೆರವುಗೊಳಿಸಿ ಲಗತ್ತು apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ಕಡ್ಡಾಯ: ,User Permissions Manager,ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್ DocType: Property Setter,New value to be set,ಸೆಟ್ ಹೊಸ ಮೌಲ್ಯ @@ -2259,26 +2263,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ದ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ಬ್ಲಾಗ್ ಪೋಸ್ಟ್ಗಳನ್ನು ವರ್ಗೀಕರಿಸಲು. DocType: Workflow State,Time,ಟೈಮ್ DocType: DocField,Attach,ಲಗತ್ತಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ಮಾನ್ಯ FIELDNAME ನಮೂನೆ ಅಲ್ಲ. ಇದು ಇರಬೇಕು {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ಮಾನ್ಯ FIELDNAME ನಮೂನೆ ಅಲ್ಲ. ಇದು ಇರಬೇಕು {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ಕನಿಷ್ಠ ಒಂದು ಸಂವಹನ ಡಾಕ್ಯುಮೆಂಟ್ ಲಭ್ಯವಿದೆ ಇಲ್ಲದಿದ್ದರೆ ಮಾತ್ರ ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ ಕಳಿಸಿ. DocType: Custom Role,Permission Rules,ಅನುಮತಿಯನ್ನು ನಿಯಮಗಳನ್ನು DocType: GSuite Settings,GSuite Settings,GSuite ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Address,Links,ಲಿಂಕ್ಸ್ -apps/frappe/frappe/model/base_document.py +428,Value missing for,ಮೌಲ್ಯ ಕಾಣೆಯಾಗಿದೆ +apps/frappe/frappe/model/base_document.py +427,Value missing for,ಮೌಲ್ಯ ಕಾಣೆಯಾಗಿದೆ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,ಮಕ್ಕಳ ಸೇರಿಸಿ -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ಸಲ್ಲಿಸಲಾಗಿದೆ ರೆಕಾರ್ಡ್ ಅಳಿಸಲಾಗುವುದಿಲ್ಲ. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ಸಲ್ಲಿಸಲಾಗಿದೆ ರೆಕಾರ್ಡ್ ಅಳಿಸಲಾಗುವುದಿಲ್ಲ. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ಬ್ಯಾಕಪ್ ಗಾತ್ರ DocType: GSuite Templates,Template Name,ಟೆಂಪ್ಲೇಟ್ ಹೆಸರು -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ದಸ್ತಾವೇಜಿನ ಹೊಸ ರೀತಿಯ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ದಸ್ತಾವೇಜಿನ ಹೊಸ ರೀತಿಯ DocType: Custom DocPerm,Read,ಓದು DocType: Role Permission for Page and Report,Role Permission for Page and Report,ಪುಟ ಮತ್ತು ವರದಿಗಾಗಿ ಪಾತ್ರ ಅನುಮತಿ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,ಮೌಲ್ಯ align apps/frappe/frappe/www/update-password.html +14,Old Password,ಹಳೆಯ ಪಾಸ್ವರ್ಡ್ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},ಪೋಸ್ಟ್ಗಳು {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ಪೋಸ್ಟ್ಗಳು {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",", ಕಾಲಮ್ಗಳನ್ನು ಫಾರ್ಮಾಟ್ ಪ್ರಶ್ನೆಯಲ್ಲಿ ಕಾಲಮ್ ಲೇಬಲ್ಗಳನ್ನು ನೀಡಿ." DocType: Has Domain,Has Domain,ಡೊಮೈನ್ ಹ್ಯಾಸ್ apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ಒಂದು ಖಾತೆಯನ್ನು ಹೊಂದಿಲ್ಲ? ಸೈನ್ ಅಪ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : ನಿಯೋಜನೆ ಮಾಡಿರಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : ನಿಯೋಜನೆ ಮಾಡಿರಿ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ Submittable ಅಲ್ಲ DocType: Address,Bihar,ಬಿಹಾರ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,ಸಂಪಾದಿಸಿ ಅನುಮತಿಗಳನ್ನು DocType: Communication,Link DocType,ಲಿಂಕ್ DOCTYPE @@ -2378,7 +2382,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಹೊಂದಿದೆ ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,ನೀವು ಈ ರೂಪದಲ್ಲಿ ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸಿಲ್ಲ. DocType: Address,Telangana,ತೆಲಂಗಾಣ -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} ಒಂದು ಆಯ್ಕೆಯನ್ನು ಇರಬೇಕು ಡೀಫಾಲ್ಟ್ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} ಒಂದು ಆಯ್ಕೆಯನ್ನು ಇರಬೇಕು ಡೀಫಾಲ್ಟ್ DocType: Tag Doc Category,Tag Doc Category,ಟ್ಯಾಗ್ ಡಾಕ್ ವರ್ಗ DocType: User,User Image,ಬಳಕೆದಾರ ಚಿತ್ರ apps/frappe/frappe/email/queue.py +289,Emails are muted,ಇಮೇಲ್ಗಳನ್ನು ಮ್ಯೂಟ್ @@ -2411,7 +2415,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,ಮುಂ DocType: Workflow State,ok,ಸಮ್ಮತ DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ಈ ಮೌಲ್ಯಗಳು ಸ್ವಯಂಚಾಲಿತವಾಗಿ ವ್ಯವಹಾರಗಳಲ್ಲಿ ನವೀಕರಿಸಲಾಗುತ್ತದೆ ಹೀಗಾಗಿ ಸಂಶ್ಲೇಷಣೆ ವ್ಯಾಲ್ಯೂಗಳನ್ನುಳ್ಳ ವ್ಯವಹಾರಗಳ ಮೇಲೆ ಈ ಬಳಕೆದಾರ ಅನುಮತಿಗಳನ್ನು ನಿರ್ಬಂಧಿಸಲು ಉಪಯುಕ್ತ . apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ಪ್ರಕಾಶಕ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** ವಿಫಲವಾಗಿದೆ: {0} ಗೆ {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ವಿಫಲವಾಗಿದೆ: {0} ಗೆ {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,ಕಡ್ಡಾಯವಾಗಿ ಆಯ್ಕೆ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ಬ್ರೌಸ್ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ಇಮೇಲ್ಗಳನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ @@ -2423,7 +2427,7 @@ DocType: Async Task,Running,ರನ್ನಿಂಗ್ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,ಪಾಸ್ವರ್ಡ್ ಮರುಹೊಂದಿಸಿ apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,ಹೆಚ್ಚು {0} ಚಂದಾದಾರರು ಸೇರಿಸಲು ಅಪ್ಗ್ರೇಡ್ ಮಾಡಿ DocType: Workflow State,hand-left,ಕೈ ಎಡ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ಅನನ್ಯ ಮಾಡಲಾಗದ +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ಅನನ್ಯ ಮಾಡಲಾಗದ DocType: Email Account,Use SSL,SSL ಬಳಸಲು DocType: Workflow State,play-circle,ಆಡಲು ವೃತ್ತ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,ಸಂಪಾದಿಸಿ ಮುದ್ರಿಸಿ ಸ್ವರೂಪ ಆಯ್ಕೆ @@ -2478,7 +2482,7 @@ DocType: DocField,No Copy,ಯಾವುದೇ ಪ್ರತಿಯನ್ನು DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP ಅನ್ನು ಲಾಗಿನ್ DocType: Web Form,Breadcrumbs,ಬ್ರೆಡ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,ಮಾಲೀಕ ವೇಳೆ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,ಮಾಲೀಕ ವೇಳೆ DocType: OAuth Authorization Code,Expiration time,ಮುಕ್ತಾಯ ಸಮಯ DocType: Web Page,Website Sidebar,ವೆಬ್ಸೈಟ್ ಪಾರ್ಶ್ವಪಟ್ಟಿ DocType: Web Form,Show Sidebar,ಪಾರ್ಶ್ವಪಟ್ಟಿ ತೋರಿಸು @@ -2498,7 +2502,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ಸಿಗಲಿ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,ಸ್ವತಃ ಹೆಸರುಗಳು ಮತ್ತು ಉಪನಾಮಗಳ ಊಹಿಸಲು ಸುಲಭ. apps/frappe/frappe/config/website.py +93,Knowledge Base,ಜ್ಞಾನದ ತಳಹದಿ DocType: Workflow State,briefcase,ವಕಾಲತ್ತು ಪೆಟ್ಟಿಗೆ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ಮೌಲ್ಯ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ಮೌಲ್ಯ ಬದಲಾವಣೆ ಸಾಧ್ಯವಿಲ್ಲ {0} DocType: Feedback Request,Is Manual,ಮ್ಯಾನ್ಯುವಲ್ DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ಗ್ರೀನ್ , ಡೇಂಜರ್ - - ಕೆಂಪು , ವಿಲೋಮ - ಬ್ಲಾಕ್, ಪ್ರಾಥಮಿಕ - ಡಾರ್ಕ್ ನೀಲಿ, ಮಾಹಿತಿ - ಲೈಟ್ ಬ್ಲೂ , ಎಚ್ಚರಿಕೆ - ಕಿತ್ತಳೆ ಯಶಸ್ಸು : ಶೈಲಿ ಬಟನ್ ಬಣ್ಣ ಪ್ರತಿನಿಧಿಸುತ್ತದೆ" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,ಯಾವುದೇ ವರದಿ ಲೋಡೆಡ್ . ಒಂದು ವರದಿ ರನ್ ಪ್ರಶ್ನಾವಳಿ ವರದಿ / [ವರದಿ ಹೆಸರು ] ಬಳಸಿ. @@ -2577,7 +2581,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ಪ್ರೆ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ಪಾತ್ರ apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ಮಿಸ್ಸಿಂಗ್ ಫೀಲ್ಡ್ಸ್ apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname ನಲ್ಲಿ ಅಮಾನ್ಯ FIELDNAME '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ಒಂದು ದಾಖಲೆ ಪ್ರಕಾರ ನಲ್ಲಿ ಹುಡುಕಾಟ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ಒಂದು ದಾಖಲೆ ಪ್ರಕಾರ ನಲ್ಲಿ ಹುಡುಕಾಟ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ಕ್ಷೇತ್ರ ಸಹ ಸಲ್ಲಿಕೆ ನಂತರ ಸಂಪಾದಿಸಬಹುದಾದ ಉಳಿಯಲು ಅವಕಾಶ DocType: Custom DocPerm,Role and Level,ಪಾತ್ರ ಮತ್ತು ಮಟ್ಟ DocType: File,Thumbnail URL,ಥಂಬ್ನೇಲ್ URL @@ -2594,19 +2598,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + g) DocType: Contact,More Information,ಹೆಚ್ಚಿನ ಮಾಹಿತಿ DocType: Desktop Icon,Desktop Icon,ಡೆಸ್ಕ್ಟಾಪ್ ಐಕಾನ್ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ನಿಮ್ಮ ಪಾವತಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಂಗೀಕರಿಸಲಾಯಿತು +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ನಿಮ್ಮ ಪಾವತಿಯನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಅಂಗೀಕರಿಸಲಾಯಿತು apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,ಕ್ಷಮಿಸಿ! ಈ ಪುಟವನ್ನು ವೀಕ್ಷಿಸಲು ಅನುಮತಿ ಇಲ್ಲ. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ಸಲಹೆ: ಸಂಪಾದಿಸಲು ಡಬಲ್ ಕ್ಲಿಕ್ ಸೆಲ್ DocType: Workflow State,bell,ಗಂಟೆ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ ದೋಷ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ಇಮೇಲ್ ಎಚ್ಚರಿಕೆ ದೋಷ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ಈ ಡಾಕ್ಯುಮೆಂಟ್ ಅನ್ನು ಹಂಚಿಕೊಳ್ಳಿ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ಸೆಟಪ್> ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಮ್ಯಾನೇಜರ್ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ಒಂದು ಲೀಫ್ ನೋಡ್ ಆಲ್ಡ್ವಿಚ್ ಮಕ್ಕಳು ಸಾಧ್ಯವಿಲ್ಲ DocType: Communication,Info,ಮಾಹಿತಿ -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,ಲಗತ್ತು ಸೇರಿಸಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,ಲಗತ್ತು ಸೇರಿಸಿ DocType: Communication,Email,ಗಾಜುಲೇಪ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,ನಿಮ್ಮ ಸಂದೇಶವನ್ನು ಧನ್ಯವಾದಗಳು -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ರಸೀತಿ ಓದಿ ಕಳುಹಿಸಿ +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ರಸೀತಿ ಓದಿ ಕಳುಹಿಸಿ DocType: Stripe Settings,Stripe Settings,ಪಟ್ಟಿ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Stripe Settings,Stripe Settings,ಪಟ್ಟಿ ಸೆಟ್ಟಿಂಗ್ಗಳು DocType: Dropbox Settings,Dropbox Setup via Site Config,ಸೈಟ್ ಕಾನ್ಫಿಗರೇಷನ್ ಮೂಲಕ ಡ್ರಾಪ್ಬಾಕ್ಸ್ ಸೆಟಪ್ @@ -2684,6 +2689,7 @@ DocType: DocType,Web View,ವೆಬ್ ವೀಕ್ಷಣೆ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ಎಚ್ಚರಿಕೆ: ಈ ಪ್ರಿಂಟ್ ಫಾರ್ಮ್ಯಾಟ್ ಹಳೆಯ ಶೈಲಿಯಲ್ಲಿ ಮತ್ತು API ಮೂಲಕ ರಚಿತವಾದ ಸಾಧ್ಯವಿಲ್ಲ. DocType: DocField,Print Width,ಪ್ರಿಂಟ್ ಅಗಲ ,Setup Wizard,ಸೆಟಪ್ ವಿಝಾರ್ಡ್ +DocType: Address,GST State Number,ಜಿಎಸ್ಟಿ ರಾಜ್ಯ ಸಂಖ್ಯೆ DocType: User,Allow user to login only before this hour (0-24),ಬಳಕೆದಾರ ಮಾತ್ರ ಈ ಗಂಟೆ ಮೊದಲು ( 0-24 ) ಲಾಗಿನ್ ಅನುಮತಿಸಿ apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ಫೋಲ್ಡರ್ ಕಡ್ಡಾಯ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2712,7 +2718,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ಸಣ್ಣ ಪಠ್ಯ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,ನಿರ್ವಾಹಕ ಪಡೆದದ್ದು {0} ನಲ್ಲಿ {1} IP ವಿಳಾಸ ಮೂಲಕ {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,ಸಮ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ಕ್ಷೇತ್ರದ ಆಯ್ಕೆಗಳು 'ಡೈನಾಮಿಕ್ ಲಿಂಕ್' ಮಾದರಿ 'doctype' ಎಂದು ಆಯ್ಕೆಗಳು ಮತ್ತೊಂದು ಲಿಂಕ್ ಫೀಲ್ಡ್ ಬೆಟ್ಟು ಮಾಡಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ಕ್ಷೇತ್ರದ ಆಯ್ಕೆಗಳು 'ಡೈನಾಮಿಕ್ ಲಿಂಕ್' ಮಾದರಿ 'doctype' ಎಂದು ಆಯ್ಕೆಗಳು ಮತ್ತೊಂದು ಲಿಂಕ್ ಫೀಲ್ಡ್ ಬೆಟ್ಟು ಮಾಡಬೇಕು DocType: About Us Settings,Team Members Heading,ಶಿರೋನಾಮೆ ತಂಡದ ಸದಸ್ಯರು apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,ಅಮಾನ್ಯ CSV ಫಾರ್ಮ್ಯಾಟ್ನಲ್ಲಿ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ಸಂಖ್ಯೆ ಬ್ಯಾಕ್ಅಪ್ಗಳು ಹೊಂದಿಸಿ @@ -2723,7 +2729,7 @@ DocType: Contact,Contact,ಸಂಪರ್ಕಿಸಿ DocType: User,Third Party Authentication,ಮೂರನೇ ಪಕ್ಷದ ದೃಢೀಕರಣ DocType: Website Settings,Banner is above the Top Menu Bar.,ಬ್ಯಾನರ್ ಟಾಪ್ ಮೆನು ಬಾರ್ ಮೇಲೆ DocType: Razorpay Settings,API Secret,API ಸೀಕ್ರೆಟ್ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ರಫ್ತು ವರದಿ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ರಫ್ತು ವರದಿ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ DocType: Email Account,Port,ರೇವು DocType: Print Format,Arial,ಏರಿಯಲ್ @@ -2746,7 +2752,7 @@ DocType: Kanban Board Column,Column Name,ಅಂಕಣ ಹೆಸರು DocType: Language,Based On,ಆಧರಿಸಿದೆ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ಡೀಫಾಲ್ಟ್ ಮಾಡಿ apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,ಫ್ರಾಪ್ಪೆ ಸರ್ವರ್ URL ಅನ್ನು ಪರಿಶೀಲಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ಸೂಚಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ಸೂಚಿಸಲಾಗಿದೆ ಸಾಧ್ಯವಿಲ್ಲ DocType: Communication,Email Account,ಇಮೇಲ್ ಖಾತೆ DocType: Workflow State,Download,ಡೌನ್ಲೋಡ್ DocType: Blog Post,Blog Intro,ಪರಿಚಯ ಬ್ಲಾಗ್ @@ -2757,7 +2763,7 @@ DocType: Web Page,Insert Code,ಕೋಡ್ ಸೇರಿಸಿ DocType: ToDo,Low,ಕಡಿಮೆ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,ನೀವು ಜಿಂಜ ಪಡಿಯಚ್ಚು ಬಳಸಿಕೊಂಡು ದಾಖಲೆಯಿಂದ ಕ್ರಿಯಾತ್ಮಕ ಗುಣಗಳನ್ನು ಸೇರಿಸಬಹುದು. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ಅಮಾನ್ಯವಾದ ಮಿತಿಯನ್ನು {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ಒಂದು ದಾಖಲೆ ಪ್ರಕಾರ ಪಟ್ಟಿ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ಒಂದು ದಾಖಲೆ ಪ್ರಕಾರ ಪಟ್ಟಿ DocType: Event,Ref Type,ಉಲ್ಲೇಖ ಪ್ರಕಾರ apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ನೀವು ಹೊಸ ದಾಖಲೆ ಅಪ್ಲೋಡ್ ಮಾಡುತ್ತಿದ್ದರೆ, ""ಹೆಸರು"" (ಐಡಿ) ಕಾಲಮ್ ಖಾಲಿ ಬಿಡಿ." DocType: Address,Chattisgarh,ಛತ್ತೀಸ್ಗಢ @@ -2779,26 +2785,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,ಮುದ್ರಿಸು Send ಪಿಡಿಎಫ್ DocType: Web Form,Amount,ಪ್ರಮಾಣ DocType: Workflow Transition,Allowed,ಅವಕಾಶ -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ಒಂದು ರೂಪದಲ್ಲಿ ಒಂದೇ ಪದರ ಇಲ್ಲದಂತಾಗುತ್ತದೆ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ಒಂದು ರೂಪದಲ್ಲಿ ಒಂದೇ ಪದರ ಇಲ್ಲದಂತಾಗುತ್ತದೆ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},ಕಡತ ವಿನ್ಯಾಸವನ್ನು ಬರೆಯಲು ಸಾಧ್ಯವಿಲ್ಲ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,ಡೀಫಾಲ್ಟ್ ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಪುನಃಸ್ಥಾಪಿಸಲು? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ಅಮಾನ್ಯವಾದ ಮುಖಪುಟ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,ಅಮಾನ್ಯ ಲಾಗಿನ್. ಮತ್ತೆ ಪ್ರಯತ್ನಿಸು. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ಸತತವಾಗಿ ಲಿಂಕ್ ಅಥವಾ ಟೇಬಲ್ ಪ್ರಕಾರ ಕ್ಷೇತ್ರವು {0} ಅಗತ್ಯವಾದ ಆಯ್ಕೆಗಳು {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ಸತತವಾಗಿ ಲಿಂಕ್ ಅಥವಾ ಟೇಬಲ್ ಪ್ರಕಾರ ಕ್ಷೇತ್ರವು {0} ಅಗತ್ಯವಾದ ಆಯ್ಕೆಗಳು {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ಸತತವಾಗಿ ಲಿಂಕ್ ಅಥವಾ ಟೇಬಲ್ ಪ್ರಕಾರ ಕ್ಷೇತ್ರವು {0} ಅಗತ್ಯವಾದ ಆಯ್ಕೆಗಳು {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ಸತತವಾಗಿ ಲಿಂಕ್ ಅಥವಾ ಟೇಬಲ್ ಪ್ರಕಾರ ಕ್ಷೇತ್ರವು {0} ಅಗತ್ಯವಾದ ಆಯ್ಕೆಗಳು {1} DocType: Auto Email Report,Send only if there is any data,ಯಾವುದೇ ಮಾಹಿತಿ ಇಲ್ಲ ಮಾತ್ರ ಕಳುಹಿಸಿ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ಫಿಲ್ಟರ್ ಕೊಡುಗೆಗಳು -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : ಉನ್ನತ ಮಟ್ಟದ ಸೆಟ್ ಮೊದಲು ಮಟ್ಟದ 0 ಅನುಮತಿಯ ಸೆಟ್ ಮಾಡಬೇಕು +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : ಉನ್ನತ ಮಟ್ಟದ ಸೆಟ್ ಮೊದಲು ಮಟ್ಟದ 0 ಅನುಮತಿಯ ಸೆಟ್ ಮಾಡಬೇಕು apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ಹುದ್ದೆ ಮುಚ್ಚಲಾಯಿತು {0} DocType: Integration Request,Remote,ರಿಮೋಟ್ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,ಲೆಕ್ಕ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ಲೆಕ್ಕ apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,ಮೊದಲ DOCTYPE ಆಯ್ಕೆಮಾಡಿ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,ನಿಮ್ಮ ಇಮೇಲ್ ಅನ್ನು ಖಾತ್ರಿ apps/frappe/frappe/www/login.html +42,Or login with,ಅಥವಾ ಲಾಗಿನ್ DocType: Error Snapshot,Locals,ಸ್ಥಳೀಯರು apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ಮೂಲಕ ಸಂವಹನ {0} ನಲ್ಲಿ {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ಒಂದು ಕಾಮೆಂಟ್ನಲ್ಲಿ ಪ್ರಸ್ತಾಪಿಸಿದ್ದಾರೆ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ಉದಾ (55 + 434) / 4 ಅಥವಾ = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ಉದಾ (55 + 434) / 4 ಅಥವಾ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ಅಗತ್ಯವಿದೆ DocType: Integration Request,Integration Type,ಇಂಟಿಗ್ರೇಷನ್ ಕೌಟುಂಬಿಕತೆ DocType: Newsletter,Send Attachements,attachements ಕಳುಹಿಸಿ @@ -2808,15 +2814,15 @@ DocType: DocField,Perm Level,ಪೆರ್ಮ್ ಮಟ್ಟ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,ಇಂದಿನ ಕ್ಯಾಲೆಂಡರ್ ಕ್ರಿಯೆಗಳು DocType: Web Page,Web Page,ವೆಬ್ ಪುಟ DocType: Blog Category,Blogger,ಬ್ಲಾಗರ್ -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ಗ್ಲೋಬಲ್ ಸರ್ಚ್' ಮಾದರಿ ಅನುಮತಿಸಲಾಗುವುದಿಲ್ಲ {0} ಸತತವಾಗಿ {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ಪಟ್ಟಿ ವೀಕ್ಷಣೆ -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},ದಿನಾಂಕ ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},ದಿನಾಂಕ ಸ್ವರೂಪದಲ್ಲಿರಬೇಕು : {0} DocType: Workflow,Don't Override Status,ಸ್ಥಿತಿ ಬದಲಾಯಿಸಬೇಡಿ apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ರೇಟಿಂಗ್ ನೀಡಿ. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ಪ್ರತಿಕ್ರಿಯೆ ವಿನಂತಿ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,ಹುಡುಕಾಟದ ಪದ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,ಮೊದಲ ಬಳಕೆದಾರ : ನೀವು +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,ಮೊದಲ ಬಳಕೆದಾರ : ನೀವು apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,ಆಯ್ಕೆ ಅಂಕಣ DocType: Translation,Source Text,ಮೂಲ ಪಠ್ಯ apps/frappe/frappe/www/login.py +55,Missing parameters for login,ಲಾಗಿನ್ ಮಿಸ್ಸಿಂಗ್ ನಿಯತಾಂಕಗಳನ್ನು @@ -2838,7 +2844,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,ಆಮದು DocType: ToDo,Assigned By,ಅದಕ್ಕೆ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,ನೀವು ಜಾಗ ಮಟ್ಟವನ್ನು ಹೊಂದಿಸಲು ಕಸ್ಟಮೈಸ್ ಫಾರ್ಮ್ ಬಳಸಬಹುದು . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,ನಿಮ್ಮ ಪ್ರದೇಶವನ್ನು ಆಯ್ಕೆಮಾಡಿ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,ನಿಮ್ಮ ಪ್ರದೇಶವನ್ನು ಆಯ್ಕೆಮಾಡಿ DocType: Custom DocPerm,Level,ಮಟ್ಟ DocType: Custom DocPerm,Report,ವರದಿ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ಪ್ರಮಾಣ 0 ಹೆಚ್ಚು ಇರಬೇಕು. @@ -2858,7 +2864,7 @@ DocType: Website Theme,Background,ಹಿನ್ನೆಲೆ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅರ್ಜಿ ಬಳಸಲಾಗುತ್ತದೆ Doctypes JSON ಪಟ್ಟಿ. ಖಾಲಿ ಇದ್ದರೆ, ಎಲ್ಲಾ ಲಿಂಕ್ Doctypes ಬಳಕೆದಾರ ಅನುಮತಿಗಳು ಅರ್ಜಿ ಬಳಸಲಾಗುತ್ತದೆ." DocType: Report,Ref DocType,ಉಲ್ಲೇಖ doctype apps/frappe/frappe/www/feedback.py +42,Please add a rating,ರೇಟಿಂಗ್ ಸೇರಿಸಿ -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : ರದ್ದು ಮಾಡಿರಿ ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : ರದ್ದು ಮಾಡಿರಿ ಇಲ್ಲದೆ ಹೊಂದಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,ಪೂರ್ಣ ಪುಟ DocType: DocType,Is Child Table,ChildTable ಈಸ್ apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} ಒಂದು ಇರಬೇಕು @@ -2873,7 +2879,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ಈ ಸ್ಲೈಡ apps/frappe/frappe/config/setup.py +260,Install Applications.,ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಇನ್ಸ್ಟಾಲ್ . DocType: Contact,Last Name,ಕೊನೆಯ ಹೆಸರು DocType: Event,Private,ಖಾಸಗಿ -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ಇಂದು ಯಾವುದೇ ಎಚ್ಚರಿಕೆಗಳನ್ನು +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ಇಂದು ಯಾವುದೇ ಎಚ್ಚರಿಕೆಗಳನ್ನು DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ಪಿಡಿಎಫ್ ಇಮೇಲ್ ಮುದ್ರಿಸು ಲಗತ್ತುಗಳು ಕಳುಹಿಸಿ (ಶಿಫಾರಸು) DocType: Web Page,Left,ಎಡ DocType: Event,All Day,ಎಲ್ಲಾ ದಿನ @@ -2887,7 +2893,7 @@ DocType: Event,Send an email reminder in the morning,ಬೆಳಿಗ್ಗೆ DocType: Blog Post,Published On,ರಂದು ಪ್ರಕಟವಾದ DocType: Contact,Gender,ಲಿಂಗ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ಕಡ್ಡಾಯ ಮಾಹಿತಿ ಕಾಣೆಯಾಗಿದೆ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ಕ್ಷೇತ್ರದಲ್ಲಿ '{0}' ಇದು ಅಲ್ಲದ ಅನನ್ಯ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿದೆ ಅನನ್ಯ ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ಕ್ಷೇತ್ರದಲ್ಲಿ '{0}' ಇದು ಅಲ್ಲದ ಅನನ್ಯ ಮೌಲ್ಯಗಳನ್ನು ಹೊಂದಿದೆ ಅನನ್ಯ ಎಂದು ಹೊಂದಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,ಕೇವಲ 200 ಒಳಸೇರಿಸಿದನು ಒಂದು ವಿನಂತಿಯನ್ನು ಅನುಮತಿ DocType: Footer Item,URL,URL ಅನ್ನು DocType: ToDo,Reference Type,ರೆಫರೆನ್ಸ್ ಕೌಟುಂಬಿಕತೆ @@ -2900,7 +2906,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ಎಚ್ಚರಿಕೆ ಚಿಹ್ನೆ DocType: Workflow State,User,ಬಳಕೆದಾರ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ಬ್ರೌಸರ್ ವಿಂಡೋದಲ್ಲಿ ಶೊ ಪ್ರಶಸ್ತಿಯನ್ನು "ಪೂರ್ವಪ್ರತ್ಯಯ - ಶೀರ್ಷಿಕೆ" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ದಾಖಲೆ ಪ್ರಕಾರ ಪಠ್ಯ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ದಾಖಲೆ ಪ್ರಕಾರ ಪಠ್ಯ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,ರನ್ ಟೆಸ್ಟ್ apps/frappe/frappe/handler.py +91,Logged Out,ಲಾಗ್ ಔಟ್ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,ಇನ್ನಷ್ಟು ... @@ -2926,13 +2932,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,ಪ್ರಸ್ತುತ ವೀಕ್ಷಿಸುತ್ತಿದ್ದಾರೆ DocType: DocField,Default,ಡೀಫಾಲ್ಟ್ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ಸೇರಿಸಲಾಗಿದೆ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',ಹುಡುಕು '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ಹುಡುಕು '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,ಮೊದಲು ವರದಿ ಉಳಿಸಲು apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ಗ್ರಾಹಕರನ್ನು ಸೇರ್ಪಡೆ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ಅಲ್ಲ DocType: Workflow State,star,ನಕ್ಷತ್ರ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ಮೌಲ್ಯಗಳನ್ನು -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},ಮಾದರಿ ಕರೆನ್ಸಿ ಮ್ಯಾಕ್ಸ್ ಅಗಲ ಸತತವಾಗಿ 100px {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ಬೇರ್ಪಡಿಸಲಾಗಿರುತ್ತದೆ ಮೌಲ್ಯಗಳನ್ನು +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},ಮಾದರಿ ಕರೆನ್ಸಿ ಮ್ಯಾಕ್ಸ್ ಅಗಲ ಸತತವಾಗಿ 100px {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},ದಯವಿಟ್ಟು ನಿಮ್ಮ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹಂಚಿಕೊಳ್ಳಲು {0} apps/frappe/frappe/config/website.py +13,Content web page.,ವಿಷಯ ವೆಬ್ ಪುಟ . apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ಹೊಸ ಪಾತ್ರ ಸೇರಿಸಿ @@ -2951,7 +2957,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ಮಾನ್ಯ LDAP ಅನ್ನು ಬಳಕೆದಾರ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ಒಂದು ಮಾನ್ಯವಾದ ರಾಜ್ಯ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',ಮತ್ತೊಂದು ಪಾವತಿ ವಿಧಾನವನ್ನು ಅನುಸರಿಸಿ. ಪೇಪಾಲ್ ಕರೆನ್ಸಿ ವ್ಯವಹಾರಗಳ ಬೆಂಬಲಿಸದಿರುವುದರಿಂದ '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,ಹುಡುಕಾಟ ಕ್ಷೇತ್ರದಲ್ಲಿ {0} ಮಾನ್ಯವಾಗಿಲ್ಲ +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,ಹುಡುಕಾಟ ಕ್ಷೇತ್ರದಲ್ಲಿ {0} ಮಾನ್ಯವಾಗಿಲ್ಲ DocType: Workflow State,ok-circle,ಸರಿ ವೃತ್ತ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',ನೀವು ಗ್ರಾಹಕರು ಕಿತ್ತಳೆ ಹೇಗೆ 'ಕೇಳುವ ಮೂಲಕ ವಸ್ತುಗಳನ್ನು ಕಾಣಬಹುದು apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,ಕ್ಷಮಿಸಿ! ಬಳಕೆದಾರರು ತಮ್ಮ ದಾಖಲೆ ಸಂಪೂರ್ಣ ಪ್ರವೇಶವನ್ನು ಇರಬೇಕು. @@ -3013,7 +3019,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,ಫಿಲ್ಟರ್ ಮೆಟಾ DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ಈ ಫಾರ್ಮ್ ವೆಬ್ ಪುಟ ವೇಳೆ ಪಠ್ಯ ವೆಬ್ ಪುಟ ಲಿಂಕ್ ಫಾರ್ ಪ್ರದರ್ಶನವಾಗಲು. ಲಿಂಕ್ ಮಾರ್ಗ ಸ್ವಯಂಚಾಲಿತವಾಗಿ page_name` ಮತ್ತು `parent_website_route`` ಆಧರಿಸಿ ರಚಿಸಲಾಗಿದೆ DocType: Feedback Request,Feedback Trigger,ಪ್ರತಿಕ್ರಿಯೆ ಟ್ರಿಗ್ಗರ್ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,ಮೊದಲ {0} ಸೆಟ್ ದಯವಿಟ್ಟು +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ಮೊದಲ {0} ಸೆಟ್ ದಯವಿಟ್ಟು DocType: Unhandled Email,Message-id,ಸಂದೇಶ ಸೂಚಕ DocType: Patch Log,Patch,ಮಚ್ಚೆ DocType: Async Task,Failed,ವಿಫಲವಾಗಿದೆ diff --git a/frappe/translations/ko.csv b/frappe/translations/ko.csv index 3e3db0604e..1aa2b6d7a9 100644 --- a/frappe/translations/ko.csv +++ b/frappe/translations/ko.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,페이스 북의 사용자 이름 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,참고 : 여러 세션은 모바일 장치의 경우에는 허용됩니다 apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},사용자의 사용 이메일받은 편지함 {사용자} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,이 이메일을 보낼 수 없습니다. 이 달 {0} 이메일의 전송 한계를 넘어있다. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,영구적으로 {0}를 제출? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,영구적으로 {0}를 제출? DocType: Address,County,군 DocType: Workflow,If Checked workflow status will not override status in list view,검사 워크 플로 상태 목록보기의 상태를 오버라이드 (override)하지 않는 경우 apps/frappe/frappe/client.py +280,Invalid file path: {0},잘못된 파일 경로 : {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,파일 apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} 트리 DocType: User,User Emails,사용자 이메일 DocType: User,Username,사용자 이름 -apps/frappe/frappe/model/base_document.py +581,Value too big,너무 큰 값 +apps/frappe/frappe/model/base_document.py +580,Value too big,너무 큰 값 DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,스크립트 테스트 실행 DocType: Contact,Department,부서 @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,로그 DocType: Custom DocPerm,This role update User Permissions for a user,사용자에 대한이 역할은 업데이트 사용자 권한 apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},이름 바꾸기 {0} DocType: Workflow State,zoom-out,줌 아웃 -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,해당 인스턴스가 열려있을 때 {0} 열 수 없습니다 +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,해당 인스턴스가 열려있을 때 {0} 열 수 없습니다 apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,테이블 {0} 비워 둘 수 없습니다 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,원장과 함께 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,이미지 DocType: Communication,Reference Owner,참조 소유자 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"작은 순환 분수 단위 (동전). 이 0.01로 입력해야하고 USD에 대한 예를 들어, 1 센트를 들어" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0} 행 {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0} 행 {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,전체 이름을 제공하십시오. apps/frappe/frappe/model/document.py +904,Beginning with,로 시작 apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,데이터 가져 오기 템플릿 @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,부모의 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",활성화 된 경우 암호 강도는 최소 암호 점수 값에 따라 적용됩니다. 중간 값이 2이고 값이 너무 큰 값이 2입니다. DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",이 옵션을 사용하면 암호 강도가 최소 암호 점수 값에 따라 적용됩니다. 중간 값이 2이고 값이 너무 큰 값이 2입니다. DocType: About Us Settings,"""Team Members"" or ""Management""","""Team Members""또는 ""Management""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',필드의 '확인'유형의 기본 중 하나를 '0'또는 '1'이어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',필드의 '확인'유형의 기본 중 하나를 '0'또는 '1'이어야합니다 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Yester일 DocType: Contact,Designation,Designation DocType: Test Runner,Test Runner,테스트 러너 @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,이 필드를 게시 DocType: Email Group,Email Group,이메일 그룹 DocType: Note,Seen By,볼 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,여러 항목 추가 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,좋아하지 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,좋아하지 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,필드 표시 레이블 설정 apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},잘못된 값 : {0}이어야합니다 {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","변경 필드 속성 (숨김, 읽기 전용, 권한 등)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,문의 apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,관리자 기록 된에 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","등 ""판매 쿼리, 지원 쿼리""새 줄에 각 또는 쉼표로 구분하여 같은 연락처 옵션." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. 다운로드 -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,삽입 +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,삽입 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},선택 {0} DocType: Print Settings,Classic,기본 DocType: Desktop Icon,Color,색상 @@ -122,7 +122,7 @@ DocType: Translation,Translation,번역 apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,설치 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,씨 DocType: Custom Script,Client,클라이언트 -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,당신이 그것을로드 한 후이 양식은 수정되었습니다 +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,당신이 그것을로드 한 후이 양식은 수정되었습니다 DocType: User Permission for Page and Report,User Permission for Page and Report,페이지 및 보고서에 대한 사용자 권한 DocType: Address,Himachal Pradesh,히 마찰 프라데시 DocType: System Settings,"If not set, the currency precision will depend on number format",설정되지 않은 경우 통화 정밀도는 숫자 형식에 따라 달라집니다. @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,이유 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,사용자 지정하십시오 DocType: Email Unsubscribe,Email Unsubscribe,이메일 수신 거부 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,최상의 결과를 위해 투명 배경으로 약 폭 150 픽셀의 이미지를 선택합니다. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,시스템 관리자가 될 것이다 첫 번째 사용자 (이 나중에 변경할 수 있습니다). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,시스템 관리자가 될 것이다 첫 번째 사용자 (이 나중에 변경할 수 있습니다). ,App Installer,응용 프로그램 설치 DocType: Workflow State,circle-arrow-up,원형 화살표 업 apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,업로드 ... DocType: Email Domain,Email Domain,이메일 도메인 DocType: Workflow State,italic,이탤릭체 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,모두를위한 -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} 작성하지 않고 수입을 설정할 수 없습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} 작성하지 않고 수입을 설정할 수 없습니다 apps/frappe/frappe/config/desk.py +26,Event and other calendars.,이벤트 및 기타 일정. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,모든 필드는 의견을 제출하는 데 필요합니다. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,열을 정렬 드래그 @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,표준 사이드 바 메뉴 apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,홈 및 첨부 파일 폴더를 삭제할 수 없습니다 apps/frappe/frappe/config/desk.py +19,Files,파일 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,권한은이 할당 된 역할을 기반으로 사용자에 적용받을. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,당신은이 문서와 관련된 이메일을 보낼 수 없습니다 -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0} 정렬 / 그룹이어야 한 열을 선택하세요 +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,당신은이 문서와 관련된 이메일을 보낼 수 없습니다 +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0} 정렬 / 그룹이어야 한 열을 선택하세요 DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,당신이 샌드 박스 API를 사용하여 결제를 테스트하는 경우이 옵션을 선택합니다 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,당신은 표준 웹 사이트 테마를 삭제할 수 없습니다 DocType: Feedback Trigger,Example,예 @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,총 구독자 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","역할은 레벨 0에서 액세스 할 수없는 경우, 높은 수준은 무의미하다." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,다른 이름으로 저장 DocType: Communication,Seen,신 -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,자세한 내용보기 +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,자세한 내용보기 DocType: System Settings,Run scheduled jobs only if checked,선택하는 경우에만 예약 된 작업을 실행 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,섹션 제목이 활성화 된 경우에만 표시됩니다 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,아카이브 @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,숨기기 제목 DocType: Address,Current,흐름 DocType: Address,Current,흐름 -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,관련된 문서 apps/frappe/frappe/config/core.py +17,Groups of DocTypes,doctype에 그룹 DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,제거 - 원 @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,필터 apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},필드 이름은 {0} 같은 특수 문자를 사용할 수 없습니다 {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,한 번에 많은 값을 업데이트합니다. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,오류 : 당신이 그것을 연 후 문서가 수정되었습니다 -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새 것을 만드십시오. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} 로그 아웃 : {1} DocType: Address,West Bengal,서 벵골 -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : 지정 제출을 설정할 수 없습니다 Submittable없는 경우 +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : 지정 제출을 설정할 수 없습니다 Submittable없는 경우 DocType: Social Login Keys,Facebook,페이스북 apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",에 의해 필터링 "{0}" DocType: Salutation,Administrator,관리자 @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,블로그 제목 apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,표준 역할은 비활성화 할 수 없습니다 DocType: Address,Mizoram,미조람 DocType: Newsletter,Newsletter,뉴스레터 -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,순서대로 하위 쿼리를 사용할 수 없습니다 +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,순서대로 하위 쿼리를 사용할 수 없습니다 DocType: Web Form,Button Help,버튼 도움말 DocType: Kanban Board Column,purple,자 DocType: About Us Settings,Team Members,팀 회원 @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","가입이 {0}에 만료되었습니다. 갱신하려면, {1}." DocType: Workflow State,plus-sign,더하기 기호 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,이미 설치를 완료 -apps/frappe/frappe/__init__.py +890,App {0} is not installed,앱 {0} 설치되어 있지 않습니다 +apps/frappe/frappe/__init__.py +889,App {0} is not installed,앱 {0} 설치되어 있지 않습니다 DocType: Workflow State,Refresh,새로 고침 DocType: Event,Public,공공 apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,보여 아무것도 @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,으로 좋아 apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,이메일 지원 DocType: DocField,Print Hide If No Value,인쇄 숨기면 아무 가치가 없습니다 DocType: Event,yellow,노랑 -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,이 필드를해야한다 게시하는 것은 유효한 필드 이름 수 +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,이 필드를해야한다 게시하는 것은 유효한 필드 이름 수 apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,첨부 파일을 업로드 DocType: Block Module,Block Module,블록 모듈 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,템플릿 내보내기 @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},새로운 계정은 당신을 위해 생성 된 {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,이메일로받은 지침 apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,이메일로받은 지침 -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),입력 한 이메일받는 사람 (들) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),입력 한 이메일받는 사람 (들) DocType: Print Format,Verdana,굴림 DocType: Email Flag Queue,Email Flag Queue,이메일 플래그 큐 apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,오픈 식별 할 수없는 {0}. 다른 것을 시도하십시오. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,메시지 ID DocType: Property Setter,Field Name,필드 이름 apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite가 구성되지 않았습니다. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,또는 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,모듈 이름 ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,계속 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,모듈 이름 ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,계속 DocType: Custom Field,Fieldname,필드 이름 DocType: Workflow State,certificate,증명서 DocType: User,Tile,바둑판식 반복 @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,모든 버전보기 DocType: Workflow State,Print,인쇄 DocType: User,Restrict IP,IP에게 제한 +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,계기반 apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,이 시간에 이메일을 보낼 수 없습니다 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,명령을 검색하거나 입력 DocType: Communication,Timeline Name,타임 라인 이름 @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,판매 마스터 관리자 apps/frappe/frappe/www/complete_signup.html +13,One Last Step,마지막 단계 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,이 필드에 링크 할 문서 형식 (문서 종류)의 이름입니다. 예를 들어 고객 DocType: User,Roles Assigned,할당 된 역할 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,검색 도움말 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,검색 도움말 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,검색 도움말 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,검색 도움말 DocType: Top Bar Item,Parent Label,부모 라벨 apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","질문이 접수되었습니다. 우리는 곧 다시 회신 해 드리겠습니다. 당신이 추가 정보가있는 경우,이 메일에 회신 해 주시기 바랍니다." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,권한은 자동으로 표준 보고서와 검색으로 변환됩니다. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,제목 편집 DocType: File,File URL,파일의 URL DocType: Version,Table HTML,표 HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'에 대한 검색 결과가 없습니다.

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,가입자 추가 apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,오늘을 위해 예정 이벤트 DocType: Email Alert Recipient,Email By Document Field,문서 필드에 이메일 @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,금액 필드를 기준으로 apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,사용자는 공유를위한 필수입니다 DocType: DocField,Hidden,숨겨진 DocType: Web Form,Allow Incomplete Forms,불완전한 양식 허용 -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} 먼저 설정해야합니다 +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} 먼저 설정해야합니다 apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","일반적인 문구를 방지, 몇 가지 단어를 사용합니다." DocType: Workflow State,plane,"평면, 비행기" -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,죄송합니다. 결제 오류가 발생했습니다. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","당신이 새로운 기록을 업로드하는 경우 존재하는 경우, ""시리즈 이름 지정"", 필수가된다." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,오늘을위한 가상 에이전트 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,오늘을위한 가상 에이전트 apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE을 이리 저리 관리자가 이름을 바꿀 수 있습니다 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},의 변경된 값 {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,확인을 위해 이메일을 확인하시기 바랍니다 -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,배량 형태의 끝에있을 수 없다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,배량 형태의 끝에있을 수 없다 DocType: Communication,Bounced,부도 DocType: Deleted Document,Deleted Name,삭제 된 이름 apps/frappe/frappe/config/setup.py +14,System and Website Users,시스템 및 웹 사이트 사용자 @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,문서 대기 DocType: GSuite Templates,Destination ID,목적지 ID DocType: Desktop Icon,List,명부 DocType: Communication,Link Name,링크 이름 -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,이 필드 {0} 행에서 {1} 기본 않고 숨겨진 필수 할 수 없습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,이 필드 {0} 행에서 {1} 기본 않고 숨겨진 필수 할 수 없습니다 DocType: System Settings,mm/dd/yyyy,yyyy/mm/dd apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,유효하지 않은 비밀번호: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,유효하지 않은 비밀번호: DocType: Print Settings,Send document web view link in email,이메일에 문서 웹보기 링크 보내기 apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,문서에 대한 여러분의 의견은 {0} 성공적으로 저장됩니다 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,이전 -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,제목 : Re : +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,제목 : Re : apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0}에 대한 행 {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","하위 통화.예를 들면 ""에 대한센트 """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,업로드 된 파일을 선택 @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,링크 apps/frappe/frappe/utils/file_manager.py +96,No file attached,첨부 파일이 없습니다 DocType: Version,Version,버전 DocType: User,Fill Screen,화면을 가득 채운 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","때문에 누락 된 데이터로,이 나무 보고서를 표시 할 수 없습니다.대부분의 경우, 그것으로 인해 권한 필터링되고있다." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오. +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","때문에 누락 된 데이터로,이 나무 보고서를 표시 할 수 없습니다.대부분의 경우, 그것으로 인해 권한 필터링되고있다." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. 파일 apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,업로드를 통해 편집 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","문서 유형 ..., 예를 들어, 고객" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","문서 유형 ..., 예를 들어, 고객" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,조건은 '{0}'무효 DocType: Workflow State,barcode,바코드 apps/frappe/frappe/config/setup.py +232,Add your own translations,자신의 번역을 추가 @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,수요일 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","떨어져 역할 기반 권한 규칙에서, 당신은 doctype에 기반으로 사용자 권한을 적용 할 수 있습니다." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","이 권한은 허용 된 레코드가 연결되어있는 모든 거래에 적용됩니다.회사 C는 사용자의 X의 사용자 권한에 추가 된 경우 예를 들어, 사용자 X는 연결된 값으로 회사 C가 트랜잭션을 볼 수있을 것이다." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,이미지 필드는 유효한 필드 이름이어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,이미지 필드는 유효한 필드 이름이어야합니다 DocType: OAuth Client,Token,토큰 DocType: Property Setter,ID (name) of the entity whose property is to be set,속성 설정 될 엔티티의 ID (이름) apps/frappe/frappe/limits.py +82,"To renew, {0}.","갱신하려면, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,사이드 바 항목 apps/frappe/frappe/installer.py +125,App {0} already installed,앱 {0}이 (가) 이미 설치되었습니다. DocType: Workflow State,exclamation-sign,느낌표 기호 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,보기 권한 -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,타임 라인 필드는 링크 또는 동적 연결해야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,타임 라인 필드는 링크 또는 동적 연결해야합니다 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,날짜 범위 apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,간트 apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},페이지 {0}의 {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,웹 apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",암호화 키가 잘못되었습니다. site_config.json을 확인하십시오. apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,에 DocType: Kanban Board Column,darkgrey,어두운 회색 -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},성공 : {0}에 {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},성공 : {0}에 {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,데모에서는 사용자 세부 정보를 변경할 수 없습니다. https://erpnext.com에서 새 계정을 만드십시오. apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,변경하려면이 중복하십시오 apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF 생성으로 인해 깨진 이미지 링크 실패 @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,접을 수있는 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,저장 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,어떤 도움이 필요 하신가요? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,선택에 대한 옵션을 선택합니다. 새 줄에 각 옵션. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,영구적으로 {0} 취소? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,영구적으로 {0} 취소? DocType: Workflow State,music,음악 DocType: Web Page,Settings,설정 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,문서 타입을 지정하십시오 DocType: Print Format,Style Settings,스타일 설정 -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,정렬 필드 {0} 유효한 필드 이름이어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,정렬 필드 {0} 유효한 필드 이름이어야합니다 apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,더 DocType: Contact,Sales Manager,영업 관리자 apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,이름 DocType: Print Format,Format Data,형식 데이터 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,같은 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,같은 DocType: Customize Form Field,Customize Form Field,양식 필드에게 사용자 지정 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,사용자에게 허용 DocType: OAuth Client,Grant Type,그랜트 유형 apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,문서는 사용자가 읽을 수있는 확인 apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,허용되지 않는 앱 나열 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,와일드 카드로 %를 사용 -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",이메일 도메인을 만들고이 계정에 대해 구성되지? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,와일드 카드로 %를 사용 +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",이메일 도메인을 만들고이 계정에 대해 구성되지? DocType: User,Reset Password Key,암호 재설정 키 DocType: Email Account,Enable Auto Reply,자동 응답 사용 apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,보지 @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,한 번만 설정 DocType: Email Queue Recipient,Email Queue Recipient,이메일 대기열받는 사람 DocType: Address,Nagaland,나가 랜드 apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,사용자 이름은 {0} 이미 존재 -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} {1} 가져올 수 없습니다로 가져 오기를 설정할 수 없습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} {1} 가져올 수 없습니다로 가져 오기를 설정할 수 없습니다 apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},당신의 주소 템플릿에 오류가 있습니다 {0} DocType: Footer Item,"target = ""_blank""","대상 = ""_blank""" DocType: Workflow State,hdd,하드 디스크 @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,전체 이름에서 apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},당신은 보고서에 액세스 할 수 없습니다 : {0} DocType: User,Send Welcome Email,환영 이메일 보내기 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,다운로드와 같은 형식으로 모든 사용자 권한이 포함 된 CSV 파일을 업로드합니다. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,필터를 제거 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,필터를 제거 DocType: Address,Daman and Diu,Daman과 Diu DocType: Address,Personal,개인의 apps/frappe/frappe/config/setup.py +113,Bulk Rename,대량 이름 바꾸기 @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",표준 DocType은 기본 인쇄 형식을 가질 수 없습니다. 양식 사용자 정의를 사용하십시오. DocType: Report,Query,질문 DocType: DocType,Sort Order,정렬 순서 -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'목록보기'허용되지 않는 유형에 대한 {0} 행에서 {1} DocType: Custom Field,Select the label after which you want to insert new field.,당신이 새 필드를 삽입 할 후 레이블을 선택합니다. ,Document Share Report,문서 공유 보고서 DocType: User,Last Login,마지막 로그인 -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},필드 이름은 행에 필요한 {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},필드 이름은 행에 필요한 {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,기둥 DocType: Custom Field,Adds a custom field to a DocType,문서 타입에 사용자 정의 필드를 추가합니다 DocType: File,Is Home Folder,홈 폴더입니다 @@ -594,7 +594,7 @@ DocType: File,Folder,폴더 DocType: DocField,Index,목차 DocType: Email Group,Newsletter Manager,뉴스 관리자 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,옵션 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,모든 게시물 +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ~ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,요청시 오류로 로그인합니다. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} 성공적으로 전자 메일 그룹에 추가되었습니다. DocType: Address,Uttar Pradesh,우타르 프라데시 @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,지시자 DocType: DocShare,Everyone,모두 DocType: Workflow State,backward,뒤로 -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : 같은 역할, 레벨에 허용 하나의 규칙 {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} : 같은 역할, 레벨에 허용 하나의 규칙 {1}" DocType: Email Queue,Add Unsubscribe Link,탈퇴 링크 추가 apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,아직 코멘트가 없습니다. 새 토론을 시작합니다. DocType: Workflow State,share,몫 @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,허용 apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,보기 가입자 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,MS DocType: Website Theme,Background Color,배경 색상 -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,이메일을 보내는 동안 오류가 발생했습니다.재시도하십시오. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,이메일을 보내는 동안 오류가 발생했습니다.재시도하십시오. DocType: Portal Settings,Portal Settings,포털 설정 DocType: Web Page,0 is highest,0은 가장 높은 apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,당신은 당신이에 {0}이 통신을 다시 연결 하시겠습니까? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,연락처 설정 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,검색 중 ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,검색 중 ... DocType: Workflow State,text-width,텍스트 폭 -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,이 레코드의 최대 첨부 파일 제한에 도달했습니다. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,이 레코드의 최대 첨부 파일 제한에 도달했습니다. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,다음 필수 필드가 작성해야합니다 :
DocType: Email Alert,View Properties (via Customize Form),(지정 양식)보기 속성 DocType: Note Seen By,Note Seen By,볼 참고 @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,라자스탄 apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,보고서 작성기 보고서는 보고서 작성기에서 직접 관리됩니다.아무 상관 없습니다. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,당신의 이메일 주소를 확인하세요 apps/frappe/frappe/model/document.py +903,none of,의 없음 -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,저에게 사본을 보내 +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,저에게 사본을 보내 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,사용자 권한을 업로드 DocType: Dropbox Settings,App Secret Key,앱 비밀 키 apps/frappe/frappe/config/website.py +7,Web Site,웹 사이트 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,검사 항목은 바탕 화면에 표시됩니다 -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} 하나씩 종류에 대해 설정 될 수 없다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} 하나씩 종류에 대해 설정 될 수 없다 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,칸반 보드는 {0} 존재하지 않습니다. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} 현재이 문서를 볼 수 있습니다 DocType: ToDo,Assigned By Full Name,전체 이름으로 지정 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} 업데이트 -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,보고서는 단일 종류를 설정할 수 없습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,보고서는 단일 종류를 설정할 수 없습니다 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} 일 전 DocType: Email Account,Awaiting Password,대기 비밀번호 DocType: Address,Address Line 1,1 호선 주소 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","워크 플로의 상태 (예를 들어, 초안, 승인, 취소)." DocType: Print Settings,Allow Print for Draft,초안에 대한 인쇄 허용 apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,설정 수량 -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,확인하기 위해이 문서를 제출 +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,확인하기 위해이 문서를 제출 DocType: Contact,Unsubscribed,가입되어 있지 않음 apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,페이지 및 보고서에 대한 설정 사용자 지정 역할 apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,평가: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,데이터 가져 오기 도구 DocType: Address,Dadra and Nagar Haveli,다드라와 나가르 하 벨리 apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,업로드 파일은 몇 초 동안 기다리십시오. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,사진 첨부 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,사진 첨부 apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,행 값 변경 DocType: Workflow State,Stop,중지 DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,열려는 페이지에 링크. 당신이 그룹 부모 만들고 싶어 비워 둡니다. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,왼쪽에 레이블을 맞 춥니 DocType: Help Article,Expert,전문가 DocType: Workflow State,circle-arrow-right,원형 화살표 오른쪽 DocType: LDAP Settings,LDAP Server Url,LDAP 서버 URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,그 {0}이 열려있을 때 인스턴스를 열 수 없습니다 +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,그 {0}이 열려있을 때 인스턴스를 열 수 없습니다 apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,설치를 위해 대기 DocType: Custom DocPerm,Custom DocPerm,사용자 정의 DocPerm DocType: Newsletter,Send Unsubscribe Link,탈퇴 링크 보내기 @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,앱 {0} 제거 DocType: Custom DocPerm,Apply User Permissions,사용자 권한을 적용합니다 DocType: User,Modules HTML,모듈 HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,설정> 사용자 권한 관리자 apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,필요없는 값 DocType: DocType,Other Settings,기타 설정 DocType: Social Login Keys,Frappe,프라페 @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth를 무기명 토큰 apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,선택 없음 문서 없음 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,박사 DocType: Event,Event,이벤트 -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0}에서 {1} 썼다 : +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0}에서 {1} 썼다 : apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,표준 필드를 삭제할 수 없습니다. 당신이 원한다면 당신은 그것을 숨길 수 있습니다 DocType: Top Bar Item,For top bar,상단 막대 apps/frappe/frappe/utils/bot.py +148,Could not identify {0},식별 할 수 {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,데스크 액세스 DocType: Workflow State,minus,마이너스 apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,서버 오류 : 서버 로그 또는 연락처 기술 지원을 확인하시기 바랍니다. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,에 오신 것을 환영합니다 이메일 전송 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,처음의 사용을 위해 시스템을 준비하자. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,처음의 사용을 위해 시스템을 준비하자. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,추천 apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,이미 등록 DocType: System Settings,Float Precision,정밀 플로트 @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,인쇄 허용 apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,어떤 앱은 설치하지 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,같은 필수 필드를 선택 DocType: Communication,Clicked,클릭 -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},에 대한 권한이 없습니다 '{0}'{1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},에 대한 권한이 없습니다 '{0}'{1} DocType: User,Google User ID,구글의 사용자 ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,보낼 예정 DocType: DocType,Track Seen,트랙 신 @@ -838,7 +837,7 @@ DocType: Address,Kerala,케 랄라 DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,동시 세션 DocType: OAuth Client,Client Credentials,클라이언트 자격 증명 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,모듈 또는 도구를 엽니 다 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,모듈 또는 도구를 엽니 다 DocType: Communication,Delivery Status,배달 상태 DocType: Module Def,App Name,앱 이름 apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,허용 최대 파일 크기는 {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,참조 통신 DocType: Email Queue,Unsubscribe Method,수신 거부 방법 DocType: GSuite Templates,Related DocType,관련 DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,편집(내용 추가) -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,선택 언어 -apps/frappe/frappe/__init__.py +510,No permission for {0},에 대한 권한이 없습니다 {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,선택 언어 +apps/frappe/frappe/__init__.py +509,No permission for {0},에 대한 권한이 없습니다 {0} DocType: DocType,Advanced,고급 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API 키를 보인다 또는 API 비밀은 잘못된 것입니다! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},참조 : {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,양식 유형을 입력 apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,레코드 태그가 없습니다. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,이 필드를 제거 DocType: User,Send Password Update Notification,암호 업데이트 알림 보내기 -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","허용 문서 종류, 문서 종류.주의!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","허용 문서 종류, 문서 종류.주의!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","인쇄, 이메일, 사용자 정의 형식" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,새로운 버전으로 업데이트 DocType: Custom Field,Depends On,에 따라 달라집니다 @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,하나의 apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,복사 할 파일을 선택하십시오. apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,한 순간 확인 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,보기 태그 +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",엄격한 사용자 권한 적용이 선택되어 있고 사용자의 DocType에 대한 사용자 권한이 정의되어 있으면 링크 값이 비어있는 모든 문서가 해당 사용자에게 표시되지 않습니다 DocType: Address,Billing,청구 DocType: Email Queue,Not Sent,보낼 수 없습니다 DocType: Web Form,Actions,수행 @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,명확한 apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,매일 이벤트는 같은 날에 완료해야합니다. DocType: Communication,User Tags,사용자 태그 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,이미지를 가져 오는 중 .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,설정> 사용자 DocType: Workflow State,download-alt,다운로드 - 고도 apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},다운로드 앱 {0} DocType: Communication,Feedback Request,의견 요청 @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,백업본 apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,주소록에 추가 DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,선택 사항 : 항상이 ID에 보냅니다. 새 행에 각 이메일 주소 -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,자세한 정보 숨기기 +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,자세한 정보 숨기기 DocType: Workflow State,Tasks,작업 DocType: Event,Tuesday,화요일 DocType: Blog Settings,Blog Settings,블로그 설정 @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,이이 저장된 동일한 폴더에 파이썬 파일을 작성 및 열 및 결과를 반환합니다. DocType: DocType,Sort Field,정렬 필드 DocType: Razorpay Settings,Razorpay Settings,Razorpay 설정 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,필터 편집 -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,이 필드 {0} 유형의 {1}는 필수가 될 수 없습니다 -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","예를 들면. 보고서에서 DocType을 위해 선택되어 있지만 사용자 권한이 사용자에 대해 보고서에 정의되지 않은 사용자 권한을 적용 할 경우, 모든 보고서는 해당 사용자에게 표시됩니다" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,필터 편집 +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,이 필드 {0} 유형의 {1}는 필수가 될 수 없습니다 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,더 추가 apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,숨기기 차트 DocType: System Settings,Session Expiry Mobile,세션 만료 모바일 @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,지연 apps/frappe/frappe/config/setup.py +128,List of backups available for download,다운로드 할 수있는 백업의 목록 apps/frappe/frappe/www/login.html +89,Sign up,가입 DocType: Test Runner,Output,산출 +DocType: Email Alert,Set Property After Alert,경고 후 속성 설정 apps/frappe/frappe/config/setup.py +226,Add fields to forms.,양식에 필드를 추가합니다. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,이 사이트의 Paypal 구성에 문제가있는 것 같습니다. DocType: File,rgt,RGT @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,잎 DocType: Portal Menu Item,Portal Menu Item,포털 메뉴 항목 DocType: User Email,Email ID,이메일 ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",보고서 DocType에 대해 사용자 권한 적용이 선택되어 있지만 사용자에 대한 보고서에 대한 사용자 권한이 정의되어 있지 않으면 모든 보고서가 해당 사용자에게 표시됩니다 DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,클라이언트 응용 프로그램은 사용자가 허용 한 후에 액세스 할 수 있습니다 자원의 목록입니다.
예를 들어 프로젝트 DocType: Translation,Translated Text,번역 된 텍스트 DocType: Contact Us Settings,Query Options,쿼리 옵션 @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,주소록 DocType: System Settings,Setup Complete,설치 완료 apps/frappe/frappe/config/setup.py +66,Report of all document shares,모든 문서 공유의 보고서 apps/frappe/frappe/www/update-password.html +18,New Password,새로운 비밀번호 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,필터 {0} 누락 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,필터 {0} 누락 apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,죄송합니다! 당신은 자동 생성 주석을 삭제할 수 없습니다 DocType: Website Theme,Style using CSS,CSS를 사용하여 스타일 apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,참조 문서 종류 @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,블록 모듈 apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,에 길이를 되돌리기 {0}에 대한 '{1}'에서 '{2}'; 길이를 설정하면 {3} 데이터의 절단의 원인이됩니다. DocType: Print Format,Custom CSS,사용자 정의 CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,코멘트 추가 -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},무시 : {0}에 {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},무시 : {0}에 {1} DocType: Address,Gujarat,구자라트 어 apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,자동 이벤트 (스케줄러)에 대한 오류 로그. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),은 (는) 올바른 쉼표로 구분 된 값 (CSV 파일) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,기본 수신 DocType: Workflow State,repeat,반복 DocType: Website Settings,Banner,기치 DocType: Role,"If disabled, this role will be removed from all users.","사용할 경우,이 역할은 모든 사용자에서 제거됩니다." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,검색에 대한 도움말 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,검색에 대한 도움말 apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,등록하지만 비활성화 DocType: DocType,Hide Copy,복사에게 숨기기 apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,모든 역할을 취소합니다 @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,국가 apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,주소 DocType: Communication,Shared,공유 -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,문서 인쇄물 첨부 +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,문서 인쇄물 첨부 DocType: Bulk Update,Field,들 DocType: Communication,Received,획득 DocType: Social Login Keys,Google Client ID,구글 클라이언트 ID @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,쿼리 보고서 DocType: User,Set New Password,새 암호 설정 DocType: User,Github User ID,GitHub의 사용자 ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,문서 입력하면 -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","삭제하거나 {0} 때문에 취소 할 수 없습니다 {1} 와 연결되어 {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","삭제하거나 {0} 때문에 취소 할 수 없습니다 {1} 와 연결되어 {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},알 수없는 응용 프로그램 {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% s는 유효한 보고서 형식이 아닙니다. 다음 % s의 중 하나를 \해야 보고서 형식 DocType: Communication,Chat,채팅 -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},필드 이름 {0} 행에 여러 번 나타납니다 {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},필드 이름 {0} 행에 여러 번 나타납니다 {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0}에서 {1} {2}에서 행 번호에 {3} DocType: Communication,Expired,만료 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),그리드의 필드의 열 번호 (그리드에 총 열보다 11이어야 함) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,계정이있으세 apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},알 수없는 인쇄 형식 : {0} DocType: Workflow State,arrow-down,화살표 아래로 apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,접기 -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},사용자가 삭제할 수 없습니다 {0} {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},사용자가 삭제할 수 없습니다 {0} {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,최근에 업데이트 DocType: Help Article,Likes,좋아하는 DocType: Website Settings,Top Bar,상단 바 DocType: GSuite Settings,Script Code,스크립트 코드 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,사용자 이메일 생성 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,사용자 이메일 생성 -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,사용 권한이 지정되지 않았습니다. +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,사용 권한이 지정되지 않았습니다. apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,글로벌 설정 : 사용자는 선택 아이콘을 선택할 수 있습니다 apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0}을 (를) 찾을 수 없습니다. DocType: Custom Role,Custom Role,사용자 정의 역할 apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,홈 / 테스트 폴더 2 DocType: System Settings,Ignore User Permissions If Missing,누락 된 경우 사용자 권한을 무시 -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,업로드하기 전에 문서를 저장하십시오. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,업로드하기 전에 문서를 저장하십시오. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,암호를 입력 DocType: Dropbox Settings,Dropbox Access Secret,보관 용 액세스 비밀 apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,또 다른 코멘트를 추가 apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,편집에서 DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,뉴스 레터 구독 취소 -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,구역 나누기 앞에 와야합니다 접어 +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,구역 나누기 앞에 와야합니다 접어 apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,마지막으로 수정 DocType: Workflow State,hand-down,손 다운 DocType: Address,GST State,GST 주 -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : 설정할 수 없습니다 제출하지 않고 취소 +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : 설정할 수 없습니다 제출하지 않고 취소 DocType: Website Theme,Theme,테마 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,오류가 발생했습니다. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI는 인증 코드에 바인딩 리디렉션 @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,내 DocType: Website Theme,Text Color,텍스트 색상 DocType: Desktop Icon,Force Show,포스보기 apps/frappe/frappe/auth.py +78,Invalid Request,잘못된 요청 -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,이 양식은 모든 입력이 없습니다 +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,이 양식은 모든 입력이 없습니다 apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},세션 유효 기간은 형식이어야합니다 {0} DocType: Website Sidebar Item,Group,그릅 DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","선택 대상 새 페이지에 열 = ""_blank""." @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,오류를 인코딩 무시합니다. DocType: Workflow State,wrench,렌치 apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,설정 아님 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,설정> 사용자 DocType: Authentication Log,Date,날짜 DocType: Website Settings,Disable Signup,회원 가입에게 사용 안 함 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,시스템이 설치되는 동안 잠시 기다려 주세요. 이 작업은 약간의 시간이 걸릴 수 있습니다. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,코멘트를 추가 DocType: DocField,Mandatory,필수 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,모듈 내보내는 -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : 없음 기본 사용 권한을 설정하지 +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : 없음 기본 사용 권한을 설정하지 apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,가입이에 만료됩니다 {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},백업에 대한 다운로드 링크는 다음 이메일 주소에 이메일로 전송 될 것입니다 : {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","의 제출을 취소, 개정의 의미" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,쿼리 보고서 apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},에 할당 된 {0} : {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,필터 저장 DocType: DocField,Percent,퍼센트 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,필터를 설정하십시오 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,필터를 설정하십시오 apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,와 연결 DocType: Workflow State,book,"~을 기입하다, ~을 예약하다" DocType: Website Settings,Landing Page,방문 페이지 -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,사용자 정의 스크립트 오류 +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,사용자 정의 스크립트 오류 apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} 이름 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","가져 오기 요청 대기. 이것은 약간의 시간이 걸릴 수 있습니다, 기다려주십시오." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,사용 권한이 기준이 설정되어 있지. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,휴대 전화 번호로 apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,이 리소스에 액세스 할 수있는 충분한 권한이 없습니다. 액세스 권한을 얻으려면 관리자에게 문의하시기 바랍니다. DocType: Custom Field,Custom,사용자 지정 apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,이메일 설정 경고는 다양한 기준에 따라. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},아래에 제출 한 게시물 {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},아래에 제출 한 게시물 {0} DocType: Email Alert,Send alert if date matches this field's value,날짜가이 필드의 값과 일치하는 경우 경고를 보내기 DocType: Workflow,Transitions,전환 apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} 제거하고 모든 데이터를 삭제 하시겠습니까? @@ -1307,9 +1308,8 @@ DocType: User,Login After,후 로그인 DocType: Print Format,Monospace,모노 스페이스 DocType: Letter Head,Printing,인쇄 DocType: Workflow State,thumbs-up,엄지 손가락 최대 -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오. DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,정밀는 1과 6 사이 여야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,정밀는 1과 6 사이 여야합니다 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW : {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,손목 DocType: Error Snapshot,Frames,프레임 @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,이미지 링크 DocType: Auto Email Report,Report Filters,보고서 필터 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,지금 DocType: Workflow State,step-backward,스텝 뒤로 -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,사이트 구성에 보관 액세스 키를 설정하십시오 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,이 이메일 주소로 보낼 수 있도록이 기록을 삭제 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,만 필수 필드는 새로운 기록을 위해 필요하다.당신이 원하는 경우 필수가 아닌 열을 삭제할 수 있습니다. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,첨부 파일 폴더입니다 apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,모두 확장 apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,유효한 로그인 ID이 필요합니다. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,재 오픈 -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,당신은 지불을 취소 -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,데이터가 유효한 CSV 파일을 선택하세요 +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,데이터가 유효한 CSV 파일을 선택하세요 apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} 취소 공유와이 문서를 {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{1} (으)로 {0}에서 문서 상태 전환은 허용되지 않습니다 DocType: DocType,"Make ""name"" searchable in Global Search",전체 검색에서 검색 할 수 있도록 "이름" @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,원 DocType: Help Category,Help Category,도움말 카테고리 apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,{0} 사용자가 비활성화되어 있습니다 apps/frappe/frappe/www/404.html +8,Page missing or moved,누락 또는 이동 페이지 -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,편집 {0} 속성 DocType: DocType,Route,노선 apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay 지불 게이트웨이 설정 DocType: DocField,Name,이름 @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,문서 검색 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,문서 검색 DocType: OAuth Authorization Code,Valid,유효한 -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,링크 열기 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,당신의 언어 +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,링크 열기 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,당신의 언어 apps/frappe/frappe/desk/form/load.py +46,Did not load,로드되지 않은 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,행 추가 DocType: Tag Category,Doctypes,doctype에 @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,피드백 요 DocType: Address,Lakshadweep Islands,락샤드 와이프 제도 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,쓸 수 있습니다 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","특정 문서, 송장처럼, 한 번 최종 변경 될 수 없습니다.이러한 문서의 최종 상태는 제출라고합니다.당신은 역할이 등록 할 수있는 제한 할 수 있습니다." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,당신은이 보고서를 내보낼 수 없습니다 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,당신은이 보고서를 내보낼 수 없습니다 apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 개 항목 선택 DocType: Newsletter,Test Email Address,테스트 이메일 주소 DocType: ToDo,Sender,보낸 사람 @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,가져 오기 .ZIP apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,문서 ID DocType: Print Settings,Letter,글자 -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,이미지 필드 유형이어야합니다 이미지 첨부 +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,이미지 필드 유형이어야합니다 이미지 첨부 DocType: DocField,Columns,열 DocType: Async Task,Succeeded,성공 apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},에 필요한 필수 필드 {0} @@ -1464,7 +1462,7 @@ DocType: DocField,Text Editor,텍스트 편집기 apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,회사 소개 페이지의 설정. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,사용자 정의 편집 HTML DocType: Error Snapshot,Error Snapshot,오류 스냅 샷 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,"결과적으로, 우리는 생각, 감정의 패턴을 강조하고, 문제되는 사회 매니페스트하고 명확하고 간결 간단하고 기억하기 쉬운 비유를 통해 묘사된다." +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,"결과적으로, 우리는 생각, 감정의 패턴을 강조하고, 문제되는 사회 매니페스트하고 명확하고 간결 간단하고 기억하기 쉬운 비유를 통해 묘사된다." DocType: Email Alert,Value Change,값 변경 DocType: Standard Reply,Standard Reply,표준 댓글 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,입력 상자의 너비 @@ -1480,12 +1478,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,제목을 생성하려면이 필드 이름을 사용 apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,가져 오기 이메일 apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,사용자로 초대하기 -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,첨부 파일을 선택합니다 +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,첨부 파일을 선택합니다 apps/frappe/frappe/model/naming.py +94, for {0},{0}에 대한 apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,오류가 발생했습니다. 이 신고 해주세요. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,당신은이 문서를 인쇄 할 수 없습니다 +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,당신은이 문서를 인쇄 할 수 없습니다 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,보고서 필터 테이블의 필터 값을 설정하십시오. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,로드 보고서 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,로드 보고서 apps/frappe/frappe/limits.py +72,Your subscription will expire today.,가입이 오늘 만료됩니다. DocType: Page,Standard,표준 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,파일 첨부 @@ -1515,7 +1513,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,지역 확장 DocType: LDAP Settings,Base Distinguished Name (DN),기본 식별 이름 (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,이 대화를 남겨주세요 -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},옵션 링크 필드에 대해 설정되지 {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},옵션 링크 필드에 대해 설정되지 {0} DocType: Customize Form,"Must be of type ""Attach Image""","이미지 첨부"유형이어야합니다 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,모두 선택 해제 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},당신은 필드에 해제하지 '읽기 전용'수 {0} @@ -1558,9 +1556,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,정보 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,오류 보고서 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,피드백 조건이 일치하지 않습니다. -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,타임 라인 필드는 유효한 필드 이름이어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,타임 라인 필드는 유효한 필드 이름이어야합니다 DocType: Currency,Symbol,상징 -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,행 # {0} : +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,행 # {0} : apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,새 암호를 이메일로 전송 apps/frappe/frappe/auth.py +245,Login not allowed at this time,로그인이 시간에 허용되지 DocType: Email Account,Email Sync Option,이메일 동기화 옵션 @@ -1582,7 +1580,7 @@ DocType: DocField,Text,글자 apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,표준은 일반적으로 쿼리에 응답합니다. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,기본 보내기 DocType: Workflow State,volume-off,볼륨 오프 -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},에 의해 좋아 {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},에 의해 좋아 {0} DocType: Footer Item,Footer Item,바닥 글 항목 ,Download Backups,다운로드 백업 apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,홈 / 테스트 폴더 1 @@ -1617,7 +1615,7 @@ DocType: Web Page,Text Align,텍스트 정렬 apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},이름이 같은 특수 문자를 포함 할 수 없습니다 {0} DocType: Contact Us Settings,Forward To Email Address,앞으로 이메일 주소 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,모든 데이터를 표시 -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,제목 필드는 유효한 필드 이름이어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,제목 필드는 유효한 필드 이름이어야합니다 apps/frappe/frappe/config/core.py +7,Documents,서류 DocType: Email Flag Queue,Is Completed,완료 apps/frappe/frappe/www/me.html +22,Edit Profile,프로필 수정 @@ -1627,8 +1625,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",여기에 정의 된 필드 이름 값을 가지고 또는 규칙이 참 (예) 경우에만이 필드가 나타납니다 myfield 평가 : doc.myfield == '나의 가치'평가 : doc.age> (18) -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,오늘 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,오늘 +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,오늘 +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,오늘 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","이 설정되면, 사용자는 수 액세스 문서 (예 될 것입니다링크가 존재하는 블로그의 포스트) (예 :블로거)." DocType: Error Log,Log of Scheduler Errors,스케줄러 오류의 로그 DocType: User,Bio,바이오 @@ -1652,6 +1650,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 등급 인 가장 낮은 & 별 5 개는 가장 높은 등급 인 DocType: Event,Ref Name,참조 이름 DocType: Web Page,Center,가운데 +DocType: Email Alert,Value To Be Set,설정 될 값 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,첫 번째 수준 DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,상태를 변경하기 위해 할당 한 문서 및 역할에 허용 된 상태를 나타냅니다. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,새로 고침 양식 @@ -1672,18 +1671,18 @@ DocType: DocType,Has Web View,웹보기를 가지고 apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","에서 DocType의 이름은 문자로 시작해야하며 문자, 숫자, 공백 및 밑줄로 구성 될 수 있습니다" DocType: Communication,Spam,스팸 DocType: Integration Request,Integration Request,통합 요청 -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,귀하께 +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,귀하께 DocType: Address,Maharashtra,마하라 슈트라 DocType: Address,Accounts User,회계시용자 DocType: Web Page,HTML for header section. Optional,머리글 구역에 대한 HTML.선택사항 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,이 기능은 여전히 새로운 실험이다 -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,최대 {0} 행이 허용 +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,최대 {0} 행이 허용 DocType: Email Unsubscribe,Global Unsubscribe,글로벌 탈퇴 apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,이것은 매우 일반적인 암호입니다. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,전망 DocType: Communication,Assigned,할당 DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,인쇄를 형식 선택 +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,인쇄를 형식 선택 apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,짧은 키보드 패턴은 추측하기 쉬운 DocType: Portal Settings,Portal Menu,포털 메뉴 apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0}의 길이는 1에서 1000 사이 여야합니다 @@ -1722,7 +1721,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,사용자는 검색 할 수 없습니다 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,잘못된 출력 형식 DocType: Custom DocPerm,Apply this rule if the User is the Owner,사용자가 소유자 인 경우이 규칙 적용 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,로그인 ID가됩니다. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,로그인 ID가됩니다. apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,보고서보기 빌드 DocType: Note,Notify users with a popup when they log in,그들이 로그인 할 때 팝업으로 사용자에게 알림 apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1}이 (가) 없습니다, 새로운 대상을 선택해서 병합하세요." @@ -1741,17 +1740,18 @@ DocType: User Permission for Page and Report,Roles Permission,역할 권한 apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,업데이트 DocType: Error Snapshot,Snapshot View,스냅 샷보기 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,전송하기 전에 뉴스를 저장하십시오 -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},옵션 {0} 행에서 {1} 필드에 유효한 문서 종류이어야합니다 +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} 년 전 +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},옵션 {0} 행에서 {1} 필드에 유효한 문서 종류이어야합니다 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,편집 속성 DocType: Patch Log,List of patches executed,패치 목록이 실행 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} 이미 탈퇴 -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,통신 매체 +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,통신 매체 DocType: Website Settings,Banner HTML,배너 HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',다른 지불 방법을 선택하세요. Razorpay은 '{0}'통화 트랜잭션을 지원하지 않습니다 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,백업을 위해 대기 중. 이 시간에 몇 분 정도 걸릴 수 있습니다. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,OAuth를 클라이언트 응용 프로그램을 등록 -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ""{2}""가 될 수 없습니다. ""{3}""중 하나입니다." +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ""{2}""가 될 수 없습니다. ""{3}""중 하나입니다." apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} 또는 {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,바탕 화면 아이콘 표시 또는 숨기기 apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,암호 업데이트 @@ -1778,7 +1778,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,쇼 라인 섹션 후 휴식 DocType: Blogger,Short Name,짧은 이름 apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},페이지 {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","당신은 모든 동기화 옵션을 선택하는 것, 그것은 서버에서 모든 \ 읽을뿐만 아니라, 읽지 않은 메시지를 다시 동기화됩니다. 이것은 또한 통신 (전자 우편)의 중복 \의 원인이 될 수 있습니다." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,파일 크기 @@ -1790,6 +1790,7 @@ DocType: Contact,Purchase Manager,구매 관리자 DocType: Custom Script,Sample,표본(sample) apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,카테고리 분류 안된 태그 DocType: Event,Every Week,매주마다 +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,이메일 계정이 설정되지 않았습니다. 설정> 이메일> 이메일 계정에서 새 이메일 계정을 만드십시오. apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,사용량을 확인하거나 더 높은 계획으로 업그레이드하려면 여기를 클릭하십시오 DocType: Custom Field,Is Mandatory Field,필수 필드 DocType: User,Website User,웹 사이트의 사용자 @@ -1813,16 +1814,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,사용자 정의 사이드 바 메뉴 DocType: Workflow State,pencil,연필 apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,메시지 및 기타 알림을 채팅. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},으로 설정 될 수없는 후에 삽입 {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},으로 설정 될 수없는 후에 삽입 {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,공유 {0}와 apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,이메일 계정 설정 비밀번호를위한 입력 해주세요 DocType: Workflow State,hand-up,손으로 업 DocType: Blog Settings,Writers Introduction,작가 소개 DocType: Address,Phone,휴대폰 -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,오류 동안 평가 이메일 경고 {0}. 템플릿을 수정하십시오. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,오류 동안 평가 이메일 경고 {0}. 템플릿을 수정하십시오. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,시작 문서 형식 또는 역할을 선택합니다. DocType: Contact,Passive,수동 DocType: Contact,Accounts Manager,계정 관리자 +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,결제가 취소되었습니다. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,선택 파일 형식 DocType: Help Article,Knowledge Base Editor,기술 자료 편집기 apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,페이지를 찾을 수 없습니다 @@ -1850,6 +1852,7 @@ DocType: Property Setter,Property Type,부동산 유형 DocType: Workflow State,screenshot,스크린 샷 apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,관리자 만 표준 보고서를 저장할 수 있습니다.이름을 변경하고 저장하십시오. DocType: System Settings,Background Workers,배경 노동자 +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,필드 이름 {0}은 (는) 메타 객체와 충돌합니다. DocType: Deleted Document,Data,자료 apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,문서 상태 apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},당신이 만든 {0}의 {1} @@ -1874,7 +1877,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,표시 사용자 권한 apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,당신은 로그인 및 백업 액세스 할 수 있도록 시스템 관리자 역할을해야합니다. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,남은 -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,첨부하기 전에 저장하십시오. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,첨부하기 전에 저장하십시오. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),추가 {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},기본 테마로 설정되어 {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype의 정보는 다음의 제품에 {0}을 변경할 수 없습니다 {1} 행의 {2} @@ -1895,11 +1898,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,세션 시 apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,세션 시작 실패 apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},이 이메일은 {0}에 전송하고 복사 된 {1} DocType: Workflow State,th,일 -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,설정> 이메일> 이메일 계정에서 기본 이메일 계정을 설정하십시오. -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},새 {0} 만들기 +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},새 {0} 만들기 DocType: Email Rule,Is Spam,스팸인가 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},보고서 {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},열기 {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},열기 {0} DocType: OAuth Client,Default Redirect URI,기본 리디렉션 URI DocType: Email Alert,Recipients,받는 사람 DocType: Workflow State,ok-sign,확인 서명 @@ -1917,6 +1919,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,도움말 기사 ,Modules Setup,모듈 설치 apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,유형 : +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,지불이 실패했습니다. DocType: Communication,Unshared,비공유 DocType: Address,Karnataka,카르 나 타카 apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,모듈을 찾을 수 없음 @@ -1964,7 +1967,7 @@ DocType: Website Settings,Brand Image,브랜드 이미지 DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","위쪽 탐색 모음, 바닥 글 및 로고의 설치." DocType: Web Form Field,Max Value,최대 값 -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},에 대한 {0} 레벨의 {1}에서 {2} 행에서 {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},에 대한 {0} 레벨의 {1}에서 {2} 행에서 {3} DocType: Contact,All,모든 DocType: Email Queue,Recipient,받는 사람 DocType: Communication,Has Attachment,첨부 파일이 @@ -1981,7 +1984,8 @@ DocType: Workflow State,align-right,정렬 오른쪽 DocType: Auto Email Report,Email To,이메일 apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,폴더 {0} 비어 있지 DocType: Page,Roles,역할 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,이 필드 {0} 선택할 수 없습니다. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},오류 : {0}의 값 누락 : {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,이 필드 {0} 선택할 수 없습니다. DocType: System Settings,Session Expiry,세션 유효 DocType: Workflow State,ban-circle,금지 - 원 DocType: Email Flag Queue,Unread,읽히지 않는 @@ -1996,7 +2000,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,사용자 기본값 apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,새로 만들기 DocType: Workflow State,chevron-down,갈매기 다운 -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),로 전송되지 이메일 {0} (장애인 / 탈퇴) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),로 전송되지 이메일 {0} (장애인 / 탈퇴) DocType: Async Task,Traceback,역 추적 DocType: Currency,Smallest Currency Fraction Value,가장 작은 통화 분수 값 apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,에 할당 @@ -2007,12 +2011,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,로부터 DocType: Website Theme,Google Font (Heading),구글 폰트 (호) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,첫 번째 그룹 노드를 선택합니다. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},에서 {0}을 찾기 {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},에서 {0}을 찾기 {1} DocType: OAuth Client,Implicit,절대적인 DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(필드, ""상태""가 있어야합니다 ""제목"")이에서 DocType에 대해 통신으로 추가" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","사용자가 액세스를 허용하면 인증 코드를 수신하는 단계뿐만 아니라 실패에 대한 응답의 URI. 일반적으로 REST 엔드 포인트는 클라이언트 응용 프로그램에 의해 노출.
예를 들어, HTTP : //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,제출 후 {0}을 변경할 수 없습니다 +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,제출 후 {0}을 변경할 수 없습니다 DocType: Communication,Comment Type,코멘트 유형 DocType: OAuth Client,OAuth Client,OAuth 클라이언트 apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,사용자 @@ -2027,7 +2031,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,데이터 필터링 DocType: Auto Email Report,Filter Data,데이터 필터링 apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,태그 추가 -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,먼저 파일을 첨부하시기 바랍니다. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,먼저 파일을 첨부하시기 바랍니다. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","이름을 설정 약간의 오차가, 관리자에게 문의하십시오" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,수신 이메일 계정이 올바르지 않습니다. apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2042,11 +2046,11 @@ DocType: Blog Post,Email Sent,이메일 전송 DocType: DocField,Ignore XSS Filter,XSS 필터를 무시 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,제거 apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,보관 용 백업 설정 -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,전자 우편으로 보내기 +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,전자 우편으로 보내기 DocType: Website Theme,Link Color,링크 색상 apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,{0} 사용자를 비활성화 할 수 없습니다 apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","친애하는 시스템 관리자," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,귀하의 국가 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,귀하의 국가 DocType: Event,Sunday,일요일 apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,격자보기에서 DocType: Address Template,Template,템플릿 @@ -2054,7 +2058,7 @@ DocType: Address,Delhi,델리 apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP 설정 apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,개정 apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,페이팔 지불 게이트웨이 설정 -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0} : 허용 최대 문자 그대로 '{1}'({3}), 절단 얻을 것이다 {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0} : 허용 최대 문자 그대로 '{1}'({3}), 절단 얻을 것이다 {2}" DocType: OAuth Client,Resource Owner Password Credentials,소유자 암호 자격 증명을 자원 DocType: OAuth Client,Response Type,응답 유형 apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,최대 사용자 @@ -2071,7 +2075,7 @@ DocType: DocField,Table,표 DocType: File,File Size,파일 크기 apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,이 양식을 제출하여 로그인해야합니다 DocType: User,Background Image,배경이미지 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","국가, 시간대 및 통화를 선택" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","국가, 시간대 및 통화를 선택" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,중에서 DocType: Async Task,Queued,대기 중 @@ -2080,6 +2084,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,생성 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},잘못된 필터 : {0} DocType: Email Account,no failed attempts,아니 실패한 시도 +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,기본 주소 템플릿이 없습니다. 설정> 인쇄 및 브랜딩> 주소 템플릿에서 새 것을 만드십시오. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,앱 액세스 키 DocType: OAuth Bearer Token,Access Token,액세스 토큰 @@ -2097,8 +2102,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub의 사용자 이름 DocType: DocType,Image View,이미지보기 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","뭔가 트랜잭션 동안 잘못된 것 같습니다. 우리가 지불을 확인하지 않았으므로, 페이팔이 자동으로이 금액을 환불 해드립니다. 그렇지 않은 경우, 우리에게 이메일을 보내 상관 관계 ID를 언급 해주십시오 : {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","암호에 기호, 숫자 및 대문자를 포함하십시오." -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","필드 '{0}'사용자 정의 필드에서 언급 한 후 삽입 '{1}', 라벨 '{2}'존재하지 않는" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","암호에 기호, 숫자 및 대문자를 포함하십시오." +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","필드 '{0}'사용자 정의 필드에서 언급 한 후 삽입 '{1}', 라벨 '{2}'존재하지 않는" DocType: Workflow State,signal,신호 DocType: DocType,Show Print First,인쇄 먼저 보여 apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl 키를 게시 입력 + @@ -2129,14 +2134,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,파일 '{0}'을 (를) 찾을 수 없습니다 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,섹션을 제거 DocType: User,Change Password,암호 변경 -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},잘못된 이메일 : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,안녕하세요! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},잘못된 이메일 : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,안녕하세요! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,이벤트의 끝은 시작 이후 여야합니다 apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},당신은에 대한 보고서를받을 수있는 권한이 없습니다 : {0} +DocType: System Settings,Apply Strict User Permissions,엄격한 사용자 권한 적용 DocType: DocField,Allow Bulk Edit,일괄 수정 허용 DocType: DocField,Allow Bulk Edit,일괄 수정 허용 DocType: Blog Post,Blog Post,블로그 포스트 -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,고급 검색 +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,고급 검색 apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,암호 재설정 지침은 전자 메일로 전송 한 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",레벨 0은. 서 레벨 권한 용이고 필드 레벨 권한 용 상위 레벨입니다. @@ -2155,16 +2161,15 @@ DocType: Web Page,Sidebar and Comments,사이드 바 및 댓글 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","당신이 후 취소 및 저장 문서를 개정 할 때, 이전 번호의 버전입니다 새 번호를 얻을 것이다." DocType: Stripe Settings,Publishable Key,게시 가능 키 DocType: Stripe Settings,Publishable Key,게시 가능 키 -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} 년 전 DocType: Workflow State,circle-arrow-left,원형 화살표 왼쪽 apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,레디 스 캐시 서버가 실행되고 있지 않습니다.관리자 / 기술 지원 센터에 문의하시기 바랍니다 apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,파티 이름 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,새 레코드를 만들 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,새 레코드를 만들 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,수색 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,수색 DocType: Currency,Fraction,분수 DocType: LDAP Settings,LDAP First Name Field,LDAP 이름 필드 -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,기존의 첨부 파일에서 선택 +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,기존의 첨부 파일에서 선택 DocType: Custom Field,Field Description,필드 설명 apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,프롬프트를 통해 설정되지 않은 이름 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,이메일받은 편지함 @@ -2210,11 +2215,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,정보 : DocType: Custom Field,Permission Level,권한 수준 DocType: User,Send Notifications for Transactions I Follow,나의 거래에 대한 알림 보내기 -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : 쓰기없이 정정, 취소, 제출 설정할 수" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : 쓰기없이 정정, 취소, 제출 설정할 수" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,첨부 파일을 삭제 하시겠습니까? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","삭제하거나 {0} 때문에 취소 할 수 없습니다 {1} 와 연결되어 {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'에 대한 검색 결과가 없습니다.

-apps/frappe/frappe/__init__.py +1063,Thank you,감사합니다 +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","삭제하거나 {0} 때문에 취소 할 수 없습니다 {1} 와 연결되어 {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,감사합니다 apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,절약 DocType: Print Settings,Print Style Preview,인쇄 스타일 미리보기 apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2226,10 +2230,10 @@ DocType: DocField,In List View,목록보기 DocType: Email Account,Use TLS,TLS에게 사용 apps/frappe/frappe/email/smtp.py +24,Invalid login or password,잘못된 로그인 또는 암호 apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,형태의 사용자 정의 자바 스크립트를 추가합니다. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,시니어 없음 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,시니어 없음 ,Role Permissions Manager,역할 권한 관리자 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,새로운 인쇄 형식의 이름 -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,삭제 첨부 파일 +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,삭제 첨부 파일 apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,필수 : ,User Permissions Manager,사용자 권한 관리 DocType: Property Setter,New value to be set,설정하는 새로운 값 @@ -2259,26 +2263,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,1 일 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,블로그 게시물을 분류합니다. DocType: Workflow State,Time,시간 DocType: DocField,Attach,첨부 -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} 유효한 필드명 유형이 아닙니다. {{field_name}} 이어야 합니다. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} 유효한 필드명 유형이 아닙니다. {{field_name}} 이어야 합니다. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,적어도 하나의 통신 문서에 사용할 수있는 경우에만 피드백 요청을 보냅니다. DocType: Custom Role,Permission Rules,권한 규칙 DocType: GSuite Settings,GSuite Settings,GSuite 설정 DocType: Address,Links,링크 -apps/frappe/frappe/model/base_document.py +428,Value missing for,값을 누락 +apps/frappe/frappe/model/base_document.py +427,Value missing for,값을 누락 apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,자식 추가 -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1} : 제출 된 기록은 삭제할 수 없습니다. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1} : 제출 된 기록은 삭제할 수 없습니다. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,백업 크기 DocType: GSuite Templates,Template Name,템플릿 이름 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,문서의 새로운 유형 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,문서의 새로운 유형 DocType: Custom DocPerm,Read,돇 DocType: Role Permission for Page and Report,Role Permission for Page and Report,페이지 및 보고서에 대한 역할 권한 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,값을 맞 춥니 다 apps/frappe/frappe/www/update-password.html +14,Old Password,이전 암호 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},게시물 {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},게시물 {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",열 형식을 쿼리에 열 레이블을 제공합니다. DocType: Has Domain,Has Domain,도메인 있음 apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,계정이 없으십니까? 가입 -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : 지정을 개정 설정할 수 Submittable 아니라면 +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : 지정을 개정 설정할 수 Submittable 아니라면 DocType: Address,Bihar,비하르 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,역할 권한 편집 DocType: Communication,Link DocType,링크 DOCTYPE입니다 @@ -2378,7 +2382,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,당신의 프로필에 이메일 주소가 있는지 확인하십시오 apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,이 형태로 저장되지 않은 변경 사항이 있습니다.계속하기 전에 저장하십시오. DocType: Address,Telangana,텔란가나 -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} 옵션이 있어야합니다의 기본 +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} 옵션이 있어야합니다의 기본 DocType: Tag Doc Category,Tag Doc Category,태그 문서 카테고리 DocType: User,User Image,사용자 이미지 apps/frappe/frappe/email/queue.py +289,Emails are muted,이메일은 음소거 @@ -2411,7 +2415,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,다음 작 DocType: Workflow State,ok,OK DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"이 값은 트랜잭션에 자동으로 업데이트되며, 이러한 값을 포함하는 거래에이 사용자에 대한 사용 권한을 제한하는 것이 도움이 될 것입니다." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,발행자 -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** 실패 : {0}에 {1} {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** 실패 : {0}에 {1} {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,필수 선택 apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,검색 apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,이메일 전송 @@ -2423,7 +2427,7 @@ DocType: Async Task,Running,실행 apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,암호 재설정 apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,이상 {0} 가입자를 추가하는 업그레이드하세요 DocType: Workflow State,hand-left,손으로 왼쪽 -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} 고유 수 없기 때문 +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} 고유 수 없기 때문 DocType: Email Account,Use SSL,SSL을 사용하여 DocType: Workflow State,play-circle,재생 원 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,편집하는 인쇄 형식을 선택합니다 @@ -2478,7 +2482,7 @@ DocType: DocField,No Copy,더 복사하지 DocType: Workflow State,qrcode,하시면 자동 apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP에 로그인 DocType: Web Form,Breadcrumbs,빵 부스러기 -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,사용하는 경우 +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,사용하는 경우 DocType: OAuth Authorization Code,Expiration time,만료 시간 DocType: Web Page,Website Sidebar,웹 사이트 사이드 바 DocType: Web Form,Show Sidebar,보기 사이드 바 @@ -2498,7 +2502,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},찾을 수 없습 apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,스스로 이름 및 성씨는 추측하기 쉽습니다. apps/frappe/frappe/config/website.py +93,Knowledge Base,기술 자료 DocType: Workflow State,briefcase,서류 가방 -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},값은 변경할 수 없습니다 {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},값은 변경할 수 없습니다 {0} DocType: Feedback Request,Is Manual,수동인가 DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","녹색, 위험 - - 빨강, 역 - 블랙, 차 - 진한 파란색, 정보 - 라이트 블루, 경고 - 오렌지 성공 : 스타일 버튼의 색상을 나타냅니다" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,는보고는 들어 있지 않습니다.보고서를 실행하는 쿼리 보고서 / [보고서 이름]을 사용하십시오. @@ -2577,7 +2581,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,진행 apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,역할별 apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,누락 된 필드 apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname에 잘못된 필드 이름 '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,문서 유형의 검색 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,문서 유형의 검색 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,필드도 제출 후 언제든지 편집 할 수 있도록 허용 DocType: Custom DocPerm,Role and Level,역할과 수준 DocType: File,Thumbnail URL,미리보기 URL @@ -2594,19 +2598,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,추가 정보 DocType: Desktop Icon,Desktop Icon,바탕 화면 아이콘 -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,결제가 성공적으로 받아 들여졌다 +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,결제가 성공적으로 받아 들여졌다 apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,죄송합니다!이 페이지를 볼 수 없습니다. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,팁 : 두 번 클릭하여 셀 편집 DocType: Workflow State,bell,벨 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,이메일 알림 오류 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,이메일 알림 오류 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,이 문서를 공유하기 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,설정> 사용자 권한 관리자 apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} 은 가지 노드가 될 수 없습니다. 하위 항목을 가지고 있습니다. DocType: Communication,Info,정보 -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,첨부 파일 추가 +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,첨부 파일 추가 DocType: Communication,Email,이메일 apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,메시지를 수신했습니다 -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,읽음 보내기 +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,읽음 보내기 DocType: Stripe Settings,Stripe Settings,스트라이프 설정 DocType: Stripe Settings,Stripe Settings,스트라이프 설정 DocType: Dropbox Settings,Dropbox Setup via Site Config,사이트 구성을 통해 드롭 박스 설치 @@ -2684,6 +2689,7 @@ DocType: DocType,Web View,웹보기 apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,경고 :이 인쇄 형식은 이전 스타일과 API를 통해 생성 할 수 없습니다. DocType: DocField,Print Width,인쇄 폭 ,Setup Wizard,설치 마법사 +DocType: Address,GST State Number,GST 국가 번호 DocType: User,Allow user to login only before this hour (0-24),사용자는이 시간 전에 (0-24)에 로그인 할 수 있도록 허용 apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,폴더는 필수입니다 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2712,7 +2718,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,작은 텍스트용 apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,관리자 액세스 {0}에 {1} IP 주소를 통해 {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,같음 -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',필드의 옵션 '동적 링크'형식이 '문서 종류'등의 옵션이 다른 링크 필드를 지정해야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',필드의 옵션 '동적 링크'형식이 '문서 종류'등의 옵션이 다른 링크 필드를 지정해야합니다 DocType: About Us Settings,Team Members Heading,제목 팀원 apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,잘못된 CSV 형식 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,백업의 설정 번호 @@ -2723,7 +2729,7 @@ DocType: Contact,Contact,연락처 DocType: User,Third Party Authentication,타사 인증 DocType: Website Settings,Banner is above the Top Menu Bar.,배너 상단 메뉴 표시 줄 이상입니다. DocType: Razorpay Settings,API Secret,API 비밀 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,보고서 내보내기 : +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,보고서 내보내기 : apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} 존재하지 않습니다 DocType: Email Account,Port,포트 DocType: Print Format,Arial,굴림 @@ -2746,7 +2752,7 @@ DocType: Kanban Board Column,Column Name,열 이름 DocType: Language,Based On,에 근거 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,기본 확인 apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,프라페 서버 URL을 확인 -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} 인덱싱 할 수 없습니다에 대한 +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} 인덱싱 할 수 없습니다에 대한 DocType: Communication,Email Account,이메일 계정 DocType: Workflow State,Download,다운로드 DocType: Blog Post,Blog Intro,블로그 소개 @@ -2757,7 +2763,7 @@ DocType: Web Page,Insert Code,코드에게 삽입 DocType: ToDo,Low,낮음 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,당신은 신사의 템플릿을 사용하여 문서에서 동적 속성을 추가 할 수 있습니다. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},{0} 한도가 잘못되었습니다. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,문서 유형을 나열 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,문서 유형을 나열 DocType: Event,Ref Type,참조 유형 apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","당신이 새로운 기록을 업로드하는 경우, ""이름""(ID) 열을 비워 둡니다." DocType: Address,Chattisgarh,차 티스 가르 @@ -2779,26 +2785,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,로 보내기 프린트 PDF DocType: Web Form,Amount,양 DocType: Workflow Transition,Allowed,허용 -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,형태로 하나의 폴드가있을 수 있습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,형태로 하나의 폴드가있을 수 있습니다 apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0}의 파일 형식을 쓸 수 없습니다. apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,기본 설정으로 복원? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,잘못된 홈 페이지 apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,잘못된 로그인합니다. 다시 시도하십시오. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},{1} 행의 {0} 링크 또는 테이블 유형 필드에 필요한 옵션 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},{1} 행의 {0} 링크 또는 테이블 유형 필드에 필요한 옵션 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},{1} 행의 {0} 링크 또는 테이블 유형 필드에 필요한 옵션 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},{1} 행의 {0} 링크 또는 테이블 유형 필드에 필요한 옵션 DocType: Auto Email Report,Send only if there is any data,데이터가있을 경우에만 전송 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,필터를 새로 고침 -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : 높은 수준이 설정되기 전에 레벨 0에서 사용 권한이 설정되어야합니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : 높은 수준이 설정되기 전에 레벨 0에서 사용 권한이 설정되어야합니다 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},할당에 의해 폐쇄 {0} DocType: Integration Request,Remote,먼 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,계산 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,계산 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,처음에 doctype 선택하세요 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,이메일 확인 apps/frappe/frappe/www/login.html +42,Or login with,또는 로그인 DocType: Error Snapshot,Locals,지역 주민 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},를 통해 통신 {0}에 {1} {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0}에 대한 댓글에서 언급 한 {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,예를 들어 (55 + 434) / 4 = Math.sin (Math.PI로 / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,예를 들어 (55 + 434) / 4 = Math.sin (Math.PI로 / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0}이 필요합니다 DocType: Integration Request,Integration Type,일체형 DocType: Newsletter,Send Attachements,Attachements 보내기 @@ -2808,15 +2814,15 @@ DocType: DocField,Perm Level,파마 수준 apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,오늘의 일정 이벤트 DocType: Web Page,Web Page,웹 페이지 DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},{1} 행의 {0} 유형에는 '전체 검색에서'가 허용되지 않습니다. apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,목록보기 -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},날짜 형식이어야합니다 : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},날짜 형식이어야합니다 : {0} DocType: Workflow,Don't Override Status,상태를 무시하지 마십시오 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,평점을주세요. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} 피드백 요청 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,검색어 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,첫 번째 사용자 : 당신 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,첫 번째 사용자 : 당신 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,열 선택 DocType: Translation,Source Text,원본 텍스트 apps/frappe/frappe/www/login.py +55,Missing parameters for login,로그인에 대한 누락 된 매개 변수 @@ -2838,7 +2844,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,가져 오기 DocType: ToDo,Assigned By,할당 한 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,당신은 필드에서 레벨을 설정하는 사용자 지정 양식을 사용할 수 있습니다. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,지역 선택 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,지역 선택 DocType: Custom DocPerm,Level,레벨 DocType: Custom DocPerm,Report,보고서 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,금액은 0보다 커야합니다. @@ -2858,7 +2864,7 @@ DocType: Website Theme,Background,배경 DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","사용자 권한을 적용하는 데 사용 doctype에의 JSON 목록.비어있는 경우, 연결된 모든 doctype에이 사용자 권한을 적용하는 데 사용됩니다." DocType: Report,Ref DocType,참조 문서 종류 apps/frappe/frappe/www/feedback.py +42,Please add a rating,등급을 추가하십시오. -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : 설정할 수 없습니다 취소없이 개정 +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : 설정할 수 없습니다 취소없이 개정 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,전체 페이지 DocType: DocType,Is Child Table,자식 테이블입니다 apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} 중 하나 여야합니다 @@ -2873,7 +2879,7 @@ DocType: Website Slideshow,This goes above the slideshow.,슬라이드 쇼가 apps/frappe/frappe/config/setup.py +260,Install Applications.,응용 프로그램을 설치합니다. DocType: Contact,Last Name,성 DocType: Event,Private,개인 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,오늘에 대한 경고 없음 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,오늘에 대한 경고 없음 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF로 이메일 프린트 첨부 파일 보내기 (권장) DocType: Web Page,Left,왼쪽 DocType: Event,All Day,하루 종일 @@ -2887,7 +2893,7 @@ DocType: Event,Send an email reminder in the morning,아침에 이메일 알림 DocType: Blog Post,Published On,에 게시 DocType: Contact,Gender,성별 apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,누락 된 필수 정보 : -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,이 필드를 '{0}'이 아닌 고유 한 값을 가지고 독특한로 설정할 수 없습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,이 필드를 '{0}'이 아닌 고유 한 값을 가지고 독특한로 설정할 수 없습니다 apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,200 인서트는 하나의 요청에 허용 DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,참조 형식 @@ -2900,7 +2906,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,경고 기호 DocType: Workflow State,User,사용자 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",같은 브라우저 창에 표시 제목 "접두어 - 제목" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,문서 형식의 텍스트 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,문서 형식의 텍스트 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,테스트 실행 apps/frappe/frappe/handler.py +91,Logged Out,로그 아웃 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,더... @@ -2926,13 +2932,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,현재보기 DocType: DocField,Default,기본값 apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} 추가 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}'검색 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}'검색 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,먼저 보고서를 저장하십시오 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} 가입자는 추가 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,하지에서 DocType: Workflow State,star,별 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,쉼표로 구분 된 값 -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},유형의 통화에 대한 최대 폭은 행에있는 100 픽셀 {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,쉼표로 구분 된 값 +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},유형의 통화에 대한 최대 폭은 행에있는 100 픽셀 {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},에 대한 귀하의 의견을 공유하세요 {0} apps/frappe/frappe/config/website.py +13,Content web page.,콘텐츠 웹 페이지. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,새 역할 추가 @@ -2951,7 +2957,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,유효한 LDAP 사용자 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0}은 유효한 상태 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',다른 지불 방법을 선택하세요. 페이팔은 '{0}'통화 트랜잭션을 지원하지 않습니다 -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,검색 필드 {0} 유효하지 않습니다 +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,검색 필드 {0} 유효하지 않습니다 DocType: Workflow State,ok-circle,OK-원 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',당신은 '고객에 오렌지를 찾아'요구에 의해 물건을 찾을 수 있습니다 apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,죄송합니다!사용자는 자신의 기록에 대한 완전한 액세스 권한이 있어야합니다. @@ -3013,7 +3019,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,메타 필터 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,이 양식은 웹 페이지가있는 경우 텍스트는 웹 페이지에 링크 표시합니다.링크 경로는 자동으로 page_name`와`parent_website_route``를 기반으로 생성됩니다 DocType: Feedback Request,Feedback Trigger,피드백 트리거 -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,먼저 {0}을 설정하십시오 +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,먼저 {0}을 설정하십시오 DocType: Unhandled Email,Message-id,메시지 ID DocType: Patch Log,Patch,패치 DocType: Async Task,Failed,실패한 diff --git a/frappe/translations/ku.csv b/frappe/translations/ku.csv index 42455f921a..bb35631ed2 100644 --- a/frappe/translations/ku.csv +++ b/frappe/translations/ku.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,facebook Username DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Têbînî: danişînên Multiple dê di doza cîhazê mobile destûr apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},inbox email çalake ji bo user {bikarhênerên} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Dikarin vê jî email bişînin ne. Tu sînorê şandina ji {0} emails ji bo vê mehê re derbas kirine. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Û her tim {0} Submit? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Û her tim {0} Submit? DocType: Address,County,County DocType: Workflow,If Checked workflow status will not override status in list view,Ger statûya workflow Checked wê statûya li view lîsteya override ne apps/frappe/frappe/client.py +280,Invalid file path: {0},riya Invalid file: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Ji kere apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,Emails Bikarhêner DocType: User,Username,Username -apps/frappe/frappe/model/base_document.py +581,Value too big,Nirx pir mezin +apps/frappe/frappe/model/base_document.py +580,Value too big,Nirx pir mezin DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Test Script Run DocType: Contact,Department,Liq @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,têketin DocType: Custom DocPerm,This role update User Permissions for a user,Ev update rola Permissions ji bo bikarhênerek apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Rename {0} DocType: Workflow State,zoom-out,dûr xistin -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,ne dikarin veke {0} gava Mesela wê vekirî ye +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,ne dikarin veke {0} gava Mesela wê vekirî ye apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Table {0} ne vala be apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,bi Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,images DocType: Communication,Reference Owner,Çavkanî Xwedî DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Biçûk beşa aydî fraction (coin). Ji bo nimûne, 1 ji sedî ji bo USD û jî, divê wekî 0.01 ketin" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Ji kerema xwe re fullName bide. apps/frappe/frappe/model/document.py +904,Beginning with,destpêkê de bi apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Import Şablon Data @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,dê û bav DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Heke hilbijartî be, hêza vê şîfreya dê li ser bingeha herî kêm nirxê Password Score bi zorê. A value of 2 bûyîna navîn bi hêz û 4 ku pir xurt." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Heke hilbijartî be, hêza vê şîfreya dê li ser bingeha herî kêm nirxê Password Score bi zorê. A value of 2 bûyîna navîn bi hêz û 4 ku pir xurt." DocType: About Us Settings,"""Team Members"" or ""Management""","Tîma Endam" an "Management" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Default bo type 'Check' yên zeviyê, divê yan jî '0' an jî '1' be" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Default bo type 'Check' yên zeviyê, divê yan jî '0' an jî '1' be" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Do DocType: Contact,Designation,teklîfê DocType: Test Runner,Test Runner,test Meşva @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Ma Published Field DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,dît By apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,lê zêde bike Multiple -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Like ne +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Like ne apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Set label display ji bo qada apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},nirxa rast nenivîsandiye: {0} divê {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","milkên Change qadê (hide, readonly, destûr û hwd.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Mîhengê apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator têketî DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Vebijarkên Contact, wek "Sales Query, Support Query" û hwd her yek li ser xeta nû an jî ji aliyê cureyên cuda." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Lêzêdekirin +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Lêzêdekirin apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} Select DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,Reng @@ -122,7 +122,7 @@ DocType: Translation,Translation,Werger apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Lêkirin apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Birêz DocType: Custom Script,Client,Kirrîxwaz -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Ev form hatiye guherandin, piştî ku we bar kirin" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Ev form hatiye guherandin, piştî ku we bar kirin" DocType: User Permission for Page and Report,User Permission for Page and Report,Destûr ji bo Page û Raport DocType: Address,Himachal Pradesh,Bihar DocType: System Settings,"If not set, the currency precision will depend on number format","Ger set ne, azmûn dike pereyan wê li format hejmara girêdayî" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Semed apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Ji kerema xwe ve user diyar DocType: Email Unsubscribe,Email Unsubscribe,Email Unsubscribe DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,wêneyekî width nêzî 150px Select bi a background transparent ji bo encamên herî baş. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,The yekem user dê bibe Manager System de (tu ev piştre biguherin). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,The yekem user dê bibe Manager System de (tu ev piştre biguherin). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,circle-tîra-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Tê barkirin ... DocType: Email Domain,Email Domain,Domain Email DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,ji bo her kesî -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Can Import bê Create set ne +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Can Import bê Create set ne apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event û din calendars. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Hemû qadên pêwist ji bo pêşkêşkirina de Rayi in. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Drag bi sererastkirina stûnên @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Menu Kêlekê Standard apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Can Home û Attachments peldankan jê bibî bi apps/frappe/frappe/config/desk.py +19,Files,files apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Permissions get li ser Bikarhêner li ser çi ristên ew rêdan bi serî. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Tu bi destûr ne ji bo şandina emails related to ev belge -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Tikaye Hindîstan 1 column ji {0} ji bo çareser bike koma / hilbijêre +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Tu bi destûr ne ji bo şandina emails related to ev belge +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Tikaye Hindîstan 1 column ji {0} ji bo çareser bike koma / hilbijêre DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"vê kontrol bike, eger tu bi ceribandina dayina we bi bikaranîna API Ceriban" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Tu nikarî bibî a Theme Website standard DocType: Feedback Trigger,Example,Mînak @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Total Subscribers apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Eger Role xwedîyê gihîştina asta 0 tune ne, asta wê bilind bi wate ne." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save As DocType: Communication,Seen,dît -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Nîşan hûragahiyan li Mercên +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Nîşan hûragahiyan li Mercên DocType: System Settings,Run scheduled jobs only if checked,Run karên Biryar tenê eger kontrolkirin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Dê tenê li banî tê kirin, eger beşa sernavan de hatin çalakirin" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archive @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,veşêre Hawara DocType: Address,Current,Vêga DocType: Address,Current,Vêga -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Belgeyên Related apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Groups of DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,jê-circle @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Parzûn apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} dikarin tîpên taybet wek tune ne {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Baştir nirxên gelek di yek dem. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Çewtî: dokumênt hatiye guherandin, piştî ku hûn wê vekir" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No default Address Şablon dîtin. Kerema xwe yek nû ji Setup> Printing û Branding> Address Şablon biafirîne. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} logged out: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Can not set value Submit eger Submittable ne +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Can not set value Submit eger Submittable ne DocType: Social Login Keys,Facebook,facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtreli by "{0}" DocType: Salutation,Administrator,Birêvebir @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Title Blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,rolên Standard ne dikarin neçalak bibin DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"Can sub-query, da bi kar tînin bi destê" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"Can sub-query, da bi kar tînin bi destê" DocType: Web Form,Button Help,Button Alîkarî DocType: Kanban Board Column,purple,mor DocType: About Us Settings,Team Members,Endam Team @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Get avatar g apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","abonetiya xwe li ser {0} ruhê xwe da. Ji bo ku karibe, {1}." DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup jixwe bi temamî -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} sazkirin +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} sazkirin DocType: Workflow State,Refresh,Hênikkirin DocType: Event,Public,Alenî apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Tiştekî bo nîşan bide @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ecibandî By apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Support Email DocType: DocField,Print Hide If No Value,Print veşêre Eger No Nirx DocType: Event,yellow,zer -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,"Ma Published Field, divê bibe fieldname derbasdar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,"Ma Published Field, divê bibe fieldname derbasdar" apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload pêvek hene. DocType: Block Module,Block Module,Module block apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,export Şablon @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},A hesabê nû ji bo te at tên dîtin {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Telîmata bi rêket apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Telîmata bi rêket -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Enter Recipient Email (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Enter Recipient Email (s) DocType: Print Format,Verdana,Unikurd DocType: Email Flag Queue,Email Flag Queue,Email Dorê Flag apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ne dikarin vekirî {0}. Try tiştekî din. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,Message ID DocType: Property Setter,Field Name,Navê Field apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite tê mîhenkirin ne. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,an -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Navê modulê ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Berdewamkirin +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Navê modulê ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Berdewamkirin DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,şehade DocType: User,Tile,Wand @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Nîşan bide hemû Versions DocType: Workflow State,Print,Çap DocType: User,Restrict IP,teng bike IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Rojhan apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nikare bi bişîne emails di vê demê de apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Search an Corî fermana DocType: Communication,Timeline Name,Navê Timeline @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Manager firotina Master apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Step Last apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Name ji Corî dokumênt (DocType) ku tu dixwazî vê qadê ve were girêdan to. eg Mişterî DocType: User,Roles Assigned,rolên Assigned -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Çewa lê bigerhim -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Çewa lê bigerhim +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Çewa lê bigerhim +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Çewa lê bigerhim DocType: Top Bar Item,Parent Label,Label dê û bav apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","query xwe hatiye wergirtin. Em wê bersiva paş demeke kin de. Heger tu agahiyên zêdetir, ji kerema xwe ve ji bo vê mail reply." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Permissions bi xweber ji Reports Standard û Searches jî pêşkêş dikin. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,biguherîne Hawara DocType: File,File URL,URL Wêne DocType: Version,Table HTML,Table HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

No results found for '

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,lê zêde bike Subscribers apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Upcoming Events bo Today DocType: Email Alert Recipient,Email By Document Field,Email By dokumênt Field @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Şêwaz li ser Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Bikarhêner ji bo Share wêneke e DocType: DocField,Hidden,veşartî DocType: Web Form,Allow Incomplete Forms,Destûrê bide Cureyên Incomplete -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,"{0}, divê pêşî bên mîhenkirin" +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,"{0}, divê pêşî bên mîhenkirin" apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Bikaranîna çend peyvên, dûr komepeyvên me yên hevbeş." DocType: Workflow State,plane,plane -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. dayina we bi ser neket. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Eger tu bi cîhek qeydên nû, "Bidin Series" diyarkirî dibe, eger niha." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Get Agehdariyên bo Today +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Get Agehdariyên bo Today apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType tenê dikare bi destê Administrator ku navên wan apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},nirxa guhertin yên {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Ji kerema xwe re email xwe ji bo lêkolînê jî -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Hevşiyê de ne dikarin li dawiya formê de be +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Hevşiyê de ne dikarin li dawiya formê de be DocType: Communication,Bounced,tayekî DocType: Deleted Document,Deleted Name,Navê deleted apps/frappe/frappe/config/setup.py +14,System and Website Users,System û Website Bikarhêner li @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Dokumentê dorê de DocType: GSuite Templates,Destination ID,ID destination DocType: Desktop Icon,List,Rêzok DocType: Communication,Link Name,Navê Link -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} li row {1} ne bê veşartin û bê default wêneke +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} li row {1} ne bê veşartin û bê default wêneke DocType: System Settings,mm/dd/yyyy,mm / dd / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Şîfre Invalid: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Şîfre Invalid: DocType: Print Settings,Send document web view link in email,Send belge link view web li email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,"Deng ji bo belgeya {0} e, bi serkeftin hat tomarkirin" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Pêşî -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rêzikan ji bo {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-currency. Ji bo nimûne, "Cent"" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Select file barkirî @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Pêvek apps/frappe/frappe/utils/file_manager.py +96,No file attached,No file girêdayî DocType: Version,Version,Awa DocType: User,Fill Screen,tije Screen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nikare ji bo nîşandana vê raporê dara, ji ber ku welat jî winda ne. Wisa dîyar e, ku ew tê fîltrekirin ji ber ku destûrên." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Tikaye Account default setup Email ji Setup> Email> Account Email +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nikare ji bo nîşandana vê raporê dara, ji ber ku welat jî winda ne. Wisa dîyar e, ku ew tê fîltrekirin ji ber ku destûrên." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Hilbijêre Wêne apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Biguherîne via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","cureyê pelgeyê ..., wek nimûne mişterî" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","cureyê pelgeyê ..., wek nimûne mişterî" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Rewşa '{0}' nederbasdar e DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,"Zêde dikin, xwe bi xwe" @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Çarşem apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Ji bilî Role Rules Destûr bingeh, tu Permissions Bikarhêner li ser DocTypes serî." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Van destûrên wê ji bo hemû danûstandinên ku rekor destûr girêdayîyê serî. Ji bo nimûne, eger Company C ji bo Permissions User ji user X added, user X wê bi tenê dikare ji bo dîtina muamele ku şîrketa C wek nirxa girêdayî be." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,"nav zeviyê Wêne, divê fieldname derbasdar be" +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,"nav zeviyê Wêne, divê fieldname derbasdar be" DocType: OAuth Client,Token,token DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (name) ji aliyekê milkên e ku were damezirandin apps/frappe/frappe/limits.py +82,"To renew, {0}.","Ji bo ku karibe, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Nawy Kêlekê apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} jixwe sazkirî DocType: Workflow State,exclamation-sign,baneşana-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Show Permissions -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,warê Timeline divê Link an Link Dînamîk be +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,warê Timeline divê Link an Link Dînamîk be apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Date Range apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} ji {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Introd apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","şîfrekirina mifteyê çewt e, ji kerema xwe site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Ber DocType: Kanban Board Column,darkgrey,color -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Serkeftî: {0} ji bo {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Serkeftî: {0} ji bo {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Can hûragahiyan li user li demo nayê guhertin. Ji kerema xwe ji bo hesabekî nû çêke signup li https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Ji kerema xwe vê vedîtina re bide guhertin apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,nifşê PDF ji ber girêdan xuyanga bi ser neket @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Navbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,xilas apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Çi ji we re alîkarî pêwîst bi? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Vebijêrkên ji bo select. Her yek li ser opsîyona çend nû. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Û her tim Betal {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Û her tim Betal {0}? DocType: Workflow State,music,mûzîk DocType: Web Page,Settings,Mîhengên apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Ji kerema xwe ve doctype diyar DocType: Print Format,Style Settings,Settings Style -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,warê Sort {0} divê fieldname derbasdar be +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,warê Sort {0} divê fieldname derbasdar be apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Zêde DocType: Contact,Sales Manager,Manager Sales apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Nav biguherîne DocType: Print Format,Format Data,Data bi formata -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Çawa +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Çawa DocType: Customize Form Field,Customize Form Field,Kesanekirina Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Destûrê bide Bikarhêner DocType: OAuth Client,Grant Type,Type Grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Check ku Belge ji aliyê User xwendin in apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Lîsta app destûr ne -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,bi kar tînin% wek stêrka -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domain Email ji bo vê account nehatiye mîhengkirin, Rencber yek?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,bi kar tînin% wek stêrka +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domain Email ji bo vê account nehatiye mîhengkirin, Rencber yek?" DocType: User,Reset Password Key,Key Password reset bike DocType: Email Account,Enable Auto Reply,Çalak binivîse Auto apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,nedîtiye @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Set Tenê Careke DocType: Email Queue Recipient,Email Queue Recipient,Email Recipient Dorê DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Username {0} 'jixwe heye -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Can import set ne wek {1} e importable ne +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Can import set ne wek {1} e importable ne apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},e an error li Address Şablon xwe li wir {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Ji Name Full apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Derfeta te heye ne ji bo Report: {0} DocType: User,Send Welcome Email,Send Bi xêr hatî Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Pelê bar bike CSV dihewînin, hemû destûrên user di format eynî wek Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,jê Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,jê Filter DocType: Address,Daman and Diu,Çek û çol DocType: Address,Personal,Şexsî apps/frappe/frappe/config/setup.py +113,Bulk Rename,rename Gir @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE ne dikarin format print standard heye, bi kar tînin Form Customize" DocType: Report,Query,Pirs DocType: DocType,Sort Order,Sort Order -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},ji bo cureyê {0} li row 'Li List View' destûr ne {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},ji bo cureyê {0} li row 'Li List View' destûr ne {1} DocType: Custom Field,Select the label after which you want to insert new field.,li label piştî ku tu dixwazî têxe nav zeviyê ya nû hilbijêre. ,Document Share Report,Dokumentê Share Report DocType: User,Last Login,Last Login -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname li row pêwîst e {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname li row pêwîst e {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Ling DocType: Custom Field,Adds a custom field to a DocType,Dixe nav zeviyê adeta ji bo DocType DocType: File,Is Home Folder,E Home Folder @@ -594,7 +594,7 @@ DocType: File,Folder,Pêçek DocType: DocField,Index,Naverok DocType: Email Group,Newsletter Manager,Manager Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Vebijarka 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Hemû Posts +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ji bo {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Têkeve ji error di dema daxwazên. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} hatiye dîtin serkeftin bo Email Pol ji added. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indicator DocType: DocShare,Everyone,Her kesê DocType: Workflow State,backward,bi paş ve -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tenê yek desthilata destûr bi Rola heman, Level û {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tenê yek desthilata destûr bi Rola heman, Level û {1}" DocType: Email Queue,Add Unsubscribe Link,Lê zêde bike Unsubscribe Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,No comments yet. Gengeşîyek bide destpêkirin nû. DocType: Workflow State,share,par @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,qedexe apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,View Subscribers apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,çirkan de DocType: Website Theme,Background Color,background Color -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,bûn çewtî dema şandina email heye. Ji kerema xwe careke din biceribîne. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,bûn çewtî dema şandina email heye. Ji kerema xwe careke din biceribîne. DocType: Portal Settings,Portal Settings,Settings Portal DocType: Web Page,0 is highest,0 bilindtirîn e apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Ma tu dixwazî ku tu dixwazî relink vê ragihandinê {0} ji bo? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Contact Us Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Searching ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Searching ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maximum Sînora pêvek ji bo vê qeyda gihîştin. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maximum Sînora pêvek ji bo vê qeyda gihîştin. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,"Li zeviyên diyarkirî li jêr, divê bên dagirtin:
" DocType: Email Alert,View Properties (via Customize Form),View Properties (via Form Customize) DocType: Note Seen By,Note Seen By,Têbînî Seen By @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report raporên Builder bi awayekî rasterast ji aliyê çêkerê rapora navborî de. Tiştekî ku me bikira. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Ji kerema xwe bo rastkirina Email Address te apps/frappe/frappe/model/document.py +903,none of,yek ji -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Send Me A Copy +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Send Me A Copy apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Permissions Bikarhêner DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,"tomar kontrolkirin, wê bê li ser Sermaseya li banî tê" -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} dikarin ji bo cureyên Single ne bê danîn +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} dikarin ji bo cureyên Single ne bê danîn apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} tune. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} niha viewing ev belge DocType: ToDo,Assigned By Full Name,Rêdan By Name Full apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ve -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Report dikarin ji bo cureyên Single ne bê danîn +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Report dikarin ji bo cureyên Single ne bê danîn apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} days ago DocType: Email Account,Awaiting Password,li benda Password DocType: Address,Address Line 1,Xeta Navnîşanê 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Amerîka ji bo workflow (wek nimûne bi Pêşnûmeya, başora, weş)." DocType: Print Settings,Allow Print for Draft,Destûrê bide Print ji bo Pêşnûmeya apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Diravan -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Submit vê belgeyê de ji bo piştrast +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Submit vê belgeyê de ji bo piştrast DocType: Contact,Unsubscribed,Unsubscribed apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,rolên Set adeta ji bo rûpel û rapora apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Rating: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra û Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,files barkirin ji kerema xwe ve li bendê ji bo çend seconds. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Attach Picture te +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Attach Picture te apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Nirxên row Guherî DocType: Workflow State,Stop,Rawestan DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link ji bo vê rûpela tu dixwazî ku ji bo vekirina. Vala bihêlin heke hûn dixwazin, ev dê û bav koma bide." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Align Labels ji Çep DocType: Help Article,Expert,Pispor DocType: Workflow State,circle-arrow-right,circle-tîra-mafê DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Can Mesela vekirina ne dema wê {0} vekirî ye +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Can Mesela vekirina ne dema wê {0} vekirî ye apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Dorê de ji bo sazkirina DocType: Custom DocPerm,Custom DocPerm,DocPerm Custom DocType: Newsletter,Send Unsubscribe Link,Send Unsubscribe Link @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} rakirin DocType: Custom DocPerm,Apply User Permissions,Apply Permissions Bikarhêner DocType: User,Modules HTML,modules HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Manager Permissions Bikarhêner apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Nirxên Missing pêwîst DocType: DocType,Other Settings,Mîhengên din DocType: Social Login Keys,Frappe,frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth hilgirê Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Tu belge nehatiye hilbijartin apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Bûyer -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Li ser {0}, {1} nivîsî:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Li ser {0}, {1} nivîsî:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Can warê standard jêbirin. Hûn dikarin wê vedişêrin, eger tu dixwazî" DocType: Top Bar Item,For top bar,Ji bo bar top apps/frappe/frappe/utils/bot.py +148,Could not identify {0},"Nas nedikir, ne {0}" @@ -754,7 +753,7 @@ DocType: Role,Desk Access,desk Têketinê DocType: Workflow State,minus,kêmkir apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Çewtî: Ji kerema xwe re server têketin xwe kontrol bike an jî bi piştgiriya tech. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,email Bi xêr hatî şandin -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,"Werin, em bi sîstema ji bo bikaranîna pêşîn amade bike." +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,"Werin, em bi sîstema ji bo bikaranîna pêşîn amade bike." apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Dawiyê apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Ji xwe qeydkiriye DocType: System Settings,Float Precision,Precision float @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,Destûrê bide bo çapkirinê apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,No Apps firin apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Helkefta zeviyê wek Mandatory DocType: Communication,Clicked,bi opsîyona -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},No destûr ji bo '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},No destûr ji bo '{0}' {1} DocType: User,Google User ID,ID'ya bikarhêner Google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Scheduled bişînin DocType: DocType,Track Seen,Track Ruiz @@ -838,7 +837,7 @@ DocType: Address,Kerala,kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,"Sessions, Stewr," DocType: OAuth Client,Client Credentials,"negihuriye, Client" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,a module an tool da +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,a module an tool da DocType: Communication,Delivery Status,Rewş Delivery DocType: Module Def,App Name,Navê App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max mezinbûnê data destûr e {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,Communication Reference DocType: Email Queue,Unsubscribe Method,Method Unsubscribe DocType: GSuite Templates,Related DocType,DOCTYPE Related apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Biguherînî ji bo lê zêde bike Naveroka -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Hilbijêre Languages -apps/frappe/frappe/__init__.py +510,No permission for {0},No destûr ji bo {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Hilbijêre Languages +apps/frappe/frappe/__init__.py +509,No permission for {0},No destûr ji bo {0} DocType: DocType,Advanced,Pêşveçû apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Xuya Key API an API Secret çewt e !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},World: Kurdî: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Enter Type Form apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,No records tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,jê Field DocType: User,Send Password Update Notification,Send Password agahdar bike Update -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Rêvekirin li DocType, DocType. Xwe şîyar be!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Rêvekirin li DocType, DocType. Xwe şîyar be!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formats Customized bo Printing, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Demê To New Version DocType: Custom Field,Depends On,Dimîne li ser @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,yek ji apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Tikaye wêneyî Kopîkirin hilbijêre apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Dinêre yek gavê apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Show Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ger Apply Strict Destûr User kontrolkirin û Destûr User is bo DOCTYPE ji bo User danasîn, wê demê hemû belgeyên ku value of the link vala ye, dê ji bo ku bikarhêner li banî tê ne" DocType: Address,Billing,Billing DocType: Email Queue,Not Sent,Sent ne DocType: Web Form,Actions,Actions @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,zelal apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Her bûyerên rojê di heman rojê de pêk bînim. DocType: Communication,User Tags,Bikarhêner Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Images Fetching .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Daxistina App {0} DocType: Communication,Feedback Request,Daxwaza Deng @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,lê zêde bike | Peywendî DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Bijarî: Her tim bi van nasname bişîne. Her Email Address li ser row nû -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,veşêre Details +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,veşêre Details DocType: Workflow State,Tasks,erkên DocType: Event,Tuesday,Sêşem DocType: Blog Settings,Blog Settings,Settings Blog @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Hewe a file Python di peldankê de bi eynî cîyê ku rizgar û stûn û di encama vegere. DocType: DocType,Sort Field,Sort Field DocType: Razorpay Settings,Razorpay Settings,Settings Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,biguherîne Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Field {0} ji type {1} nikare were wêneke -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","wek nimûne. Ger Apply Permissions User is bo Report DocType kontrolkirin lê tu Permissions User bi ji bo Rapora ji bo User danasîn, wê demê hemû Reports bi ji bo ku bikarhêner li banî tê" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,biguherîne Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Field {0} ji type {1} nikare were wêneke apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,lê zêde bike More apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,veşêre Chart DocType: System Settings,Session Expiry Mobile,Session Expiry Mobile @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,bi derengî apps/frappe/frappe/config/setup.py +128,List of backups available for download,List of unterstützt bo daxistinê amade ye apps/frappe/frappe/www/login.html +89,Sign up,Tomar kirin DocType: Test Runner,Output,Karûabr +DocType: Email Alert,Set Property After Alert,Set babet Piştî Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Lê zêde bike zevî ji bo formên. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Dişibe tiştek xelet bi veavakirina Paypal vê malperê ye. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,pel DocType: Portal Menu Item,Portal Menu Item,Babetê Menu Portal DocType: User Email,Email ID,ID Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ger Apply Permissions User is bo Report DOCTYPE kontrolkirin, di heman demê de no Permissions User bi ji bo Rapora ji bo User danasîn, wê demê hemû Reports bi ji bo ku bikarhêner li banî tê" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"A list of çavkaniyên ku App Client dê bikaribin piştî ku bikarhênerek bikim, ew destûrê heye.
wek nimûne projeya" DocType: Translation,Translated Text,Nivîsar di wergerandî DocType: Contact Us Settings,Query Options,Vebijêrkên Lęgerîn @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Têkilî DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapora ji hemû pişkan belge apps/frappe/frappe/www/update-password.html +18,New Password,Şîfre New -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} wenda +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} wenda apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Bibore! Tu dikarî comments-auto generated jêbirin ne DocType: Website Theme,Style using CSS,Style bikaranîna CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType Reference @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Bloka Modûlan apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Tablo length {0} ji bo '{1}' li '{2}'; Bikin dirêjahiya {3} wê truncation ên data çewtiyan. DocType: Print Format,Custom CSS,CSS Custom apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Add a comment -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignored: {0} ji bo {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignored: {0} ji bo {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Têkeve ji error li ser bûyerên automated (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Ne derbasdar e Comma Nirx Veqetandî (CSV File) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,Default Incoming DocType: Workflow State,repeat,dûbare DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Ger qedexekirin, ev rola wê ji hemû bikarhêneran rakirin." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Tevkarî li ser Search +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Tevkarî li ser Search apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Xweqeydkirin di heman demê de seqet DocType: DocType,Hide Copy,Naverokan veşêre Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Paqijkirina hemû rolên @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Welat apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Navnîşan DocType: Communication,Shared,Shared -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Attach dokumênt bo çapkirinê +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Attach dokumênt bo çapkirinê DocType: Bulk Update,Field,Erd DocType: Communication,Received,"stand," DocType: Social Login Keys,Google Client ID,ID Google Client @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,query Report DocType: User,Set New Password,Set New Password DocType: User,Github User ID,Github ID'ya bikarhêner apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ger Corî dokumênt -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne dikarin jê bibî an jî betal bike, ji ber {0} {1} e, bi girêdayî {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne dikarin jê bibî an jî betal bike, ji ber {0} {1} e, bi girêdayî {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},app Unknown {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S e a format raporê ne derbasdar e. Report format divê yek ji yên li jêr% s \ DocType: Communication,Chat,Galgalî -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} xuya çend caran li rêzên {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} xuya çend caran li rêzên {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} ji {1} ji bo {2} li row # {3} DocType: Communication,Expired,kapê de DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Hejmara ji stûnên ji bo zeviyek di Grid (Total Stûn di grid divê kêmtir ji 11 be) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Hesabê te heye? Lo apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Format Print: {0} DocType: Workflow State,arrow-down,tîra-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Jiberhevketin -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Bikarhêner destûr ne bibî {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Bikarhêner destûr ne bibî {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Last Updated ser DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Code script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Create User Email apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Create User Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,No Permissions diyarkirî +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,No Permissions diyarkirî apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Mîhengên Gerdûnî: Bikarhêner tenê wê karibe ji bo hilbijartina sembolan bi kontrol be apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nehate dîtin DocType: Custom Role,Custom Role,Role Custom apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Guh Permissions User Eger Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Ji kerema xwe ve belgeya ku berî cîhek din xilas bike. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Ji kerema xwe ve belgeya ku berî cîhek din xilas bike. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,nasnavê xwe binivîsî DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Têketinê Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lê zêde bike Comment din apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,biguherîne DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Unsubscribed ji Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Kemera divê berî a Break Beþ were +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Kemera divê berî a Break Beþ were apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Ev rûpel cara dawî By DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,gst Dewletê -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Can not set Cancel bê Submit +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Can not set Cancel bê Submit DocType: Website Theme,Theme,Mijad apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,bûn çewtî hene. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Beralîkirina URI Bound To Code Auth @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Setti DocType: Website Theme,Text Color,text Color DocType: Desktop Icon,Force Show,hêza nîşan apps/frappe/frappe/auth.py +78,Invalid Request,Daxwaza Invalid -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ev form ti input ne xwedî +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ev form ti input ne xwedî apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session Expiry divê di formata be {0} DocType: Website Sidebar Item,Group,Kom DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Hilbijêre target = "_blank" ji bo vekirina di rûpeleke nû. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Guh rêdanê de çewtî. DocType: Workflow State,wrench,badanvekir apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Set ne -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Authentication Log,Date,Rojek DocType: Website Settings,Disable Signup,Disable Signup apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Rûnin, xurt di dema pergala te heye ji setup. Ev dibe ku çend xulekan de bigirin." @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,lê zêde bike Comment DocType: DocField,Mandatory,Bicî apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module ji bo îxracata -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: No set destûrên bingehîn +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: No set destûrên bingehîn apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,abonetiya xwe li ser dê bi dawî {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},"Download link bo hilanînê, te wê li ser navnîşana email van bi rêket: {0}" apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Meaning of Submit, Cancel, Qanûnên" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,query-rapora apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Rêdan ji bo {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Parzûn xilas DocType: DocField,Percent,ji sedî -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Ji kerema xwe ve set filter +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Ji kerema xwe ve set filter apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,girêdayî bi DocType: Workflow State,book,pirtûk DocType: Website Settings,Landing Page,Rûpela armanckirî -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Error li Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Error li Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Daxwaza dorê de. Ev dibe ku çend xulekan de bigire, ji kerema xwe ve nexweş be." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,No Permissions ji bo ev pîvan danîn. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,Destûrê bide Login bi apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Tu têra gihîştina vê çavkaniyê re tune ne. Ji kerema xwe li gel birêvebirê xwe ji bo gihîştina. DocType: Custom Field,Custom,Hûnbunî apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert li ser bingeha krîterên cuda. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Posts doz di bin {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Posts doz di bin {0} DocType: Email Alert,Send alert if date matches this field's value,Send hişyar eger date matches nirxa vê qadê da DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Jê {0} û hemû welat? @@ -1307,9 +1308,8 @@ DocType: User,Login After,Login Piştî DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Çapnivîs DocType: Workflow State,thumbs-up,ser esasa -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account Email setup ne. Ji kerema xwe re Account Email nû ji Setup> Email> Account Email biafirîne DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision divê di navbera 1 û 6 be +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision divê di navbera 1 û 6 be apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,û DocType: Error Snapshot,Frames,frames @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,Link Wêne DocType: Auto Email Report,Report Filters,Report Parzûn apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,niha DocType: Workflow State,step-backward,gav-bi paş ve -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Ji kerema xwe ve set keys access Dropbox li config-numreya te apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Vemirandina ev rekor bi rê şandina ji bo vê navnîşana email apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Tenê zeviyên diyarkirî ji bo qeydên nû pêwîst in. Tu stûnên non-wêneke eger tu dixwazî jê bibî. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,E Attachments Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Expand Hemû apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Derbasdar Login id pêwîst. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-vekirî -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Tu ji bo tezmînatê betal kirine -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Ji kerema xwe re file CSV derbasdar bi daneya hilbijêre +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Ji kerema xwe re file CSV derbasdar bi daneya hilbijêre apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},"{0} un-parvekirin, ev belge bi {1}" apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,derbasbûna Status dokumênt ji {0} ji bo {1} nayê ne bi destûr DocType: DocType,"Make ""name"" searchable in Global Search",Make "name" de lêgerîn di Global Search @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Nir DocType: Help Category,Help Category,alîkarî Kategorî apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Bikarhêner {0} neçalak e apps/frappe/frappe/www/404.html +8,Page missing or moved,Page kêm an jî koçî -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Biguherîne {0} milkên DocType: DocType,Route,Rêk apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay settings derîyek Payment DocType: DocField,Name,Nav @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Search the docs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Search the docs DocType: OAuth Authorization Code,Valid,Maqûl -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Link vekirî -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Ziman te +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Link vekirî +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ziman te apps/frappe/frappe/desk/form/load.py +46,Did not load,Ma bar ne apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,lê zêde bike Row DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Ma request Fe DocType: Address,Lakshadweep Islands,Giravên Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,can hewe apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","ku hin belge, wekî bi fatûreyên, divê guhertin bên cih de dawî. Ku dewletê dawiyê ji bo dokumentên weha tê gotin Submitted. Tu dikarî bi sînor ku rolên Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Tu bi destûr ne ji bo îxracata vê raporê +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Tu bi destûr ne ji bo îxracata vê raporê apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 babete kilîk DocType: Newsletter,Test Email Address,Test Email Address DocType: ToDo,Sender,virrêkerî @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,.zip Import apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID belge DocType: Print Settings,Letter,Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,"nav zeviyê Wêne, divê ji type be Attach Wêne" +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,"nav zeviyê Wêne, divê ji type be Attach Wêne" DocType: DocField,Columns,Stûn DocType: Async Task,Succeeded,serkeftî apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},zeviyên wêneke pêwîst di {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,Nawy text apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Mîhengên ji bo About Us Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Snapshot Error -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Li +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Li DocType: Email Alert,Value Change,Change Nirx DocType: Standard Reply,Standard Reply,Reply Standard apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Width ya box input @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Bi kar tînin ev fieldname ji bo bipêşxistina title apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Email From apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Gazî yên wek Bikarhêner -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Attachments Hilbijêre +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Attachments Hilbijêre apps/frappe/frappe/model/naming.py +94, for {0},ji bo {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,bûn çewtî hene. Ji kerema xwe re vê raporê. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Tu bi destûr ne ji bo print ev belge +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Tu bi destûr ne ji bo print ev belge apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Ji kerema xwe ve nirxa filter li ser sifrê Report Filter danîn. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Loading Report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading Report apps/frappe/frappe/limits.py +72,Your subscription will expire today.,abonetiya xwe îro dê bi dawî. DocType: Page,Standard,Wek herdem apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,attach Wêne @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensions herêmî DocType: LDAP Settings,Base Distinguished Name (DN),Base Name Hêja (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Dev ji vê axaftinê -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Vebijêrkên ji bo qada link set ne {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Vebijêrkên ji bo qada link set ne {0} DocType: Customize Form,"Must be of type ""Attach Image""",Divê ji type be "Attach Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Tu Tiştî Hilnebijêre apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Tu wê werine ne 'Read Tenê ji bo qada {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Not apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,şert û mercên Deng nagirin -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,warê Timeline divê fieldname derbasdar be +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,warê Timeline divê fieldname derbasdar be DocType: Currency,Symbol,Nîşan -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,şîfreya xwe ya nû bi rêket apps/frappe/frappe/auth.py +245,Login not allowed at this time,Têketinê di vê demê de destûr ne DocType: Email Account,Email Sync Option,Email Syncê Vebijarka @@ -1581,7 +1579,7 @@ DocType: DocField,Text,Nivîstok apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard bersiva pirsên hevbeş. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Default Şandina DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Hez ji aliyê {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Hez ji aliyê {0} DocType: Footer Item,Footer Item,Babetê footer ,Download Backups,download Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,Nivîsar di Paris apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Navê dikarin de dihewîne characters taybet wek ne {0} DocType: Contact Us Settings,Forward To Email Address,Pêş To Email Address apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Nîşan bide hemû daneyên -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,warê Title divê fieldname derbasdar be +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,warê Title divê fieldname derbasdar be apps/frappe/frappe/config/core.py +7,Documents,belgeyên DocType: Email Flag Queue,Is Completed,Ma Qediya apps/frappe/frappe/www/me.html +22,Edit Profile,biguherîne Profile @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Ev qada wê derkevin, wê bi tenê dikarî eger fieldname danasîn li vir heye nirxa an jî qaîdeyên rasteqîn (wergerandî) in: myfield eval: doc.myfield == 'Nirx My' eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Îro -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Îro +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Îro +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Îro apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Piştî ku we ev ava kir, bikarhênerên bi tenê dikarî wê belgeyên ketina nikarin bibin (wek nimûne. Blog Post) li cihê ku link heye (wek nimûne. Blogger)." DocType: Error Log,Log of Scheduler Errors,Têkeve ji Errors Tevlîhevker DocType: User,Bio,Bio @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 star ku lowest & 5 stars ku bilindtirîn rating DocType: Event,Ref Name,Navê Ref DocType: Web Page,Center,Navîne +DocType: Email Alert,Value To Be Set,Nirx ji bo danîna apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Asta yekem DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Nûnertiya dewletên destûr li yek belge û rola rêdan ji bo guhertina dewletê. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Form Refresh @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Has Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Navê DocType, divê bi nameyek dest û ew bi tenê dikare ji tîp, hejmar, qadên û xêzikên pêk" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,Daxwaza Integration -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Birêz +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Birêz DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,hesabên bikarhêneran DocType: Web Page,HTML for header section. Optional,HTML ji bo beşa header. Bixwe apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ev taybetî ji brand nû û hê jî cerebe ye -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximum {0} rêzikan destûr +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximum {0} rêzikan destûr DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ev a şîfreya pir hevbeş e. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Dîtinî DocType: Communication,Assigned,rêdan DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Hilbijêre Format bo çapkirinê +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Hilbijêre Format bo çapkirinê apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,qalibên Klavyeya kurt in hêsan texmîn DocType: Portal Settings,Portal Menu,Menu Portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Length ji {0} de divê di navbera 1 û 1000 be @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,User ne Can Search apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format çewt a derxistinê DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Apply vê qeydeyî, eger User xwediyę e" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Dê bibe ID te (login) +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Dê bibe ID te (login) apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,ava Report DocType: Note,Notify users with a popup when they log in,bikarhênerên Notify bi popup gava ku ew jî têkeve apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} does not exist, hedef ya nû hilbijêre ji bo merge" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,rolên Destûr apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,update DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Ji kerema xwe li Newsletter berî şandina xilas bike -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Vebijêrkên divê DocType derbasdar bo warê {0} li row be {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} sala (s) ago +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Vebijêrkên divê DocType derbasdar bo warê {0} li row be {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,biguherîne Properties DocType: Patch Log,List of patches executed,List of pîneyên darvekirin apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} niha unsubscribed -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Communication Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Communication Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Tikaye din rêbaza dayina hilbijêre. Razorpay nade muamele li currency piştgiriya ne '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Li hêvîya bo hilanînê. Ev dibe ku çend deqîqan li ser wê saetê de bigirin. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Register OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nikare were "{2}". Ev divê yek ji be "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nikare were "{2}". Ev divê yek ji be "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} an {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Nîşan bide an veşêre | Desktop Îkon apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Update Password @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks piştî Sections DocType: Blogger,Short Name,Navê Short apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Tu bi Syncê Option wek ALL, Ev hemû dê \ xwendin û herweha Mesajek nexwendî ji server resync. Ev jî dibe ku bibe sedema dubarebûna ya \ of Communication (emails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,files Size @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,Manager kirîn DocType: Custom Script,Sample,Mînak apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Tags DocType: Event,Every Week,her Week +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Account Email setup ne. Ji kerema xwe re Account Email nû ji Setup> Email> Account Email biafirîne apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ku venêrî Bikaranîna te an upgrade ji bo planeke mezintir li vir bitikîne DocType: Custom Field,Is Mandatory Field,E Mandatory Field DocType: User,Website User,Website Bikarhêner @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Menu Custom Kêlekê DocType: Workflow State,pencil,nivîstoka qûrşûnî apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat mesajên û mêsajên din. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Insert Piştî dikare wekî ne bê danîn {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Insert Piştî dikare wekî ne bê danîn {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} bi apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email setup Account ji kerema xwe şîfreya xwe ji bo têkevin: DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,nivîskarên Introduction DocType: Address,Phone,Phone -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Çewtî û yekxistina Email Alert {0}. Ji kerema xwe ve şablonê xwe sererast bikin. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Çewtî û yekxistina Email Alert {0}. Ji kerema xwe ve şablonê xwe sererast bikin. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Hilbijêre Corî dokumênt an Role to dest. DocType: Contact,Passive,Nejîr DocType: Contact,Accounts Manager,Manager bikarhênerên +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,perê te betal e. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Hilbijêre File Type DocType: Help Article,Knowledge Base Editor,Knowledge Nawy Base apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Page dîtin ne @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,Corê Xanûberey DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Tenê Administrator dikarin rapora standard tomar bike. Ji kerema xwe re biguherîne û xilas bike. DocType: System Settings,Background Workers,Karkerên background +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} dijber bi object meta DocType: Deleted Document,Data,Jimare apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Rewş belge apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Te {0} ji {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Permissions Show Bikarhêner apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Divê tu ji bo xwe qeydbikê û System Manager rola ku bikaribe ji têkevim unterstützt. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Jiberma -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Ji kerema xwe ve Berî xilas bike. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Ji kerema xwe ve Berî xilas bike. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ev babete ji layê {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},dirbê pêşdanasînî di set {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype dikarin ji ne bê guhertin {0} ji bo {1} li row {2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Dest Bi Dan apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Dest Bi Danişîna bi ser neket apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ev email {0} re hat şandin û kopîkirin ji bo {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Tikaye Account default setup Email ji Setup> Email> Account Email -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Create a new {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Create a new {0} DocType: Email Rule,Is Spam,e Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Default beralî bike URI DocType: Email Alert,Recipients,Kesên DocType: Workflow State,ok-sign,ok-sign @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,alîkarî babetî ,Modules Setup,modules Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Awa: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,dayina we bi ser neket. DocType: Communication,Unshared,durist DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module Not Found @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,Brand Wêne DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup ji navîgasyon top bar, footer û logo." DocType: Web Form Field,Max Value,Max Nirx -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Ji bo {0} di asta {1} li {2} li row {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Ji bo {0} di asta {1} li {2} li row {3} DocType: Contact,All,Gişt DocType: Email Queue,Recipient,Girtevan DocType: Communication,Has Attachment,has Attachment @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,align-mafê DocType: Auto Email Report,Email To,Email To apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Peldanka {0} e vala ne DocType: Page,Roles,roleke -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Field {0} e selectable ne. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Çewtî: Nirx kêm ji bo {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Field {0} e selectable ne. DocType: System Settings,Session Expiry,Session Expiry DocType: Workflow State,ban-circle,ban-circle DocType: Email Flag Queue,Unread,Unread @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Têrbûn Bikarhêner apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,nû biafirîne DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email to ne şand {0} (unsubscribed / seqet) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email to ne şand {0} (unsubscribed / seqet) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Biçûk nirxa dirava Fraction apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Assign To @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Ji DocType: Website Theme,Google Font (Heading),Google Font (Hawara) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,a node koma pêşîn hilbijêrî. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Find {0} li {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Find {0} li {1} DocType: OAuth Client,Implicit,zimnî DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Append wek ragihandinê li dijî vê DocType (divê warên, "Rewş" heye, "Mijar")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","Namespace ji bo wergirtina code destûr carekê li user gihîştina, û herweha bersivên failure. Tîpîk a seriyê REST rastî ji aliyê Client App.
wek nimûne http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,destûr ne ji bo guhertina {0} piştî sertewandina +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,destûr ne ji bo guhertina {0} piştî sertewandina DocType: Communication,Comment Type,Raya Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Bikarhêner li @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filter Data DocType: Auto Email Report,Filter Data,Filter Data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Add a tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Ji kerema xwe ve yekem a file ve girêbidin. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Ji kerema xwe ve yekem a file ve girêbidin. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","bûn hinek çewtî Danîna name heye, ji kerema xwe têkilî birêveberê" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,hesabekî email Incoming agadar bikerewe apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,Email Sent DocType: DocField,Ignore XSS Filter,Guh XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,rakirin apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,"settings Dropbox hilanînê," -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Send Wek Email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Send Wek Email DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Bikarhêner {0} ne dikarin neçalak bibin apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Manager System hêja," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Welatê xwe +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Welatê xwe DocType: Event,Sunday,Yekşem apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Li Grid View DocType: Address Template,Template,Şablon @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Settings LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Derbarê Guherîn apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal settings peredana derîyek -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) kêm bibin, wek tîp destûr e {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) kêm bibin, wek tîp destûr e {2}" DocType: OAuth Client,Resource Owner Password Credentials,"Çavkaniyê Xwedîyê negihuriye, Password" DocType: OAuth Client,Response Type,Type Response apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Users @@ -2070,7 +2074,7 @@ DocType: DocField,Table,Mêz DocType: File,File Size,file Size apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Divê tu têketinê ji bo pêşkêşkirina vê formê DocType: User,Background Image,background Image -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Select Welatê xwe, Zone û Exchange Time" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Select Welatê xwe, Zone û Exchange Time" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Navber DocType: Async Task,Queued,li hêvîya @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Xûliqandin apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filter Invalid: {0} DocType: Email Account,no failed attempts,hewldanên tu bi ser neket +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No default Address Şablon dîtin. Kerema xwe yek nû ji Setup> Printing û Branding> Address Şablon biafirîne. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Têketinê Key DocType: OAuth Bearer Token,Access Token,Têketinê Token @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Username DocType: DocType,Image View,Wêne View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Dişibe tiştek di dema mêjera xelet çû. Ji ber ku em ji bo tezmînatê piştrast nekirîye, Paypal jî wê bixweber hûn vê hejmarê re bişînin. Ger ev ne, ji kerema xwe ji me re email bişînin û behsa ID Correlation li: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Usa jî sembol, hejmar û tîpên ku di şîfreya" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Insert Piştî zeviyê '{0}' de behsa li Custom Field '{1}', bi label '{2}', does not exist" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Usa jî sembol, hejmar û tîpên ku di şîfreya" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Insert Piştî zeviyê '{0}' de behsa li Custom Field '{1}', bi label '{2}', does not exist" DocType: Workflow State,signal,nîşan DocType: DocType,Show Print First,Show Print First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl to post + binivîse @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Wêne '{0}' nehate dîtin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,jê Beþ DocType: User,Change Password,Şîfre Biguherîne -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Invalid Email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Slav! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Invalid Email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Slav! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,dawiya Event divê piştî destpêka be apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Mafên te bo bedesthênanî rapora li ser tune ne: {0} +DocType: System Settings,Apply Strict User Permissions,Apply Permissions User Strict DocType: DocField,Allow Bulk Edit,Destûrê bide Edit Bulk DocType: DocField,Allow Bulk Edit,Destûrê bide Edit Bulk DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Search pêşketî +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Search pêşketî apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,talîmatên şîfreyeke nû ji bo email xwe şandin apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 e ji bo destûrên di asta document, \ asta bilind de ji bo destûrên di asta qadê." @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,Darikê Kêlekê û Comments apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Gava ku tu Qanûnên belgeyeke piştî Cancel û wê xilas bike, ew dê hejmara nû ye, ku version of hejmara kevin bistînin." DocType: Stripe Settings,Publishable Key,Key Publishable DocType: Stripe Settings,Publishable Key,Key Publishable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} sala (s) ago DocType: Workflow State,circle-arrow-left,circle-tîra-hiştin apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis server cache dibezîn ne. Ji kerema xwe ve Administrator / piştgiriya Tech têkilî bi apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Name Partiya -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Make rekorek nû +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Make rekorek nû apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Searching apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Searching DocType: Currency,Fraction,fraction DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Select ji attachments heyî +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Select ji attachments heyî DocType: Custom Field,Field Description,Field Description apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Navê via Prompt set ne apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Inbox Email @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Level destûr DocType: User,Send Notifications for Transactions I Follow,Send Notifications bo Transactions ez Follow -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Can set ne Submit, Cancel, Qanûnên bê Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Can set ne Submit, Cancel, Qanûnên bê Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Ma tu dizanî, tu dixwazî jê bibî girêdayî?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne dikarin jê bibî an jî betal bike, ji ber {0} {1} e, bi girêdayî {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

No results found for '

" -apps/frappe/frappe/__init__.py +1063,Thank you,Spas dikim +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne dikarin jê bibî an jî betal bike, ji ber {0} {1} e, bi girêdayî {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Spas dikim apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Saving DocType: Print Settings,Print Style Preview,Print Preview Style apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,Li List View DocType: Email Account,Use TLS,bikaranîna TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,login an jî şîfre çewt apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Lê zêde bike adeta ji bo formên javascript. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,sr No ,Role Permissions Manager,Permissions rola Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Name ji Format Print nû -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Attachment zelal +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Attachment zelal apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Bicî: ,User Permissions Manager,Permissions User Manager DocType: Property Setter,New value to be set,nirxa nû ya ji bo danîna @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 days apps/frappe/frappe/config/website.py +47,Categorize blog posts.,De kategorîze posts blog. DocType: Workflow State,Time,Dem DocType: DocField,Attach,Pêvcebirandin -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} a pattern fieldname derbasdar e ne. Ev divê bê {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} a pattern fieldname derbasdar e ne. Ev divê bê {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Daxwaza Feedback tenê eger bi kêmanî yek ragihandinê ji bo belgeya derbasdar e heye. DocType: Custom Role,Permission Rules,Rules destûr DocType: GSuite Settings,GSuite Settings,Settings GSuite DocType: Address,Links,Links -apps/frappe/frappe/model/base_document.py +428,Value missing for,Nirx wenda bo +apps/frappe/frappe/model/base_document.py +427,Value missing for,Nirx wenda bo apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,lê zêde bike Zarokan -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record Submitted ne jêbirin. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Record Submitted ne jêbirin. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Size Backup DocType: GSuite Templates,Template Name,Navê Şablon -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,type nû ya document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,type nû ya document DocType: Custom DocPerm,Read,Xwendin DocType: Role Permission for Page and Report,Role Permission for Page and Report,Destûr Role ji bo Page û Raport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,align Nirx apps/frappe/frappe/www/update-password.html +14,Old Password,Şîfre Old -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posts by {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posts by {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","To stûnên format, bide labels column di query." DocType: Has Domain,Has Domain,has Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Hesabê te nîne? Tomar kirin -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Can not set value Qanûnên eger Submittable ne +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Can not set value Qanûnên eger Submittable ne DocType: Address,Bihar,bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Permissions biguherîne Role DocType: Communication,Link DocType,DocType Link @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Ji kerema xwe, da ku profîla te heye an email address" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Tu xwedî de guhertinên netomarkirî vê formê. Ji kerema xwe xilas bike Berî ku tu bidomîne. DocType: Address,Telangana,Salname -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Default ji bo {0} gerek opsîyonek be +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Default ji bo {0} gerek opsîyonek be DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorî DocType: User,User Image,Wêne Bikarhêner apps/frappe/frappe/email/queue.py +289,Emails are muted,Emails devgirtî ye @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,çalakiyê DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ev nirxên wê were li muamele ve û herweha ji bo bisînorkirina destûrên ji bo this user li ser danûstandinên dihewînin, mînakên van nirxên wê baş bibe." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Çapemend -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Ser neket: {0} ji bo {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Ser neket: {0} ji bo {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Select Mandatory apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Browse apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,emails Sent @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,bi bez apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Password reset bike apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Ji kerema xwe re domandinê lê zêde bike bêtir ji {0} aboneyên DocType: Workflow State,hand-left,hand-hiştin -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ji bo {1} nikare were yekane +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ji bo {1} nikare were yekane DocType: Email Account,Use SSL,Use SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Select Print Format bo sererastkirina @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,No Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Login bi LDAP DocType: Web Form,Breadcrumbs,Menûyên -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ger Xwedîyê +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ger Xwedîyê DocType: OAuth Authorization Code,Expiration time,dem boriye DocType: Web Page,Website Sidebar,Darikê Kêlekê yê Website DocType: Web Form,Show Sidebar,Show Kêlekê @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nikaribû tiştek apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Names û paşnavên bi destê xwe bi hêsanî bi texmîn. apps/frappe/frappe/config/website.py +93,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,çentê bêlgan -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Nirx dikarin ji bo ne bê guhertin {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Nirx dikarin ji bo ne bê guhertin {0} DocType: Feedback Request,Is Manual,e Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style nûnertiya rengê bişkoka li: Serkeftina - Green, Danger - Red, bervajiya - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,No Report Loaded. Ji kerema xwe ve query-rapora kar / [Report Name] ji bo birêvebirina rapora. @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Pêşverût apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,destê Role apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Fields wenda apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname Invalid '{0}' li BixweberNAME -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Search di cureyê pelgeyê +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Search di cureyê pelgeyê apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Destûrê bide zeviyê heta piştî sertewandina editable bimîne DocType: Custom DocPerm,Role and Level,Role û Level DocType: File,Thumbnail URL,URL Thumbnail @@ -2592,18 +2596,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Information More DocType: Desktop Icon,Desktop Icon,Icon Desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,dayina we bi serketî hat qebûlkirin +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,dayina we bi serketî hat qebûlkirin apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Bibore! Tu nikarî ji bo dîtina vê rûpelê. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: hucreyê de Double klîk ji bo weşînertiya DocType: Workflow State,bell,zengil apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error li Alert Email apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Share ev belge bi +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Manager Permissions Bikarhêner apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} nikare bibe node pel, wek ku hatiye zarokan" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,lê zêde bike pêvek hene. +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,lê zêde bike pêvek hene. DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Spas dikim ji bo peyama te -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Send Read Meqbûz +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Send Read Meqbûz DocType: Stripe Settings,Stripe Settings,Settings Stripe DocType: Stripe Settings,Stripe Settings,Settings Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup via Site Mîhengên @@ -2670,6 +2675,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Hişyarî: Ev Format Print di şêweya kevin e û dikare bi rêya API ne bê bipêşxistin. DocType: DocField,Print Width,Firehiya bo çapkirinê ,Setup Wizard,sęrbaziya sazkirinę +DocType: Address,GST State Number,Gst Hejmara Dewletê DocType: User,Allow user to login only before this hour (0-24),Destûrê bide bikarhêneran ku login tenê berî vê saetê (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder wêneke e apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2698,7 +2704,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Nivîsar di small apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator xwestin {0} li {1} via IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,li beramberî -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"type 'Dînamîk Link' Vebijêrkên yên zeviyê, divê ji bo Link din Field bi options wek 'DocType' dîrektîfa" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"type 'Dînamîk Link' Vebijêrkên yên zeviyê, divê ji bo Link din Field bi options wek 'DocType' dîrektîfa" DocType: About Us Settings,Team Members Heading,Endam Team Berev apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Format CSV Invalid apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Hejmara Backups @@ -2709,7 +2715,7 @@ DocType: Contact,Contact,Têkelî DocType: User,Third Party Authentication,Partiya sêyemîn Têketin DocType: Website Settings,Banner is above the Top Menu Bar.,Banner e li jor Bar Menu Top. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Report Export: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Report Export: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} tune DocType: Email Account,Port,Bender DocType: Print Format,Arial,Tahoma @@ -2732,7 +2738,7 @@ DocType: Kanban Board Column,Column Name,Navê stûna DocType: Language,Based On,Çi qewimî apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Make Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Check URL frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ji bo {1} nikare were hesabkirin +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ji bo {1} nikare were hesabkirin DocType: Communication,Email Account,Account Email DocType: Workflow State,Download,download DocType: Blog Post,Blog Intro,Blog Intro @@ -2743,7 +2749,7 @@ DocType: Web Page,Insert Code,Code Insert DocType: ToDo,Low,Nizm apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Tu dikarî milkên dînamîk û ji pelgeya bi bikaranîna Jinja templating lê zêde bike. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},sînorê Invalid {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lîsteya a cureyê pelgeyê +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lîsteya a cureyê pelgeyê DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Eger tu bi cîhek qeydên nû, ku dev ji vala "name" (ID) column." DocType: Address,Chattisgarh,Chattisgarh @@ -2765,26 +2771,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Send Ji bo çapkirinê PDF DocType: Web Form,Amount,Biha DocType: Workflow Transition,Allowed,destûr -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,dikarin bibin yek bi tenê di forma BH hene +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,dikarin bibin yek bi tenê di forma BH hene apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nikare binivîse file format ji bo {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restore to mîhengên standard? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Invalid Home Page apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Login Invalid. Dubare bixebitin. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Vebijêrkên pêwîst ji bo Link an jî qada type Table {0} li row {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Vebijêrkên pêwîst ji bo Link an jî qada type Table {0} li row {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Vebijêrkên pêwîst ji bo Link an jî qada type Table {0} li row {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Vebijêrkên pêwîst ji bo Link an jî qada type Table {0} li row {1} DocType: Auto Email Report,Send only if there is any data,Send tenê eger e hemû daneyên li wir apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Parzûn Reset -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Destûr di asta 0 bê mîhenkirin berî asta bilind de set bi +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Destûr di asta 0 bê mîhenkirin berî asta bilind de set bi apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Assignment girtî ji aliyê {0} DocType: Integration Request,Remote,Dûr -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Hesabkirin +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Hesabkirin apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Ji kerema xwe ve yekem DocType hilbijêre apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Email xwe piştras te apps/frappe/frappe/www/login.html +42,Or login with,An jî têketinê bi DocType: Error Snapshot,Locals,Locals apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Danûstandinê de bi rêya {0} li {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} tu li Rayi di behsa {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 an = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 an = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} pêwîst e DocType: Integration Request,Integration Type,Type Integration DocType: Newsletter,Send Attachements,Send Attachements @@ -2794,15 +2800,15 @@ DocType: DocField,Perm Level,Level Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Events Li Calendar îro DocType: Web Page,Web Page,Page Web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Li Global Search' ji bo cureyê destûr ne {0} li row {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Li Global Search' ji bo cureyê destûr ne {0} li row {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Li Global Search' ji bo cureyê destûr ne {0} li row {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Li Global Search' ji bo cureyê destûr ne {0} li row {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,View List -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Date divê di formata be: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Date divê di formata be: {0} DocType: Workflow,Don't Override Status,Ma Status Override ne apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Ji kerema xwe re rating bide. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Daxwaza Feedback apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Bêjeya -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,The User First: Tu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,The User First: Tu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Stûn Hilbijêre DocType: Translation,Source Text,Source Nivîsar di apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parametreyên Missing ji bo têketinê @@ -2824,7 +2830,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importing DocType: ToDo,Assigned By,rêdan By apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Tu dikarî Form Customize ji bo danîna asta li ser zeviyên bi kar tînin. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Select Herêma te +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Select Herêma te DocType: Custom DocPerm,Level,Serrast DocType: Custom DocPerm,Report,Nûçe apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,"Şêwaz, divê mezintir 0 be." @@ -2844,7 +2850,7 @@ DocType: Website Theme,Background,Paşî DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","lîsteya JSON ji DocTypes bikaranîn serî Permissions User. Heke vala, hemû DocTypes girêdayî wê were bikaranîn serî Permissions User." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Ji kerema xwe ve lê zêde bike a rating -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Can not set Qanûnên bê Cancel +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Can not set Qanûnên bê Cancel apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Page Full DocType: DocType,Is Child Table,E Table Zarokan apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} de divê yek ji yên bê {1} @@ -2859,7 +2865,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ev diçe li ser slides apps/frappe/frappe/config/setup.py +260,Install Applications.,Applications saz bike. DocType: Contact,Last Name,Paşnav DocType: Event,Private,Taybet -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,No alerts ji bo îro +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,No alerts ji bo îro DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Send Attachments Email Print wek PDF (Serwer) DocType: Web Page,Left,Çep DocType: Event,All Day,All Day @@ -2873,7 +2879,7 @@ DocType: Event,Send an email reminder in the morning,Send an bîrxistineke email DocType: Blog Post,Published On,Published ser DocType: Contact,Gender,Regez apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Information wêneke missing: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' dikare wekî yekane ne bê danîn, wek ku hatiye nirxên ne-yekane" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Field '{0}' dikare wekî yekane ne bê danîn, wek ku hatiye nirxên ne-yekane" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Tenê 200 inserts destûr li yek daxwazeke DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Type Reference @@ -2886,7 +2892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Bikaranîvan DocType: Website Settings,"Show title in browser window as ""Prefix - title""",title Show in browser window wek "pêşbendik - title" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text li cureyê pelgeyê +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text li cureyê pelgeyê apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Îmtîhan de bixebitîne apps/frappe/frappe/handler.py +91,Logged Out,(logged out) apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Zêde... @@ -2912,13 +2918,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Niha Profîl DocType: DocField,Default,Destçûnî apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} added -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Search for '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Search for '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Ji kerema xwe re vê raporê xilas yekem apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} aboneyên added apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ne In DocType: Workflow State,star,stêrk -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,nirxên cuda ji aliyê commas -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},width Max ji bo cureyê Exchange 100px li row e {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,nirxên cuda ji aliyê commas +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},width Max ji bo cureyê Exchange 100px li row e {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Ji kerema xwe re parve Deng xwe ji bo {0} apps/frappe/frappe/config/website.py +13,Content web page.,web page Content. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Lê zêde bike roleke nû @@ -2937,7 +2943,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ne bikarhênerek LDAP derbasdar apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ne Dewletê derbasdar apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Tikaye din rêbaza dayina hilbijêre. PayPal nade muamele li currency piştgiriya ne '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,warê Search {0} ne derbasdar e +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,warê Search {0} ne derbasdar e DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Tu tişt bi pirs 'bibînin porteqalan di mişterî' bibînin apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,"Bibore! User, divê bi temamî ji bo qeyda xwe bi xwe heye." @@ -2998,7 +3004,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Text ji bo Link to Web Page kiriyî werin nîşandan, ger ev form a rûpel web. route Link wê were, bi giştî li ser bingeha `page_name` û` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Trigger Deng -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Ji kerema xwe ve set {0} pêşîn +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Ji kerema xwe ve set {0} pêşîn DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Pîne DocType: Async Task,Failed,bi ser neket diff --git a/frappe/translations/lo.csv b/frappe/translations/lo.csv index bad6a527ba..dcf5bec79d 100644 --- a/frappe/translations/lo.csv +++ b/frappe/translations/lo.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ຊື່ຜູ້ໃຊ້ເຟສບຸກ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,ຫມາຍເຫດ: ບົດຫຼາຍຈະໄດ້ຮັບການອະນຸຍາດໃຫ້ໃນກໍລະນີຂອງອຸປະກອນໂທລະສັບມືຖື apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ເປີດການ inbox ອີເມລ໌ສໍາລັບຜູ້ໃຊ້ {ຜູ້ໃຊ້} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ບໍ່ສາມາດສົ່ງອີເມວນີ້. ທ່ານໄດ້ຜ່ານໄປໃນຂອບເຂດຈໍາກັດການສົ່ງຂອງ {0} ອີເມວສໍາລັບເດືອນນີ້. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,ຢ່າງຖາວອນຍື່ນສະເຫນີການ {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,ຢ່າງຖາວອນຍື່ນສະເຫນີການ {0}? DocType: Address,County,county DocType: Workflow,If Checked workflow status will not override status in list view,ຖ້າຫາກວ່າສະຖານະ workflow ຕວດສອບຈະບໍ່ override ສະຖານະພາບຢູ່ໃນບັນຊີລາຍການ apps/frappe/frappe/client.py +280,Invalid file path: {0},ເສັ້ນທາງຂອງໄຟທີ່ບໍ່ຖືກຕ້ອງ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ກະ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ເປັນໄມ້ຢືນຕົ້ນ DocType: User,User Emails,ອີເມວຜູ້ໃຊ້ DocType: User,Username,ຊື່ຜູ້ໃຊ້ -apps/frappe/frappe/model/base_document.py +581,Value too big,ມູນຄ່າຂະຫນາດໃຫຍ່ເກີນໄປ +apps/frappe/frappe/model/base_document.py +580,Value too big,ມູນຄ່າຂະຫນາດໃຫຍ່ເກີນໄປ DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ການທົດສອບ Script Run DocType: Contact,Department,ພະແນກ @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,ຂໍ້ມູນບັນທຶກ DocType: Custom DocPerm,This role update User Permissions for a user,ນີ້ປັບປຸງພາລະບົດບາດການອະນຸຍາດຜູ້ໃຊ້ວຽກຂອງຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},ປ່ຽນຊື່ {0} DocType: Workflow State,zoom-out,ຂະຫຍາຍອອກ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,ບໍ່ສາມາດເປີດ {0} ໃນເວລາຍົກຕົວຢ່າງຂອງຕົນເປີດ +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,ບໍ່ສາມາດເປີດ {0} ໃນເວລາຍົກຕົວຢ່າງຂອງຕົນເປີດ apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ຕາຕະລາງ {0} ບໍ່ສາມາດປ່ອຍຫວ່າງ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,ກັບ Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,ຮູບພາບ DocType: Communication,Reference Owner,ເຈົ້າຂອງກະສານອ້າງອີງ DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ຂະຫນາດນ້ອຍສຸດຫນ່ວຍບໍລິການແຜ່ແຕ່ສ່ວນຫນຶ່ງ (ບ້ານ). ສໍາລັບຕົວຢ່າງ: 1 ເປີເຊັນສໍາລັບ USD ແລະມັນຄວນຈະໄດ້ຮັບການເຂົ້າໄປເປັນ 001 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,ກະລຸນາໃຫ້ຊື່ເຕັມຂອງລາຍໄດ້. apps/frappe/frappe/model/document.py +904,Beginning with,ເລີ່ມຕົ້ນດ້ວຍ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Template ນໍາເຂົ້າຂໍ້ມູນ @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,ພໍ່ແມ່ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ຖ້າເປີດການ, ມີຄວາມເຂັ້ມແຂງລະຫັດຜ່ານຈະຖືກບັງຄັບໃຊ້ໂດຍອີງໃສ່ມູນຄ່າຕໍາ່ສຸດທີ່ຄະແນນລະຫັດຜ່ານ. A ຄ່າຂອງ 2 ເປັນທີ່ເຂັ້ມແຂງຂະຫນາດກາງແລະ 4 ເປັນທີ່ເຂັ້ມແຂງທີ່ສຸດ." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ຖ້າເປີດການ, ມີຄວາມເຂັ້ມແຂງລະຫັດຜ່ານຈະຖືກບັງຄັບໃຊ້ໂດຍອີງໃສ່ມູນຄ່າຕໍາ່ສຸດທີ່ຄະແນນລະຫັດຜ່ານ. A ຄ່າຂອງ 2 ເປັນທີ່ເຂັ້ມແຂງຂະຫນາດກາງແລະ 4 ເປັນທີ່ເຂັ້ມແຂງທີ່ສຸດ." DocType: About Us Settings,"""Team Members"" or ""Management""","ສະພາ" ຫຼື "ການຈັດການ" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',ມາດຕະຖານສໍາລັບປະເພດ 'ກວດສອບຂອງພາກສະຫນາມຈະຕ້ອງບໍ່ວ່າຈະ' 0 'ຫລື' 1 ' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',ມາດຕະຖານສໍາລັບປະເພດ 'ກວດສອບຂອງພາກສະຫນາມຈະຕ້ອງບໍ່ວ່າຈະ' 0 'ຫລື' 1 ' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ໃນມື້ວານນີ້ DocType: Contact,Designation,ການອອກແບບ DocType: Test Runner,Test Runner,ການທົດສອບ Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ແມ່ນຈັດພີມມາຢູ DocType: Email Group,Email Group,Group Email DocType: Note,Seen By,ເຫັນໂດຍ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,ຕື່ມຫຼາຍ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ບໍ່ຄື +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ບໍ່ຄື apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ຕັ້ງປ້າຍສະແດງສໍາລັບການພາກສະຫນາມ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ຄ່າບໍ່ຖືກຕ້ອງ: {0} ຕ້ອງ {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","ຄຸນສົມບັດການປ່ຽນແປງພາກສະຫນາມ (hide, ອ່ານຢ່າງດຽວ, ອະນຸຍາດແລະອື່ນໆ)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ການ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator Logged In DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","ທາງເລືອກໃນການຕິດຕໍ່, ເຊັ່ນ: "ຂາຍແບບສອບຖາມ, ສະຫນັບສະຫນູນການສອບຖາມ" ແລະອື່ນໆແຕ່ລະຄົນກ່ຽວກັບການອອນໄລນ໌ໃຫມ່ຫຼືຂັ້ນດ້ວຍຈໍ້າຈຸດ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ດາວໂຫຼດ -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ເລືອກ {0} DocType: Print Settings,Classic,ຄລາສສິກ DocType: Desktop Icon,Color,ສີ @@ -122,7 +122,7 @@ DocType: Translation,Translation,ການແປພາສາ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ການຕິດຕັ້ງ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,ທ້າວ DocType: Custom Script,Client,ລູກຄ້າ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,ຮູບແບບນີ້ໄດ້ຮັບການແກ້ໄຂພາຍຫຼັງທີ່ທ່ານໄດ້ໂຫລດມັນ +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,ຮູບແບບນີ້ໄດ້ຮັບການແກ້ໄຂພາຍຫຼັງທີ່ທ່ານໄດ້ໂຫລດມັນ DocType: User Permission for Page and Report,User Permission for Page and Report,ການອະນຸຍາດຜູ້ໃຊ້ວຽກຂອງຫນ້າແລະບົດລາຍງານ DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format",ຖ້າຫາກວ່າບໍ່ໄດ້ຕັ້ງຄວາມແມ່ນຍໍາສະກຸນເງິນຈະຂຶ້ນກັບຮູບແບບຈໍານວນ @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,ເຫດຜົນ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ກະລຸນາລະບຸຜູ້ໃຊ້ DocType: Email Unsubscribe,Email Unsubscribe,ອີເມວຍົກເລີກ DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ເລືອກເອົາຮູບພາບຂອງປະມານ width 150px ທີ່ມີຄວາມເປັນມາເປັນໂປ່ງໃສສໍາລັບຜົນໄດ້ຮັບທີ່ດີທີ່ສຸດ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,ຜູ້ໃຊ້ທໍາອິດທີ່ຈະກາຍເປັນລະບົບຈັດການ (ທ່ານສາມາດມີການປ່ຽນແປງນີ້ຕໍ່ມາ). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,ຜູ້ໃຊ້ທໍາອິດທີ່ຈະກາຍເປັນລະບົບຈັດການ (ທ່ານສາມາດມີການປ່ຽນແປງນີ້ຕໍ່ມາ). ,App Installer,ຕິດຕັ້ງ App DocType: Workflow State,circle-arrow-up,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນຂຶ້ນ" apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,ອັບໂຫລດ ... DocType: Email Domain,Email Domain,Domain Email DocType: Workflow State,italic,ໂຕຫນັງສືເນີ້ງ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,ສໍາລັບທຸກຄົນ -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: ບໍ່ສາມາດກໍານົດການນໍາເຂົ້າໂດຍບໍ່ມີການສ້າງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: ບໍ່ສາມາດກໍານົດການນໍາເຂົ້າໂດຍບໍ່ມີການສ້າງ apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ກໍລະນີແລະປະຕິທິນອື່ນ. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ຂົງເຂດທັງຫມົດແມ່ນມີຄວາມຈໍາເປັນທີ່ຈະສົ່ງຄໍາຄິດເຫັນໄດ້. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,ລາກເພື່ອຈັດຮຽງຄໍລໍາ @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,ເມນູ Sidebar ມາດຕ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ບໍ່ສາມາດລຶບແລະ Attachments ໂຟເດີ apps/frappe/frappe/config/desk.py +19,Files,ໄຟ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,ການອະນຸຍາດໄດ້ຮັບການນໍາໃຊ້ກັບຜູ້ໃຊ້ໂດຍອີງໃສ່ສິ່ງທີ່ພາລະບົດບາດເຂົາເຈົ້າໄດ້ຖືກມອບຫມາຍ. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ສົ່ງອີເມວທີ່ກ່ຽວຂ້ອງກັບເອກະສານນີ້ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,ກະລຸນາເລືອກ atleast 1 ຖັນຈາກ {0} ຈະຮຽງລໍາດັບ / ກຸ່ມ +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ສົ່ງອີເມວທີ່ກ່ຽວຂ້ອງກັບເອກະສານນີ້ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,ກະລຸນາເລືອກ atleast 1 ຖັນຈາກ {0} ຈະຮຽງລໍາດັບ / ກຸ່ມ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ກວດສອບການຖ້າຫາກວ່າທ່ານກໍາລັງທົດສອບການຊໍາລະເງິນຂອງທ່ານໂດຍໃຊ້ Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ລົບ Theme ເວັບໄຊທ໌ມາດຕະຖານ DocType: Feedback Trigger,Example,ຍົກຕົວຢ່າງ @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,ສະຫມາຊິກທັງຫມ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ຖ້າຫາກວ່າພາລະບົດບາດບໍ່ມີການເຂົ້າໃນລະດັບ 0, ລະດັບຫຼັງຈາກນັ້ນສູງກວ່າມີຄວາມຫມາຍ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save As DocType: Communication,Seen,ເຫັນ -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,ສະແດງໃຫ້ເຫັນລາຍລະອຽດເພີ່ມເຕີມ +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,ສະແດງໃຫ້ເຫັນລາຍລະອຽດເພີ່ມເຕີມ DocType: System Settings,Run scheduled jobs only if checked,ດໍາເນີນການວຽກເຮັດງານທໍາໄດ້ກໍານົດພຽງແຕ່ຖ້າຫາກວ່າການກວດກາ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,ຈະໄດ້ຮັບການສະແດງໃຫ້ເຫັນວ່າຖ້າຫາກຫົວລະພາກມີການເປີດໃຫ້ໃຊ້ງານ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archive @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,ບໍ່ຫົວ DocType: Address,Current,ປັດຈຸບັນ DocType: Address,Current,ປັດຈຸບັນ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,ເອກະສານທີ່ກ່ຽວຂ້ອງ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,ກຸ່ມຂອງ DOCTYPE DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,ເອົາແຜ່ນປ້າຍວົງກົມ @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,ການກັ່ນຕອງ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},fieldname {0} ບໍ່ສາມາດມີລັກສະນະພິເສດເຊັ່ນ: {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ປັບປຸງຄຸນຄ່າຈໍານວນຫຼາຍໃນເວລາຫນຶ່ງ. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ຄວາມຜິດພາດ: ເອກະສານໄດ້ຮັບການແກ້ໄຂພາຍຫຼັງທີ່ທ່ານໄດ້ເປີດມັນ -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No ແມ່ແບບທີ່ຢູ່ໃນຕອນຕົ້ນພົບ. ກະລຸນາສ້າງບັນຊີໃຫມ່ຈາກ Setup> ພິມແລະຍີ່ຫໍ້> Template ຢູ່. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ອອກຈາກລະບົບ: {1} DocType: Address,West Bengal,Bengal ຕາເວັນຕົກ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດຍື່ນສະເຫນີການຖ້າຫາກວ່າບໍ່ສົ່ງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດຍື່ນສະເຫນີການຖ້າຫາກວ່າບໍ່ສົ່ງ DocType: Social Login Keys,Facebook,ເຟສບຸກ apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",ກັ່ນຕອງໂດຍ "{0}" DocType: Salutation,Administrator,Administrator @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,ພາລະບົດບາດມາດຕະຖານບໍ່ສາມາດໄດ້ຮັບການພິ DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,ຈົດຫມາຍຂ່າວ -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ບໍ່ສາມາດໃຊ້ຍ່ອຍສອບຖາມໃນຄໍາສັ່ງໂດຍ +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ບໍ່ສາມາດໃຊ້ຍ່ອຍສອບຖາມໃນຄໍາສັ່ງໂດຍ DocType: Web Form,Button Help,ປຸ່ມ Help DocType: Kanban Board Column,purple,ສີມ່ວງ DocType: About Us Settings,Team Members,ທີມງານສະມາຊິກ @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,ໄດ້ຮ apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ການຈອງຂອງທ່ານຫມົດອາຍຸວັນ {0}. ການຕໍ່ອາຍຸ, {1}." DocType: Workflow State,plus-sign,ການຜ່ອນ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ການຕິດຕັ້ງສໍາເລັດສົມບູນແລ້ວ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ບໍ່ໄດ້ຕິດຕັ້ງ +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ບໍ່ໄດ້ຕິດຕັ້ງ DocType: Workflow State,Refresh,ໂຫຼດຫນ້າຈໍຄືນ DocType: Event,Public,ສາທາລະນະ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ບໍ່ມີຫຍັງທີ່ຈະສະແດງໃຫ້ເຫັນ @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ຖືກໃຈ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ສະຫນັບສະຫນູນອີເມວ DocType: DocField,Print Hide If No Value,Print ເຊື່ອງຖ້າຫາກວ່າບໍ່ມີມູນຄ່າ DocType: Event,yellow,ສີເຫຼືອງ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,ແມ່ນຈັດພີມມາຢູ່ພາກສະຫນາມຈະຕ້ອງເປັນ fieldName ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,ແມ່ນຈັດພີມມາຢູ່ພາກສະຫນາມຈະຕ້ອງເປັນ fieldName ຖືກຕ້ອງ apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ແມ່ແບບການສົ່ງອອກ @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},A ບັນຊີໃຫມ່ໄດ້ຮັບການສ້າງຕັ້ງສໍາລັບທ່ານໃນເວລາ {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ຄໍາແນະນໍາ Emailed apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ຄໍາແນະນໍາ Emailed -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ກະລຸນາໃສ່ຜູ້ຮັບອີເມລ໌ (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ກະລຸນາໃສ່ຜູ້ຮັບອີເມລ໌ (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ແຖວທົງປະຈໍາຊາດ Email apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ບໍ່ສາມາດກໍານົດເປີດ {0}. ພະຍາຍາມບາງສິ່ງບາງຢ່າງອື່ນ. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ID ຂໍ້ຄວາມ DocType: Property Setter,Field Name,ຊື່ພາກສະຫນາມ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ກູໂກ GSuite ບໍ່ໄດ້ຖືກຕັ້ງ. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ຫຼື -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ຊື່ໂມດູນ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ສືບຕໍ່ການ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ຊື່ໂມດູນ ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ສືບຕໍ່ການ DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,ໃບຢັ້ງຢືນການ DocType: User,Tile,ກະເບື້ອງ @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ສະແດງໃຫ້ເຫັນສະບັບທັງຫມົດ DocType: Workflow State,Print,ພິມ DocType: User,Restrict IP,ຈໍາກັດ IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,dashboard apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ບໍ່ສາມາດສົ່ງອີເມວໃນເວລານີ້ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ຄົ້ນຫາຫລືພິມຄໍາສັ່ງ DocType: Communication,Timeline Name,ຊື່ກໍານົດເວລາ @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Manager Sales ລິນຍາໂທ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ຂັ້ນຕອນທີຫນຶ່ງຫຼ້າສຸດ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ຊື່ຂອງປະເພດເອກະສານ (DocType) ທ່ານຕ້ອງການພາກສະຫນາມນີ້ຈະໄດ້ຮັບການເຊື່ອມຕໍ່ກັບ. ຕົວຢ່າງລູກຄ້າ DocType: User,Roles Assigned,ພາລະບົດບາດໄດ້ຮັບມອບຫມາຍ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ຄົ້ນຫາຊ່ວຍເຫຼືອ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ຄົ້ນຫາຊ່ວຍເຫຼືອ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ຄົ້ນຫາຊ່ວຍເຫຼືອ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ຄົ້ນຫາຊ່ວຍເຫຼືອ DocType: Top Bar Item,Parent Label,Label ຂອງພໍ່ແມ່ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ການສອບຖາມຂອງທ່ານໄດ້ຖືກຮັບ. ພວກເຮົາຈະຕອບກັບຄືນໄປບ່ອນດົນ. ຖ້າຫາກວ່າທ່ານມີຂໍ້ມູນເພີ່ມເຕີມ, ກະລຸນາຕອບກັບ mail ນີ້." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,ການອະນຸຍາດໄດ້ຖືກແປກັບບົດລາຍງານມາດຕະຖານແລະການຄົ້ນຫາອັດຕະໂນມັດ. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ດັດແກ້ Heading DocType: File,File URL,URL file DocType: Version,Table HTML,ຕາຕະລາງ HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No ພົບ 'ຜົນ

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,ເພີ່ມສະຫມາຊິກ apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ເຫດການທີ່ຈະເກີດຂຶ້ນສໍາລັບການໃນມື້ນີ້ DocType: Email Alert Recipient,Email By Document Field,Email ໂດຍພາກສະຫນາມ Document @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,ຈໍານວນທີ່ກ່ຽວ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ຜູ້ໃຊ້ເປັນການບັງຄັບສໍາລັບການແບ່ງປັນ DocType: DocField,Hidden,ເຊື່ອງໄວ້ DocType: Web Form,Allow Incomplete Forms,ອະນຸຍາດໃຫ້ຮູບແບບບໍ່ສົມບູນ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ຕ້ອງໄດ້ຮັບການກໍານົດທໍາອິດ +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ຕ້ອງໄດ້ຮັບການກໍານົດທໍາອິດ apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","ການນໍາໃຊ້ຄໍາສັບຕ່າງໆຈໍານວນຫນ້ອຍຫນຶ່ງ, ເພື່ອຫຼີກເວັ້ນປະໂຫຍກທົ່ວໄປ." DocType: Workflow State,plane,ຍົນ -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. ການຊໍາລະເງິນຂອງທ່ານໄດ້ພົບຄວາມລົ້ມເຫຼວ. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","ຖ້າຫາກວ່າທ່ານກໍາລັງການອັບໂຫຼດການບັນທຶກການໃຫມ່, "ການຕັ້ງຊື່ Series" ຈະກາຍເປັນການບັງຄັບ, ຖ້າຫາກວ່າປະຈຸບັນ." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,ໄດ້ຮັບການແຈ້ງເຕືອນສໍາລັບມື້ນີ້ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,ໄດ້ຮັບການແຈ້ງເຕືອນສໍາລັບມື້ນີ້ apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType ພຽງແຕ່ສາມາດໄດ້ຮັບການປ່ຽນຊື່ໂດຍ Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},ມູນຄ່າການປ່ຽນແປງຂອງ {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,ກະລຸນາກວດສອບອີເມວຂອງທ່ານສໍາລັບການຢັ້ງຢືນ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ເທົ່າບໍ່ສາມາດຈະຢູ່ໃນຕອນທ້າຍຂອງແບບຟອມໄດ້ +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ເທົ່າບໍ່ສາມາດຈະຢູ່ໃນຕອນທ້າຍຂອງແບບຟອມໄດ້ DocType: Communication,Bounced,bounced DocType: Deleted Document,Deleted Name,ຊື່ລຶບ apps/frappe/frappe/config/setup.py +14,System and Website Users,ລະບົບແລະເວັບໄຊທ໌ຜູ້ຊົມໃຊ້ @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ເອກສານກ DocType: GSuite Templates,Destination ID,ID ຈຸດຫມາຍປາຍທາງ DocType: Desktop Icon,List,ບັນຊີລາຍຊື່ DocType: Communication,Link Name,ຊື່ການເຊື່ອມຕໍ່ -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} ບໍ່ສາມາດໄດ້ຮັບການເຊື່ອງໄວ້ແລະແບບບັງຄັບໂດຍບໍ່ມີການເລີ່ມຕົ້ນ +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} ບໍ່ສາມາດໄດ້ຮັບການເຊື່ອງໄວ້ແລະແບບບັງຄັບໂດຍບໍ່ມີການເລີ່ມຕົ້ນ DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,ລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ: DocType: Print Settings,Send document web view link in email,ສົ່ງເອກະສານການເຊື່ອມຕໍ່ເບິ່ງເວັບໄຊຕໃນອີເມລ໌ apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ຜົນຕອບຮັບຂອງທ່ານສໍາລັບເອກະສານ {0} ຈະຖືກບັນທຶກສົບຜົນສໍາເລັດ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,ທີ່ຜ່ານມາ -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} ແຖວເກັດທີ່ຢູ່ສໍາລັບ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ການຍ່ອຍສະກຸນເງິນ. ສໍາລັບຕົວຢ່າງ: "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,ເລືອກໄຟລ໌ທີ່ອັບໂຫຼດ @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,ການເຊື່ອມຕໍ່ apps/frappe/frappe/utils/file_manager.py +96,No file attached,ບໍ່ຕິດໄຟ DocType: Version,Version,Version DocType: User,Fill Screen,ຕື່ມຂໍ້ມູນໃສ່ຫນ້າຈໍ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","ບໍ່ສາມາດທີ່ຈະສະແດງບົດລາຍງານເປັນໄມ້ຢືນຕົ້ນນີ້, ເນື່ອງຈາກຂໍ້ມູນທີ່ຂາດຫາຍໄປ. ສ່ວນຫຼາຍອາດຈະ, ມັນຈະຖືກກັ່ນຕອງອອກເນື່ອງຈາກການອະນຸຍາດ." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາ Account ໃນຕອນຕົ້ນການຕິດຕັ້ງອີເມວຈາກ Setup> Email> ບັນຊີອີເມວ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","ບໍ່ສາມາດທີ່ຈະສະແດງບົດລາຍງານເປັນໄມ້ຢືນຕົ້ນນີ້, ເນື່ອງຈາກຂໍ້ມູນທີ່ຂາດຫາຍໄປ. ສ່ວນຫຼາຍອາດຈະ, ມັນຈະຖືກກັ່ນຕອງອອກເນື່ອງຈາກການອະນຸຍາດ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1 ເລືອກ File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,ແກ້ໄຂຜ່ານ Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","ປະເພດເອກະສານ ... , ຕົວຢ່າງລູກຄ້າ" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","ປະເພດເອກະສານ ... , ຕົວຢ່າງລູກຄ້າ" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,ສະພາບ '{0}' ແມ່ນບໍ່ຖືກຕ້ອງ DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,ເພີ່ມການແປພາສາຂອງຕົນເອງ @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,ວັນພຸດ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","ນອກຈາກພາລະບົດບາດກົດລະບຽບການອະນຸຍາດ, ທ່ານສາມາດນໍາໃຊ້ການອະນຸຍາດຂອງຜູ້ໃຊ້ໂດຍອີງໃສ່ DOCTYPE." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","ການອະນຸຍາດດັ່ງກ່າວຈະນໍາໃຊ້ສໍາລັບການເຮັດທຸລະກໍາທັງຫມົດທີ່ບັນທຶກອະນຸຍາດໃຫ້ມີການເຊື່ອມໂຍງ. ສໍາລັບການຍົກຕົວຢ່າງ, ຖ້າຫາກວ່າບໍລິສັດ C ໄດ້ຖືກເພີ່ມກັບການອະນຸຍາດຜູ້ໃຊ້ຂອງຜູ້ໃຊ້ X, ຜູ້ໃຊ້ X ຈະພຽງແຕ່ຈະສາມາດເຂົ້າໄປເບິ່ງທຸລະກໍາທີ່ມີບໍລິສັດ C ເປັນມູນຄ່າການເຊື່ອມຕໍ່." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,ພາກສະຫນາມຮູບພາບຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,ພາກສະຫນາມຮູບພາບຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ DocType: OAuth Client,Token,token DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ຊື່) ຂອງນິຕິບຸກຄົນທີ່ມີຄຸນສົມບັດແມ່ນເພື່ອໄດ້ຮັບການກໍານົດໄວ້ apps/frappe/frappe/limits.py +82,"To renew, {0}.","ການຕໍ່ອາຍຸ, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,ລາຍການ sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} ຕິດຕັ້ງແລ້ວ DocType: Workflow State,exclamation-sign,exclamation ເຊັນ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ສະແດງການອະນຸຍາດ -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,ພາກສະຫນາມກໍານົດເວລາຕ້ອງການເຊື່ອມຕໍ່ຫຼື Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,ພາກສະຫນາມກໍານົດເວລາຕ້ອງການເຊື່ອມຕໍ່ຫຼື Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Range ວັນທີ່ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},ຫນ້າ {0} ຂອງ {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ແນ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","ທີ່ສໍາຄັນການເຂົ້າລະຫັດບໍ່ຖືກຕ້ອງ, ກະລຸນາກວດສອບ site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ການ DocType: Kanban Board Column,darkgrey,ເທົາເຂັ້ມ -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ສົບຜົນສໍາເລັດ: {0} ກັບ {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ສົບຜົນສໍາເລັດ: {0} ກັບ {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ບໍ່ສາມາດມີການປ່ຽນແປງລາຍລະອຽດຂອງຜູ້ໃຊ້ໃນການສາທິດ. ກະລຸນາລົງທະບຽນສໍາລັບການບັນຊີໃຫມ່ທີ່ https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,ກະລຸນາຊ້ໍານີ້ຈະເຮັດໃຫ້ການປ່ຽນແປງ apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,ການຜະລິດ PDF ສົບຜົນສໍາເລັດເນື່ອງຈາກວ່າການເຊື່ອມໂຍງຮູບພາບທີ່ແຕກຫັກ @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Collapsible apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ບັນທຶກໄວ້ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ສິ່ງທີ່ທ່ານຈໍາເປັນຕ້ອງຊ່ວຍ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ທາງເລືອກສໍາລັບການຄັດເລືອກ. ການເລືອກແຕ່ລະກ່ຽວກັບການອອນໄລນ໌ໃຫມ່. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,ຢ່າງຖາວອນຍົກເລີກ {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,ຢ່າງຖາວອນຍົກເລີກ {0}? DocType: Workflow State,music,ດົນຕີ DocType: Web Page,Settings,ການຕັ້ງຄ່າ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,ກະລຸນາລະບຸ doctype DocType: Print Format,Style Settings,ການຕັ້ງຄ່າແບບ -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ພາກສະຫນາມຈັດລຽງ {0} ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ພາກສະຫນາມຈັດລຽງ {0} ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,ເພີ່ມເຕີມ DocType: Contact,Sales Manager,ຜູ້ຈັດການຝ່າຍຂາຍ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,ປ່ຽນຊື່ DocType: Print Format,Format Data,ຮູບແບບຂໍ້ມູນ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,ເຊັ່ນດຽວກັນກັບ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,ເຊັ່ນດຽວກັນກັບ DocType: Customize Form Field,Customize Form Field,ປັບພາກສະຫນາມໃນແບບຟອມການ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ DocType: OAuth Client,Grant Type,ປະເພດການຊ່ວຍເຫຼືອລ້າ apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ກວດສອບເອກະສານແມ່ນສາມາດອ່ານໄດ້ໂດຍຜູ້ໃຊ້ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing app ບໍ່ອະນຸຍາດ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ໃຊ້% ເປັນຕົວແທນ -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domain Email ບໍ່ໄດ້ກໍາຫນົດສໍາລັບບັນຊີນີ້, ການສ້າງຫນຶ່ງ?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ໃຊ້% ເປັນຕົວແທນ +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domain Email ບໍ່ໄດ້ກໍາຫນົດສໍາລັບບັນຊີນີ້, ການສ້າງຫນຶ່ງ?" DocType: User,Reset Password Key,Key ລະຫັດຜ່ານ DocType: Email Account,Enable Auto Reply,ເຮັດໃຫ້ອັດຕະໂນມັດ Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ບໍ່ໄດ້ເຫັນ @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ກໍານົດພຽງແຕ່ DocType: Email Queue Recipient,Email Queue Recipient,ຜູ້ຮັບອີເມວແຖວ DocType: Address,Nagaland,ລັດນາກາແລນ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ຊື່ຜູ້ໃຊ້ {0} ມີຢູ່ແລ້ວ -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: ບໍ່ສາມາດກໍານົດການນໍາເຂົ້າ {1}, ບໍ່ແມ່ນການທີ່ສໍາຄັນ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: ບໍ່ສາມາດກໍານົດການນໍາເຂົ້າ {1}, ບໍ່ແມ່ນການທີ່ສໍາຄັນ" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},ມີຂໍ້ຜິດພາດໃນແມ່ແບບທີ່ຢູ່ຂອງທ່ານແມ່ນ {0} DocType: Footer Item,"target = ""_blank""",ເປົ້າຫມາຍ = "_blank" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,ຈາກຊື່ເຕັມ apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},ທ່ານບໍ່ມີການເຂົ້າເຖິງການລາຍງານ: {0} DocType: User,Send Welcome Email,ສົ່ງຍິນດີຕ້ອນຮັບ Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ດາວໂຫຼດໄຟລ໌ CSV ທີ່ມີການອະນຸຍາດຜູ້ໃຊ້ທັງຫມົດໃນຮູບແບບດຽວກັນເປັນດາວນ໌ໂຫລດ. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ເອົາ Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ເອົາ Filter DocType: Address,Daman and Diu,Daman ແລະ Diu DocType: Address,Personal,ສ່ວນບຸກຄົນ apps/frappe/frappe/config/setup.py +113,Bulk Rename,ປ່ຽນຊື່ຫຼາຍ @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","ມາດຕະຖານ DocType ບໍ່ສາມາດມີຮູບແບບການພິມໃນຕອນຕົ້ນ, ການນໍາໃຊ້ແບບຟອມທີ່ກໍາຫນົດເອງ" DocType: Report,Query,ການສອບຖາມ DocType: DocType,Sort Order,ຮຽງ -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'ໃນຊີ View' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'ໃນຊີ View' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} DocType: Custom Field,Select the label after which you want to insert new field.,ເລືອກເອົາປ້າຍຫຼັງຈາກທີ່ທ່ານຕ້ອງການທີ່ຈະສະແດງກິ່ງງ່າພາກສະຫນາມໃຫມ່. ,Document Share Report,ເອກະສານລາຍວຽກ DocType: User,Last Login,ລະບົບຫຼ້າສຸດ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},fieldname ທີ່ຕ້ອງການໃນການຕິດຕໍ່ກັນ {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},fieldname ທີ່ຕ້ອງການໃນການຕິດຕໍ່ກັນ {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ຄໍລໍາ DocType: Custom Field,Adds a custom field to a DocType,ເພີ້ມພາກສະຫນາມ custom ເພື່ອ DocType ເປັນ DocType: File,Is Home Folder,ແມ່ນຫນ້າທໍາອິດ Folder @@ -594,7 +594,7 @@ DocType: File,Folder,ໂຟນເດີ DocType: DocField,Index,ດັດຊະນີ DocType: Email Group,Newsletter Manager,ຜູ້ຈັດການຫນັງສືພິມ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ທາງເລືອກ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,ທັງຫມົດກະທູ້ +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ກັບ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ເຂົ້າສູ່ລະບົບຂອງຄວາມຜິດພາດໃນລະຫວ່າງການຮ້ອງຂໍ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ໄດ້ຮັບການເພີ່ມສົບຜົນສໍາເລັດເພື່ອ Group Email ໄດ້. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,ຕົວຊີ້ວັດ DocType: DocShare,Everyone,ບຸກຄົນທຸກຄົນ DocType: Workflow State,backward,ວະ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ມີພຽງແຕ່ຫນຶ່ງກົດລະບຽບອະນຸຍາດໃຫ້ມີພາລະບົດບາດດຽວກັນ, ລະດັບແລະ {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ມີພຽງແຕ່ຫນຶ່ງກົດລະບຽບອະນຸຍາດໃຫ້ມີພາລະບົດບາດດຽວກັນ, ລະດັບແລະ {1}" DocType: Email Queue,Add Unsubscribe Link,ຕື່ມ Unsubscribe ການເຊື່ອມຕໍ່ apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ຍັງບໍ່ມີຄວາມຄິດເຫັນ. ເລີ່ມຕົ້ນການສົນທະນາໃຫມ່. DocType: Workflow State,share,share @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ບໍ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,ເບິ່ງສະຫມາຊິກ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ນາງສາວ DocType: Website Theme,Background Color,ສີພື້ນຖານ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ມີຄວາມຜິດພາດໃນຂະນະທີ່ການສົ່ງອີເມວໄດ້. ກະລຸນາພະຍາຍາມອີກເທື່ອຫນຶ່ງ. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ມີຄວາມຜິດພາດໃນຂະນະທີ່ການສົ່ງອີເມວໄດ້. ກະລຸນາພະຍາຍາມອີກເທື່ອຫນຶ່ງ. DocType: Portal Settings,Portal Settings,ການຕັ້ງຄ່າ Portal DocType: Web Page,0 is highest,0 ແມ່ນສູງທີ່ສຸດ apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,ທ່ານແນ່ໃຈວ່າທ່ານຕ້ອງການທີ່ຈະ relink ການສື່ສານນີ້ກັບ {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,ຕິດຕໍ່ພວກເ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ຊອກຫາ ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ຊອກຫາ ... DocType: Workflow State,text-width,ຂໍ້ຄວາມ width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ແນບສູງສຸດສໍາລັບບັນທຶກນີ້ບັນລຸໄດ້. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ແນບສູງສຸດສໍາລັບບັນທຶກນີ້ບັນລຸໄດ້. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,ທົ່ງນາບັງຄັບດັ່ງຕໍ່ໄປນີ້ຕ້ອງໄດ້ຮັບການເຕີມລົງໄປ:
DocType: Email Alert,View Properties (via Customize Form),ເບິ່ງຄຸນສົມບັດ (ໂດຍຜ່ານການປັບ Form) DocType: Note Seen By,Note Seen By,ຫມາຍເຫດເຫັນ @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,ບົດລາຍງານ Builder ບົດລາຍງານການຄຸ້ມຄອງໂດຍກົງໂດຍ builder ບົດລາຍງານ. ບໍ່ມີຫຍັງເຮັດ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,ກະລຸນາຢືນຢັນທີ່ຢູ່ອີເມວຂອງທ່ານ apps/frappe/frappe/model/document.py +903,none of,none ການຂອງ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ສົ່ງສໍາເນົາ +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ສົ່ງສໍາເນົາ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ອັບອະນຸຍາດຜູ້ໃຊ້ DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ລາຍການກວດກາຈະໄດ້ຮັບການສະແດງໃຫ້ເຫັນກ່ຽວກັບການ desktop -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ສໍາລັບການປະເພດດຽວ +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ສໍາລັບການປະເພດດຽວ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} ບໍ່ມີ. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ປະຈຸບັນເບິ່ງເອກະສານນີ້ DocType: ToDo,Assigned By Full Name,ການມອບຫມາຍຂອງຊື່ເຕັມ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ການປັບປຸງ -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,ບົດລາຍງານບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ສໍາລັບການປະເພດດຽວ +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,ບົດລາຍງານບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ສໍາລັບການປະເພດດຽວ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} days ago DocType: Email Account,Awaiting Password,ລັງລໍຖ້າການລະຫັດຜ່ານ DocType: Address,Address Line 1,ທີ່ຢູ່ Line 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","ລັດອາເມລິກາສໍາລັບການສະແດງວຽກ (ຕົວຢ່າງ: ຮ່າງ, ອະນຸມັດ, ຖືກຍົກເລີກ)." DocType: Print Settings,Allow Print for Draft,ອະນຸຍາດໃຫ້ພິມສໍາລັບການຮ່າງ apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,ກໍານົດຈໍານວນ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ສົ່ງເອກະສານເພື່ອຍືນຍັນ +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ສົ່ງເອກະສານເພື່ອຍືນຍັນ DocType: Contact,Unsubscribed,ຍົກເລີກ apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,ກໍານົດພາລະບົດບາດທີ່ກໍາຫນົດເອງສໍາລັບຫນ້າແລະບົດລາຍງານ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Rating: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ເຄື່ອງມືນໍາເຂົ້າຂໍ້ມູນ DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ໄຟລ໌ອັບໂຫລດກະລຸນາລໍຖ້າສໍາລັບການບໍ່ພໍເທົ່າໃດວິນາທີ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ຄັດຕິດຮູບພາບຂອງທ່ານ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ຄັດຕິດຮູບພາບຂອງທ່ານ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ຄ່າຕິດຕໍ່ກັນການປ່ຽນແປງ DocType: Workflow State,Stop,ຢຸດເຊົາການ DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,ການເຊື່ອມຕໍ່ກັບຫນ້າທີ່ທ່ານຕ້ອງການທີ່ຈະເປີດ. ໃຫ້ຫວ່າງໄວ້ຖ້າຫາກວ່າທ່ານຕ້ອງການທີ່ຈະເຮັດໃຫ້ມັນເປັນພໍ່ແມ່ກຸ່ມ. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,ວາງປ້າຍກໍາກ DocType: Help Article,Expert,ຜູ້ຊ່ຽວຊານ DocType: Workflow State,circle-arrow-right,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນສິດ" DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,ບໍ່ສາມາດເປີດການຍົກຕົວຢ່າງໃນເວລາທີ່ຂອງຕົນ {0} ເປີດ +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,ບໍ່ສາມາດເປີດການຍົກຕົວຢ່າງໃນເວລາທີ່ຂອງຕົນ {0} ເປີດ apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ຄິວສໍາລັບການຕິດຕັ້ງ DocType: Custom DocPerm,Custom DocPerm,DocPerm Custom DocType: Newsletter,Send Unsubscribe Link,ສົ່ງຍົກເລີກການເຊື່ອມຕໍ່ @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} ອອກ DocType: Custom DocPerm,Apply User Permissions,ສະຫມັກຕໍາອະນຸຍາດຜູ້ໃຊ້ DocType: User,Modules HTML,ໂມດູນ HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Manager ອະນຸຍາດຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ຄ່າທີ່ຂາດຫາຍທີ່ກໍານົດໄວ້ DocType: DocType,Other Settings,ການຕັ້ງຄ່າອື່ນໆ DocType: Social Login Keys,Frappe,Frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ກຸມ Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ບໍ່ມີເອກະສານການຄັດເລືອກ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,ກໍລະນີ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","ກ່ຽວກັບ {0}, {1} wrote:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","ກ່ຽວກັບ {0}, {1} wrote:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ບໍ່ສາມາດລົບພາກສະຫນາມມາດຕະຖານ. ທ່ານສາມາດຊ່ອນມັນຖ້າຫາກວ່າທ່ານຕ້ອງການ DocType: Top Bar Item,For top bar,ສໍາລັບພາທະນາຍຄວາມ apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ບໍ່ສາມາດກໍານົດ {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,ເຂົ້າ desk DocType: Workflow State,minus,ເຄື່ອງຫມາຍລົບ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Error Server: ກະລຸນາກວດສອບຂໍ້ມູນບັນທຶກຂອງເຄື່ອງແມ່ຂ່າຍຂອງທ່ານຫຼືຕິດຕໍ່ສະຫນັບສະຫນູນເຕັກໂນໂລຊີ. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ອີເມວຍິນດີຕ້ອນຮັບສົ່ງ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,ໃຫ້ຂອງການກະກຽມລະບົບສໍາລັບການນໍາໃຊ້ຄັ້ງທໍາອິດ. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,ໃຫ້ຂອງການກະກຽມລະບົບສໍາລັບການນໍາໃຊ້ຄັ້ງທໍາອິດ. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ເຂົ້າຮ່ວມ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ລົງທະບຽນແລ້ວ DocType: System Settings,Float Precision,Precision ເລື່ອນ @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,ອະນຸຍາດໃຫ້ພິມ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ບໍ່ມີກິດຕິດຕັ້ງ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ເຄື່ອງຫມາຍພາກສະຫນາມເປັນການບັງຄັບ DocType: Communication,Clicked,ຄິກ -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ບໍ່ອະນຸຍາດໃຫ້ '{0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ບໍ່ອະນຸຍາດໃຫ້ '{0} {1} DocType: User,Google User ID,ກູໂກ User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ກໍານົດທີ່ຈະສົ່ງ DocType: DocType,Track Seen,ຕິດຕາມຄັ້ງ @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,ຊ້າຍ DocType: User,Simultaneous Sessions,ກອງປະຊຸມພ້ອມກັນ DocType: OAuth Client,Client Credentials,ຫນັງສືຮັບຮອງລູກຄ້າ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ເປີດໂມດູນຫຼືເຄື່ອງມື +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ເປີດໂມດູນຫຼືເຄື່ອງມື DocType: Communication,Delivery Status,ສະຖານະການຈັດສົ່ງ DocType: Module Def,App Name,ຊື່ App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,ຂະຫນາດໄຟນ້ໍາອະນຸຍາດໃຫ້ເປັນ {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,ການສື່ສານກ DocType: Email Queue,Unsubscribe Method,ວິທີການຍົກເລີກ DocType: GSuite Templates,Related DocType,DocType ທີ່ກ່ຽວຂ້ອງ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ແກ້ໄຂທີ່ຈະເພີ່ມເນື້ອໃນ -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ເລືອກພາສາ -apps/frappe/frappe/__init__.py +510,No permission for {0},ບໍ່ມີການອະນຸຍາດສໍາລັບການ {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ເລືອກພາສາ +apps/frappe/frappe/__init__.py +509,No permission for {0},ບໍ່ມີການອະນຸຍາດສໍາລັບການ {0} DocType: DocType,Advanced,ກ້າວຫນ້າທາງດ້ານ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,ເບິ່ງຄືວ່າ Key API ຫຼື API ລັບແມ່ນຜິດພາດ !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ກະສານອ້າງອີງ: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,ກະລຸນາໃສ່ປະເພ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ບໍ່ມີການບັນທຶກການ tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ເອົາພາກສະຫນາມ DocType: User,Send Password Update Notification,ສົ່ງລະຫັດຜ່ານປັບປຸງແຈ້ງ -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","ໃຫ້ DocType, DocType. ລະມັດລະວັງ!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","ໃຫ້ DocType, DocType. ລະມັດລະວັງ!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ຮູບແບບການລູກຄ້າສໍາລັບການພິມ, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,ການປັບປຸງເພື່ອສະບັບໃຫມ່ DocType: Custom Field,Depends On,ຂຶ້ນກັບ @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,ຫນຶ່ງໃນ apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,ກະລຸນາເລືອກໄຟລ໌ທີ່ຈະສໍາເນົາ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ການກວດສອບແຕ່ປັດຈຸບັນ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,ສະແດງໃຫ້ເຫັນ Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ຖ້າຫາກວ່າສະຫມັກຕໍາແຫນ່ງທີ່ເຄັ່ງຄັດອະນຸຍາດຜູ້ໃຊ້ແມ່ນການກວດກາແລະການອະນຸຍາດຜູ້ໃຊ້ໄດ້ຖືກກໍານົດສໍາລັບ DocType ສໍາລັບຜູ້ໃຊ້ໃດຫນຶ່ງ, ຫຼັງຈາກນັ້ນເອກະສານທັງຫມົດທີ່ຄຸນຄ່າຂອງການເຊື່ອມຕໍ່ແມ່ນເປົ່າ, ຈະບໍ່ໄດ້ຮັບການສະແດງໃຫ້ຜູ້ໃຊ້ທີ່" DocType: Address,Billing,Billing DocType: Email Queue,Not Sent,ບໍ່ໄດ້ສົ່ງ DocType: Web Form,Actions,ການກະທໍາ @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ຈະແຈ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ກິດຈະກໍາທຸກໆມື້ຄວນຈະສໍາເລັດໃນມື້ດຽວກັນ. DocType: Communication,User Tags,User Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ຮູບພາບກໍາລັງດຶງ .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Workflow State,download-alt,"ດາວໂຫລດ, alt" apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ການດາວໂຫລດ App {0} DocType: Communication,Feedback Request,ຜົນຕອບຮັບຄໍາຮ້ອງຂໍ @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ສໍາຮອງຂໍ້ມູນ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,ຕື່ມການຕິດຕໍ່ DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ທາງເລືອກ: ສະເຫມີສົ່ງໄປຫັດເຫຼົ່ານີ້. ແຕ່ລະຄົນທີ່ຢູ່ອີເມວໃນຕິດຕໍ່ກັນໃຫມ່ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,ເຊື່ອງລາຍລະອຽດ +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,ເຊື່ອງລາຍລະອຽດ DocType: Workflow State,Tasks,ວຽກງານ DocType: Event,Tuesday,ວັນອັງຄານ DocType: Blog Settings,Blog Settings,Settings Blog @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ຂຽນໄຟ Python ຢູ່ໃນໂຟນເດີດຽວກັນທີ່ນີ້ຈະຖືກບັນທຶກແລະກັບຄືນຖັນແລະຜົນ. DocType: DocType,Sort Field,ການຈັດລຽງພາກສະຫນາມ DocType: Razorpay Settings,Razorpay Settings,ການຕັ້ງຄ່າ Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,ດັດແກ້ Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ພາກສະຫນາມ {0} ຂອງປະເພດ {1} ບໍ່ສາມາດຈະບັງຄັບ -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ຕົວຢ່າງ:. ຖ້າຫາກວ່າສະຫມັກຕໍາອະນຸຍາດຜູ້ໃຊ້ມີການກວດສອບສໍາລັບການລາຍງານ DocType ແຕ່ວ່າບໍ່ມີການອະນຸຍາດຂອງຜູ້ໃຊ້ກໍານົດໄວ້ສໍາລັບການລາຍງານສໍາລັບຜູ້ໃຊ້, ຫຼັງຈາກນັ້ນລາຍງານທັງຫມົດແມ່ນໄດ້ສະແດງໃຫ້ເຫັນຜູ້ໃຊ້ທີ່" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,ດັດແກ້ Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ພາກສະຫນາມ {0} ຂອງປະເພດ {1} ບໍ່ສາມາດຈະບັງຄັບ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,ເພີ່ມເຕີມ apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ເຊື່ອງໃນຕາຕະລາງ DocType: System Settings,Session Expiry Mobile,ກອງປະຊຸມສຸດການຈໍາຫນ່າຍໂທລະສັບມືຖື @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,ຊັກຊ້າ apps/frappe/frappe/config/setup.py +128,List of backups available for download,ບັນຊີລາຍຊື່ຂອງສໍາຮອງຂໍ້ມູນທີ່ມີຢູ່ສໍາລັບດາວໂຫລດ apps/frappe/frappe/www/login.html +89,Sign up,ລົງທະບຽນ DocType: Test Runner,Output,ຜົນຜະລິດ +DocType: Email Alert,Set Property After Alert,ຕັ້ງຄ່າ Property ຫຼັງຈາກ Alert ການຂົນ apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ຕື່ມການຂົງເຂດທີ່ຮູບແບບ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ເບິ່ງຄືວ່າບາງສິ່ງບາງຢ່າງຜິດພາດກັບການຕັ້ງຄ່າ Paypal ຂອງເວັບໄຊນີ້. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ໃບ DocType: Portal Menu Item,Portal Menu Item,Menu Item Portal DocType: User Email,Email ID,ID Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ຖ້າຫາກວ່າສະຫມັກຕໍາແຫນ່ງອະນຸຍາດຜູ້ໃຊ້ມີເຄື່ອງຫມາຍຖືກສໍາລັບບົດລາຍງານ DocType ແຕ່ບໍ່ມີການອະນຸຍາດຜູ້ໃຊ້ກໍານົດໄວ້ສໍາລັບບົດລາຍງານສໍາລັບຜູ້ໃຊ້ເປັນ, ຫຼັງຈາກນັ້ນລາຍງານທັງຫມົດແມ່ນສະແດງໃຫ້ຜູ້ໃຊ້ທີ່" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,ບັນຊີລາຍຊື່ຂອງຊັບພະຍາກອນ A ທີ່ App Client ຈະມີການເຂົ້າເຖິງພາຍຫຼັງທີ່ຜູ້ໃຊ້ອະນຸຍາດໃຫ້ມັນ.
ຕົວຢ່າງໂຄງການ DocType: Translation,Translated Text,ແປຂໍ້ຄວາມ DocType: Contact Us Settings,Query Options,ຕົວເລືອກການສອບຖາມ @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,ຕິດຕໍ່ພົວພັນ DocType: System Settings,Setup Complete,ການຕິດຕັ້ງສໍາເລັດ apps/frappe/frappe/config/setup.py +66,Report of all document shares,ບົດລາຍງານຂອງຮຸ້ນເອກະສານທັງຫມົດ apps/frappe/frappe/www/update-password.html +18,New Password,ລະຫັດຜ່ານໃຫມ່ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ການກັ່ນຕອງ {0} ທີ່ຂາດຫາຍໄປ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ການກັ່ນຕອງ {0} ທີ່ຂາດຫາຍໄປ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,ຂໍໂທດ! ທ່ານບໍ່ສາມາດລົບຄວາມຄິດເຫັນອັດຕະໂນມັດສ້າງ DocType: Website Theme,Style using CSS,ແບບການນໍາໃຊ້ CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType ກະສານອ້າງອີງ @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Modules Block apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ການກັບຄືນຍາວທີ່ {0} ສໍາລັບ '{1}' in '{2}' ການສ້າງຕັ້ງຄວາມຍາວເປັນ {3} ຈະເຮັດໃຫ້ເກີດການຕັດຂອງຂໍ້ມູນ. DocType: Print Format,Custom CSS,CSS Custom apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ເພີ່ມຄວາມຄິດເຫັນ -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},ບໍ່ສົນໃຈ: {0} ກັບ {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ບໍ່ສົນໃຈ: {0} ກັບ {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ເຂົ້າສູ່ລະບົບຂອງຄວາມຜິດພາດກ່ຽວກັບເຫດການອັດຕະໂນມັດ (ຕາຕະລາງ). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ບໍ່ໄດ້ເປັນທີ່ຖືກຕ້ອງ Comma ແຍກມູນຄ່າ (CSV File) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,ມາດຕະຖານເຂົ້າ DocType: Workflow State,repeat,ຊ້ໍາ DocType: Website Settings,Banner,ປ້າຍໂຄສະນາ DocType: Role,"If disabled, this role will be removed from all users.","ຖ້າຫາກວ່າເປັນຄົນພິການ, ພາລະບົດບາດນີ້ຈະໄດ້ຮັບການໂຍກຍ້າຍອອກຈາກຜູ້ໃຊ້ທັງຫມົດ." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ຊ່ວຍເຫຼືອໃນການຄົ້ນຫາ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ຊ່ວຍເຫຼືອໃນການຄົ້ນຫາ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,ທະບຽນແລ້ວແຕ່ຄົນພິການ DocType: DocType,Hide Copy,ຊ່ອນ Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ອະນາໄມພາລະບົດບາດທັງຫມົດ @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ປະເທດ apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,ທີ່ຢູ່ DocType: Communication,Shared,ໃຊ້ຮ່ວມກັນ -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ຄັດຕິດເອກະສານພິມ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ຄັດຕິດເອກະສານພິມ DocType: Bulk Update,Field,ພາກສະຫນາມ DocType: Communication,Received,ໄດ້ຮັບ DocType: Social Login Keys,Google Client ID,ID Client ກູໂກ @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,ບົດລາຍງານແບບສອບຖາ DocType: User,Set New Password,ກໍານົດລະຫັດຜ່ານໃຫມ່ DocType: User,Github User ID,GitHub User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ຖ້າຫາກວ່າປະເພດເອກະສານ -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ບໍ່ສາມາດລຶບຫຼືຍົກເລີກເນື່ອງຈາກວ່າ {0} {1} ຈະເຊື່ອມໂຍງກັບ {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ບໍ່ສາມາດລຶບຫຼືຍົກເລີກເນື່ອງຈາກວ່າ {0} {1} ຈະເຊື່ອມໂຍງກັບ {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},ຮູ້ຈັກ app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% s ບໍ່ແມ່ນຮູບແບບບົດລາຍງານທີ່ຖືກຕ້ອງ. ຮູບແບບບົດລາຍງານຄວນ \ ຫນຶ່ງໃນ% s ຕໍ່ໄປນີ້ DocType: Communication,Chat,ສົນທະນາ -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},fieldname {0} ປາກົດຂຶ້ນຫລາຍຄັ້ງໃນແຖວເກັດທີ່ຢູ່ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},fieldname {0} ປາກົດຂຶ້ນຫລາຍຄັ້ງໃນແຖວເກັດທີ່ຢູ່ {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},"{0} ຈາກ {1} ກັບ {2} ໃນຕິດຕໍ່ກັນ, {3}" DocType: Communication,Expired,ຫມົດອາຍຸແລ້ວ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ຈໍານວນຄໍລໍາສໍາລັບພາກສະຫນາມໃນຕາຂ່າຍໄຟຟ້າເປັນ (ຄໍລໍາທັງຫມົດໃນຕາຂ່າຍໄຟຟ້າຄວນຈະມີຫນ້ອຍກ່ວາ 11) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ມີບັນຊ apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},ຮູບແບບພິມທີ່ບໍ່ຮູ້ຈັກ: {0} DocType: Workflow State,arrow-down,ລູກສອນລົງ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Collapse -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ຜູ້ໃຊ້ບໍ່ອະນຸຍາດໃຫ້ລົບ {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ຜູ້ໃຊ້ບໍ່ອະນຸຍາດໃຫ້ລົບ {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,ແກ້ໄຂຫຼ້າສຸດ DocType: Help Article,Likes,ເຊັ່ນດຽວກັນ DocType: Website Settings,Top Bar,Bar Top DocType: GSuite Settings,Script Code,ລະຫັດ script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ສ້າງ User Email apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ສ້າງ User Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,No ລະບຸການອະນຸຍາດ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,No ລະບຸການອະນຸຍາດ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ການຕັ້ງຄ່າທົ່ວໂລກ: ຜູ້ໃຊ້ພຽງແຕ່ຈະສາມາດທີ່ຈະເລືອກເອົາຮູບສັນຍາລັກການກວດສອບ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ບໍ່ພົບ DocType: Custom Role,Custom Role,ພາລະບົດບາດ Custom apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ຫນ້າທໍາອິດ / ການທົດສອບ Folder 2 DocType: System Settings,Ignore User Permissions If Missing,ບໍ່ສົນໃຈການອະນຸຍາດຂອງຜູ້ໃຊ້ຖ້າຫາກວ່າຫາຍ -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,ກະລຸນາຊ່ວຍປະຢັດເອກະສານກ່ອນທີ່ຈະອັບໂຫຼດ. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ກະລຸນາຊ່ວຍປະຢັດເອກະສານກ່ອນທີ່ຈະອັບໂຫຼດ. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ເຂົ້າ Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ຕື່ມການຄໍາເຫັນອີກປະການຫນຶ່ງ apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,ດັດແກ້ DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ຍົກເລີກຈາກ Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ເທົ່າຈະຕ້ອງມາກ່ອນທີ່ຈະພັກຜ່ອນພາກ +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ເທົ່າຈະຕ້ອງມາກ່ອນທີ່ຈະພັກຜ່ອນພາກ apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ແກ້ໄຂຫຼ້າສຸດໂດຍ DocType: Workflow State,hand-down,ມືລົງ DocType: Address,GST State,State GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ບໍ່ສາມາດກໍານົດໄວ້ຍົກເລີກໂດຍບໍ່ມີການຍື່ນສະເຫນີການ +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ບໍ່ສາມາດກໍານົດໄວ້ຍົກເລີກໂດຍບໍ່ມີການຍື່ນສະເຫນີການ DocType: Website Theme,Theme,Theme apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,ມີຄວາມຜິດພາດໄດ້. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,ຕົວຊີ້ທິດທາງ URI ຜູກພັນກັບ Auth ລະຫັດ @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ກ DocType: Website Theme,Text Color,ຂໍ້ຄວາມສີ DocType: Desktop Icon,Force Show,ຜົນບັງຄັບໃຊ້ສະແດງ apps/frappe/frappe/auth.py +78,Invalid Request,ຂໍບໍ່ຖືກຕ້ອງ -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ຮູບແບບນີ້ບໍ່ມີການປ້ອນເຂົ້າ +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ຮູບແບບນີ້ບໍ່ມີການປ້ອນເຂົ້າ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},ກອງປະຊຸມສຸດການຈໍາຫນ່າຍຈະຕ້ອງຢູ່ໃນຮູບແບບ {0} DocType: Website Sidebar Item,Group,ກຸ່ມ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ເລືອກເປົ້າຫມາຍ = "_blank" ຈະເປີດຢູ່ໃນຫນ້າໃຫມ່. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ບໍ່ສົນໃຈການເຂົ້າລະຫັດຄວາມຜິດພາດ. DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ບໍ່ກໍານົດ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Authentication Log,Date,ວັນທີ່ສະຫມັກ DocType: Website Settings,Disable Signup,ປິດການໃຊ້ງານສະຫມັກ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,ນັ່ງໃກ້ຊິດໃນຂະນະທີ່ລະບົບຂອງທ່ານແມ່ນການຕິດຕັ້ງ. ນີ້ອາດຈະໃຊ້ເວລາປັດຈຸບັນບໍ່ຫຼາຍປານໃດ. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,ຕື່ມການຄໍາເຫັນ DocType: DocField,Mandatory,ການບັງຄັບ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ໂມດູນການສົ່ງອອກ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: ບໍ່ມີກໍານົດໄວ້ສິດທິຂັ້ນພື້ນຖານ +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: ບໍ່ມີກໍານົດໄວ້ສິດທິຂັ້ນພື້ນຖານ apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,ການສະຫມັກຂອງທ່ານຈະຫມົດອາຍຸໃນ {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},ການເຊື່ອມຕໍ່ດາວໂຫຼດສໍາລັບການສໍາຮອງຂໍ້ມູນຂອງທ່ານຈະຖືກສົ່ງໄປຢູ່ໃນທີ່ຢູ່ອີເມວດັ່ງຕໍ່ໄປນີ້: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","ຊຶ່ງຫມາຍຄວາມວ່າຂອງຍື່ນສະເຫນີການ, ຍົກເລີກການ, ແກ້ໄຂ" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,"ແບບສອບຖາມ, ລາຍງາ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ການມອບຫມາຍໃຫ້ {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ການກັ່ນຕອງບັນທຶກໄວ້ DocType: DocField,Percent,ເປີເຊັນ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ກະລຸນາຕັ້ງຄ່າການກອງ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ກະລຸນາຕັ້ງຄ່າການກອງ apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ການເຊື່ອມຕໍ່ກັບ DocType: Workflow State,book,ຫນັງສື DocType: Website Settings,Landing Page,ຫນ້າທີ່ດິນ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Error ໃນ Script Custom +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Error ໃນ Script Custom apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} ຊື່ apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ການນໍາເຂົ້າການຈອງຄິວ. ນີ້ອາດຈະໃຊ້ເວລາປັດຈຸບັນບໍ່ຫຼາຍປານໃດ, ກະລຸນາຄວາມອົດທົນ." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ບໍ່ມີການອະນຸຍາດທີ່ກໍານົດໄວ້ສໍາລັບເງື່ອນໄຂນີ້. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,ອະນຸຍາດ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,ທ່ານບໍ່ມີການອະນຸຍາດພຽງພໍທີ່ຈະເຂົ້າເຖິງຊັບພະຍາກອນນີ້. ກະລຸນາຕິດຕໍ່ຜູ້ຈັດການຂອງທ່ານເພື່ອໃຫ້ໄດ້ຮັບການເຂົ້າເຖິງ. DocType: Custom Field,Custom,Custom apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,ການຕິດຕັ້ງອີເມວ Alert ອີງໃສ່ເງື່ອນໄຂຕ່າງໆ. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},ກະທູ້ຍື່ນພາຍໃຕ້ການ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},ກະທູ້ຍື່ນພາຍໃຕ້ການ {0} DocType: Email Alert,Send alert if date matches this field's value,ສົ່ງການແຈ້ງເຕືອນຖ້າຫາກວ່າວັນທີກັບຄ່າພາກສະຫນາມນີ້ຂອງ DocType: Workflow,Transitions,ຕຣາການປ່ຽນແປງ apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,ເອົາ {0} ແລະລຶບຂໍ້ມູນທັງຫມົດ? @@ -1307,9 +1308,8 @@ DocType: User,Login After,ເຂົ້າສູ່ລະບົບຫລັງຈ DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ການພິມ DocType: Workflow State,thumbs-up,ຍົກໂປ້ -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ setup. ກະລຸນາສ້າງບັນຊີຜູ້ໃຊ້ອີເມວຈາກ Setup> Email> ບັນຊີອີເມວ DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision ຄວນຈະມີລະຫວ່າງ 1 ແລະ 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision ຄວນຈະມີລະຫວ່າງ 1 ແລະ 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ແລະ DocType: Error Snapshot,Frames,ກອບ @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,Link Image DocType: Auto Email Report,Report Filters,ການກັ່ນຕອງບົດລາຍງານ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ໃນປັດຈຸບັນ DocType: Workflow State,step-backward,ຂັ້ນຕອນທີກັບຄືນ -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,ກະລຸນາຕັ້ງຕົວທີ່ໃຊ້ໃນການເຂົ້າເຖິງ Dropbox ໃນ config ເວັບໄຊຂອງທ່ານ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ລຶບບັນທຶກນີ້ຈະອະນຸຍາດໃຫ້ສົ່ງໄປຫາທີ່ຢູ່ອີເມວນີ້ apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,ພຽງແຕ່ຕ້ອງໃສ່ຂໍ້ມູນທີ່ຈໍາເປັນສໍາລັບການບັນທຶກໃຫມ່. ທ່ານສາມາດລຶບຖັນທີ່ບໍ່ແມ່ນການບັງຄັບຖ້າຫາກວ່າທ່ານຕ້ອງການ. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,ແມ່ນ Folder Attachments apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,ຂະຫຍາຍທັງຫມົດ apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,ເຂົ້າລະບົບ id ຈິງທີ່ຕ້ອງການ. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re: ເປີດ -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,ທ່ານໄດ້ຍົກເລີກການຊໍາລະເງິນ -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ກະລຸນາເລືອກເອົາໄຟລ໌ csv ທີ່ຖືກຕ້ອງກັບຂໍ້ມູນ +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ກະລຸນາເລືອກເອົາໄຟລ໌ csv ທີ່ຖືກຕ້ອງກັບຂໍ້ມູນ apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ຫະປະຊາຊາດຮ່ວມກັນຕາມເອກກະສານນີ້ກັບ {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,ການປ່ຽນແປງສະຖານະເອກະສານຈາກ {0} ກັບ {1} ບໍ່ໄດ້ຮັບອະນຸຍາດ DocType: DocType,"Make ""name"" searchable in Global Search",ເຮັດໃຫ້ "ຊື່" ຄົ້ນຫາໃນ Search Global @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ມ DocType: Help Category,Help Category,ການຊ່ວຍເຫຼືອປະເພດ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ຜູ້ໃຊ້ {0} ເປັນຄົນພິການ apps/frappe/frappe/www/404.html +8,Page missing or moved,ຫນ້າທີ່ຂາດຫາຍໄປຫຼືຍ້າຍ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,ດັດແກ້ {0} ຄຸນສົມບັດ DocType: DocType,Route,ເສັ້ນທາງ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ຕັ້ງຄ່າເກດເວຊໍາລະເງິນ DocType: DocField,Name,ຊື່ @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ຄົ້ນຫາເອກະສານໄດ້ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ຄົ້ນຫາເອກະສານໄດ້ DocType: OAuth Authorization Code,Valid,ຖືກຕ້ອງ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,ເປີດການເຊື່ອມຕໍ່ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ພາສາຂອງທ່ານ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ເປີດການເຊື່ອມຕໍ່ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ພາສາຂອງທ່ານ apps/frappe/frappe/desk/form/load.py +46,Did not load,ບໍ່ໄດ້ໂຫລດ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ເພີ່ມແຖວ DocType: Tag Category,Doctypes,DOCTYPE @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,ແມ່ນ DocType: Address,Lakshadweep Islands,ຫມູ່ເກາະ Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,ສາມາດຂຽນ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","ເອກະສານສະເພາະໃດຫນຶ່ງ, ເຊັ່ນ: ການໃບເກັບເງິນ, ບໍ່ຄວນມີການປ່ຽນແປງຄັ້ງສຸດທ້າຍເມື່ອ. ລັດສຸດທ້າຍສໍາລັບເອກະສານດັ່ງກ່າວໄດ້ຖືກເອີ້ນວ່າສະ. ທ່ານສາມາດຈໍາກັດການທີ່ພາລະບົດບາດສາມາດຍື່ນສະເຫນີການ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ສົ່ງອອກລາຍງານນີ້ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ສົ່ງອອກລາຍງານນີ້ apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ລາຍການທີ່ເລືອກ DocType: Newsletter,Test Email Address,ການທົດສອບທີ່ຢູ່ອີເມວ DocType: ToDo,Sender,ຜູ້ສົ່ງ @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,ການນໍາເຂົ້າສະນີ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID ເອກະສານ DocType: Print Settings,Letter,ຈົດຫມາຍສະບັບ -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,ພາກສະຫນາມຮູບພາບຈະຕ້ອງປະເພດຄັດຕິດຮູບພາບ +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,ພາກສະຫນາມຮູບພາບຈະຕ້ອງປະເພດຄັດຕິດຮູບພາບ DocType: DocField,Columns,ຄໍລໍາ DocType: Async Task,Succeeded,ສົບຄວາມສໍາເລັດ apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},ໃສ່ຂໍ້ມູນທີ່ຕ້ອງການໃນ {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,ບັນນາທິການຂໍ້ຄວາ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,ການຕັ້ງຄ່າສໍາລັບການກ່ຽວກັບພວກເຮົາ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,ດັດແກ້ HTML Custom DocType: Error Snapshot,Error Snapshot,Snapshot Error -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ໃນ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ໃນ DocType: Email Alert,Value Change,ການປ່ຽນແປງມູນຄ່າ DocType: Standard Reply,Standard Reply,ມາດຕະຖານ Reply apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,width ຂອງປ່ອງຂອງການປ້ອນຂໍ້ມູນ @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ການນໍາໃຊ້ fieldname ນີ້ເພື່ອສ້າງຫົວຂໍ້ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Email ຈາກ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,ເຊີນມາເປັນຜູ້ໃຊ້ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,ເລືອກ Attachments +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,ເລືອກ Attachments apps/frappe/frappe/model/naming.py +94, for {0},{0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,ມີຄວາມຜິດພາດໄດ້. ກະລຸນາລາຍງານນີ້. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ພິມເອກະສານນີ້ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ພິມເອກະສານນີ້ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,ກະລຸນາຕັ້ງຄ່າການກັ່ນຕອງໃນຕາຕະລາງລາຍງານ Filter. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,ບົດລາຍງານກໍາລັງໂຫລດ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ບົດລາຍງານກໍາລັງໂຫລດ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ການສະຫມັກຂອງທ່ານຈະຫມົດອາຍຸໃນມື້ນີ້. DocType: Page,Standard,ມາດຕະຖານ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ຄັດຕິດເອກະສານ @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ການຂະຫຍາຍລະດັບພາກພື້ນ DocType: LDAP Settings,Base Distinguished Name (DN),ຖານຊື່ເພາະ (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ອອກຈາກການສົນທະນານີ້ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ທາງເລືອກໃນການໄດ້ກໍານົດສໍາລັບການພາກສະຫນາມການເຊື່ອມຕໍ່ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ທາງເລືອກໃນການໄດ້ກໍານົດສໍາລັບການພາກສະຫນາມການເຊື່ອມຕໍ່ {0} DocType: Customize Form,"Must be of type ""Attach Image""",ຈະຕ້ອງເປັນຂອງປະເພດ "ຄັດຕິດຮູບພາບ" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ຍົກເລີກທັງຫມົດ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ທ່ານບໍ່ສາມາດລ້າງ 'ອ່ານພຽງແຕ່ສໍາລັບພາກສະຫນາມ {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,ຫມາຍເຫດ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,ບົດລາຍງານຄວາມຜິດພາດ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,ເງື່ອນໄຂຂໍ້ສະເຫນີແນະບໍ່ກົງກັນ -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,ພາກສະຫນາມກໍານົດເວລາຕ້ອງເປັນ fieldname ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,ພາກສະຫນາມກໍານົດເວລາຕ້ອງເປັນ fieldname ຖືກຕ້ອງ DocType: Currency,Symbol,ສັນຍາລັກ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,"ຕິດຕໍ່ກັນ, {0}:" +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,"ຕິດຕໍ່ກັນ, {0}:" apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,ລະຫັດຜ່ານໃຫມ່ໄດ້ສົ່ງອີເມວ apps/frappe/frappe/auth.py +245,Login not allowed at this time,ເຂົ້າສູ່ລະບົບບໍ່ອະນຸຍາດໃຫ້ຢູ່ໃນເວລານີ້ DocType: Email Account,Email Sync Option,Email Option Sync @@ -1581,7 +1579,7 @@ DocType: DocField,Text,ຂໍ້ຄວາມ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,ມາດຕະຖານຕອບຕໍ່ການສອບຖາມທົ່ວໄປ. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,ມາດຕະຖານການສົ່ງ DocType: Workflow State,volume-off,ປະລິມານໄປ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},ຖືກໃຈໂດຍ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},ຖືກໃຈໂດຍ {0} DocType: Footer Item,Footer Item,footer Item ,Download Backups,ຮອງດາວໂຫລດ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ຫນ້າທໍາອິດ / ການທົດສອບ Folder 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,ຂໍ້ຄວາມຈັດ apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ຊື່ບໍ່ສາມາດປະກອບດ້ວຍລັກສະນະພິເສດເຊັ່ນ: {0} DocType: Contact Us Settings,Forward To Email Address,ຕໍ່ໄປທີ່ຢູ່ອີເມວ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ສະແດງໃຫ້ເຫັນຂໍ້ມູນທັງຫມົດ -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,ພາກສະຫນາມຫົວຂໍ້ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,ພາກສະຫນາມຫົວຂໍ້ຈະຕ້ອງເປັນ fieldname ຖືກຕ້ອງ apps/frappe/frappe/config/core.py +7,Documents,ເອກະສານ DocType: Email Flag Queue,Is Completed,ແມ່ນສໍາເລັດ apps/frappe/frappe/www/me.html +22,Edit Profile,ດັດແກ້ຂໍ້ມູນ @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",ພາກສະຫນາມນີ້ຈະໄປປາກົດພຽງແຕ່ຖ້າວ່າ fieldname ທີ່ກໍາຫນົດໄວ້ທີ່ນີ້ມີມູນຄ່າ OR ກົດລະບຽບແມ່ນຄວາມຈິງ (ຕົວຢ່າງ): myfield eval: doc.myfield == 'ຄ່າຂອງຂ້າພະເຈົ້າ' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ໃນມື້ນີ້ -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ໃນມື້ນີ້ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ໃນມື້ນີ້ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ໃນມື້ນີ້ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ເມື່ອໃດທີ່ທ່ານໄດ້ກໍານົດໄວ້ນີ້, ຜູ້ໃຊ້ພຽງແຕ່ຈະເປັນເອກະສານການເຂົ້າເຖິງສາມາດ (ຕົວຢ່າງ:. Blog Post) ທີ່ເຊື່ອມຕໍ່ຢູ່ (ຕົວຢ່າງ:. Blogger)." DocType: Error Log,Log of Scheduler Errors,ເຂົ້າສູ່ລະບົບຂອງຄວາມຜິດພາດທີ່ Scheduler DocType: User,Bio,Bio @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ດາວເປັນຕ່ໍາສຸດແລະ 5 ດາວເປັນອັນດັບສູງສຸດ DocType: Event,Ref Name,ຊື່ Ref DocType: Web Page,Center,Center +DocType: Email Alert,Value To Be Set,ມູນຄ່າທີ່ຕ້ອງການກໍານົດ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,ລະດັບທໍາອິດ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ເປັນຕົວແທນປະເທດອະນຸຍາດໃຫ້ຢູ່ໃນເອກະສານແລະພາລະບົດບາດການມອບຫມາຍໃຫ້ມີການປ່ຽນແປງລັດ. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,ໃນແບບຟອມການໂຫຼດຫນ້າຈໍຄືນ @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,ມີ Web ເບິ່ງ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ຊື່ DocType ຂອງຄວນຈະເລີ່ມຕົ້ນດ້ວຍຕົວອັກສອນແລະມັນພຽງແຕ່ສາມາດປະກອບດ້ວຍຕົວອັກສອນ, ຈໍານວນ, ສະຖານທີ່ແລະຂີດ" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,ຂໍ Integration -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,ທີ່ຮັກແພງ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,ທີ່ຮັກແພງ DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,ບັນຊີຜູ້ໃຊ້ DocType: Web Page,HTML for header section. Optional,HTML ສໍາລັບພາກສ່ວນຫົວ. ຖ້າຕ້ອງການ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ຄຸນນະສົມບັດນີ້ເປັນຖ່ານກ້ອນໃຫມ່ແລະຍັງເປັນການທົດລອງ -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,ສູງສຸດ {0} ແຖວເກັດທີ່ຢູ່ອະນຸຍາດໃຫ້ +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,ສູງສຸດ {0} ແຖວເກັດທີ່ຢູ່ອະນຸຍາດໃຫ້ DocType: Email Unsubscribe,Global Unsubscribe,ຍົກເລີກ Global apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ນີ້ເປັນລະຫັດຜ່ານທົ່ວໄປຫຼາຍ. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,View DocType: Communication,Assigned,ໄດ້ຮັບມອບຫມາຍ DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,ເລືອກຮູບແບບພິມ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ເລືອກຮູບແບບພິມ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ຮູບແບບແປ້ນພິມສັ້ນມີຄວາມສະດວກໃນການຮີດ DocType: Portal Settings,Portal Menu,ເມນູສະບັບພິມໄດ້ apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,ຄວາມຍາວຂອງ {0} ຄວນຈະມີລະຫວ່າງ 1 ແລະ 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ຜູ້ໃຊ້ບໍ່ສາມາດຄົ້ນຫາ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format Output ທີ່ບໍ່ຖືກຕ້ອງ DocType: Custom DocPerm,Apply this rule if the User is the Owner,ໃຊ້ກົດລະບຽບນີ້ຖ້າຫາກວ່າຜູ້ໃຊ້ທີ່ເປັນເຈົ້າຂອງໄດ້ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,ຈະ ID ເຂົ້າສູ່ລະບົບຂອງທ່ານ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,ຈະ ID ເຂົ້າສູ່ລະບົບຂອງທ່ານ apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,ການກໍ່ສ້າງ Report DocType: Note,Notify users with a popup when they log in,ແຈ້ງໃຫ້ຜູ້ໃຊ້ທີ່ມີນິຍົມໃນເວລາທີ່ພວກເຂົາເຈົ້າເຂົ້າສູ່ລະບົບ apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ບໍ່ມີ, ເລືອກເປົ້າຫມາຍໃຫມ່ໃນການຜະສານ" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,ພາລະບົ apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,ການປັບປຸງ DocType: Error Snapshot,Snapshot View,ພາບບັນທຶກເບິ່ງ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ກະລຸນາຊ່ວຍປະຢັດ Newsletter ກ່ອນທີ່ຈະສົ່ງ -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ທາງເລືອກໃນການຈະຕ້ອງເປັນ DocType ຖືກຕ້ອງສໍາລັບພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ປີ (s) ກ່ອນຫນ້ານີ້ +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ທາງເລືອກໃນການຈະຕ້ອງເປັນ DocType ຖືກຕ້ອງສໍາລັບພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ດັດແກ້ຄຸນສົມບັດ DocType: Patch Log,List of patches executed,ບັນຊີລາຍຊື່ຂອງການເພີ້ມປະຕິບັດ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ຍົກເລີກແລ້ວ -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ການສື່ສານຂະຫນາດກາງ +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ການສື່ສານຂະຫນາດກາງ DocType: Website Settings,Banner HTML,ປ້າຍໂຄສະນາ HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',ກະລຸນາເລືອກວິທີການຊໍາລະເງິນອື່ນ. Razorpay ບໍ່ສະຫນັບສະຫນູນທຸລະກໍາໃນສະກຸນເງິນ '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,ຄິວສໍາລັບການສໍາຮອງຂໍ້ມູນ. ມັນອາດຈະໃຊ້ເວລາສອງສາມນາທີເພື່ອຊົ່ວໂມງ. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,ລົງທະບຽນ OAuth App Client -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ບໍ່ສາມາດຈະ "{2}". ມັນຄວນຈະເປັນຫນຶ່ງຂອງການ "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ບໍ່ສາມາດຈະ "{2}". ມັນຄວນຈະເປັນຫນຶ່ງຂອງການ "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ຫຼື {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,ສະແດງໃຫ້ເຫັນຫຼືຊ່ອນໄອຄອນ Desktop apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,ປັບປຸງລະຫັດຜ່ານ @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,ສະແດງໃຫ້ເຫັນ Line ພັກຜ່ອນຫຼັງຈາກພາກສ່ວນ DocType: Blogger,Short Name,ຊື່ສັ້ນ apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},ຫນ້າ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","ເຈົ້າຍັງບໍ່ໄດ້ເລືອກ Option Sync ເປັນ ALL, ມັນຈະ resync ທັງຫມົດ \ ອ່ານເຊັ່ນດຽວກັນກັບຂໍ້ຄວາມຍັງບໍ່ໄດ້ອ່ານຈາກເຄື່ອງແມ່ຂ່າຍ. ນີ້ອາດເຮັດໃຫ້ເກີດຄວາມຊ້ໍາ \ ຄົມມະນາຄົມ (ອີ)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ຂະຫນາດໄຟ @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,ຜູ້ຈັດການຊື້ DocType: Custom Script,Sample,ຕົວຢ່າງ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Tags DocType: Event,Every Week,ທຸກອາທິດ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ບັນຊີອີເມວບໍ່ setup. ກະລຸນາສ້າງບັນຊີຜູ້ໃຊ້ອີເມວຈາກ Setup> Email> ບັນຊີອີເມວ apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ຄລິກທີ່ນີ້ເພື່ອກວດກາເບິ່ງການນໍາໃຊ້ຂອງທ່ານຫຼືຍົກລະດັບກັບແຜນການທີ່ສູງຂຶ້ນ DocType: Custom Field,Is Mandatory Field,ແມ່ນພາກສະຫນາມບັງຄັບ DocType: User,Website User,ຜູ້ໃຊ້ເວັບໄຊທ໌ @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,ລາຍການລູກຄ້າ Sidebar DocType: Workflow State,pencil,pencil apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,ສົນທະນາຂໍ້ຄວາມແລະການແຈ້ງເຕືອນອື່ນໆ. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},ສະແດງກິ່ງງ່າຫຼັງຈາກທີ່ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນ {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},ສະແດງກິ່ງງ່າຫຼັງຈາກທີ່ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນ {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} ກັບ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ການຕັ້ງຄ່າບັນຊີອີເມວກະລຸນາໃສ່ລະຫັດຜ່ານຂອງທ່ານສໍາລັບການ: DocType: Workflow State,hand-up,ມືຂຶ້ນ DocType: Blog Settings,Writers Introduction,ການນໍາສະເຫນີນັກຂຽນ DocType: Address,Phone,ໂທລະສັບ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ຄວາມຜິດພາດໃນຂະນະທີ່ການປະເມີນ Email Alert {0}. ກະລຸນາແກ້ໄຂແບບຂອງທ່ານ. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ຄວາມຜິດພາດໃນຂະນະທີ່ການປະເມີນ Email Alert {0}. ກະລຸນາແກ້ໄຂແບບຂອງທ່ານ. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ເລືອກປະເພດເອກະສານຫຼືພາລະບົດບາດທີ່ຈະເລີ່ມຕົ້ນ. DocType: Contact,Passive,ຕົວຕັ້ງຕົວຕີ DocType: Contact,Accounts Manager,ຄຸ້ມຄອງບັນຊີ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,ການຊໍາລະເງິນຂອງທ່ານໄດ້ຖືກຍົກເລີກ. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ເລືອກປະເພດເອກະສານ DocType: Help Article,Knowledge Base Editor,ຄວາມຮູ້ບັນນາທິການຖານ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ບໍ່ພົບວ່າຫນ້າ @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,ປະເພດຊັບສິນ DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ພຽງແຕ່ຜູ້ບໍລິຫານສາມາດຊ່ວຍປະຢັດບົດລາຍງານມາດຕະຖານ. ກະລຸນາປ່ຽນຊື່ແລະປະຢັດ. DocType: System Settings,Background Workers,ພະນັກງານພື້ນຖານ +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,fieldName {0} ຂັດແຍ່ງກັບວັດຖຸ meta DocType: Deleted Document,Data,ຂໍ້ມູນ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ສະຖານະເອກະສານ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ທ່ານໄດ້ເຮັດ {0} ຂອງ {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,ການອະນຸຍາດສະແດງໃຫ້ເຫັນຜູ້ໃຊ້ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,ທ່ານຈໍາເປັນຕ້ອງເຂົ້າສູ່ລະບົບແລະມີການຄຸ້ມຄອງລະບົບພາລະບົດບາດເພື່ອໃຫ້ສາມາດເຂົ້າເຖິງສໍາຮອງຂໍ້ມູນ. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ສ່ວນທີ່ຍັງເຫຼືອ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ຈະຕິດຄັດ. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ຈະຕິດຄັດ. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ເພີ່ມ {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ຫົວຂໍ້ໄວ້ໃນຕອນຕົ້ນແມ່ນໄດ້ກໍານົດໃນ {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype ບໍ່ສາມາດໄດ້ຮັບການປ່ຽນແປງຈາກ {0} ກັບ {1} ຕິດຕໍ່ກັນ {2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ກອງ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ກອງປະຊຸມເລີ່ມຕົ້ນລົ້ມເຫລວ apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ອີເມວນີ້ຖືກສົ່ງໄປທີ່ {0} ແລະຄັດລອກໄປທີ່ {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,ກະລຸນາ Account ໃນຕອນຕົ້ນການຕິດຕັ້ງອີເມວຈາກ Setup> Email> ບັນຊີອີເມວ -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ສ້າງໃຫມ່ {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ສ້າງໃຫມ່ {0} DocType: Email Rule,Is Spam,ແມ່ນ Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},ບົດລາຍງານ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ເປີດ {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ເປີດ {0} DocType: OAuth Client,Default Redirect URI,ມາດຕະຖານການໂອນຫນ້າ URI DocType: Email Alert,Recipients,ຜູ້ຮັບ DocType: Workflow State,ok-sign,"ok, ອາການ" @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,ບົດຄວາມການຊ່ວຍເຫຼືອ ,Modules Setup,ການຕິດຕັ້ງໂມດູນ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ປະເພດ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,ການຊໍາລະເງິນຂອງທ່ານໄດ້ພົບຄວາມລົ້ມເຫຼວ. DocType: Communication,Unshared,Unshared DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module ບໍ່ພົບ @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,ຍີ່ຫໍ້ Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ການຕິດຕັ້ງຂອງແຖບນໍາທິດທາງເທີງ, footer ແລະ logo." DocType: Web Form Field,Max Value,ມູນຄ່າສູງສຸດທີ່ເຄຍ -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{0} ຢູ່ໃນລະດັບ {1} ໃນ {2} ຕິດຕໍ່ກັນ {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{0} ຢູ່ໃນລະດັບ {1} ໃນ {2} ຕິດຕໍ່ກັນ {3} DocType: Contact,All,ທັງຫມົດ DocType: Email Queue,Recipient,ຜູ້ຮັບ DocType: Communication,Has Attachment,ມີ Attachment @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,ຈັດຂວາ DocType: Auto Email Report,Email To,Email ການ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ໂຟນເດີ {0} ບໍ່ຫວ່າງ DocType: Page,Roles,ພາລະບົດບາດ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ພາກສະຫນາມ {0} ບໍ່ແມ່ນການຄັດເລືອກ. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Error: ມູນຄ່າຫາຍໃນລາຄາ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ພາກສະຫນາມ {0} ບໍ່ແມ່ນການຄັດເລືອກ. DocType: System Settings,Session Expiry,ກອງປະຊຸມສຸດການຈໍາຫນ່າຍ DocType: Workflow State,ban-circle,ການເກືອດຫ້າມການແຜ່ນປ້າຍວົງກົມ DocType: Email Flag Queue,Unread,ຍັງບໍ່ໄດ້ອ່ານ @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ຄ່າເລີ່ມຕົ້ນຂອງຜູ້ໃຊ້ apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,ສ້າງໃຫມ່ DocType: Workflow State,chevron-down,ວົງຢືມຊ້ອນລົງ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email ບໍ່ໄດ້ສົ່ງໄປທີ່ {0} (ຍົກເລີກ / ຄົນພິການ) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email ບໍ່ໄດ້ສົ່ງໄປທີ່ {0} (ຍົກເລີກ / ຄົນພິການ) DocType: Async Task,Traceback,traceback DocType: Currency,Smallest Currency Fraction Value,ຂະຫນາດນ້ອຍສຸດມູນຄ່າເສດສ່ວນສະກຸນເງິນ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ການມອບຫມາຍໃຫ້ @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,ຈາກ DocType: Website Theme,Google Font (Heading),ກູໂກ Font (Heading) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,ເລືອກ node ກຸ່ມທໍາອິດ. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},ຊອກຫາ {0} ໃນ {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},ຊອກຫາ {0} ໃນ {1} DocType: OAuth Client,Implicit,ໄນ DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","ເພີ່ມເຕີມການສື່ສານຕໍ່ຕ້ານ DocType ນີ້ (ຕ້ອງມີນາ, "ສະຖານະ", "ຫົວເລື່ອງ")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs ສໍາລັບການໄດ້ຮັບລະຫັດການອະນຸຍາດເມື່ອຜູ້ໃຊ້ອະນຸຍາດໃຫ້ເຂົ້າເຖິງ, ເຊັ່ນດຽວກັນກັບການຕອບສະຫນອງຄວາມລົ້ມເຫຼວ. ໂດຍປົກກະຕິເປັນ endpoint ພັກຜ່ອນສໍາຜັດໂດຍ App ລູກຄ້າ.
ຕົວຢ່າງ: http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,ບໍ່ອະນຸຍາດໃຫ້ມີການປ່ຽນແປງ {0} ຫຼັງຈາກການຍື່ນສະເຫນີ +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,ບໍ່ອະນຸຍາດໃຫ້ມີການປ່ຽນແປງ {0} ຫຼັງຈາກການຍື່ນສະເຫນີ DocType: Communication,Comment Type,ປະເພດຄໍາຄິດຄໍາເຫັນ DocType: OAuth Client,OAuth Client,Client OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ຜູ້ຊົມໃຊ້ @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,ຂໍ້ມູນການກັ່ນຕອງ DocType: Auto Email Report,Filter Data,ຂໍ້ມູນການກັ່ນຕອງ apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ຕື່ມການໂຄດຄໍາສັ່ງ -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,ກະລຸນາຄັດຕິດເອກະສານເປັນຄັ້ງທໍາອິດ. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ກະລຸນາຄັດຕິດເອກະສານເປັນຄັ້ງທໍາອິດ. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","ມີບາງຄວາມຜິດພາດການຕັ້ງຄ່າຊື່ໄດ້, ກະລຸນາຕິດຕໍ່ຜູ້ບໍລິຫານ" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ບັນຊີອີເມວເຂົ້າມາບໍ່ຖືກຕ້ອງ apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,ສົ່ງອີເມວ DocType: DocField,Ignore XSS Filter,ບໍ່ສົນໃຈ XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ການໂຍກຍ້າຍອອກ apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ການຕັ້ງຄ່າສໍາຮອງຂໍ້ມູນ Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ສົ່ງອີເມລ໌ +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ສົ່ງອີເມລ໌ DocType: Website Theme,Link Color,ສີເຊື່ອມຕໍ່ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ຜູ້ໃຊ້ {0} ບໍ່ສາມາດໄດ້ຮັບການພິ apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","ຮັກ System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ປະເທດຂອງເຈົ້າ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ປະເທດຂອງເຈົ້າ DocType: Event,Sunday,ວັນອາທິດ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ໃນຕາລາງ DocType: Address Template,Template,ແມ່ແບບ @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,ການຕັ້ງຄ່າ LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,ສະບັບປັບປຸງ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,ການຕັ້ງຄ່າຕູການຈ່າຍເງິນ PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ຈະໄດ້ຮັບການຕັດ, ເປັນລັກສະນະນ້ໍາອະນຸຍາດໃຫ້ເປັນ {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) ຈະໄດ້ຮັບການຕັດ, ເປັນລັກສະນະນ້ໍາອະນຸຍາດໃຫ້ເປັນ {2}" DocType: OAuth Client,Resource Owner Password Credentials,ຊັບພະຍາກອນເຈົ້າຂອງຫນັງສືຮັບຮອງລະຫັດຜ່ານ DocType: OAuth Client,Response Type,ປະເພດໃນການຕອບໂຕ້ apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,ຜູ້ໃຊ້ນ້ໍາ @@ -2070,7 +2074,7 @@ DocType: DocField,Table,ຕາຕະລາງ DocType: File,File Size,ຂະຫນາດໄຟ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,ທ່ານຕ້ອງເຂົ້າສູ່ລະບົບການສົ່ງແບບຟອມນີ້ DocType: User,Background Image,ຄວາມເປັນມາຮູບພາບ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","ເລືອກປະເທດຂອງທ່ານ, ເຂດທີ່ໃຊ້ເວລາແລະສະກຸນເງິນ" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","ເລືອກປະເທດຂອງທ່ານ, ເຂດທີ່ໃຊ້ເວລາແລະສະກຸນເງິນ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ລະຫວ່າງ DocType: Async Task,Queued,ຄິວ @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,ສ້າງ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},ເຄື່ອງດື່ມ: {0} DocType: Email Account,no failed attempts,ຄວາມພະຍາຍາມທີ່ບໍ່ມີສົບຜົນສໍາເລັດ +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No ແມ່ແບບທີ່ຢູ່ໃນຕອນຕົ້ນພົບ. ກະລຸນາສ້າງບັນຊີໃຫມ່ຈາກ Setup> ພິມແລະຍີ່ຫໍ້> Template ຢູ່. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,ການເຂົ້າເຖິງ Token @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub Username DocType: DocType,Image View,ຮູບພາບເບິ່ງ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ຄ້າຍຄືບາງສິ່ງບາງຢ່າງເອງເຮັດຜິດພາດໃນໄລຍະການໄດ້. ນັບຕັ້ງແຕ່ພວກເຮົາຍັງບໍ່ທັນໄດ້ຮັບການຢັ້ງຢືນການຊໍາລະເງິນ, Paypal ອັດຕະໂນມັດຈະຄືນເງິນຈໍານວນນີ້. ຖ້າຫາກວ່າມັນບໍ່ໄດ້, ກະລຸນາສົ່ງໃຫ້ພວກເຮົາອີເມວແລະລະບຸ ID ພັນໄດ້:. {0}" -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","ລວມສັນຍາລັກ, ຕົວເລກແລະຕົວອັກສອນນະຄອນຫຼວງໃນລະຫັດຜ່ານ" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ສະແດງກິ່ງງ່າຫຼັງຈາກພາກສະຫນາມ '{0}' ທີ່ໄດ້ກ່າວມາໃນພາກສະຫນາມ Custom '{1}, ມີປ້າຍ' {2} ', ບໍ່ມີ" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","ລວມສັນຍາລັກ, ຕົວເລກແລະຕົວອັກສອນນະຄອນຫຼວງໃນລະຫັດຜ່ານ" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ສະແດງກິ່ງງ່າຫຼັງຈາກພາກສະຫນາມ '{0}' ທີ່ໄດ້ກ່າວມາໃນພາກສະຫນາມ Custom '{1}, ມີປ້າຍ' {2} ', ບໍ່ມີ" DocType: Workflow State,signal,ສັນຍານ DocType: DocType,Show Print First,ສະແດງພິມຄັ້ງທໍາອິດ apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + ກະລຸນາໃສ່ເພື່ອ @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' ບໍ່ໄດ້ພົບເຫັນ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ເອົາ Section DocType: User,Change Password,ປ່ຽນລະຫັດຜ່ານ -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email ບໍ່ຖືກຕ້ອງ: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ສະບາຍດີ! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email ບໍ່ຖືກຕ້ອງ: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ສະບາຍດີ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ໃນຕອນທ້າຍກິດຈະກໍາຈະຕ້ອງໄດ້ຮັບຫຼັງຈາກການເລີ່ມຕົ້ນ apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},ທ່ານບໍ່ມີການອະນຸຍາດເພື່ອໃຫ້ໄດ້ຮັບບົດລາຍງານກ່ຽວກັບການ: {0} +DocType: System Settings,Apply Strict User Permissions,ສະຫມັກຂໍເອົາການອະນຸຍາດຜູ້ໃຊ້ຢ່າງເຂັ້ມງວດ DocType: DocField,Allow Bulk Edit,ອະນຸຍາດໃຫ້ແກ້ໄຂຈໍານວນຫລາຍ DocType: DocField,Allow Bulk Edit,ອະນຸຍາດໃຫ້ແກ້ໄຂຈໍານວນຫລາຍ DocType: Blog Post,Blog Post,Post Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ການຄົ້ນຫາຂັ້ນສູງ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ການຄົ້ນຫາຂັ້ນສູງ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,ຄໍາແນະນໍາການປ່ຽນລະຫັດຜ່ານໄດ້ຖືກສົ່ງໄປຫາອີເມວຂອງທ່ານ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 ເປັນສໍາລັບການອະນຸຍາດໃນລະດັບເອກະສານ, \ ຂັ້ນເທິງເພື່ອອະນຸຍາດໃນລະດັບພາກສະຫນາມ." @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,Sidebar ແລະຄວາມຄິດເ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ໃນເວລາທີ່ທ່ານແກ້ໄຂເອກະສານຫລັງຈາກທີ່ຍົກເລີກການແລະຊ່ວຍປະຢັດມັນ, ມັນຈະໄດ້ຮັບເປັນຈໍານວນໃຫມ່ວ່າແມ່ນສະບັບຂອງຈໍານວນອາຍຸໄດ້." DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ DocType: Stripe Settings,Publishable Key,Key ຈັດພິມໄດ້ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ປີ (s) ກ່ອນຫນ້ານີ້ DocType: Workflow State,circle-arrow-left,"ແຜ່ນປ້າຍວົງກົມ, ລູກສອນຊ້າຍ" apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,ເຄື່ອງແມ່ຂ່າຍຂອງຖານຄວາມຈໍາ Redis ບໍ່ໄດ້ເຮັດວຽກ. ກະລຸນາຕິດຕໍ່ຜູ້ບໍລິຫານສະຫນັບສະຫນູນ / Tech apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,ຊື່ພັກ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ເຮັດໃຫ້ເປັນການບັນທຶກໃຫມ່ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ເຮັດໃຫ້ເປັນການບັນທຶກໃຫມ່ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ຊອກຫາ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ຊອກຫາ DocType: Currency,Fraction,ແຕ່ສ່ວນຫນຶ່ງ DocType: LDAP Settings,LDAP First Name Field,LDAP ພາກສະຫນາມຊື່ -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,ເລືອກຈາກໄຟລ໌ແນບທີ່ມີຢູ່ແລ້ວ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ເລືອກຈາກໄຟລ໌ແນບທີ່ມີຢູ່ແລ້ວ DocType: Custom Field,Field Description,ພາກສະຫນາມລາຍລະອຽດ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ຊື່ບໍ່ກໍານົດໂດຍຜ່ານການກະຕຸ້ນເຕືອນ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Inbox Email @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,ຂໍ້ມູນ: DocType: Custom Field,Permission Level,ລະດັບອະນຸຍາດ DocType: User,Send Notifications for Transactions I Follow,ສົ່ງການແຈ້ງເຕືອນສໍາລັບການຂ້າພະເຈົ້າປະຕິບັດຕາມ -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ບໍ່ສາມາດກໍານົດຍື່ນສະເຫນີການ, ຍົກເລີກ, ແກ້ໂດຍບໍ່ມີການຂຽນ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ບໍ່ສາມາດກໍານົດຍື່ນສະເຫນີການ, ຍົກເລີກ, ແກ້ໂດຍບໍ່ມີການຂຽນ" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ທ່ານວ່າທ່ານແມ່ນແນ່ໃຈວ່າຕ້ອງການລຶບການຕິດ? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ບໍ່ສາມາດລຶບຫຼືຍົກເລີກເນື່ອງຈາກວ່າ {0} {1} ຈະເຊື່ອມໂຍງກັບ {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

No ພົບ 'ຜົນ

-apps/frappe/frappe/__init__.py +1063,Thank you,ຂອບໃຈ +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ບໍ່ສາມາດລຶບຫຼືຍົກເລີກເນື່ອງຈາກວ່າ {0} {1} ຈະເຊື່ອມໂຍງກັບ {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ຂອບໃຈ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ຝາກປະຢັດ DocType: Print Settings,Print Style Preview,ພິມ Preview ແບບ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,ໃນຊີ View DocType: Email Account,Use TLS,ການນໍາໃຊ້ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,ເຂົ້າສູ່ລະບົບຫລືລະຫັດຜ່ານບໍ່ຖືກຕ້ອງ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ເພີ່ມ custom Javascript ຫາກຕ້ອງການຮູບແບບ. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr No +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr No ,Role Permissions Manager,ຜູ້ຈັດການພາລະບົດບາດການອະນຸຍາດ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ຊື່ຂອງຮູບແບບພິມໃຫມ່ -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Attachment ຈະແຈ້ງ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Attachment ຈະແຈ້ງ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,ບັງຄັບ: ,User Permissions Manager,ຜູ້ຈັດການການອະນຸຍາດຜູ້ໃຊ້ DocType: Property Setter,New value to be set,ມູນຄ່າໃຫມ່ທີ່ຈະກໍານົດ @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 days apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ປະເພດຂໍ້ຄວາມ blog. DocType: Workflow State,Time,ທີ່ໃຊ້ເວລາ DocType: DocField,Attach,ຄັດຕິດ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ບໍ່ແມ່ນຮູບແບບ fieldname ຖືກຕ້ອງ. ມັນຄວນຈະເປັນ {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ບໍ່ແມ່ນຮູບແບບ fieldname ຖືກຕ້ອງ. ມັນຄວນຈະເປັນ {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ສົ່ງຄວາມຄິດເຫັນຂໍພຽງແຕ່ຖ້າວ່າບໍ່ມີຢ່າງຫນ້ອຍຫນຶ່ງການສື່ສານສາມາດໃຊ້ສໍາລັບເອກະສານ. DocType: Custom Role,Permission Rules,ກົດລະບຽບການອະນຸຍາດ DocType: GSuite Settings,GSuite Settings,Settings GSuite DocType: Address,Links,ການເຊື່ອມຕໍ່ -apps/frappe/frappe/model/base_document.py +428,Value missing for,ຄ່າທີ່ຂາດຫາຍໄປສໍາລັບການ +apps/frappe/frappe/model/base_document.py +427,Value missing for,ຄ່າທີ່ຂາດຫາຍໄປສໍາລັບການ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,ເພີ່ມເດັກ -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ບັນທຶກສະບໍ່ສາມາດໄດ້ຮັບການລຶບ. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ບັນທຶກສະບໍ່ສາມາດໄດ້ຮັບການລຶບ. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup ຂະຫນາດ DocType: GSuite Templates,Template Name,ຊື່ສິນຄ້າ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ປະເພດໃຫມ່ຂອງເອກະສານ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ປະເພດໃຫມ່ຂອງເອກະສານ DocType: Custom DocPerm,Read,ອ່ານ DocType: Role Permission for Page and Report,Role Permission for Page and Report,ການອະນຸຍາດພາລະບົດບາດສໍາລັບການຫນ້າແລະບົດລາຍງານ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,ວາງຄ່າ apps/frappe/frappe/www/update-password.html +14,Old Password,ລະຫັດຜ່ານເກົ່າ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},ກະທູ້ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ກະທູ້ {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ກັບຄໍລໍາຮູບແບບ, ໃຫ້ປ້າຍຊື່ຄໍລໍາໃນການສອບຖາມ." DocType: Has Domain,Has Domain,ມີ Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ບໍ່ມີບັນຊີຢູ່ແລ້ວ? ລົງທະບຽນ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດແກ້ໄຂຖ້າຫາກວ່າບໍ່ສົ່ງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: ບໍ່ສາມາດຕັ້ງຄ່າກໍາຫນົດແກ້ໄຂຖ້າຫາກວ່າບໍ່ສົ່ງ DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,ການອະນຸຍາດແກ້ໄຂພາລະບົດບາດ DocType: Communication,Link DocType,ການເຊື່ອມຕໍ່ DocType @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,ກະລຸນາຮັບປະກັນວ່າຂໍ້ມູນຂອງທ່ານມີທີ່ຢູ່ອີເມວ apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ເຊື່ອໃນຮູບແບບນີ້. ກະລຸນາຊ່ວຍປະຢັດກ່ອນທີ່ທ່ານຈະດໍາເນີນການຕໍ່. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,ມາດຕະຖານສໍາລັບການ {0} ຕ້ອງຈະມີທາງເລືອກ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,ມາດຕະຖານສໍາລັບການ {0} ຕ້ອງຈະມີທາງເລືອກ DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: User,User Image,Image User apps/frappe/frappe/email/queue.py +289,Emails are muted,ອີເມວແມ່ນ muted @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,ການ DocType: Workflow State,ok,ຕົກລົງ DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ຄຸນຄ່າເຫຼົ່ານີ້ຈະໄດ້ຮັບການປັບປຸງອັດຕະໂນມັດໃນການຄ້າຂາຍແລະຍັງຈະເປັນປະໂຫຍດໃນການຈໍາກັດການອະນຸຍາດສໍາລັບຜູ້ໃຊ້ນີ້ກ່ຽວກັບທຸລະກໍາທີ່ມີຄຸນຄ່າເຫຼົ່ານີ້. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ສໍານັກພິມ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** ບໍ່: {0} ກັບ {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ບໍ່: {0} ກັບ {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,ເລືອກບັງຄັບ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ເອີ້ນເບິ່ງ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ສົ່ງອີເມວ @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,ເຮັດວຽກ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,ຕັ້ງຄ່າລະຫັດຜ່ານ apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,ກະລຸນາຍົກລະດັບການເພີ່ມຫຼາຍກ່ວາ {0} ສະຫມາຊິກ DocType: Workflow State,hand-left,ມືຊ້າຍ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ສໍາລັບ {1} ບໍ່ສາມາດເປັນເອກະລັກ +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} ສໍາລັບ {1} ບໍ່ສາມາດເປັນເອກະລັກ DocType: Email Account,Use SSL,ການນໍາໃຊ້ SSL DocType: Workflow State,play-circle,ສໍາລັບການຫຼິ້ນແຜ່ນປ້າຍວົງກົມ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,ເລືອກຮູບແບບການພິມການແກ້ໄຂ @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,ບໍ່ມີສໍາເນົາ DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,ເຂົ້າສູ່ລະບົບການເຮັດວຽກ LDAP DocType: Web Form,Breadcrumbs,breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,ຖ້າຫາກວ່າເຈົ້າຂອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,ຖ້າຫາກວ່າເຈົ້າຂອງ DocType: OAuth Authorization Code,Expiration time,ທີ່ໃຊ້ເວລາຫມົດອາຍຸ DocType: Web Page,Website Sidebar,Sidebar ເວັບໄຊທ໌ DocType: Web Form,Show Sidebar,ສະແດງໃຫ້ເຫັນ Sidebar @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ບໍ່ສາ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,ຊື່ແລະນາມສະກຸນດ້ວຍຕົນເອງມີຄວາມສະດວກໃນການຮີດ. apps/frappe/frappe/config/website.py +93,Knowledge Base,ຄວາມຮູ້ພື້ນຖານ DocType: Workflow State,briefcase,ກະເປົາມືຖື -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ມູນຄ່າບໍ່ສາມາດໄດ້ຮັບການປ່ຽນແປງສໍາລັບ {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ມູນຄ່າບໍ່ສາມາດໄດ້ຮັບການປ່ຽນແປງສໍາລັບ {0} DocType: Feedback Request,Is Manual,ແມ່ນຄູ່ມື DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ແບບສະແດງສີປຸ່ມ: ຄວາມສໍາເລັດ - ສີຂຽວ, ອັນຕະລາຍ - ສີແດງ, ກົງກັນຂ້າມ - ສີດໍາ, ປະຖົມ - ຊ້ໍາສີຟ້າ, ຂໍ້ມູນ - ສີຟ້າອ່ອນ, ການເຕືອນໄພ - ສີສົ້ມ" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"ບໍ່ມີບົດລາຍງານເຕັມ. ກະລຸນາໃຊ້ແບບສອບຖາມ, ລາຍງານ / [Name Report] ເພື່ອດໍາເນີນການລາຍງານ." @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ຄວາມ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,ໂດຍພາລະບົດບາດ apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ໄຮ່ຫາຍ apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname ບໍ່ຖືກຕ້ອງ '{0}' ໃນ autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ຄົ້ນຫາໃນປະເພດເອກະສານ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ຄົ້ນຫາໃນປະເພດເອກະສານ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ອະນຸຍາດໃຫ້ພາກສະຫນາມທີ່ຈະຍັງຄົງສາມາດແກ້ໄຂເຖິງແມ່ນວ່າຫຼັງຈາກການຍື່ນສະເຫນີ DocType: Custom DocPerm,Role and Level,ພາລະບົດບາດແລະລະດັບ DocType: File,Thumbnail URL,URL Thumbnail @@ -2592,19 +2596,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,ຂໍ້ມູນເພີ່ມເຕີມ DocType: Desktop Icon,Desktop Icon,Icon desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ການຊໍາລະເງິນຂອງທ່ານໄດ້ຮັບການຍອມຮັບຢ່າງສໍາເລັດຜົນ +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ການຊໍາລະເງິນຂອງທ່ານໄດ້ຮັບການຍອມຮັບຢ່າງສໍາເລັດຜົນ apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,ຂໍໂທດ! ເຈົ້າຍັງບໍ່ໄດ້ອະນຸຍາດໃຫ້ເບິ່ງຫນ້ານີ້. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: ມືຖືກົດສອງຄັ້ງເພື່ອແກ້ໄຂ DocType: Workflow State,bell,ລະຄັງ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error ໃນອີເມວແຈ້ງເຕືອນ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Error ໃນອີເມວແຈ້ງເຕືອນ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ແບ່ງປັນເອກະສານນີ້ກັບ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Manager ອະນຸຍາດຜູ້ໃຊ້ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ບໍ່ສາມາດເປັນຂໍ້ໃບຍ້ອນວ່າມັນມີເດັກນ້ອຍ DocType: Communication,Info,ຂໍ້ມູນ -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,ເພີ່ມ Attachment +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,ເພີ່ມ Attachment DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,ຂໍຂອບໃຈທ່ານສໍາລັບຂໍ້ຄວາມຂອງທ່ານ -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ສົ່ງອ່ານ Receipt +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ສົ່ງອ່ານ Receipt DocType: Stripe Settings,Stripe Settings,ການຕັ້ງຄ່າເສັ້ນດ່າງ DocType: Stripe Settings,Stripe Settings,ການຕັ້ງຄ່າເສັ້ນດ່າງ DocType: Dropbox Settings,Dropbox Setup via Site Config,ຕິດຕັ້ງ Dropbox ຜ່ານເວັບໄຊ Config @@ -2671,6 +2676,7 @@ DocType: DocType,Web View,ເວັບໄຊຕ໌ View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ການເຕືອນໄພ: ຮູບແບບພິມນີ້ແມ່ນຢູ່ໃນແບບເກົ່າແລະບໍ່ສາມາດໄດ້ຮັບການສ້າງຂຶ້ນໂດຍຜ່ານ API. DocType: DocField,Print Width,Width ພິມ ,Setup Wizard,ຂອງຄວາມຍາວປາ setup +DocType: Address,GST State Number,GST ຈໍານວນ State DocType: User,Allow user to login only before this hour (0-24),ອະນຸຍາດໃຫ້ຜູ້ໃຊ້ເພື່ອເຂົ້າສູ່ລະບົບພຽງແຕ່ກ່ອນທີ່ຈະຊົ່ວໂມງນີ້ (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ໂຟນເດີແມ່ນການບັງຄັບ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2699,7 +2705,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ຂໍ້ຄວາມຂະຫນາດນ້ອຍ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator ເຂົ້າ {0} {1} ຜ່ານ IP ທີ່ຢູ່ {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,ເທົ່າກັບ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ປະເພດຂອງການພາກສະຫນາມທາງເລືອກ 'Dynamic Link' ຕ້ອງຊີ້ໃຫ້ເຫັນເຖິງການເຊື່ອມຕໍ່ພາກສະຫນາມອື່ນທີ່ມີທາງເລືອກເປັນ 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ປະເພດຂອງການພາກສະຫນາມທາງເລືອກ 'Dynamic Link' ຕ້ອງຊີ້ໃຫ້ເຫັນເຖິງການເຊື່ອມຕໍ່ພາກສະຫນາມອື່ນທີ່ມີທາງເລືອກເປັນ 'DocType' DocType: About Us Settings,Team Members Heading,ທີມງານສະມາຊິກຫົວຂໍ້ apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,ຮູບແບບ CSV ບໍ່ຖືກຕ້ອງ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ກໍານົດຈໍານວນຂອງາຮອງ @@ -2710,7 +2716,7 @@ DocType: Contact,Contact,ການຕິດຕໍ່ DocType: User,Third Party Authentication,ການກວດສອບພາກສ່ວນທີສາມ DocType: Website Settings,Banner is above the Top Menu Bar.,ປ້າຍໂຄສະນາແມ່ນຢູ່ຂ້າງເທິງເມນູບາ Top. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ບົດລາຍງານການສົ່ງອອກ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ບົດລາຍງານການສົ່ງອອກ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ບໍ່ມີ DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2733,7 +2739,7 @@ DocType: Kanban Board Column,Column Name,ຊື່: DocType: Language,Based On,ອີງຕາມ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ເຮັດໃຫ້ມາດຕະຖານ apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,ກວດສອບ URL Frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ສໍາລັບ {1} ສາມາດບໍ່ໄດ້ຮັບການຈັດດັດສະນີ +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} ສໍາລັບ {1} ສາມາດບໍ່ໄດ້ຮັບການຈັດດັດສະນີ DocType: Communication,Email Account,ບັນຊີອີເມວ DocType: Workflow State,Download,ດາວໂຫລດ DocType: Blog Post,Blog Intro,Blog Intro @@ -2744,7 +2750,7 @@ DocType: Web Page,Insert Code,ລະຫັດໃສ່ DocType: ToDo,Low,ຕ່ໍາ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,ທ່ານສາມາດເພີ່ມຄຸນສົມບັດການເຄື່ອນໄຫວຈາກເອກະສານໂດຍການນໍາໃຊ້ Jinja ແມ່ແບບ. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ກໍານົດຂອບເຂດບໍ່ຖືກຕ້ອງ {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ລາຍຊື່ປະເພດເອກະສານ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ລາຍຊື່ປະເພດເອກະສານ DocType: Event,Ref Type,Ref ປະເພດ apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ຖ້າຫາກວ່າທ່ານກໍາລັງການອັບໂຫຼດການບັນທຶກການໃຫມ່, ອອກຈາກ blank "ຊື່" (ID) ຖັນ." DocType: Address,Chattisgarh,ແຄວ້ນ CHATTIS GARH @@ -2766,26 +2772,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,ສົ່ງ Print ເປັນ PDF DocType: Web Form,Amount,ຈໍານວນ DocType: Workflow Transition,Allowed,ອະນຸຍາດໃຫ້ -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ສາມາດມີໄດ້ພຽງຫນຶ່ງເທົ່າຕົວໃນຮູບແບບ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ສາມາດມີໄດ້ພຽງຫນຶ່ງເທົ່າຕົວໃນຮູບແບບ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},ບໍ່ສາມາດຂຽນຮູບແບບເອກະສານໃນລາຄາ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,ການຟື້ນຟູທີ່ການຕັ້ງຄ່າໄວ້ໃນຕອນຕົ້ນ? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,ຫນ້າທໍາອິດທີ່ບໍ່ຖືກຕ້ອງ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,ເຂົ້າສູ່ລະບົບທີ່ບໍ່ຖືກຕ້ອງ. ລອງອີກຄັ້ງ. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ຕົວເລືອກຕ່າງໆໃນທີ່ກໍານົດໄວ້ສໍາລັບການເຊື່ອມຕໍ່ຫຼືປະເພດຕາຕະລາງພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ຕົວເລືອກຕ່າງໆໃນທີ່ກໍານົດໄວ້ສໍາລັບການເຊື່ອມຕໍ່ຫຼືປະເພດຕາຕະລາງພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ຕົວເລືອກຕ່າງໆໃນທີ່ກໍານົດໄວ້ສໍາລັບການເຊື່ອມຕໍ່ຫຼືປະເພດຕາຕະລາງພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ຕົວເລືອກຕ່າງໆໃນທີ່ກໍານົດໄວ້ສໍາລັບການເຊື່ອມຕໍ່ຫຼືປະເພດຕາຕະລາງພາກສະຫນາມ {0} ຕິດຕໍ່ກັນ {1} DocType: Auto Email Report,Send only if there is any data,ສົ່ງພຽງແຕ່ຖ້າວ່າບໍ່ມີຂໍ້ມູນໃດໆ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ການກັ່ນຕອງ Reset -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: ການອະນຸຍາດຢູ່ໃນລະດັບ 0 ຕ້ອງໄດ້ຮັບການກໍານົດໄວ້ກ່ອນທີ່ຈະລະດັບທີ່ສູງກວ່າຖືກກໍານົດໄວ້ +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: ການອະນຸຍາດຢູ່ໃນລະດັບ 0 ຕ້ອງໄດ້ຮັບການກໍານົດໄວ້ກ່ອນທີ່ຈະລະດັບທີ່ສູງກວ່າຖືກກໍານົດໄວ້ apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},ກໍາຫນົດປິດໂດຍ {0} DocType: Integration Request,Remote,ຫ່າງໄກສອກຫຼີກ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,ຄິດໄລ່ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ຄິດໄລ່ apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,ກະລຸນາເລືອກ DocType ທໍາອິດ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,ຢືນຢັນອີເມວຂອງທ່ານ apps/frappe/frappe/www/login.html +42,Or login with,ຫລືເຂົ້າສູ່ລະບົບທີ່ມີ DocType: Error Snapshot,Locals,ທ້ອງຖິ່ນ apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ສື່ສານໂດຍຜ່ານ {0} {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ກ່າວມານັ້ນທ່ານໃນຄວາມຄິດເຫັນໃນ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ຕົວຢ່າງ: (55 + 434) / 4 = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ຕົວຢ່າງ: (55 + 434) / 4 = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ຈໍາເປັນຕ້ອງມີ DocType: Integration Request,Integration Type,ປະເພດການເຊື່ອມໂຍງ DocType: Newsletter,Send Attachements,ສົ່ງໄຟລ໌ແນບ @@ -2795,15 +2801,15 @@ DocType: DocField,Perm Level,Level Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,ກິດຈະກໍາໃນປະຕິທິນໃນມື້ນີ້ DocType: Web Page,Web Page,ຫນ້າເວັບ DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ໃນການຊອກຫາ Global' ບໍ່ອະນຸຍາດໃຫ້ສໍາລັບປະເພດ {0} ຕິດຕໍ່ກັນ {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ບັນຊີ View -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},ວັນທີ່ສະຫມັກຈະຕ້ອງຢູ່ໃນຮູບແບບ: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},ວັນທີ່ສະຫມັກຈະຕ້ອງຢູ່ໃນຮູບແບບ: {0} DocType: Workflow,Don't Override Status,ບໍ່ແທນສະຖານະ apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ກະລຸນາໃຫ້ການຈັດອັນດັບ. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ຜົນຕອບຮັບຄໍາຮ້ອງຂໍ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,ໄລຍະການຊອກຫາ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,ຜູ້ໃຊ້ທໍາອິດ: ທ່ານ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,ຜູ້ໃຊ້ທໍາອິດ: ທ່ານ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,ເລືອກຖັນ DocType: Translation,Source Text,ຂໍ້ຄວາມແຫຼ່ງຂໍ້ມູນ apps/frappe/frappe/www/login.py +55,Missing parameters for login,ຕົວກໍານົດການທີ່ຂາດຫາຍໄປສໍາລັບການເຂົ້າສູ່ລະບົບ @@ -2825,7 +2831,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,ການນໍາເຂົ້າ DocType: ToDo,Assigned By,ການມອບຫມາຍຂອງ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,ທ່ານສາມາດນໍາໃຊ້ແບບຟອມການລູກຄ້າທີ່ຈະກໍານົດລະດັບໃນຂົງເຂດ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,ເລືອກພູມິພາກຂອງທ່ານ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,ເລືອກພູມິພາກຂອງທ່ານ DocType: Custom DocPerm,Level,ລະດັບ DocType: Custom DocPerm,Report,ບົດລາຍງານ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ຈໍານວນເງິນທີ່ຕ້ອງໄດ້ຫຼາຍກ່ວາ 0. @@ -2845,7 +2851,7 @@ DocType: Website Theme,Background,ຄວາມເປັນມາ DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",ບັນຊີລາຍຊື່ JSON ຂອງ DOCTYPE ໃຊ້ສະຫມັກອະນຸຍາດຜູ້ໃຊ້. ຖ້າບໍ່ມີ DOCTYPE ເຊື່ອມຕໍ່ທັງຫມົດຈະໄດ້ຮັບການນໍາໃຊ້ການນໍາໃຊ້ການອະນຸຍາດຂອງຜູ້ໃຊ້. DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,ກະລຸນາເພີ່ມການຈັດອັນດັບ -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: ບໍ່ສາມາດກໍານົດການແກ້ໄຂໂດຍບໍ່ມີການຍົກເລີກການ +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: ບໍ່ສາມາດກໍານົດການແກ້ໄຂໂດຍບໍ່ມີການຍົກເລີກການ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,ຫນ້າຢ່າງເຕັມທີ່ DocType: DocType,Is Child Table,ເປັນຕາຕະລາງເດັກນ້ອຍ apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ຕ້ອງເປັນຫນຶ່ງໃນ {1} @@ -2860,7 +2866,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ນີ້ໄປຂ້ apps/frappe/frappe/config/setup.py +260,Install Applications.,ຕິດຕັ້ງຄໍາຮ້ອງສະຫມັກ. DocType: Contact,Last Name,ນາມສະກຸນ DocType: Event,Private,ສ່ວນຕົວ -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ບໍ່ມີຂໍ້ມູນສໍາລັບມື້ນີ້ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ບໍ່ມີຂໍ້ມູນສໍາລັບມື້ນີ້ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ສົ່ງ Attachments Email Print ເປັນ PDF (ແນະນໍາໃຫ້) DocType: Web Page,Left,ໄວ້ DocType: Event,All Day,ຫມົດມື້ @@ -2874,7 +2880,7 @@ DocType: Event,Send an email reminder in the morning,ສົ່ງການເຕ DocType: Blog Post,Published On,ຈັດພີມມາກ່ຽວກັບ DocType: Contact,Gender,ບົດບາດຍິງຊາຍ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ຂໍ້ມູນການບັງຄັບຫາຍສາບສູນ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ພາກສະຫນາມ '{0}' ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນເອກະລັກຍ້ອນວ່າມັນມີຄຸນຄ່າທີ່ບໍ່ແມ່ນເອກະລັກ +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ພາກສະຫນາມ '{0}' ບໍ່ສາມາດໄດ້ຮັບການກໍານົດໄວ້ເປັນເອກະລັກຍ້ອນວ່າມັນມີຄຸນຄ່າທີ່ບໍ່ແມ່ນເອກະລັກ apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,ພຽງແຕ່ 200 ສະແດງກິ່ງງ່າອະນຸຍາດໃຫ້ໃນການຮ້ອງຂໍ DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,ປະເພດເອກະສານ @@ -2887,7 +2893,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ການເຕືອນໄພອາການ DocType: Workflow State,User,ຜູ້ໃຊ້ DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ສະແດງໃຫ້ເຫັນຫົວຂໍ້ຢູ່ໃນປ່ອງຢ້ຽມຂອງຕົວທ່ອງເວັບເປັນ "ຄໍານໍາຫນ້າ - ຫົວຂໍ້" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ຂໍ້ຄວາມໃນປະເພດເອກະສານ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ຂໍ້ຄວາມໃນປະເພດເອກະສານ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,ດໍາເນີນການທົດສອບ apps/frappe/frappe/handler.py +91,Logged Out,ອອກຈາກລະບົບ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,ເພີ່ມເຕີມ ... @@ -2913,13 +2919,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,ປະຈຸບັນກໍາລັງ DocType: DocField,Default,ມາດຕະຖານ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ເພີ່ມ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',ຄົ້ນຫາສໍາລັບ '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ຄົ້ນຫາສໍາລັບ '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,ກະລຸນາຊ່ວຍປະຢັດບົດລາຍງານຄັ້ງທໍາອິດ apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ຈອງເຂົ້າມາ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ບໍ່ໃນ DocType: Workflow State,star,ດາວ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ຄ່າຂັ້ນດ້ວຍຈໍ້າຈຸດ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},width ສູງສຸດສໍາລັບປະເພດສະກຸນເງິນຄື 100px ຕິດຕໍ່ກັນ {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ຄ່າຂັ້ນດ້ວຍຈໍ້າຈຸດ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},width ສູງສຸດສໍາລັບປະເພດສະກຸນເງິນຄື 100px ຕິດຕໍ່ກັນ {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},ກະລຸນາສະແດງຄໍາເຫັນຂອງທ່ານສໍາລັບການ {0} apps/frappe/frappe/config/website.py +13,Content web page.,ເວັບໄຊທ໌ເນື້ອໃນ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ຕື່ມການພາລະບົດບາດໃຫມ່ @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ບໍ່ໃຊ້ LDAP ທີ່ຖືກຕ້ອງ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ບໍ່ State ຖືກຕ້ອງ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',ກະລຸນາເລືອກວິທີການຊໍາລະເງິນອື່ນ. PayPal ບໍ່ສະຫນັບສະຫນູນທຸລະກໍາໃນສະກຸນເງິນ '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,ພາກສະຫນາມຄົ້ນຫາ {0} ບໍ່ຖືກຕ້ອງ +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,ພາກສະຫນາມຄົ້ນຫາ {0} ບໍ່ຖືກຕ້ອງ DocType: Workflow State,ok-circle,"ok, ແຜ່ນປ້າຍວົງກົມ" apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',ທ່ານສາມາດຊອກຫາສິ່ງທີ່ໂດຍສະເຫນີຂໍ 'ຊອກຫາສີສົ້ມໃນຂອງລູກຄ້າ apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,ຂໍໂທດ! ຜູ້ໃຊ້ຄວນຈະມີການເຂົ້າເຖິງສໍາເລັດໃນການບັນທຶກຂອງຕົນເອງຂອງເຂົາເຈົ້າ. @@ -2999,7 +3005,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,ການກັ່ນຕອງ Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ຂໍ້ຄວາມທີ່ຈະສະແດງສໍາລັບການເຊື່ອມຕໍ່ກັບຫນ້າເວັບໄຊຕ໌ຖ້າຫາກວ່າຮູບແບບນີ້ມີຫນ້າເວັບໄຊຕ໌. ເສັ້ນທາງເຊື່ອມຕໍ່ຈະໄດ້ຮັບການສ້າງອັດຕະໂນມັດຂຶ້ນຢູ່ກັບ `page_name` ແລະ` parent_website_route` DocType: Feedback Request,Feedback Trigger,ຄໍາຄຶດຄໍາເຫັນຜົນກະທົບຕໍ່ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,ກະລຸນາຕັ້ງ {0} ທໍາອິດ +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ກະລຸນາຕັ້ງ {0} ທໍາອິດ DocType: Unhandled Email,Message-id,"ຂໍ້ຄວາມ, id" DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,ສົບຜົນສໍາເລັດ diff --git a/frappe/translations/lt.csv b/frappe/translations/lt.csv index dd76fa3012..72159e59af 100644 --- a/frappe/translations/lt.csv +++ b/frappe/translations/lt.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,"Facebook" Nick DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Pastaba: Keli seansai bus leista atveju mobiliojo prietaiso apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Įjungtas elektroninio pašto dėžutę vartotojui {vartotojai} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Negali išsiųsti šį laišką. Jūs kirto siuntimo limitą {0} laiškų per šį mėnesį. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Pastoviai Pateikti {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Pastoviai Pateikti {0}? DocType: Address,County,apygarda DocType: Workflow,If Checked workflow status will not override status in list view,Jei pažymėta eigos statusas nepanaikina statusą sąrašo rodinyje apps/frappe/frappe/client.py +280,Invalid file path: {0},Neteisingas failo maršrutas: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Prašom apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} medis DocType: User,User Emails,Vartotojo Parašyta DocType: User,Username,Vartotojo vardas -apps/frappe/frappe/model/base_document.py +581,Value too big,Vertė per didelis +apps/frappe/frappe/model/base_document.py +580,Value too big,Vertė per didelis DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Vykdyti scenarijų testas DocType: Contact,Department,skyrius @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Prisijungia DocType: Custom DocPerm,This role update User Permissions for a user,Šis vaidmuo Atnaujinti Vartotojo Leidimai vartotojas apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Pervadinti {0} DocType: Workflow State,zoom-out,nutolinti -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Nepavyko atidaryti {0} kai jos atvejis yra atvira +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Nepavyko atidaryti {0} kai jos atvejis yra atvira apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Stalo {0} negali būti tuščias apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,su žurnalus apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Vaizdai DocType: Communication,Reference Owner,nuoroda autorius DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Mažiausias cirkuliuojančių frakcija vienetas (monetos). EG 1 proc USD ir jis turėtų būti įrašytas kaip 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, eilutė {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, eilutė {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Pateikite FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,nuo apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Duomenų importas Šablono @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,tėvas DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jei įjungta, slaptažodis stiprumas bus vykdomas remiantis Minimalus Slaptažodžių balas vertės. A 2 reikšmė yra vidutinio stiprumo ir 4 yra labai stiprus." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jei įjungta, slaptažodis stiprumas bus vykdomas remiantis Minimalus Slaptažodžių balas vertės. A 2 reikšmė yra vidutinio stiprumo ir 4 yra labai stiprus." DocType: About Us Settings,"""Team Members"" or ""Management""","Komanda nariai" arba "tvarkymas" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Numatytasis "patikrinimas" tipo laukas turi būti arba "0" arba "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Numatytasis "patikrinimas" tipo laukas turi būti arba "0" arba "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,vakar DocType: Contact,Designation,žymėjimas DocType: Test Runner,Test Runner,testas bėgikas @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Skelbiama laukas DocType: Email Group,Email Group,paštas grupė DocType: Note,Seen By,matyti apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Pridėti kelis -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Not Like +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Not Like apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Nustatykite ekrano etiketę srityje apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Neteisingas vertė: {0} turi būti {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Pakeisti lauko savybės (slėpti, tik skaitymui, leidimas ir tt)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nustatyma apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administratorius Prisijungęs Be DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktai variantai, pavyzdžiui, "Pardavimų užklausos Pagalba užklausos" ir tt kiekvienas į naują eilutę ar atskirdami juos kableliais." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Parsisiųsti -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Įdėti +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Įdėti apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Pasirinkite {0} DocType: Print Settings,Classic,klasikinis DocType: Desktop Icon,Color,spalva @@ -122,7 +122,7 @@ DocType: Translation,Translation,Vertimas apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Diegti apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Ponas DocType: Custom Script,Client,klientas -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Ši forma buvo pakeistas po to, kai ją pakrauti" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Ši forma buvo pakeistas po to, kai ją pakrauti" DocType: User Permission for Page and Report,User Permission for Page and Report,Vartotojas Leidimas Puslapis ir ataskaitos DocType: Address,Himachal Pradesh,Himačal Pradešas DocType: System Settings,"If not set, the currency precision will depend on number format","Jei nenustatytas, valiutų tikslumas priklausys nuo skaičių formatu" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,priežastis apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Prašome nurodyti vartotoją DocType: Email Unsubscribe,Email Unsubscribe,paštas Atsisakyti DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pasirinkite maždaug pločio 150 vaizdo elementų atvaizdą su skaidriu fone geriausių rezultatų. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Pirmasis vartotojas taps System Manager (galite keisti tai vėliau). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Pirmasis vartotojas taps System Manager (galite keisti tai vėliau). ,App Installer,Programos diegimo DocType: Workflow State,circle-arrow-up,apskritimo rodyklė viršų apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Siuntimas ... DocType: Email Domain,Email Domain,paštas Domenų DocType: Workflow State,italic,kursyvinis apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Visiems -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Negalima nustatyti Importuoti be Sukurti +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Negalima nustatyti Importuoti be Sukurti apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Renginių ir kiti kalendoriai. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Visi laukai yra būtini pateikti komentarą. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Vilkite rūšiuoti stulpelius @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standartinė šoninės Meniu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Negalite trinti Pradžia ir priedai aplankus apps/frappe/frappe/config/desk.py +19,Files,failai apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Leidimai gauti taikomas naudotojams, remiantis kokius vaidmenis jie yra priskirti." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Jums neleidžiama siųsti laiškus, susijusius su šio dokumento" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Pasirinkite atleast 1 stulpelį nuo {0} rūšiuoti / grupės +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Jums neleidžiama siųsti laiškus, susijusius su šio dokumento" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Pasirinkite atleast 1 stulpelį nuo {0} rūšiuoti / grupės DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Pažymėkite tai, jei jūs išbandyti savo mokėjimo naudojant sandbox API" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Jūs negalite trinti standartinį svetainės temą DocType: Feedback Trigger,Example,Pavyzdys @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Iš viso žiūrovai apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jei vaidmuo neturi prieigos 0 lygio, tada didesnis lygis yra beprasmiška." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Išsaugoti kaip DocType: Communication,Seen,Žiūrint -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Rodyti daugiau informacijos +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Rodyti daugiau informacijos DocType: System Settings,Run scheduled jobs only if checked,"Vykdyti reguliaraus darbo tik tada, jei tikrinamas" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Bus rodomas tik tada, jei Antraštės yra įjungtas" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,archyvas @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Slėpti pozicijoje DocType: Address,Current,dabartinis DocType: Address,Current,dabartinis -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Susiję dokumentai apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupės DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,pašalinti-ratą @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filtras apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Nazwapola {0} negali turėti specialių simbolių, pavyzdžiui, {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Atnaujinkite daugelio vertybių vienu metu. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Klaida: dokumentas buvo pakeistas po to, kai jį atidarė" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nėra numatytasis adresas Šablonas nerasta. Prašome sukurti naują iš Setup> Spausdinimas ir paviljonai> Adresas šabloną. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} atsijungus: {1} DocType: Address,West Bengal,Vakarų Bengalija -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Negalima nustatyti Susieti Pateikti jei ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Negalima nustatyti Susieti Pateikti jei ne Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtruojama pagal "{0}" DocType: Salutation,Administrator,administratorius @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Dienoraštis Pavadinimas apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standartiniai vaidmenys negali būti išjungtas DocType: Address,Mizoram,Mizoramas DocType: Newsletter,Newsletter,Naujienlaiškis -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Negalite naudoti sub-užklausą tvarka pagal +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Negalite naudoti sub-užklausą tvarka pagal DocType: Web Form,Button Help,mygtukas Pagalba DocType: Kanban Board Column,purple,violetinė DocType: About Us Settings,Team Members,Komandos nariai @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gaukite pasa apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Jūsų prenumerata baigėsi {0}. Atnaujinti, {1}." DocType: Workflow State,plus-sign,plius ženklas apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Sąranka jau baigtas -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Programos {0} nėra įdiegtas +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Programos {0} nėra įdiegtas DocType: Workflow State,Refresh,atnaujinti DocType: Event,Public,visuomenės apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nieko parodyti @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,patiko apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,palaikymo paštu DocType: DocField,Print Hide If No Value,Spausdinti Slėpti Jei NO vertė DocType: Event,yellow,geltonas -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Skelbiama laukas turi būti galiojantis nazwapola +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Skelbiama laukas turi būti galiojantis nazwapola apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Įkelti priedą DocType: Block Module,Block Module,Blokuoti modulis apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,eksporto šablono @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Nauja paskyra buvo sukurta už jus {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,instrukcijos el.paštas apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,instrukcijos el.paštas -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Įveskite el draugo (-ų) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Įveskite el draugo (-ų) DocType: Print Format,Verdana,Verdana " DocType: Email Flag Queue,Email Flag Queue,Paštas Žymėti eilės apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Negali nustatyti atidaryti {0}. Išbandykite ką nors kita. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,pranešimas ID DocType: Property Setter,Field Name,lauko pavadinimas apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,"Google" GSuite nėra sukonfigūruotas. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,arba -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modulis vardas ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Tęsti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modulis vardas ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Tęsti DocType: Custom Field,Fieldname,nazwapola DocType: Workflow State,certificate,pažymėjimas DocType: User,Tile,čerpė @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Rodyti visas versijas DocType: Workflow State,Print,spausdinti DocType: User,Restrict IP,apriboti IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,prietaisų skydas apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nepavyko išsiųsti laiškus šiuo metu apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Paieška arba įveskite komandą DocType: Communication,Timeline Name,Chronologija Vardas @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Pardavimų magistras direktorius apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Vienas Paskutinis žingsnis apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Pavadinimas Dokumento tipas (dokumentų tipas), kurį norite šis laukas turi būti susiję su. pvz Klientų" DocType: User,Roles Assigned,vaidmenys Asignuotosios -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Paieška Pagalba -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Paieška Pagalba +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Paieška Pagalba +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Paieška Pagalba DocType: Top Bar Item,Parent Label,tėvų Etiketė apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Jūsų užklausa gauta. Mes pasistengsime atsakyti atgal netrukus. Jei turite bet kokią papildomą informaciją, atsakykite į šį laišką." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Leidimai yra automatiškai išverstas į standartines ataskaitas ir paieškas. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Redaguoti pozicijoje DocType: File,File URL,URL failui DocType: Version,Table HTML,stalo HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

už ""Nerasta jokių rezultatų

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Pridėti abonentų apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Artimiausi Renginiai Šiandien DocType: Email Alert Recipient,Email By Document Field,Paštas Dokumentu Field @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Suma pagal lauko apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Vartotojas yra privalomas Share DocType: DocField,Hidden,paslėptas DocType: Web Form,Allow Incomplete Forms,Leiskite neišsami Forms -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} turi būti nustatytas pirmas +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} turi būti nustatytas pirmas apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Naudokite keletą žodžių, išvengti bendrų frazių." DocType: Workflow State,plane,lėktuvas -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oi. Jūsų mokėjimas nepavyko. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jei įkeliate naujus įrašus, "Pavadinimų serijos" tampa privalomas, jei yra." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Gaukite įspėjimus šiandien +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Gaukite įspėjimus šiandien apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE gali būti pavadinta tik administratorius apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Pakeistas vertė {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Prašome pasitikrinti savo elektroninį paštą patikrinti -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Kartus gali būti ne tuo formos gale +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Kartus gali būti ne tuo formos gale DocType: Communication,Bounced,sugrįžta DocType: Deleted Document,Deleted Name,ištrintas Vardas apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistemos ir svetainės lankytojai @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Dokumento Laukia eil DocType: GSuite Templates,Destination ID,Paskirtis ID DocType: Desktop Icon,List,sąrašas DocType: Communication,Link Name,Nuoroda Vardas -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Lauko {0} iš eilės {1} negali būti paslėpta ir privalomas be nutylėjimą +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Lauko {0} iš eilės {1} negali būti paslėpta ir privalomas be nutylėjimą DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Neteisingas slaptažodis: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Neteisingas slaptažodis: DocType: Print Settings,Send document web view link in email,Siųsti dokumento interneto vaizdo nuorodą elektroniniu paštu apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Jūsų atsiliepimai už dokumento {0} yra išsaugota sėkmingai apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,ankstesnis -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} eilutės {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Subfondas valiuta. EG "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Pasirinkite atsiųsta byla @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,ryšys apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nėra failo pridedamas DocType: Version,Version,versija DocType: User,Fill Screen,užpildykite ekranas -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nepavyko parodyti šio medžio ataskaitą dėl trūkstamų duomenų. Labiausiai tikėtina, kad ji yra išfiltruotas dėl leidimų." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Prašome nustatymas pagal nutylėjimą pašto dėžutę iš Setup> El pašto sąskaitą +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nepavyko parodyti šio medžio ataskaitą dėl trūkstamų duomenų. Labiausiai tikėtina, kad ji yra išfiltruotas dėl leidimų." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Pasirinkite Failo apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Redaguoti įkeliant -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Dokumento tipas ..., pvz klientas" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Dokumento tipas ..., pvz klientas" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,"Sąlyga "{0}", yra neteisingas" DocType: Workflow State,barcode,brūkšninis kodas apps/frappe/frappe/config/setup.py +232,Add your own translations,Pridėti savo vertimo @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,trečiadienis apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Be funkcijomis pagrįsta Prieigos teisių taisyklių, galite kreiptis vartotojo teises, remiantis DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Šie leidimai bus taikomas visiems sandoriams, kur leidžiamas įrašas yra susijęs. Pavyzdžiui, jei bendrovė C įtraukta į naudotojų leidimus Viskas X, vartotojo X tik galės pamatyti sandorius, turi bendrovės C susietą vertės." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Vaizdo laukas turi būti galiojantis nazwapola +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Vaizdo laukas turi būti galiojantis nazwapola DocType: OAuth Client,Token,žetonas DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (vardas ir pavardė) ūkio subjekto, kurio nuosavybė turi būti nustatytas" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Atnaujinti, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Sidebar daiktai apps/frappe/frappe/installer.py +125,App {0} already installed,Programa {0} jau įdiegta DocType: Workflow State,exclamation-sign,šauktukas-ženklas apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Rodyti leidimai -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Laiko laukas turi būti nuoroda arba Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Laiko laukas turi būti nuoroda arba Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Data asortimentas apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Ganto apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Puslapis {0} iš {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Įvest apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Šifravimo raktas yra neteisingas, prašome patikrinti site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,į DocType: Kanban Board Column,darkgrey,tamsiai pilka -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Sėkmingas: {0} ir {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Sėkmingas: {0} ir {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nepavyksta pakeisti naudotojo detales demo. Prašome užsiregistruoti naują sąskaitą https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Prašome dubliuoti tai padaryti pakeitimus apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"PDF karta nepavyko, nes neveikiančių paveikslėlių nuorodos" @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,išardomas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Išsaugota apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Ką reikia pagalbos? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Funkcijos pasirinkite. Kiekvienas variantas naują eilutę. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Pastoviai Atšaukti {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Pastoviai Atšaukti {0}? DocType: Workflow State,music,muzika DocType: Web Page,Settings,Nustatymai apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Prašome nurodyti dokumentų tipas DocType: Print Format,Style Settings,Stilius Nustatymai -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Rūšiuoti laukas {0} turi būti galiojantis nazwapola +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Rūšiuoti laukas {0} turi būti galiojantis nazwapola apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,daugiau DocType: Contact,Sales Manager,Pardavimų vadybininkas apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,pervadinti DocType: Print Format,Format Data,formatas duomenų -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Kaip +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Kaip DocType: Customize Form Field,Customize Form Field,Tinkinti formos laukas apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,leidžia vartotojui DocType: OAuth Client,Grant Type,dotacijos tipas apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Patikrinkite, kokius dokumentus perskaitomas Vartotojo" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing programą neleidžiama -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,naudoti% kaip reikšmėms rasti -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Paštas Domeno neužpildė šios sąskaitos, sukurti apklausą?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,naudoti% kaip reikšmėms rasti +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Paštas Domeno neužpildė šios sąskaitos, sukurti apklausą?" DocType: User,Reset Password Key,Atstatyti slaptažodį raktas DocType: Email Account,Enable Auto Reply,Įgalinti automatinį Atsakyti apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nematytas @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Nustatyti tik vieną kartą DocType: Email Queue Recipient,Email Queue Recipient,Paštas eilę Gavėjas DocType: Address,Nagaland,Nagalenda apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nick {0} jau egzistuoja -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Negalima nustatyti importo kaip {1} nėra importuojami +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Negalima nustatyti importo kaip {1} nėra importuojami apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Yra jūsų adresų Šablonas klaida {0} DocType: Footer Item,"target = ""_blank""",target = "_ blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Iš Vardas Pavardė apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Jūs neturite prieigos prie Pranešimas: {0} DocType: User,Send Welcome Email,Siųsti Sveiki paštu apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Įkelti CSV failą, kuriame yra visas vartotojo teises į tokio paties formato kaip Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,pašalinti filtrą +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,pašalinti filtrą DocType: Address,Daman and Diu,Damanas ir Diu DocType: Address,Personal,Asmeninis apps/frappe/frappe/config/setup.py +113,Bulk Rename,Tūrinės Pervadinti @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standartinė DOCTYPE negali turėti numatytąjį spausdinimo formatą, naudokite Konfigūruoti formą" DocType: Report,Query,užklausa DocType: DocType,Sort Order,Rikiuoti -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"Sąrašo rodinyje" neleidžiama tipas {0} iš eilės {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"Sąrašo rodinyje" neleidžiama tipas {0} iš eilės {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Pasirinkite etiketę, po kurios norite įterpti naują lauką." ,Document Share Report,Dokumento Dalintis ataskaita DocType: User,Last Login,Paskutinis prisijungimas -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nazwapola reikalingas eilės {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nazwapola reikalingas eilės {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,skiltis DocType: Custom Field,Adds a custom field to a DocType,Prideda pasirinktinį lauką prie dokumentų tipas DocType: File,Is Home Folder,Ar Namųaplankas @@ -594,7 +594,7 @@ DocType: File,Folder,aplankas DocType: DocField,Index,Indeksas DocType: Email Group,Newsletter Manager,Naujienų direktorius apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,1 variantas -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Visi pranešimai +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},"{0}, kad {1}" apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prisijungti klaidų per prašymus. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} buvo sėkmingai įtraukta į Parašyk Group ". DocType: Address,Uttar Pradesh,Utar Pradešas @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,rodiklis DocType: DocShare,Everyone,Visi DocType: Workflow State,backward,atgalinis -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tik viena taisyklė leido su tą patį vaidmenį, lygis ir {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tik viena taisyklė leido su tą patį vaidmenį, lygis ir {1}" DocType: Email Queue,Add Unsubscribe Link,Pridėti Atsisakyti Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Komentarų nėra. Pradėti naują diskusiją. DocType: Workflow State,share,dalis @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,neleid apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Peržiūrėti žiūrovai apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ponia DocType: Website Theme,Background Color,Fono spalva -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Nebuvo klaidos Nors siunčiant laišką. Prašau, pabandykite dar kartą." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Nebuvo klaidos Nors siunčiant laišką. Prašau, pabandykite dar kartą." DocType: Portal Settings,Portal Settings,portalo Nustatymai DocType: Web Page,0 is highest,0 yra didžiausias apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Ar tikrai norite iš naujo susieti šį komunikatą {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Susisiekite su mumis Nustatymai apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Ieškoma ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Ieškoma ... DocType: Workflow State,text-width,teksto plotis -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimalus Priedas riba šiam pasiektas rekordas. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimalus Priedas riba šiam pasiektas rekordas. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Šie privalomi laukai turi būti užpildyti:
DocType: Email Alert,View Properties (via Customize Form),Peržiūrėti objektus (per Tinkinti forma) DocType: Note Seen By,Note Seen By,Pastaba matyti @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Radžastano apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,"Report Builder ataskaitos, kurią tiesiogiai valdo Report Builder. Nėra ką veikti." apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Prašome patikrinti savo elektroninio pašto adresą apps/frappe/frappe/model/document.py +903,none of,nė vienas iš -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Siųsti kopiją man +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Siųsti kopiją man apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Įkelti vartotojų teises DocType: Dropbox Settings,App Secret Key,Programos slaptąraktą apps/frappe/frappe/config/website.py +7,Web Site,Interneto svetainė apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Patikrintas elementai bus rodomi ant darbastalio -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} negalima nustatyti už vieną tipų +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} negalima nustatyti už vieną tipų apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban lenta {0} neegzistuoja. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} šiuo metu žiūri šią dokumentą DocType: ToDo,Assigned By Full Name,Pavestas Vardas Pavardė apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} atnaujinama -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Pranešti negalima nustatyti už vieną tipų +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Pranešti negalima nustatyti už vieną tipų apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,prieš {0} dienas DocType: Email Account,Awaiting Password,Laukiama Slaptažodžių DocType: Address,Address Line 1,Adreso eilutė 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Narių eigos (pvz projektas, patvirtintas, atšaukta)." DocType: Print Settings,Allow Print for Draft,Leiskite Spausdinti projekto apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,nustatytas kiekis -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Pateikti šį dokumentą patvirtinti +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Pateikti šį dokumentą patvirtinti DocType: Contact,Unsubscribed,neišplatintos apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Nustatyti savitas vaidmenys puslapyje ir ataskaitos apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Reitingas: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Duomenų importavimo įrankis DocType: Address,Dadra and Nagar Haveli,Dadra ir Nagar Havelis apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Įkelti failus palaukite kelias sekundes. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Prisegti nuotrauką +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Prisegti nuotrauką apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row vertybės pasikeitė DocType: Workflow State,Stop,Sustabdyti DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Nuoroda į puslapį, kurį norite atidaryti. Palikite tuščią, jei norite, kad tai grupė tėvų." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Suderinti etiketes į kairę DocType: Help Article,Expert,ekspertas DocType: Workflow State,circle-arrow-right,apskritimo rodyklės į dešinę DocType: LDAP Settings,LDAP Server Url,LDAP serverio URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Nepavyko atidaryti pavyzdžiui, kai jos {0} yra atvira" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Nepavyko atidaryti pavyzdžiui, kai jos {0} yra atvira" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Eilėje įdiegti DocType: Custom DocPerm,Custom DocPerm,Pasirinktinis DocPerm DocType: Newsletter,Send Unsubscribe Link,Siųsti Atsisakyti Link @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Programos {0} ištrintas DocType: Custom DocPerm,Apply User Permissions,Taikyti vartotojų teises DocType: User,Modules HTML,moduliai HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Sąranka> Vartotojo Leidimai direktorius apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Trūkstamas reikšmes Reikalinga DocType: DocType,Other Settings,Kiti nustatymai DocType: Social Login Keys,Frappe,atšaldytas @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth "nešėjas ženklas apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Joks dokumentas pasirinktas apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,dr DocType: Event,Event,renginys -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Apie {0}, {1} rašė:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Apie {0}, {1} rašė:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Negalite ištrinti standartinis lauką. Galite paslėpti jį, jei norite" DocType: Top Bar Item,For top bar,Dėl viršutinėje juostoje apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nepavyko nustatyti {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,parą Pritaikyta DocType: Workflow State,minus,minusas apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Serverio klaida: patikrinkite savo serverio arba susisiekite su technine pagalba. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Sveiki laiškas išsiųstas -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Leiskite parengti sistemą pirmą naudojimą. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Leiskite parengti sistemą pirmą naudojimą. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Teminiai apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Jau užregistruotas DocType: System Settings,Float Precision,plūdės Tiksliosios @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,Leiskite Spausdinti apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nėra įdiegtų programų apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Pažymėkite lauką kaip privalomas DocType: Communication,Clicked,paspaudėte -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nėra leidimo {0} "{1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nėra leidimo {0} "{1} DocType: User,Google User ID,"Google" naudotojo ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planuojama siųsti DocType: DocType,Track Seen,Įrašo matytas @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Sinchroninio posėdžiai DocType: OAuth Client,Client Credentials,klientų kvalifikaciniai -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Atidarykite modulį arba nuorodą +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Atidarykite modulį arba nuorodą DocType: Communication,Delivery Status,Pristatymas būsena DocType: Module Def,App Name,"Programos pavadinimas," apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksimalus failo dydis leidžiama yra {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,nuoroda Bendravimas DocType: Email Queue,Unsubscribe Method,Atsisakyti būdas DocType: GSuite Templates,Related DocType,susiję DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Redaguoti pridėti turinį -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,pasirinkite Kalbos -apps/frappe/frappe/__init__.py +510,No permission for {0},Neturite leidimo {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,pasirinkite Kalbos +apps/frappe/frappe/__init__.py +509,No permission for {0},Neturite leidimo {0} DocType: DocType,Advanced,pažangus apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Atrodo API raktas arba "API paslaptis yra negerai !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Nuoroda: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Įveskite formos tipas apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nėra įrašų pažymėti. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,pašalinti laukas DocType: User,Send Password Update Notification,Siųsti slaptažodį Pranešimas Update -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Leidimas dokumentų tipas, tipas. Būk atsargus!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Leidimas dokumentų tipas, tipas. Būk atsargus!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Individualus formatai Spausdinimas, elektroninio pašto" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Atnaujintas Versija DocType: Custom Field,Depends On,Priklauso nuo @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,vienas iš apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Prašome pasirinkti failą nukopijuoti apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Tikrinti vieną momentą apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Rodyti Žymos +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Jei taikyti griežtas Vartotojas leidimas patikrinti ir vartotojų leidimas apibrėžta už kurio nors vartotojo DOCTYPE, tada visi dokumentai, kur vertė nuorodą tuščias, nebus įrodyta, kad tas vartotojas" DocType: Address,Billing,atsiskaitymo DocType: Email Queue,Not Sent,nesiunčiamas DocType: Web Form,Actions,Veiksmai @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,aiškus apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Kiekvieną dieną įvykių turėtų baigtis tą pačią dieną. DocType: Communication,User Tags,Vartotojo Žymos apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Gaunamos vaizdai .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Sąranka> Vartotojas DocType: Workflow State,download-alt,Parsisiųsti-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Atsisiuntimas Programos {0} DocType: Communication,Feedback Request,Atsiliepimai Prašymas @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Atsarginės kopijos apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Pridėti kontaktą DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Neprivaloma: Visada siųsti šiuos ID. Kiekvienas pašto adresas naujoje eilutėje -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Paslėpti detales +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Paslėpti detales DocType: Workflow State,Tasks,Užduotys DocType: Event,Tuesday,antradienis DocType: Blog Settings,Blog Settings,Dienoraštis Nustatymai @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Rašyti Python failo tame pačiame aplanke, kai tai yra išsaugota ir grįžti stulpelį ir rezultatą." DocType: DocType,Sort Field,Rūšiuoti laukas DocType: Razorpay Settings,Razorpay Settings,Razorpay Nustatymai -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Redaguoti filtras -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Lauko {0} tipo {1} negali būti privaloma -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","pvz. Jei Taikyti vartotojų teises yra tikrinama ataskaita dokumentų tipas, bet nė vienas vartotojas Leidimai yra apibrėžti pranešime vartotojas, tada visi Ataskaitos įrodyta, kad tas vartotojas" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Redaguoti filtras +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Lauko {0} tipo {1} negali būti privaloma apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Pridėti daugiau apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Slėpti diagrama DocType: System Settings,Session Expiry Mobile,Sesijos pabaiga Mobilus @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,atidėtas apps/frappe/frappe/config/setup.py +128,List of backups available for download,Sąrašas atsargines kopijas galima atsisiųsti apps/frappe/frappe/www/login.html +89,Sign up,Užsiregistruoti DocType: Test Runner,Output,produkcija +DocType: Email Alert,Set Property After Alert,Nustatyti Turto Po Uždaryti apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Pridėti laukus formas. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Atrodo, kad kažkas yra negerai su šiuo svetainės Paypal konfigūracijos." DocType: File,rgt,RGT @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,lapas DocType: Portal Menu Item,Portal Menu Item,Portalo Meniu punktas DocType: User Email,Email ID,E-mail ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Jei Taikyti vartotojų teises yra tikrinama ataskaita DOCTYPE bet nė vienas vartotojas Leidimai apibrėžta pranešime vartotojas, tada visi Ataskaitos įrodyta, kad vartotojas" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Šaltinių sąrašas, kuris Klientas ""App turės prieigą prie kai vartotojas leidžia.
pvz projektas" DocType: Translation,Translated Text,Išvertus tekstas DocType: Contact Us Settings,Query Options,užklausa Nustatymai @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,kontaktai DocType: System Settings,Setup Complete,Sąranka Užbaigti apps/frappe/frappe/config/setup.py +66,Report of all document shares,Pranešti apie visų dokumentų akcijas apps/frappe/frappe/www/update-password.html +18,New Password,Naujas Slaptažodis -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtras {0} trūksta +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtras {0} trūksta apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Atsiprašau! Jūs negalite trinti automatiškai sugeneruotus komentarų DocType: Website Theme,Style using CSS,Stilius naudojant CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,nuoroda dokumentų tipas @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Blokuoti moduliai apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Atkuriama ilgis {0} už "{1}" in "{2} '; ilgio nustatymas kaip {3} sukels sutrumpinimo duomenų. DocType: Print Format,Custom CSS,Pasirinktinis CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Pridėti komentarą -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignoruojami: {0} ir {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoruojami: {0} ir {1} DocType: Address,Gujarat,gudžarati apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Prisijungti klaidų automatiniu renginių (Scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Negaliojantis kableliais (CSV failo) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,numatytasis Priimamojo DocType: Workflow State,repeat,pakartoti DocType: Website Settings,Banner,vėliava DocType: Role,"If disabled, this role will be removed from all users.","Jei išjungta, šis vaidmuo bus pašalintos iš visų vartotojų." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pagalba dėl Ieškoti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pagalba dėl Ieškoti apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Užsiregistravau, tačiau neįgaliesiems" DocType: DocType,Hide Copy,Slėpti Kopijuoti apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Išvalyti visus vaidmenis @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Šalis apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,adresai DocType: Communication,Shared,Bendrai -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Prisegti dokumentą Spausdinti +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Prisegti dokumentą Spausdinti DocType: Bulk Update,Field,laukas DocType: Communication,Received,gavo DocType: Social Login Keys,Google Client ID,"Google" Kliento ID @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,užklausa ataskaita DocType: User,Set New Password,Nustatyti naują slaptažodį DocType: User,Github User ID,GitHub Naudotojo ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Jei dokumentas tipas -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Negalite ištrinti arba atšaukti, nes {0} {1} yra susijęs su {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Negalite ištrinti arba atšaukti, nes {0} {1} yra susijęs su {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Nežinoma programa {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S yra neteisingas ataskaitą. Ataskaitos forma turi \ vieną iš šių veiksmų:% s DocType: Communication,Chat,kalbėtis -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Nazwapola {0} pasirodo kelis kartus eilėmis {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Nazwapola {0} pasirodo kelis kartus eilėmis {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} iš {1} ir {2} į eilutėse # {3} DocType: Communication,Expired,baigėsi DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Taškų kolonas srityje tinklelyje (viso Stulpeliai tinklelyje turėtų būti mažesnis kaip 11) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Turite sąskaitą? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nėra Spausdinti Formatas: {0} DocType: Workflow State,arrow-down,rodyklė žemyn apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,žlugimas -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Vartotojas neleidžiama ištrinti {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Vartotojas neleidžiama ištrinti {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Atnaujinta DocType: Help Article,Likes,mėgsta DocType: Website Settings,Top Bar,Į viršų Baras DocType: GSuite Settings,Script Code,scenarijaus kodas apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Sukurti naudotojų el apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Sukurti naudotojų el -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nieko Permissions Konkretūs +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nieko Permissions Konkretūs apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Bendrosios nuostatos: Vartotojai tik galės pasirinkti patikrinti piktogramas apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nerasta DocType: Custom Role,Custom Role,Pasirinktinis vaidmuo apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Pagrindinis / Testas Aplankas 2 DocType: System Settings,Ignore User Permissions If Missing,Ignoruoti vartotojo teises Jei trūksta -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Prašome įrašyti dokumentą prieš įkeliant. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Prašome įrašyti dokumentą prieš įkeliant. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Įveskite savo slaptažodį DocType: Dropbox Settings,Dropbox Access Secret,ZMI Prieiga paslaptis apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Pridėti kitą komentarą apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Redaguoti dokumentų tipas apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Atšaukė naujienlaiškį -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Sulenkite turi ateiti iki pertraukos skirsnyje +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Sulenkite turi ateiti iki pertraukos skirsnyje apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,"Paskutiniais pakeitimais, padarytais" DocType: Workflow State,hand-down,ranka į apačią DocType: Address,GST State,"Paaiškėjo, kad GST valstybė" -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Negalima nustatyti Atšaukti be Pateikti +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Negalima nustatyti Atšaukti be Pateikti DocType: Website Theme,Theme,tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Nebuvo klaidų. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Nukreipimo URI jungiasi su auth kodekso @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mano DocType: Website Theme,Text Color,teksto spalva DocType: Desktop Icon,Force Show,pajėgų Rodyti apps/frappe/frappe/auth.py +78,Invalid Request,Neteisingas Prašymas -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ši forma neturi jokios įvesties +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ši forma neturi jokios įvesties apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesijos pabaiga turi būti formatu {0} DocType: Website Sidebar Item,Group,grupė DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Pasirinkite target = "_blank" atidaryti naują puslapį. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignoruoti kodavimo klaidų. DocType: Workflow State,wrench,veržliaraktis apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,nenustatyta -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Sąranka> Vartotojas DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,išjungti prisiregistravimą apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Nejudėti, o jūsų sistema yra atliekamas nustatymas. Tai gali užtrukti keletą minučių." @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Pridėti komentarą DocType: DocField,Mandatory,privalomas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modulis eksportuoti -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nėra pagrindinė teises rinkinys +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nėra pagrindinė teises rinkinys apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Jūsų prenumerata bus baigiasi {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Atsisiųsti saitą jūsų atsarginės kopijos bus išsiųstas į elektroninio pašto adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Sąvoka "Pateikti" Atšaukti ", pakeisti" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,Užklausa-ataskaita apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Skiriamas {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtrai išsaugotas DocType: DocField,Percent,procentai -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Prašome nustatyti filtrai +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Prašome nustatyti filtrai apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,susijusi su DocType: Workflow State,book,knyga DocType: Website Settings,Landing Page,Nukreipimo puslapis -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Klaida Custom scenarijus +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Klaida Custom scenarijus apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Vardas apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Importas Prašymas Laukia eilės. Tai gali užtrukti keletą minučių, būkite kantrūs." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nieko Permissions nustatyti šio kriterijus. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,Leiskite Prisijungti na apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Jūs neturite pakankamai teisių, kad galėtumėte naudotis šių duomenų. Prašome susisiekti su savo vadybininku gauti prieigą." DocType: Custom Field,Custom,paprotys apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Sąranka Elektroninio informacinio pranešimo užsakymas pagal įvairius kriterijus. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},"Postus, filed under {0}" +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},"Postus, filed under {0}" DocType: Email Alert,Send alert if date matches this field's value,"Siųsti perspėjimą, jei data atitinka šioje srityje vertę" DocType: Workflow,Transitions,perėjimai apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Pašalinti {0} ir ištrinti visus duomenis? @@ -1307,9 +1308,8 @@ DocType: User,Login After,Vartotojas Po DocType: Print Format,Monospace,monospace DocType: Letter Head,Printing,spausdinimas DocType: Workflow State,thumbs-up,Nykščiai aukštyn -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Pašto paskyros ne sąrankos. Prašome sukurti naują pašto dėžutę nuo Setup> El pašto sąskaitą DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Tikslumas turėtų būti tarp 1 ir 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Tikslumas turėtų būti tarp 1 ir 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ir DocType: Error Snapshot,Frames,rėmeliai @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,nuoroda į paveikslėlį DocType: Auto Email Report,Report Filters,Pranešimas filtrai apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,dabar DocType: Workflow State,step-backward,žingsnis atgal -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{APP_TITLE} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{APP_TITLE} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Prašome nustatyti Dropbox prieigos raktus į savo svetainę config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ištrinti šį įrašą, kad būtų galima siųsti į šį elektroninio pašto adresą" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tik privalomi laukai yra būtini naujų įrašų. Jūs galite ištrinti neprivalomi stulpelius, jei norite." @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,Ar Įrangos Byla apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Išplėsti viską apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,reikia Galioja Vartotojas tapatybės. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Iš naujo atidarykite -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Jūs atšauktas mokėjimą -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Pasirinkite galiojantį CSV failą su duomenimis +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Pasirinkite galiojantį CSV failą su duomenimis apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} JT pasidalino dokumentą {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumento statusą perėjimas iš {0} į neleidžiama {1} DocType: DocType,"Make ""name"" searchable in Global Search",Padaryti "pavadinimas" ieškoti Global paieška @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,pra DocType: Help Category,Help Category,Pagalba Kategorija apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Vartotojas {0} yra išjungtas apps/frappe/frappe/www/404.html +8,Page missing or moved,Puslapis trūkstama arba persikėlė -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Redaguoti {0} savybės DocType: DocType,Route,maršrutas apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay mokėjimo šliuzai nustatymai DocType: DocField,Name,vardas @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Ieškoti dokumentus apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Ieškoti dokumentus DocType: OAuth Authorization Code,Valid,galiojantis -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Atidaryti nuorodą -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tavo kalba +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Atidaryti nuorodą +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tavo kalba apps/frappe/frappe/desk/form/load.py +46,Did not load,Įkelti nebuvo apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Pridėti Row DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Ar Atsiliepim DocType: Address,Lakshadweep Islands,Lakshadweep salos apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,gali rašyti apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Tam tikri dokumentai, kaip ir sąskaitą faktūrą, neturėtų būti keičiama, kai galutinis. Galutinis valstybė už tokius dokumentus yra vadinamas Pateikė. Galite apriboti kurie vaidmenys gali pateikti." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Jums neleidžiama eksportuoti šį pranešimą +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Jums neleidžiama eksportuoti šį pranešimą apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 vnt pasirinktas DocType: Newsletter,Test Email Address,Testas pašto adresas DocType: ToDo,Sender,Siuntėjas @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,importas Zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Dokumento ID DocType: Print Settings,Letter,laiškas -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Vaizdo laukas turi būti tipo Prisegti Image +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Vaizdo laukas turi būti tipo Prisegti Image DocType: DocField,Columns,Stulpeliai DocType: Async Task,Succeeded,pavyko apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Privalomi laukeliai reikalingi {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,teksto redaktorius apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Nustatymai Puslapis Apie mus. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Redaguoti HTML " DocType: Error Snapshot,Error Snapshot,klaida fotografiją -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,į +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,į DocType: Email Alert,Value Change,Reikšmė pokytis DocType: Standard Reply,Standard Reply,Standartinė Atsakyti apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Plotis įvesties laukelyje @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Naudokite šį nazwapola generuoti titulą apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importas laišką iš apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Kviesti kaip naudotoją -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,pasirinkite Įrangos +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,pasirinkite Įrangos apps/frappe/frappe/model/naming.py +94, for {0},už {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Nebuvo klaidų. Prašome apie tai pranešti. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Jums neleidžiama spausdinti šį dokumentą +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Jums neleidžiama spausdinti šį dokumentą apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Prašome nustatyti filtrus vertę ataskaita filtro stalo. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Kraunasi ataskaita +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Kraunasi ataskaita apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Jūsų prenumerata baigsis šiandien. DocType: Page,Standard,standartas apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Pridėti failą @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regioninės Plėtros DocType: LDAP Settings,Base Distinguished Name (DN),Bazinė Nusipelnęs Vardas (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Palikite šį pokalbį -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Nustatymai nenustatyti nuorodą srityje {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Nustatymai nenustatyti nuorodą srityje {0} DocType: Customize Form,"Must be of type ""Attach Image""",Turi būti tipo "Prisegti Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,išvalyti visus apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Jūs negalite išjungimo "Skaityti Tik" už srityje {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,pastaba apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,klaida ataskaita apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Komentarai sąlygos neatitinka -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Laiko laukas turi būti galiojantis nazwapola +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Laiko laukas turi būti galiojantis nazwapola DocType: Currency,Symbol,simbolis -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Eilutės # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Eilutės # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Naujas slaptažodis išsiųstas apps/frappe/frappe/auth.py +245,Login not allowed at this time,Prisijungti neleidžiama šiuo metu DocType: Email Account,Email Sync Option,Paštas Sync "variantas @@ -1581,7 +1579,7 @@ DocType: DocField,Text,tekstas apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standartinė atsakymus į bendrus užklausomis. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,numatytasis siuntimas DocType: Workflow State,volume-off,Kiekis išjungimo -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Patiko {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Patiko {0} DocType: Footer Item,Footer Item,Apatinė punktas ,Download Backups,Parsisiųsti atsarginiai apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Pagrindinis / Testas Folder 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,teksto lygiavimas apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Vardas negali būti specialių simbolių, pavyzdžiui {0}" DocType: Contact Us Settings,Forward To Email Address,Perduoti pašto adresas apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Rodyti visus duomenis -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Pavadinimas laukas turi būti galiojantis nazwapola +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Pavadinimas laukas turi būti galiojantis nazwapola apps/frappe/frappe/config/core.py +7,Documents,Dokumentai DocType: Email Flag Queue,Is Completed,yra užbaigtas apps/frappe/frappe/www/me.html +22,Edit Profile,Redaguoti profilį @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Šis laukas bus rodomas tik tada, jei čia apibrėžta nazwapola turi vertę arba taisyklės yra tikri (pavyzdžiai): myfield eval: doc.myfield == 'Mano vertė "eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,šiandien -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,šiandien +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,šiandien +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,šiandien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kai jūs turite nustatyti tai, vartotojai bus galima tik prieigos dokumentus (pvz., Bloge), kur nuoroda egzistuoja (pvz., Blogger ")." DocType: Error Log,Log of Scheduler Errors,Prisijungti nuo Scheduler klaidos DocType: User,Bio,Biografija @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 žvaigždutė yra mažiausias ir 5 žvaigždutės yra aukščiausias įvertinimas DocType: Event,Ref Name,teisėjas Vardas DocType: Web Page,Center,centras +DocType: Email Alert,Value To Be Set,Vertė turi būti nustatyta apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Pirmojo lygio DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Atstovauja narėms leidžiama į vieną dokumentą ir priskirtą vaidmenį pakeisti būseną. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Atnaujinti forma @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Turi tinklalapį Žiūrėti apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE pavadinimas turėtų prasidėti raide ir ji gali sudaryti tik raidės, skaičiai, erdvių ir apatinius" DocType: Communication,Spam,Šlamštas DocType: Integration Request,Integration Request,integracija Prašymas -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,brangusis +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,brangusis DocType: Address,Maharashtra,Maharaštros DocType: Address,Accounts User,Sąskaitos vartotoją DocType: Web Page,HTML for header section. Optional,HTML antraštės skyriuje. neprivalomas apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ši funkcija yra visiškai naujas ir dar eksperimentinis -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Didžiausios {0} eilutės leidžiama +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Didžiausios {0} eilutės leidžiama DocType: Email Unsubscribe,Global Unsubscribe,Pasaulinis Atsisakyti apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Tai labai dažna slaptažodį. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,vaizdas DocType: Communication,Assigned,Asignuotosios DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Pasirinkite Spausdinti Formatas +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Pasirinkite Spausdinti Formatas apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Trumpi klaviatūros modeliai yra lengva atspėti DocType: Portal Settings,Portal Menu,portalo Meniu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Ilgis {0} turėtų būti tarp 1 ir 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Vartotojas negali Paieška apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Neteisingas Išvesties formatas DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Taikyti šią taisyklę, jeigu vartotojas yra savininkas" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Bus jūsų prisijungimo ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bus jūsų prisijungimo ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,sukurti ataskaitą DocType: Note,Notify users with a popup when they log in,Praneškite vartotojams iššokantį kai jie prisijungti apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} neegzistuoja, pasirinkite naują tikslą sujungti" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,vaidmenys leidimas apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,atnaujinimas DocType: Error Snapshot,Snapshot View,Fotografavimo Peržiūrėti apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Prašome įrašyti naujienlaiškį prieš siunčiant -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Nustatymai turi būti galiojantis DOCTYPE už srityje {0} iš eilės {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} m (-ai) prieš +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Nustatymai turi būti galiojantis DOCTYPE už srityje {0} iš eilės {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,redaguoti savybės DocType: Patch Log,List of patches executed,vykdomas sąrašas pleistrai apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} jau atsisakėte -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,komunikacijos priemonių +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,komunikacijos priemonių DocType: Website Settings,Banner HTML,Reklaminis HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Prašome pasirinkti kitą mokėjimo būdą. Razorpay nepalaiko sandoriams valiuta "{0} ' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Eilėje atsarginę kopiją. Tai gali užtrukti keletą minučių iki valandos. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registruotis OAuth klientų App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} negali būti "{2}". Ji turėtų būti vienas iš "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} negali būti "{2}". Ji turėtų būti vienas iš "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} arba {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Rodyti arba slėpti darbalaukio piktogramos apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Slaptažodis Atnaujinti @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Rodyti eilučių po skirsniuose DocType: Blogger,Short Name,Trumpas vardas apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Puslapis {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Jūs esate pasirinkę Sync variantas kaip ir visi, tai bus resync visi \ skaityti taip pat kaip neskaitytą pranešimą iš serverio. Tai taip pat gali sukelti dubliavimo \ Komunikacijos (laiškų)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,failai dydis @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,Pardavimų vadybininkas DocType: Custom Script,Sample,pavyzdys apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Žymos DocType: Event,Every Week,Kiekvieną savaitę +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Pašto paskyros ne sąrankos. Prašome sukurti naują pašto dėžutę nuo Setup> El pašto sąskaitą apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Spauskite čia norėdami patikrinti savo naudojimą arba atnaujinti į aukštesnį planą DocType: Custom Field,Is Mandatory Field,Ar Privalomas laukas DocType: User,Website User,Interneto svetainė Vartotojas @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Pasirinktinis šoninės Meniu DocType: Workflow State,pencil,pieštukas apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Pokalbiai pranešimus ir kitus pranešimus. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},"Įdėkite Po negalima nustatyti, kaip {0}" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},"Įdėkite Po negalima nustatyti, kaip {0}" apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Dalintis {0} su apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Pašto paskyros nustatymas prašome įvesti savo slaptažodį: DocType: Workflow State,hand-up,rankų iki DocType: Blog Settings,Writers Introduction,rašytojų Įvadas DocType: Address,Phone,telefonas -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Klaida vertinant Elektroninio informacinio pranešimo užsakymas {0}. Ištaisykite savo šabloną. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Klaida vertinant Elektroninio informacinio pranešimo užsakymas {0}. Ištaisykite savo šabloną. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Pasirinkite Dokumento tipas ar vaidmuo pradėti. DocType: Contact,Passive,pasyvus DocType: Contact,Accounts Manager,sąskaitos direktorius +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Jūsų mokėjimas bus atšauktas. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Pasirinkite Failo tipas DocType: Help Article,Knowledge Base Editor,Žinių bazės redaktorius apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Puslapis nerastas @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,Nuosavybės tipas DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Tik administratorius gali sutaupyti standartinę ataskaitą. Prašome pervadinti ir išsaugoti. DocType: System Settings,Background Workers,fono darbuotojai +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nazwapola {0} prieštaringų su meta objekto DocType: Deleted Document,Data,duomenys apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumento statusas apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Jūs turite {0} iš {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Rodyti Vartotojų leidimai apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Jūs turite būti registruotas ir turėti System Manager vaidmuo, kad būtų galima prieiti prie atsargines kopijas." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,likęs -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Prašome išsaugoti Prieš tvirtindami. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Prašome išsaugoti Prieš tvirtindami. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Pridėta {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Įprasta tema yra nustatytas {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype negali būti pakeistas iš {0} ir {1} iš eilės {2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesijos pra apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesijos pradžioje Nepavyko apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Šis el.pašto išsiųstas {0} ir nukopijuoti į {1} DocType: Workflow State,th,-oji -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Prašome nustatymas pagal nutylėjimą pašto dėžutę iš Setup> El pašto sąskaitą -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Sukurti naują {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Sukurti naują {0} DocType: Email Rule,Is Spam,Ar Šlamštas apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Ataskaita {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Atidaryti {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Atidaryti {0} DocType: OAuth Client,Default Redirect URI,Numatytasis Nukreipimo URI DocType: Email Alert,Recipients,gavėjai DocType: Workflow State,ok-sign,OK-ženklas @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Pagalba straipsniai ,Modules Setup,moduliai sąranka apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,tipas: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Jūsų mokėjimas nepavyko. DocType: Communication,Unshared,nebebendrinate DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modulis nerastas @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,Gamintojas vaizdas DocType: Print Settings,A4,A4 formato apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup viršutinėje naršymo juostoje, poraštės ir logotipą." DocType: Web Form Field,Max Value,Maksimali kaina -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Dėl {0} lygyje {1} iš {2} iš eilės {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Dėl {0} lygyje {1} iš {2} iš eilės {3} DocType: Contact,All,visi DocType: Email Queue,Recipient,Gavėjas DocType: Communication,Has Attachment,turi priedą @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,suderinti dešiniajame DocType: Auto Email Report,Email To,siųsti el apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Aplankas {0} nėra tuščias DocType: Page,Roles,vaidmenys -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Lauko {0} nėra pasirenkami. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Klaida: reikšmė trūksta {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Lauko {0} nėra pasirenkami. DocType: System Settings,Session Expiry,sesijos pabaiga DocType: Workflow State,ban-circle,draudimas-ratas DocType: Email Flag Queue,Unread,neskaitytas @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Vartotojo Numatytasis apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Sukurk naują DocType: Workflow State,chevron-down,"Chevron apačią -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Paštu nesiunčiamas {0} (neišplatintos / išjungta) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Paštu nesiunčiamas {0} (neišplatintos / išjungta) DocType: Async Task,Traceback,Atsekti DocType: Currency,Smallest Currency Fraction Value,Mažiausias Valiuta frakcija Vertė apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,priskirti @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,nuo DocType: Website Theme,Google Font (Heading),"Google" Šrifto (antraštė) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Pirmasis Pasirinkite grupę mazgas. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Ieškoti {0} iš {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Ieškoti {0} iš {1} DocType: OAuth Client,Implicit,numanomas DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Pridėti kaip bendravimo su šiuo dokumentų tipas (turi laukus, "statusas", "Tema")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI gavimo leidimo kodą, kai vartotojas leidžia prieigą, taip pat nepakankamumas atsakymai. Paprastai POILSIO baigtis atskleidė Klientui App.
pvz http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Neleidžiama keisti {0} po pateikimo +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Neleidžiama keisti {0} po pateikimo DocType: Communication,Comment Type,Komentuoti tipas DocType: OAuth Client,OAuth Client,OAuth "klientas apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,vartotojai @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,filtruoti duomenis DocType: Auto Email Report,Filter Data,filtruoti duomenis apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Pridėti žymę -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Prašome pirma prisegti failą. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Prašome pirma prisegti failą. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Buvo keletas klaidų nustatymas pavadinimą, prašome kreiptis į administratorių" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Priimamojo pašto dėžutę Netiksli apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,Laiškas išsiųstas DocType: DocField,Ignore XSS Filter,Ignoruoti XSS Filtruoti apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,pašalintas apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ZMI atsarginės nustatymai -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Siųsti kaip el +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Siųsti kaip el DocType: Website Theme,Link Color,Nuoroda spalva apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Vartotojas {0} negali būti išjungtas apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Gerbiamas sistema direktorius," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tavo šalis +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tavo šalis DocType: Event,Sunday,sekmadienis apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Be Tinklelis DocType: Address Template,Template,šablonas @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,Delis apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP Nustatymai apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,iš dalies keičiantis apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal mokėjimų vartai nustatymai -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) bus sutrumpintas, nes max leidžiamas simbolių yra {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) bus sutrumpintas, nes max leidžiamas simbolių yra {2}" DocType: OAuth Client,Resource Owner Password Credentials,Išteklių Savininkas slaptažodžiu DocType: OAuth Client,Response Type,Atsako tipas apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max Vartotojai @@ -2070,7 +2074,7 @@ DocType: DocField,Table,lentelė DocType: File,File Size,Failo dydis apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Jūs turite prisijungti pateikti šią formą DocType: User,Background Image,Fono paveikslėlis -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Pasirinkite savo šalį, laiko juostą ir valiutos" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Pasirinkite savo šalį, laiko juostą ir valiutos" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,tarp DocType: Async Task,Queued,eilėje @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,kurti apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Neteisingas Filtras: {0} DocType: Email Account,no failed attempts,Nėra nepavyko mėginimai +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nėra numatytasis adresas Šablonas nerasta. Prašome sukurti naują iš Setup> Spausdinimas ir paviljonai> Adresas šabloną. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Programos prieigos raktas DocType: OAuth Bearer Token,Access Token,Prieigos raktas @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub Nick DocType: DocType,Image View,Vaizdo Peržiūrėti apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Atrodo, kad kažkas negerai sandorio metu. Kadangi mes nepatvirtino mokėjimo, PayPal automatiškai grąžinsime Jums šią sumą. Jei ne, atsiųskite mums elektroninį laišką ir paminėti koreliacijos ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Įtraukti simbolius, skaičius ir didžiųjų raidžių slaptažodį" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Įdėkite Po srityje "{0}" paminėta Custom Field "{1} ', su etikete" {2} "neegzistuoja" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Įtraukti simbolius, skaičius ir didžiųjų raidžių slaptažodį" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Įdėkite Po srityje "{0}" paminėta Custom Field "{1} ', su etikete" {2} "neegzistuoja" DocType: Workflow State,signal,signalas DocType: DocType,Show Print First,Rodyti Spausdinti Pirmas apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,""Ctrl + Enter, kad galėtumėte" @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Failo '{0} "nerastas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,pašalinti skyrius DocType: User,Change Password,Pakeisti slaptažodį -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Neteisingas el.paštas: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Sveiki! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Neteisingas el.paštas: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Sveiki! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Įvykio pabaiga turi būti po pradžios apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Jūs neturite leidimo gauti ataskaitą apie: {0} +DocType: System Settings,Apply Strict User Permissions,Taikyti griežtą vartotojų teises DocType: DocField,Allow Bulk Edit,Leiskite Masiniai Redaguoti DocType: DocField,Allow Bulk Edit,Leiskite Masiniai Redaguoti DocType: Blog Post,Blog Post,Dienoraštis Pradėti -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Išplėstinė paieška +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Išplėstinė paieška apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,buvo slaptažodžio instrukcijos išsiųstas į jūsų elektroninio pašto apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",0 lygis yra dokumentas lygio leidimus \ aukštesnio lygio lauko lygio leidimus. @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,Šoninė juosta ir komentarai apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kai pakeisti dokumentą po Atšaukti ir išsaugokite jį, jis gaus naują numerį, kuris yra senojo numerio versiją." DocType: Stripe Settings,Publishable Key,skelbtinas raktas DocType: Stripe Settings,Publishable Key,skelbtinas raktas -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} m (-ai) prieš DocType: Workflow State,circle-arrow-left,apskritimo rodyklės į kairę apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis talpyklos serveryje neveikia. Susisiekite su Administrator / Tech Support apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,šalis Vardas -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Sukurti naują įrašą +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Sukurti naują įrašą apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Paieška apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Paieška DocType: Currency,Fraction,frakcija DocType: LDAP Settings,LDAP First Name Field,LDAP Vardas laukas -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Pasirinkite iš esamų priedų +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Pasirinkite iš esamų priedų DocType: Custom Field,Field Description,Laukelio aprašymas apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Vardas nenustatytas per Klausti apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,pašto dėžutę @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Informacija: DocType: Custom Field,Permission Level,leidimas lygis DocType: User,Send Notifications for Transactions I Follow,Siųsti pranešimus dėl sandorių seku -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Negalima nustatyti Pateikti, atšaukti pakeisti be Rašykite" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Negalima nustatyti Pateikti, atšaukti pakeisti be Rašykite" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Ar tikrai norite ištrinti priedą? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Negalite ištrinti arba atšaukti, nes {0} {1} yra susijęs su {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

už ""Nerasta jokių rezultatų

" -apps/frappe/frappe/__init__.py +1063,Thank you,Ačiū +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Negalite ištrinti arba atšaukti, nes {0} {1} yra susijęs su {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Ačiū apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,taupymas DocType: Print Settings,Print Style Preview,Spausdinti Stilius Peržiūra apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,Sąrašo Peržiūrėti DocType: Email Account,Use TLS,Naudoti TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neteisingas loginas ar slaptažodis apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Pridėti užsakymą JavaScript formas. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Nr +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Nr ,Role Permissions Manager,Vaidmenų Leidimai direktorius apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Pavadinimas naują spausdinimo formatą -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Išvalyti Priedas +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Išvalyti Priedas apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,privalomas: ,User Permissions Manager,Vartotojo Leidimai direktorius DocType: Property Setter,New value to be set,Nauja reikšmė turi būti nustatyta @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,prieš apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Suskirstykite dienoraščio. DocType: Workflow State,Time,Laikas DocType: DocField,Attach,pridėti -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} yra neteisingas nazwapola modelis. Ji turėtų būti {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} yra neteisingas nazwapola modelis. Ji turėtų būti {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Siųsti Komentarai prašymą tik tuo atveju, jei yra bent vienas komunikacija yra prieinami dokumento." DocType: Custom Role,Permission Rules,Teisių Taisyklės DocType: GSuite Settings,GSuite Settings,GSuite Nustatymai DocType: Address,Links,saitai -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vertė trūksta +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vertė trūksta apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Pridėti vaikas -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Pateikė įrašas negali būti išbrauktas. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Pateikė įrašas negali būti išbrauktas. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Atsarginė dydis DocType: GSuite Templates,Template Name,šablono pavadinimas -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,naujo tipo dokumente +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,naujo tipo dokumente DocType: Custom DocPerm,Read,skaityti DocType: Role Permission for Page and Report,Role Permission for Page and Report,Vaidmuo Leidimas Puslapis ir ataskaitos apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,suderinti vertę apps/frappe/frappe/www/update-password.html +14,Old Password,senas slaptažodis -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Žinutės {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Žinutės {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Norėdami formatuoti stulpelių, suteikti stulpelių etiketes užklausoje." DocType: Has Domain,Has Domain,turi domeną apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Neturite paskyros? Užsiregistruoti -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Negalima nustatyti Susieti pakeisti jei ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Negalima nustatyti Susieti pakeisti jei ne Submittable DocType: Address,Bihar,biharų apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Redaguoti Vaidmenų leidimai DocType: Communication,Link DocType,Nuoroda dokumentų tipas @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Įsitikinkite, kad jūsų profilis yra elektroninio pašto adresą" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Turite neišsaugotų pakeitimų, šią formą. Prašome įrašyti prieš tęsdami." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Numatytasis {0} turi būti galimybė +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Numatytasis {0} turi būti galimybė DocType: Tag Doc Category,Tag Doc Category,Gairė Dok Kategorija DocType: User,User Image,vartotojas Vaizdo apps/frappe/frappe/email/queue.py +289,Emails are muted,Parašyta yra išjungtas @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Kitas veik DocType: Workflow State,ok,Gerai DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Šios vertybės bus automatiškai atnaujinta sandorius ir taip pat bus naudinga apriboti leidimus šį klientą apie sandorius, kurių sudėtyje yra šių vertybių." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Leidėjas -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Nepavyko: {0} ir {1} {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Nepavyko: {0} ir {1} {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Pasirinkite Privalomas apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Žmonės apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,laiškų @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,veikia apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Atstatyti slaptažodį apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Atnaujinkite pridėti daugiau nei {0} abonentams DocType: Workflow State,hand-left,rankų liko -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} už {1} negali būti unikalus +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} už {1} negali būti unikalus DocType: Email Account,Use SSL,Naudoti SSL DocType: Workflow State,play-circle,PLAY-ratas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Pasirinkite Print formatą Redaguoti @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,Nėra Kopijuoti DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Prisijungti su LDAP DocType: Web Form,Breadcrumbs,Duonos trupiniai -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Jei savininkas +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Jei savininkas DocType: OAuth Authorization Code,Expiration time,galiojimo laikas DocType: Web Page,Website Sidebar,Interneto svetainė šoninė DocType: Web Form,Show Sidebar,Rodyti šoninė @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nepavyko rasti {0 apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Vardai ir pavardės pagal save yra lengva atspėti. apps/frappe/frappe/config/website.py +93,Knowledge Base,žinių bazės DocType: Workflow State,briefcase,portfelis -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vertė negali būti pakeisti {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vertė negali būti pakeisti {0} DocType: Feedback Request,Is Manual,Ar Rankinis DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stilius atstovauja mygtuką spalva: sėkmė - žalia, Pavojus - raudona, Inverse - Juoda, pirminė - tamsiai mėlyna, Info - šviesiai mėlyna, Įspėjimas - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Nėra ataskaita Loaded. Prašome naudoti užklausą-ataskaita / [Blogas Vardas] paleisti ataskaitą. @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Progresas apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,sektinų apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Trūksta laukai apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Neteisingas nazwapola '{0} "į autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Ieškoti dokumento tipą +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Ieškoti dokumento tipą apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Leiskite laukas likti redaguoti net po pateikimo DocType: Custom DocPerm,Role and Level,Vaidmuo ir lygis DocType: File,Thumbnail URL,Miniatiūra adresas @@ -2592,19 +2596,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Daugiau informacijos DocType: Desktop Icon,Desktop Icon,piktogramą darbalaukyje -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Jūsų mokėjimas buvo sėkmingai priimtas +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Jūsų mokėjimas buvo sėkmingai priimtas apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Atsiprašau! Jums neleidžiama peržiūrėti šį puslapį. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Patarimas: Dukart spustelėkite ląstelių redaguoti DocType: Workflow State,bell,varpas apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Klaida Elektroninio informacinio pranešimo užsakymas apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Klaida Elektroninio informacinio pranešimo užsakymas apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dalytis šiuo dokumentą su +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Sąranka> Vartotojo Leidimai direktorius apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} negali būti lapų mazgo, kaip ji turi vaikų" DocType: Communication,Info,Informacija -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Pridėti priedą +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Pridėti priedą DocType: Communication,Email,paštas apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Dėkojame už jūsų pranešimą -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Siųsti Skaityti gavimas +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Siųsti Skaityti gavimas DocType: Stripe Settings,Stripe Settings,juostele Nustatymai DocType: Stripe Settings,Stripe Settings,juostele Nustatymai DocType: Dropbox Settings,Dropbox Setup via Site Config,ZMI Sąranka naudojant Svetainės Config @@ -2671,6 +2676,7 @@ DocType: DocType,Web View,interneto Peržiūrėti apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Įspėjimas: Šis Spausdinti Formatas yra senojo stiliaus ir negali būti sukurtas per API. DocType: DocField,Print Width,Spausdinti Plotis ,Setup Wizard,sąrankos vedlys +DocType: Address,GST State Number,"Paaiškėjo, kad GST valstybinis numeris" DocType: User,Allow user to login only before this hour (0-24),Leidžia vartotojui prisijungti tik prieš šią valandą (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Aplankas yra privalomi apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2699,7 +2705,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Smulkus šriftas apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administratorius atvertas {0} ant {1} per IP adresas {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,lygu -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options "Dynamic Link" tipo srityje turi būti nukreipta į kitą Link Field su galimybe kaip "DOCTYPE" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Options "Dynamic Link" tipo srityje turi būti nukreipta į kitą Link Field su galimybe kaip "DOCTYPE" DocType: About Us Settings,Team Members Heading,Komandos nariai išlaidų kategorija apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Neteisingas CSV formatu apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Nustatykite skaičius atsarginiai @@ -2710,7 +2716,7 @@ DocType: Contact,Contact,Kontaktinis asmuo DocType: User,Third Party Authentication,Trečiųjų šalių autentifikavimo DocType: Website Settings,Banner is above the Top Menu Bar.,Reklaminis yra virš viršutiniame meniu juostoje. DocType: Razorpay Settings,API Secret,API paslaptis -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Eksportas Pranešimas: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Eksportas Pranešimas: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} neegzistuoja DocType: Email Account,Port,uostas DocType: Print Format,Arial,arial @@ -2733,7 +2739,7 @@ DocType: Kanban Board Column,Column Name,stulpelio pavadinimo DocType: Language,Based On,remiantis apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Nustatyti kaip numatytąjį apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Patikrinkite Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} už {1} negali būti indeksuojami +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} už {1} negali būti indeksuojami DocType: Communication,Email Account,Elektroninio pašto paskyra DocType: Workflow State,Download,parsisiųsti DocType: Blog Post,Blog Intro,Dienoraštis Intro @@ -2744,7 +2750,7 @@ DocType: Web Page,Insert Code,Įveskite kodą DocType: ToDo,Low,žemas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Jūs galite pridėti dinamines savybes iš dokumento naudojant Jinja šablonų sistema. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Negalioja riba {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Sąrašas dokumento tipą +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Sąrašas dokumento tipą DocType: Event,Ref Type,teisėjas tipas apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jei įkeliate naujus įrašus, palikite "pavadinimas" (ID) tuščią stulpelį." DocType: Address,Chattisgarh,Chattisgarh @@ -2766,26 +2772,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,n DocType: Print Settings,Send Print as PDF,Siųsti Spausdinti PDF formatu DocType: Web Form,Amount,Suma DocType: Workflow Transition,Allowed,leido -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,"Ten gali būti tik vienas Fold tokia forma," +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,"Ten gali būti tik vienas Fold tokia forma," apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},"Negali rašyti formatą, kuriuo {0}" apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Atkurti gamyklinius nustatymus? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neteisingas Pradinis tinklalapis apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Neteisingas Vartotojas. Bandyk iš naujo. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Būtinas priemones, skirtas nuorodai arba lentelė tipo lauko {0} iš eilės {1}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Būtinas priemones, skirtas nuorodai arba lentelė tipo lauko {0} iš eilės {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Būtinas priemones, skirtas nuorodai arba lentelė tipo lauko {0} iš eilės {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Būtinas priemones, skirtas nuorodai arba lentelė tipo lauko {0} iš eilės {1}" DocType: Auto Email Report,Send only if there is any data,"Siųsti tik tada, jei yra kokių nors duomenų" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Atstatyti filtrai -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Leidimas 0 lygis turi būti nustatytas prieš nustatomi aukštesni lygiai +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Leidimas 0 lygis turi būti nustatytas prieš nustatomi aukštesni lygiai apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Uždavinys uždarytas {0} DocType: Integration Request,Remote,Nuotolinis -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Apskaičiuoti +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Apskaičiuoti apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Prašome pasirinkti DOCTYPE pirmas apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Patvirtinkite el apps/frappe/frappe/www/login.html +42,Or login with,Arba prisijunkite su DocType: Error Snapshot,Locals,vietiniai apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Perduota per {0} ant {1} {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} paminėjo jus komentaro {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pvz (55 + 434) / 4 arba = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,pvz (55 + 434) / 4 arba = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} reikalingas DocType: Integration Request,Integration Type,integracija tipas DocType: Newsletter,Send Attachements,siųsti priedais @@ -2795,15 +2801,15 @@ DocType: DocField,Perm Level,Permė lygis apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Renginiai šiandienos Kalendorius DocType: Web Page,Web Page,Tinklo puslapis DocType: Blog Category,Blogger,"Blogger" -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Be Visuotinė paieška" neleidžiama tipas {0} iš eilės {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Be Visuotinė paieška" neleidžiama tipas {0} iš eilės {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Be Visuotinė paieška" neleidžiama tipas {0} iš eilės {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Be Visuotinė paieška" neleidžiama tipas {0} iš eilės {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Žiūrėti sąrašą -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Data turi būti formatu: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Data turi būti formatu: {0} DocType: Workflow,Don't Override Status,Negalima nepaisyti Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Pateikite reitingą. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Komentarai Prašymas apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Paieškos terminas -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Pirmasis Vartotojas: Jūs +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Pirmasis Vartotojas: Jūs apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,pasirinkti stulpelius DocType: Translation,Source Text,šaltinis tekstas apps/frappe/frappe/www/login.py +55,Missing parameters for login,Trūksta parametrai prisijungęs @@ -2825,7 +2831,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,importavimas DocType: ToDo,Assigned By,pavestas apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Jūs galite naudoti Tinkinti formą nustatyti lygius laukus. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Pasirinkti savo regioną +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Pasirinkti savo regioną DocType: Custom DocPerm,Level,lygis DocType: Custom DocPerm,Report,ataskaita apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Suma turi būti didesnė už 0. @@ -2845,7 +2851,7 @@ DocType: Website Theme,Background,fonas DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON sąrašas DocTypes naudojamų taikyti vartotojų teises. Jei tuščias, visi susiję DocTypes bus naudojamas taikyti vartotojų teises." DocType: Report,Ref DocType,teisėjas dokumentų tipas apps/frappe/frappe/www/feedback.py +42,Please add a rating,Prašome pridėti reitingą -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Negalima nustatyti Iš dalies pakeisti be Atšaukti +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Negalima nustatyti Iš dalies pakeisti be Atšaukti apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Visas puslapis DocType: DocType,Is Child Table,Ar vaikas lentelė apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} turi būti vienas iš {1} @@ -2860,7 +2866,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Tai eina virš skaidri apps/frappe/frappe/config/setup.py +260,Install Applications.,Įdiegti programas. DocType: Contact,Last Name,Pavardė DocType: Event,Private,privatus -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nėra įspėjimai šiandien +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nėra įspėjimai šiandien DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Siųsti email print Priedai kaip PDF (rekomenduojama) DocType: Web Page,Left,į kairę DocType: Event,All Day,Visą dieną @@ -2874,7 +2880,7 @@ DocType: Event,Send an email reminder in the morning,Siųsti el priminimą ryte DocType: Blog Post,Published On,paskelbta DocType: Contact,Gender,Lytis apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Privaloma informacija truksta: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Lauko {0} "negalima nustatyti kaip unikali, nes ji turi ne unikalius vertybes" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Lauko {0} "negalima nustatyti kaip unikali, nes ji turi ne unikalius vertybes" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Tik 200 įdėklai leidžiama viename prašyme DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,nuoroda tipas @@ -2887,7 +2893,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,įspėjamasis ženklas DocType: Workflow State,User,Vartotojas DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Rodyti Pavadinimas naršyklės lange "priešdėlio - pavadinimas" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Teksto dokumento tipui +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Teksto dokumento tipui apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,paleisti Testai apps/frappe/frappe/handler.py +91,Logged Out,Atsijungęs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Daugiau ... @@ -2913,13 +2919,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,šiuo metu Peržiūri DocType: DocField,Default,Numatytas apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} pridėjo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Paieška "{0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Paieška "{0}" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Prašome išsaugoti ataskaitą pirmas apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,įtraukta {0} abonentai apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nėra viduje DocType: Workflow State,star,žvaigždė -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,vertės atskirti kableliais -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Maksimalus plotis tipo valiuta yra 100px iš eilės {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,vertės atskirti kableliais +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Maksimalus plotis tipo valiuta yra 100px iš eilės {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Prašome pasidalinti savo atsiliepimą {0} apps/frappe/frappe/config/website.py +13,Content web page.,Turinio interneto puslapis. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Įdėti naują vaidmenį @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Negaliojantis LDAP vartotojas apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} neteisingas valstybė apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Prašome pasirinkti kitą mokėjimo būdą. "PayPal" nepalaiko sandoriams valiuta "{0} ' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Paieška laukas {0} negalioja +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Paieška laukas {0} negalioja DocType: Workflow State,ok-circle,OK-ratas apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Jūs galite rasti dalykų klausia "rasite oranžinę klientus" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Atsiprašau! Vartotojas turėtų turėti pilną priėjimą prie savo įrašo. @@ -2999,7 +3005,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtruoti Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekstas rodomas nuorodą į tinklapį, jei ši forma turi tinklalapį. Nuoroda maršrutas bus automatiškai generuojama, remiantis "page_name` ir` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Atsiliepimai Gaidukas -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Prašome nustatyti {0} pirmas +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Prašome nustatyti {0} pirmas DocType: Unhandled Email,Message-id,Pranešimo ID DocType: Patch Log,Patch,lopas DocType: Async Task,Failed,nepavyko diff --git a/frappe/translations/lv.csv b/frappe/translations/lv.csv index 6f82ca3b0d..23132566a8 100644 --- a/frappe/translations/lv.csv +++ b/frappe/translations/lv.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Lietotāja DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,"Piezīme: vairākās sesijās tiks atļauts, ja mobilās ierīces" apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Enabled e-pasta pastkastīti lietotāju {lietotāji} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nevar nosūtīt šo e-pastu. Jūs esat šķērsojuši sūtīšanas robežu {0} vēstules šajā mēnesī. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Pastāvīgi Pieteikt {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Pastāvīgi Pieteikt {0}? DocType: Address,County,grāfiste DocType: Workflow,If Checked workflow status will not override status in list view,Ja Pārbaudīts darbplūsmas statuss netiks ignorēt statusu saraksta skatā apps/frappe/frappe/client.py +280,Invalid file path: {0},Nederīgs faila ceļš: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Lūdzu apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,Lietotāja e-pasta DocType: User,Username,Lietotājvārds -apps/frappe/frappe/model/base_document.py +581,Value too big,Vērtība ir pārāk liels +apps/frappe/frappe/model/base_document.py +580,Value too big,Vērtība ir pārāk liels DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script tests DocType: Contact,Department,Nodaļa @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Logs DocType: Custom DocPerm,This role update User Permissions for a user,Šī loma atjaunina lietotāja atļaujas lietotājs apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Pārdēvēt {0} DocType: Workflow State,zoom-out,zoom-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Nevar atvērt {0}, kad tā instance ir atvērts" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Nevar atvērt {0}, kad tā instance ir atvērts" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabula {0} nevar būt tukša apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Ar grāmatās apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Images DocType: Communication,Reference Owner,atsauce Īpašnieks DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Mazākais cirkulējošo frakciju bloks (monētas). Attiecībā uz, piemēram 1 centu par USD, un tā būtu jāreģistrē kā 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Lūdzu, sniedziet FULLNAME." apps/frappe/frappe/model/document.py +904,Beginning with,Sākot ar apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Data Import Template @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Vecāks DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ja ir iespējots, parole spēks tiks īstenoti, pamatojoties uz minimālo Paroles Score vērtību. Vērtība 2 ir vidēja stipra un 4 ir ļoti spēcīga." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ja ir iespējots, parole spēks tiks īstenoti, pamatojoties uz minimālo Paroles Score vērtību. Vērtība 2 ir vidēja stipra un 4 ir ļoti spēcīga." DocType: About Us Settings,"""Team Members"" or ""Management""","""Team Members"" vai ""Management""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Noklusējuma ""Check"" veida laukā jābūt vai nu ""0"" vai ""1""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Noklusējuma ""Check"" veida laukā jābūt vai nu ""0"" vai ""1""" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Vakar DocType: Contact,Designation,Apzīmējums DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Vai Publicēts lauks DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,redzams apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Vairāku pievienošana -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nepatīk +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nepatīk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Uzstādītu displeja etiķeti jomā apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nepareiza vērtība: {0} ir {1}{2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Mainīt lauka īpašības (slēpt, tikai lasāms, atļauja uc)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Iestatīj apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrators Pieteicies DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktlēcas iespējas, piemēram, ""Pārdošanas vaicājumu, Support vaicājumu"" uc katra jaunā rindā vai atdalīti ar komatiem." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Ievietot +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Ievietot apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Izvēlieties {0} DocType: Print Settings,Classic,Klasisks DocType: Desktop Icon,Color,Krāsa @@ -122,7 +122,7 @@ DocType: Translation,Translation,tulkojums apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalēt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,Klients -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Šī forma ir mainīta, kad esat iekrauj to" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Šī forma ir mainīta, kad esat iekrauj to" DocType: User Permission for Page and Report,User Permission for Page and Report,Lietotājs Atļauja un Pārskatu DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ja nav noteikts, valūtas precizitāte būs atkarīga no numura formātu" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Iemesls apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Lūdzu, norādiet lietotāju" DocType: Email Unsubscribe,Email Unsubscribe,E-pasta Atteikties DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Izvēlieties attēlu aptuveni platums 150 pikseļiem ar caurspīdīgu fonu labākos rezultātus. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Pirmais lietotājs kļūs System Manager (jūs varat mainīt šo vēlāk). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Pirmais lietotājs kļūs System Manager (jūs varat mainīt šo vēlāk). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,aplis-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Augšupielāde ... DocType: Email Domain,Email Domain,Email Domain DocType: Workflow State,italic,kursīvs apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Ikvienam -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Nevar iestatīt Import bez Izveidot +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Nevar iestatīt Import bez Izveidot apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Pasākumu un citi kalendāri. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Visi lauki ir jāiesniedz komentāru. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,"Velciet, lai kārtotu kolonnas" @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nevar izdzēst Mājai un pielikumus mapes apps/frappe/frappe/config/desk.py +19,Files,faili apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Atļaujas saņemt piemērots lietotājiem, pamatojoties uz to, ko Lomas tās ir piešķirtas." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Jums nav atļauts sūtīt e-pastus, kas saistīti ar šā dokumenta" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Atlasiet atleast 1 kolonnu no {0}, lai sakārtotu / grupu" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Jums nav atļauts sūtīt e-pastus, kas saistīti ar šā dokumenta" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Atlasiet atleast 1 kolonnu no {0}, lai sakārtotu / grupu" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Atzīmējiet šo, ja esat testēšana jūsu maksājumu, izmantojot Sandbox API" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Jums nav atļauts dzēst standarta mājas lapas tēmu DocType: Feedback Trigger,Example,Piemērs @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Kopā Reģistrētiem apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ja loma nav piekļuves pie 0 līmenī, tad augstāks līmenis ir bezjēdzīgas." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Saglabāt kā DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Parādiet sīkāku informāciju +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Parādiet sīkāku informāciju DocType: System Settings,Run scheduled jobs only if checked,"Izmantot plānots darbavietas tikai tad, ja pārbauda" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Tiks parādīts tikai tad, ja ir aktivizēta sadaļu virsraksti" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhīvs @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Slēpt virsraksts DocType: Address,Current,strāva DocType: Address,Current,strāva -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Saistītie dokumenti apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupas DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,noņemt-apli @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filtrs apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Fieldname {0} nevar būt speciālās rakstzīmes, piemēram, {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Atjaunināt daudzas vērtības vienlaikus. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Kļūda: Dokumentu ir mainīta pēc tam, kad esat atvēris to" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nav noklusējuma Adrese veidne atrasts. Lūdzu, izveidojiet jaunu no uzstādīšanas> Poligrāfija un Brendings> Adrese veidni." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} pieteicies out: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Nevar iestatīt Piešķirt Pieteikt ja ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Nevar iestatīt Piešķirt Pieteikt ja ne Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrēts ar "{0}" DocType: Salutation,Administrator,Administrators @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog sadaļa apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standarta lomas nevar atspējot DocType: Address,Mizoram,Mizorama DocType: Newsletter,Newsletter,Biļetens -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"Nevar izmantot sub-vaicājumu, lai ar" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"Nevar izmantot sub-vaicājumu, lai ar" DocType: Web Form,Button Help,poga Palīdzība DocType: Kanban Board Column,purple,violets DocType: About Us Settings,Team Members,Komandas locekļi @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Iegūstiet s apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Abonementā beidzās {0}. Lai atjaunotu, {1}." DocType: Workflow State,plus-sign,plus zīmi apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup jau pabeigta -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nav instalēta +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nav instalēta DocType: Workflow State,Refresh,Atsvaidzināt DocType: Event,Public,Valsts apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nav ko parādīt @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Patika apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-pasta atbalsts DocType: DocField,Print Hide If No Value,Print Hide Ja Nē Value DocType: Event,yellow,dzeltens -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Vai Publicēts lauks ir jābūt derīgai fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Vai Publicēts lauks ir jābūt derīgai fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Attachment DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Eksporta Template @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},"Jauns konts ir izveidots, lai jūs {0}" apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrukcijas atsūtīto apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrukcijas atsūtīto -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Ievadiet e-pasta saņēmējs (-i) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Ievadiet e-pasta saņēmējs (-i) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag rinda apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nevar noteikt atvērta {0}. Mēģināt kaut ko citu. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,Message ID DocType: Property Setter,Field Name,Lauka nosaukums apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nav konfigurēta. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,vai -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modulis nosaukums ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Turpināt +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modulis nosaukums ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Turpināt DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,apliecība DocType: User,Tile,Flīze @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Rādīt visas versijas DocType: Workflow State,Print,Drukāt DocType: User,Restrict IP,Ierobežot IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,mērinstrumentu panelis apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nevar nosūtīt e-pastus šajā laikā apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Meklēt vai ierakstiet komandu DocType: Communication,Timeline Name,Timeline Name @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Sales Master vadītājs apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Nosaukums dokumentu tipu (DOCTYPE), kuru vēlaties šajā jomā, ir saistīta ar. piemēram, Klienta" DocType: User,Roles Assigned,Lomas Piešķirtie -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Meklēt Palīdzība -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Meklēt Palīdzība +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Meklēt Palīdzība +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Meklēt Palīdzība DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Jūsu jautājums ir saņemts. Mēs atbildēsim atpakaļ drīz. Ja jums ir kāda papildu informācija, lūdzu, atbildiet uz šo pastu." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Atļaujas tiek automātiski pārrēķināti standarta atskaites un meklējumi. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Rediģēt virsraksts DocType: File,File URL,Failu URL DocType: Version,Table HTML,galda HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Nav atrasti ""rezultāti

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Pievienot abonenti apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Gaidāmie Notikumi Šodien DocType: Email Alert Recipient,Email By Document Field,E-pasts pēc dokumenta Field @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,"Summa, pamatojoties uz lauka" apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Lietotājs ir obligāta Share DocType: DocField,Hidden,Apslēpts DocType: Web Form,Allow Incomplete Forms,Atļaut Nepilnīga Veidlapas -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} jāuzstāda vispirms +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} jāuzstāda vispirms apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Izmantot dažus vārdus, izvairīties no kopējās frāzes." DocType: Workflow State,plane,plakne -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Hmm. Jūsu maksājums nav izdevies. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ja Jums ir augšupielādējot jaunus rekordus, ""nosaukšana Series"" kļūst obligāta, ja klāt." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Saņemt brīdinājumus par Today +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Saņemt brīdinājumus par Today apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE var pārdēvēta tikai Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},mainītais vērtība {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Lūdzu, pārbaudiet savu e-pastu, lai pārbaudītu" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold nevar būt beigās formu +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold nevar būt beigās formu DocType: Communication,Bounced,Atlekšanai DocType: Deleted Document,Deleted Name,svītrots vārds apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistēmas un tīmekļa vietnes lietotājiem @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumentu Rindā DocType: GSuite Templates,Destination ID,Destination ID DocType: Desktop Icon,List,Saraksts DocType: Communication,Link Name,link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Lauks {0} rindā {1} nevar noslēpt un obligāti bez noklusējuma +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Lauks {0} rindā {1} nevar noslēpt un obligāti bez noklusējuma DocType: System Settings,mm/dd/yyyy,mm / dd / gggg apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nepareiza parole: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nepareiza parole: DocType: Print Settings,Send document web view link in email,Nosūtīt dokumentu web skata saiti e-pastā apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Jūsu Atsauksmes par dokumenta {0} ir veiksmīgi saglabāta apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Iepriekšējais -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rindas {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-valūta. Lai, piemēram, ""Cent""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Izvēlieties augšupielādēto failu @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Saite apps/frappe/frappe/utils/file_manager.py +96,No file attached,Neviens fails pievienots DocType: Version,Version,Versija DocType: User,Fill Screen,Aizpildīt ekrānu -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nevar parādīt šo koku ziņojumu, sakarā ar trūkstošo datiem. Lielākā daļa, iespējams, tā tiek filtrēts, kas saistīts ar atļaujas." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Lūdzu uzstādīšana noklusējuma e-pasta kontu iestatīšana> E-pasts> e-pasta kontu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nevar parādīt šo koku ziņojumu, sakarā ar trūkstošo datiem. Lielākā daļa, iespējams, tā tiek filtrēts, kas saistīts ar atļaujas." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Izvēlieties Fails apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","dokumenta veids ..., piemēram, klientu" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumenta veids ..., piemēram, klientu" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Nosacījums '{0}' ir nederīgs DocType: Workflow State,barcode,svītrkoda apps/frappe/frappe/config/setup.py +232,Add your own translations,Pievienojiet savu tulkojumu @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Trešdiena apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Neatkarīgi no funkcijām balstīta atļauju noteikumiem, jūs varat pieteikties lietotāja atļaujas, pamatojoties uz DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Šīs atļaujas attieksies uz visiem darījumiem, kuros atļauts ieraksts ir saistītas. Piemēram, ja uzņēmums C pievieno lietotāja atļaujas lietotāja X, lietotājs X būs tikai iespēja redzēt darījumus un kam ir uzņēmuma C, kā saistītajā vērtību." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Image laukam jābūt derīgam fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Image laukam jābūt derīgam fieldname DocType: OAuth Client,Token,žetons DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (nosaukums) personu, kuras īpašums ir jānosaka" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Lai atjaunotu, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Sidebar Items apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} jau ir instalēta DocType: Workflow State,exclamation-sign,izsaukuma-zīme apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Rādīt atļaujas -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline lauks jābūt Link vai Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline lauks jābūt Link vai Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,datumu diapazons apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Ganta apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} no {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Ievies apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Šifrēšanas atslēga ir nederīga, lūdzu, pārbaudiet site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Līdz DocType: Kanban Board Column,darkgrey,tumši pelēks -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Veiksmīga: {0} uz {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Veiksmīga: {0} uz {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Nevar mainīt lietotāja datus demo. Lūdzu reģistrēties, lai izveidotu jaunu kontu https://erpnext.com" apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Lūdzu atkārtot to veikt izmaiņas apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"PDF paaudzes neizdevās, jo šķelto attēlu saites" @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Saliekams apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saglabāts apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Kas jums ir nepieciešama palīdzība ar? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Iespējas izvēlieties. Katrs risinājums jaunā rindā. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Pastāvīgi Atcelt {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Pastāvīgi Atcelt {0}? DocType: Workflow State,music,mūzika DocType: Web Page,Settings,Settings apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Lūdzu, norādiet dokumenta tips" DocType: Print Format,Style Settings,Style iestatījumi -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Kārtot lauks {0} ir jābūt derīgam fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Kārtot lauks {0} ir jābūt derīgam fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Vairāk DocType: Contact,Sales Manager,Pārdošanas vadītājs apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Pārdēvēt DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Tāpat +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Tāpat DocType: Customize Form Field,Customize Form Field,Pielāgot Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Atļaut lietotāju DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Pārbaudīt, kuri dokumenti ir lasāma, vai lietotāju" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listing lietotni nav atļauta -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,"izmantot%, kā aizstājējzīmi" -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email Domēna nav konfigurēts šim kontam, izveidot vienu?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,"izmantot%, kā aizstājējzīmi" +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email Domēna nav konfigurēts šim kontam, izveidot vienu?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Ieslēgt Auto Atbildēt apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Neesmu redzējis @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Iestatīt tikai vienreiz DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Saņēmēja DocType: Address,Nagaland,Nāgālenda apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Lietotājvārds {0} jau eksistē -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Nevar iestatīt importu, jo nav importēšanai {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Nevar iestatīt importu, jo nav importēšanai {1}" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Tur ir kļūda jūsu adrešu veidni {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,No Pilns nosaukums apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Jums nav piekļuves Ziņojums: {0} DocType: User,Send Welcome Email,Nosūtīt welcome e-pastu apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Augšupielādēt CSV failu, kas satur visus lietotāja atļaujas tādā pašā formātā kā Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Noņemt filtru +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Noņemt filtru DocType: Address,Daman and Diu,Daman un Diu DocType: Address,Personal,Personisks apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standarta DOCTYPE nevar noklusējuma drukas formātā, izmantojiet Pielāgot Form" DocType: Report,Query,Jautājums DocType: DocType,Sort Order,Kārtošanas secība -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""List View"" nav atļauts veidam {0} rindā {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""List View"" nav atļauts veidam {0} rindā {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Izvēlieties etiķeti, pēc kura vēlaties ievietot jauno darbības jomu." ,Document Share Report,Dokumentu Share Ziņojums DocType: User,Last Login,Pēdējā pieteikšanās -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname ir nepieciešama rindā {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname ir nepieciešama rindā {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonna DocType: Custom Field,Adds a custom field to a DocType,"Pievieno pielāgotu lauku, lai DOCTYPE" DocType: File,Is Home Folder,Vai Mājas mape @@ -594,7 +594,7 @@ DocType: File,Folder,Mape DocType: DocField,Index,Indekss DocType: Email Group,Newsletter Manager,Biļetens vadītājs apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,1. variants -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Visi ziņojumi +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} līdz {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Pieteikties kļūdas pieprasījumu laikā. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ir veiksmīgi pievienota e-pasta grupu. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indikators DocType: DocShare,Everyone,Visi DocType: Workflow State,backward,atpakaļ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tikai viens noteikums ļāva ar tādu pašu lomu, līmeni un {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tikai viens noteikums ļāva ar tādu pašu lomu, līmeni un {1}" DocType: Email Queue,Add Unsubscribe Link,Pievienot Atrakstīties saiti apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nav komentāru vēl nav. Sākt jaunu diskusiju. DocType: Workflow State,share,akcija @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nav at apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Skatīt ES PVN reģistrā apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Fona krāsa -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Bija kļūdas, nosūtot e-pastu. Lūdzu, mēģiniet vēlreiz." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Bija kļūdas, nosūtot e-pastu. Lūdzu, mēģiniet vēlreiz." DocType: Portal Settings,Portal Settings,portāla iestatījumi DocType: Web Page,0 is highest,0 ir augstākais apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Vai jūs tiešām vēlaties, lai atkārtoti saistīt šo paziņojumu {0}?" @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Sazinieties ar mums Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Meklēšana ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Meklēšana ... DocType: Workflow State,text-width,teksta platums -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimālā Pielikums Limit šā ieraksta sasniegts. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimālā Pielikums Limit šā ieraksta sasniegts. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Šīs obligātās lauki ir jāaizpilda:
DocType: Email Alert,View Properties (via Customize Form),View Properties (caur Pielāgot forma) DocType: Note Seen By,Note Seen By,Piezīme redzams @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder ziņojumus tieši pārvalda pārskata celtnieks. Neko darīt. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Lūdzu, apstipriniet savu e-pasta adresi" apps/frappe/frappe/model/document.py +903,none of,neviens no -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Nosūtīt man kopiju +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Nosūtīt man kopiju apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Augšupielādēt lietotāju atļauju DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Pārbaudīts posteņi tiks parādīts uz darbvirsmas -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nevar iestatīt par vientuļajām tipiem +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nevar iestatīt par vientuļajām tipiem apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} neeksistē. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} šobrīd apskatei šo dokumentu DocType: ToDo,Assigned By Full Name,Piešķirtie Ar Pilns nosaukums apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} atjaunināta -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Ziņojums nevar iestatīt par vientuļajām tipiem +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Ziņojums nevar iestatīt par vientuļajām tipiem apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Pirms {0} dienas DocType: Email Account,Awaiting Password,Gaida Paroles DocType: Address,Address Line 1,Adrese Line 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Valstīm par darbplūsmas (piemēram projekts, Apstiprināts, anulēts)." DocType: Print Settings,Allow Print for Draft,Ļauj Print projektu apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Komplektu skaits -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,"Iesniegt šo dokumentu, lai apstiprinātu" +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,"Iesniegt šo dokumentu, lai apstiprinātu" DocType: Contact,Unsubscribed,Atrakstīts apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Uzstādīt pasūtījuma lomas lapu un ziņojumu apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,reitings: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Datu importēšana Tool DocType: Address,Dadra and Nagar Haveli,Dādra un Nagarhaveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Augšupielādējot failus, lūdzu, pagaidiet dažas sekundes." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Pievienojiet savu attēlu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Pievienojiet savu attēlu apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Rindu Vērtības Mainīts DocType: Workflow State,Stop,Apstāties DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Saite uz lapu, kuru vēlaties atvērt. Atstājiet tukšu, ja jūs vēlaties, lai padarītu to grupa vecākiem." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Izlīdziniet uzlīmes uz kreiso DocType: Help Article,Expert,eksperts DocType: Workflow State,circle-arrow-right,loks bultas pa labi DocType: LDAP Settings,LDAP Server Url,LDAP servera URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Nevar atvērt gadījumu, kad tā {0} ir atvērts" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Nevar atvērt gadījumu, kad tā {0} ir atvērts" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Rindā uz instalēt DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Nosūtīt Atrakstīties saiti @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} noņemtas DocType: Custom DocPerm,Apply User Permissions,Piesakies lietotāju atļauju DocType: User,Modules HTML,Moduļi HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Lietotāja atļauju vadītājs apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Trūkstošie Vērtības Nepieciešamais DocType: DocType,Other Settings,Citi iestatījumi DocType: Social Login Keys,Frappe,frapē @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Uzrādītāja Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nav dokumenta atlasīts apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Notikums -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",Par {0}{1} rakstīja: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",Par {0}{1} rakstīja: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nevar izdzēst standarta lauku. Jūs varat paslēpt to, ja jūs vēlaties" DocType: Top Bar Item,For top bar,Par augšējā joslā apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nevar noteikt {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,Galds Access DocType: Workflow State,minus,mīnuss apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Servera kļūda: Lūdzu, pārbaudiet servera žurnālos vai sazinieties ar tehnoloģiju atbalstu." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Welcome e-pasts nosūtīts -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Pieņemsim sagatavot sistēmu pirmās lietošanas. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Pieņemsim sagatavot sistēmu pirmās lietošanas. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Featured apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Jau Reģistrēta DocType: System Settings,Float Precision,Float Precision @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,atļaut drukāt apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nav Apps Uzstādītas apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,"Atzīmējiet no laukuma, Obligāta" DocType: Communication,Clicked,Uzklikšķināt -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nav atļaujas '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nav atļaujas '{0}' {1} DocType: User,Google User ID,Google lietotāja ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Plānotais sūtīt DocType: DocType,Track Seen,Track Seen @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Sinhronā Sessions DocType: OAuth Client,Client Credentials,klientu Kvalifikācijas dati -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Atveriet moduli vai rīku +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Atveriet moduli vai rīku DocType: Communication,Delivery Status,Piegāde statuss DocType: Module Def,App Name,App Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksimālais faila izmērs atļauts ir {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,atsauces Paziņojums DocType: Email Queue,Unsubscribe Method,Atteikties metode DocType: GSuite Templates,Related DocType,Saistītās DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,"Labot, lai pievienotu saturu" -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,izvēlieties valodas -apps/frappe/frappe/__init__.py +510,No permission for {0},Nav atļaujas par {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,izvēlieties valodas +apps/frappe/frappe/__init__.py +509,No permission for {0},Nav atļaujas par {0} DocType: DocType,Advanced,Uzlabots apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Šķiet, API atslēga vai API Secret ir nepareizi !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Atsauce: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Ievadiet veidlapu veids apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nav ierakstu tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,noņemt lauks DocType: User,Send Password Update Notification,Nosūtīt Password atjaunināšanas paziņojumu -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Ļaujot DOCTYPE, DOCTYPE. Esiet uzmanīgi!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Ļaujot DOCTYPE, DOCTYPE. Esiet uzmanīgi!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Nestandarta formāti drukāšanai, E-pasts" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Atjaunots uz jauno versiju DocType: Custom Field,Depends On,Atkarīgs On @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,viens no apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Lūdzu, izvēlieties failu kopētu" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,vienu brīdi Pārbaude apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Rādīt birkas +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ja Piesakies Stingra Lietotāja atļauja tiek pārbaudīta un lietotāja atļauja tiek definēta DOCTYPE lietotājs, tad visi dokumenti, kur vērtība saites ir tukšs, netiks rādīta šim lietotājam" DocType: Address,Billing,Norēķinu DocType: Email Queue,Not Sent,Nav nosūtīts DocType: Web Form,Actions,Darbības @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,skaidrs apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Katru dienu notikumus vajadzētu pabeigt tajā pašā dienā. DocType: Communication,User Tags,Lietotāja birkas apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Notiek attēli .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Lietotāja DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Lejupielādē App {0} DocType: Communication,Feedback Request,Atsauksmes pieprasījums @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Pievienot Kontaktpersona DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Pēc izvēles: Vienmēr sūtīt uz šiem ID. Katrs e-pasta adrese uz jaunu rindu -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Slēpt detaļas +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Slēpt detaļas DocType: Workflow State,Tasks,Uzdevumi DocType: Event,Tuesday,Otrdiena DocType: Blog Settings,Blog Settings,Blog iestatījumi @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Rakstīt Python failu tajā pašā mapē, kur tas tiek saglabāts, un atgriezties kolonnu un rezultātu." DocType: DocType,Sort Field,Kārtot Field DocType: Razorpay Settings,Razorpay Settings,Razorpay iestatījumi -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Lauks {0} tipa {1} nevar būt obligāta -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","piem. Ja Piesakies lietotāja atļaujas tiek pārbaudīts ziņojums DOCTYPE bet nav lietotāja atļaujas tiek noteiktas ziņojumā lietotājs, tad visi ziņojumi tiek pierādīts, ka lietotājs" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Lauks {0} tipa {1} nevar būt obligāta apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Pievienot vēl apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Slēpt Chart DocType: System Settings,Session Expiry Mobile,Session Derīguma Mobile @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,Kavējas apps/frappe/frappe/config/setup.py +128,List of backups available for download,Saraksts backups pieejams lejupielādei apps/frappe/frappe/www/login.html +89,Sign up,Pierakstīties DocType: Test Runner,Output,izvade +DocType: Email Alert,Set Property After Alert,Uzstādīt īpašuma Pēc Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Pievienot laukus uz veidlapām. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Izskatās, ka kaut kas nav kārtībā ar šī portāla Paypal konfigurāciju." DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,lapa DocType: Portal Menu Item,Portal Menu Item,Portāls Izvēlnes pozīcija DocType: User Email,Email ID,E-pasta ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ja Piesakies Lietotāju atļaujas tiek pārbaudīts Report Doctype bet neviena Lietotāju atļaujas tiek definēta ziņojumā par lietotāju, tad visi ziņojumi tiek parādīti šim lietotājam" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Saraksts no resursiem, kas Klientam App būs pieejama pēc tam, kad lietotājs to atļauj.
piemēram, projekts" DocType: Translation,Translated Text,tulkots Teksta DocType: Contact Us Settings,Query Options,Vaicājuma opcijas @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Ziņojums Visu dokumentu akcijas apps/frappe/frappe/www/update-password.html +18,New Password,New Password -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} trūkst +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} trūkst apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Atvaino! Jūs nevarat izdzēst auto radīto komentārus DocType: Website Theme,Style using CSS,"Stils, izmantojot CSS" apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Atsauce DOCTYPE @@ -1129,7 +1131,7 @@ DocType: User,Block Modules,Bloķēt moduļi apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Atgriešanās garums {0} par '{1}' in '{2}'; Garumu iestatīšana kā {3} radīs truncation datus. DocType: Print Format,Custom CSS,Custom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Pievienot komentāru -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorēja: {0} uz {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorēja: {0} uz {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log no kļūdas automatizēto pasākumos (plānotāja). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Nav derīgs komatu atdalītu vērtību (CSV File) @@ -1138,7 +1140,7 @@ DocType: Email Account,Default Incoming,Default Ienākošais DocType: Workflow State,repeat,atkārtot DocType: Website Settings,Banner,Karogs DocType: Role,"If disabled, this role will be removed from all users.","Ja izslēgta, šis uzdevums tiks noņemts no visiem lietotājiem." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Palīdzība uz Meklēt +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Palīdzība uz Meklēt apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Reģistrēta bet invalīdiem DocType: DocType,Hide Copy,Slēpt Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Skaidrs visiem lomas @@ -1170,7 +1172,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Valsts apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adreses DocType: Communication,Shared,dalīta -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Pievienot dokumentu Drukāt +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Pievienot dokumentu Drukāt DocType: Bulk Update,Field,lauks DocType: Communication,Received,Saņemti DocType: Social Login Keys,Google Client ID,Google Klienta ID @@ -1191,12 +1193,12 @@ DocType: Report,Query Report,Vaicājums pārskats DocType: User,Set New Password,Uzstādīt jauno paroli DocType: User,Github User ID,GitHub lietotāja ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ja documentation -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nevar izdzēst vai atcelt, jo {0} {1} ir saistīta ar {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nevar izdzēst vai atcelt, jo {0} {1} ir saistīta ar {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Nezināms app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nav derīgs ziņojumu formātu. Ziņojumā formāts būtu \ vienu no šīm% s DocType: Communication,Chat,Tērzēšana -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} parādās vairākas reizes rindās {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} parādās vairākas reizes rindās {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} no {1} līdz {2} rindā # {3} DocType: Communication,Expired,Beidzies DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Kolonnu skaits uz lauka režģī (Kopā Kolonnas režģī jābūt ne mazāk par 11) @@ -1206,30 +1208,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Ir konts? Pieslēgt apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nezināms Print Format: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Sabrukums -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Lietotājs nav atļauts dzēst {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Lietotājs nav atļauts dzēst {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Pēdējās izmaiņas: DocType: Help Article,Likes,Patīk DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script kodu apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Izveidot lietotāja e-pastu apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Izveidot lietotāja e-pastu -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nav atļaujas Norādītie +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nav atļaujas Norādītie apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globālie iestatījumi: Lietotājiem būs tikai iespēja izvēlēties pārbaudīt ikonas apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nav atrasts DocType: Custom Role,Custom Role,Custom loma apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorēt lietotāja atļaujas Ja Trūkst -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Lūdzu, saglabājiet dokumentu pirms augšupielādes." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Lūdzu, saglabājiet dokumentu pirms augšupielādes." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Ievadiet paroli DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Pievienot citu komentāru apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,rediģēt DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Anulēt abonementu no biļetenu -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Reizes jānāk pirms pārtraukuma iedaļa +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Reizes jānāk pirms pārtraukuma iedaļa apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Jaunākie grozījumi izdarīti ar DocType: Workflow State,hand-down,roka uz leju DocType: Address,GST State,GST valsts -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Nevar iestatīt Atcelt bez Pieteikt +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Nevar iestatīt Atcelt bez Pieteikt DocType: Website Theme,Theme,Tēma apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Bija kļūdas. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Novirzīšanu URI pienākums Auth kodeksa @@ -1248,7 +1250,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mani DocType: Website Theme,Text Color,Teksta Color DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Nederīga Pieprasījums -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Šī forma nav nekādas ieejas +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Šī forma nav nekādas ieejas apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesija Derīguma jābūt formātā {0} DocType: Website Sidebar Item,Group,Grupa DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izvēlieties target = ""_blank"" atvērt jaunu lapu." @@ -1257,7 +1259,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorēt kodējumu kļūdas. DocType: Workflow State,wrench,izmežģījums apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Not Set -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Lietotāja DocType: Authentication Log,Date,Datums DocType: Website Settings,Disable Signup,Atslēgt Reģistrācija apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Lūdzu, uzgaidiet, kamēr jūsu sistēma tiek uzstādīta. Tas var aizņemt pāris mirkļus." @@ -1268,7 +1269,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Pievienot komentāru DocType: DocField,Mandatory,Saistošs apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modulis eksportēt -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nav pamata atļaujas komplekts +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nav pamata atļaujas komplekts apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Jūsu abonementa termiņš beigsies {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Lejupielādes saiti par savu rezerves tiks nosūtīts uz šādu e-pasta adresi: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Jēdziens Iesniegt, Atcelt, Grozīt" @@ -1281,11 +1282,11 @@ DocType: Desktop Icon,query-report,vaicājumu-pārskats apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Norīkoti {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,saglabāts filtri DocType: DocField,Percent,Procents -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Lūdzu iestatīt filtrus +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Lūdzu iestatīt filtrus apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Saistīts ar DocType: Workflow State,book,grāmata DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Kļūda Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Kļūda Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import pieprasījums Rindā. Tas var aizņemt pāris mirkļus, lūdzu, esiet pacietīgi." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nav Atļaujas noteikti šo kritēriju. @@ -1297,7 +1298,7 @@ DocType: System Settings,Allow Login using Mobile Number,Atļaut Login izmantojo apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Jums nav pietiekamu tiesību piekļūt šo resursu. Lūdzu, sazinieties ar savu menedžeri, lai iegūtu piekļuvi." DocType: Custom Field,Custom,Paraža apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,"Setup Email Alert, balstoties uz dažādiem kritērijiem." -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Amatiem iesniegts saskaņā ar {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Amatiem iesniegts saskaņā ar {0} DocType: Email Alert,Send alert if date matches this field's value,"Nosūtīt brīdinājumu, ja diena atbilst šajā jomā vērtību" DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Noņemt {0} un dzēst visus datus? @@ -1306,9 +1307,8 @@ DocType: User,Login After,Login Pēc DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Iespiešana DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu iestatīšana> E-pasts> e-pasta kontu" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision jābūt no 1 līdz 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision jābūt no 1 līdz 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,un DocType: Error Snapshot,Frames,Rāmji @@ -1317,7 +1317,7 @@ DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,ziņojums filtri apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,tagad DocType: Workflow State,step-backward,soli atpakaļ -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Lūdzu noteikt Dropbox piekļuves atslēgas vietnes config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Dzēst šo ierakstu, kas ļauj sūtīt uz šo e-pasta adresi" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tikai obligāti lauki ir vajadzīgs jaunām ierakstiem. Jūs varat dzēst neobligātiem kolonnas, ja vēlaties." @@ -1339,8 +1339,7 @@ DocType: File,Is Attachments Folder,Ir pielikumu mape apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Paplašināt visu apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Derīgs Login id nepieciešams. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-open -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Jūs esat atcēlis maksājumu -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Lūdzu, izvēlieties derīgu csv failu ar datiem" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Lūdzu, izvēlieties derīgu csv failu ar datiem" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ANO dalītu šo dokumentu ar {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumenta Status pāreja no {0} uz {1} nav atļauta DocType: DocType,"Make ""name"" searchable in Global Search",Padarīt "name" meklējams Global Meklēt @@ -1353,7 +1352,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Palīdzība kategorija apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Lietotāja {0} ir invalīds apps/frappe/frappe/www/404.html +8,Page missing or moved,"Page trūkst, vai pārvietots" -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Rediģēt {0} īpašības DocType: DocType,Route,maršruts apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Maksājumu vārti iestatījumi DocType: DocField,Name,Nosaukums @@ -1361,8 +1359,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Meklēt docs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Meklēt docs DocType: OAuth Authorization Code,Valid,derīgs -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Atvērt saiti -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tava valoda +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Atvērt saiti +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tava valoda apps/frappe/frappe/desk/form/load.py +46,Did not load,Nav slodze apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Pievienot rindu DocType: Tag Category,Doctypes,Doctypes @@ -1377,7 +1375,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Vai Atsauksme DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Var rakstīt apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Atsevišķi dokumenti, piemēram, Rēķina, nevajadzētu mainīt reizi galīgs. Galīgo valsts par šādiem dokumentiem sauc Iesniegtie. Jūs varat ierobežot kuras lomas var Iesniegt." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Jums nav atļauts eksportēt šo ziņojumu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Jums nav atļauts eksportēt šo ziņojumu apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 prece atlasīts DocType: Newsletter,Test Email Address,Testa e-pasta adrese DocType: ToDo,Sender,Nosūtītājs @@ -1412,7 +1410,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokuments ID DocType: Print Settings,Letter,Vēstule -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Image laukam jābūt tipa Pievienojiet Image +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Image laukam jābūt tipa Pievienojiet Image DocType: DocField,Columns,kolonnas DocType: Async Task,Succeeded,Izdevās apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Obligāti lauki vajadzīgas {0} @@ -1462,7 +1460,7 @@ DocType: DocField,Text Editor,Teksta redaktors apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Iestatījumi Par mums lapā. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Rediģēt Custom HTML DocType: Error Snapshot,Error Snapshot,Kļūda Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Uz +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Uz DocType: Email Alert,Value Change,Vērtību maiņa DocType: Standard Reply,Standard Reply,Standard Atbildēt apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Platums ievades lodziņā @@ -1478,12 +1476,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Izmantojiet šo fieldname radīt titulu apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importēt e-pastu no apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Uzaicināt kā lietotājs -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Izvēlieties Pielikumus +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Izvēlieties Pielikumus apps/frappe/frappe/model/naming.py +94, for {0},par {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Bija kļūdas. Lūdzu, ziņojiet." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Jums nav atļauts drukāt šo dokumentu +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Jums nav atļauts drukāt šo dokumentu apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Lūdzu noteikt filtri vērtību pārskata filtru tabulā. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Iekraušana ziņojums +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Iekraušana ziņojums apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Jūsu abonementa beigsies šodien. DocType: Page,Standard,Standarts apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Pievienot failu @@ -1513,7 +1511,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Reģionālās paplašinājumi DocType: LDAP Settings,Base Distinguished Name (DN),Base Atšķirt vārds (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Atstājiet šo sarunu -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opcijas nav noteikts saite jomā {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opcijas nav noteikts saite jomā {0} DocType: Customize Form,"Must be of type ""Attach Image""",Jābūt tipa "Attach Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,unselect All apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Jūs nevarat iestatīta "Tikai lasāms" uz lauka {0} @@ -1556,9 +1554,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Piezīme apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Kļūdas ziņojums apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Atsauksmes apstākļi neatbilst -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline laukam jābūt derīgam fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline laukam jābūt derīgam fieldname DocType: Currency,Symbol,Simbols -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Jaunā parole pa e-pastu apps/frappe/frappe/auth.py +245,Login not allowed at this time,Ienākt nav atļauts šajā laikā DocType: Email Account,Email Sync Option,E-Sync variants @@ -1580,7 +1578,7 @@ DocType: DocField,Text,Teksts apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standarta atbildes uz kopējiem jautājumiem. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Default sūtīšana DocType: Workflow State,volume-off,tilpums-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Patika ar {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Patika ar {0} DocType: Footer Item,Footer Item,Footer punkts ,Download Backups,Download Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Mājas / Test mape 1 @@ -1615,7 +1613,7 @@ DocType: Web Page,Text Align,Teksta Izlīdzināt apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Nosaukums nedrīkst saturēt speciālās rakstzīmes, piemēram, {0}" DocType: Contact Us Settings,Forward To Email Address,Pāriet uz e-pasta adresi apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Rādīt visus datus -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Nosaukums zonai jābūt derīgs fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Nosaukums zonai jābūt derīgs fieldname apps/frappe/frappe/config/core.py +7,Documents,Dokumenti DocType: Email Flag Queue,Is Completed,ir pabeigta apps/frappe/frappe/www/me.html +22,Edit Profile,Rediģēt profilu @@ -1625,8 +1623,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Šis lauks parādīsies tikai tad, ja šeit noteikts fieldname ir vērtība vai noteikumi ir taisnība (piemēri): myfield eval: doc.myfield == 'Mans Value "eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,šodien -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,šodien +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,šodien +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,šodien apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Kad esat noteikt šo, lietotāji varēs tikai piekļūt dokumentiem (piem. Blogs Post), kur saikne (piem., Blogger)." DocType: Error Log,Log of Scheduler Errors,Log plānotājs kļūdas DocType: User,Bio,Bio @@ -1650,6 +1648,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 zvaigzne ir zemākais un 5 zvaigznes ir augstākais novērtējums DocType: Event,Ref Name,Ref Name DocType: Web Page,Center,Centrs +DocType: Email Alert,Value To Be Set,"Vērtība, kas jānosaka" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Pirmā līmeņa DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Pārstāv valstis atļauts vienā dokumentā, un piešķirto lomu, lai mainītu stāvokli." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Atsvaidzināt Form @@ -1670,18 +1669,18 @@ DocType: DocType,Has Web View,Ir Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE vārds jāsākas ar burtu, un to var tikai sastāv no burtiem, cipariem telpām un apakšsvītra" DocType: Communication,Spam,Spams DocType: Integration Request,Integration Request,integrācija pieprasījums -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Dārgais +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Dārgais DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Konti lietotāju DocType: Web Page,HTML for header section. Optional,HTML virsraksta daļā. Fakultatīvs apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,"Šī funkcija ir pavisam jauna, un joprojām eksperimentāls" -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimālās {0} rindas atļauts +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimālās {0} rindas atļauts DocType: Email Unsubscribe,Global Unsubscribe,Global Atteikties apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Tas ir ļoti bieži parole. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Skats DocType: Communication,Assigned,Piešķirts DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Izvēlieties Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Izvēlieties Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Īsi tastatūras modeļi ir viegli uzminēt DocType: Portal Settings,Portal Menu,portāls Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Garums: {0} jābūt no 1 līdz 1000 @@ -1720,7 +1719,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Lietotājs Nevar Meklēt apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Nederīga Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Piemēro šo noteikumu, ja Lietotājs ir Īpašnieks" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Būs jūsu pieteikšanās ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Būs jūsu pieteikšanās ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Veidot ziņojumu DocType: Note,Notify users with a popup when they log in,Paziņot lietotājus ar uznirstošo kad viņi ieiet apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} nepastāv {1}, izvēlieties jaunu mērķi apvienot" @@ -1739,17 +1738,18 @@ DocType: User Permission for Page and Report,Roles Permission,Lomas Atļauja apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Atjaunināt DocType: Error Snapshot,Snapshot View,Momentuzņēmums View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Lūdzu, saglabājiet Izdevumu pirms nosūtīšanas" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Iespējas jābūt derīgs DOCTYPE laukam {0} rindā {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} gads (-i) pirms +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Iespējas jābūt derīgs DOCTYPE laukam {0} rindā {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Rediģēt Properties DocType: Patch Log,List of patches executed,Latviešu plāksteri izpildīts apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} jau atrakstījies -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Paziņojums Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Paziņojums Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Lūdzu, izvēlieties citu maksājuma veidu. Razorpay neatbalsta darījumus valūtā '{0}'" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Rindā backup. Tas var ilgt dažas minūtes līdz stundai. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Reģistrēties OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0}{1} nevar būt ""{2}"". Vajadzētu būt vienam no ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0}{1} nevar būt ""{2}"". Vajadzētu būt vienam no ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} vai {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Rādīt vai Slēpt darbvirsmas ikonas apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Paroles Update @@ -1776,7 +1776,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Rādīt Line Breaks pēc sadaļas DocType: Blogger,Short Name,Saīsinātais nosaukums apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Jūs esat izvēloties Sync iespēja, kā, tas tiks atkārtoti sinhronizēt visas \ lasīt, kā arī nelasīto ziņojumu no servera. Tas var arī izraisīt dublēšanas \ komunikācijas (e-pastu)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,faili Size @@ -1788,6 +1788,7 @@ DocType: Contact,Purchase Manager,Iepirkumu vadītājs DocType: Custom Script,Sample,Paraugs apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised birkas DocType: Event,Every Week,Katru nedēļu +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-pasta konts nav iestatīts. Lūdzu, izveidojiet jaunu e-pasta kontu iestatīšana> E-pasts> e-pasta kontu" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Klikšķiniet šeit, lai pārbaudītu jūsu lietošanu vai jaunināt uz augstāku plānu" DocType: Custom Field,Is Mandatory Field,Ir obligāts lauks DocType: User,Website User,Website User @@ -1811,16 +1812,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,zīmulis apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Čats ziņojumus un citus paziņojumus. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Ievietojiet Pēc nevar iestatīt kā {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Ievietojiet Pēc nevar iestatīt kā {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} ar apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"E-pasta konta iestatīšana lūdzu, ievadiet savu paroli:" DocType: Workflow State,hand-up,rokas uz aukšu DocType: Blog Settings,Writers Introduction,Rakstnieku Ievads DocType: Address,Phone,Telefons -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Kļūda izvērtējot Email Alert {0}. Lūdzu noteikt savu veidni. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Kļūda izvērtējot Email Alert {0}. Lūdzu noteikt savu veidni. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,"Select Document Type vai loma, lai sāktu." DocType: Contact,Passive,Pasīvs DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Jūsu maksājums tiek atcelts. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Select File Type DocType: Help Article,Knowledge Base Editor,Knowledge Base redaktors apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Lapa nav atrasta @@ -1848,6 +1850,7 @@ DocType: Property Setter,Property Type,Īpašuma veids DocType: Workflow State,screenshot,ekrānuzņēmums apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Tikai administrators var ietaupīt standarta ziņojumu. Lūdzu, pārdēvēt un saglabāt." DocType: System Settings,Background Workers,fona Workers +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} pretrunā ar meta objektu DocType: Deleted Document,Data,Dati apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumenta statuss apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Tu veicis {0} no {1} @@ -1872,7 +1875,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Rādīt Lietotāja atļaujas apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Jums ir nepieciešams, ir jāpiesakās, un ir sistēmas pārzinis loma, lai varētu piekļūt backups." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,atlikušais -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Lūdzu, saglabājiet pirms pievienošanas." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Lūdzu, saglabājiet pirms pievienošanas." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Pievienots {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tēma pēc noklusēšanas ir noteikts {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nevar mainīt no {0} uz {1} rindā {2} @@ -1893,11 +1896,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesija Star apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesija Start neizdevās apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Šis e-pasts tika nosūtīts uz {0} un kopēti {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Lūdzu uzstādīšana noklusējuma e-pasta kontu iestatīšana> E-pasts> e-pasta kontu -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Izveidot jaunu {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Izveidot jaunu {0} DocType: Email Rule,Is Spam,Vai Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Ziņojums {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Atvērt {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Atvērt {0} DocType: OAuth Client,Default Redirect URI,Default Novirzīt URI DocType: Email Alert,Recipients,Saņēmēji DocType: Workflow State,ok-sign,ok-zīme @@ -1915,6 +1917,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Palīdzības raksti ,Modules Setup,Moduļi Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tips: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Jūsu maksājums nav izdevies. DocType: Communication,Unshared,vienpusējs DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modulis nav atrasts @@ -1962,7 +1965,7 @@ DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup no augšējā navigācijas joslā, saturā un logo." DocType: Web Form Field,Max Value,Max vērtība -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Par {0} vienlīmeņa {1} jo {2} rindā {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Par {0} vienlīmeņa {1} jo {2} rindā {3} DocType: Contact,All,Viss DocType: Email Queue,Recipient,Saņēmējs DocType: Communication,Has Attachment,ir pielikums @@ -1979,7 +1982,8 @@ DocType: Workflow State,align-right,saskaņot labajā DocType: Auto Email Report,Email To,E-pastu apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} nav tukšs DocType: Page,Roles,Lomas -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Lauks {0} nevar izvēlēties. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Error: Value trūkst {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Lauks {0} nevar izvēlēties. DocType: System Settings,Session Expiry,Sesija derīguma DocType: Workflow State,ban-circle,aizliegums-aplis DocType: Email Flag Queue,Unread,neizlasīts @@ -1994,7 +1998,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Lietotāja Noklusējumi apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Izveidot Jauns DocType: Workflow State,chevron-down,Chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-pasts nav nosūtīts uz {0} (atrakstījies / invalīdi) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-pasts nav nosūtīts uz {0} (atrakstījies / invalīdi) DocType: Async Task,Traceback,Izsekot DocType: Currency,Smallest Currency Fraction Value,Mazākais Valūtas Frakcija Value apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Piešķirt @@ -2005,12 +2009,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,No DocType: Website Theme,Google Font (Heading),Google Fonts (pozīcija) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Izvēlieties grupas mezglu pirmās. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Atrast {0} ir {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Atrast {0} ir {1} DocType: OAuth Client,Implicit,nešaubīgs DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Pievienot kā komunikācija pret šo DOCTYPE (jābūt lauki, ""statuss"", ""Tēma"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI saņemšanai autorizācijas kodu, pēc tam, kad lietotājs var piekļūt, kā arī mazspēja reakcijas. Parasti REST vērtētais pakļauta Klienta App.
piemēram, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nav atļauts mainīt {0} pēc iesniegšanas +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nav atļauts mainīt {0} pēc iesniegšanas DocType: Communication,Comment Type,Komentārs Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Lietotāji @@ -2025,7 +2029,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtra datu DocType: Auto Email Report,Filter Data,Filtra datu apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Pievienot atzīmi -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Lūdzu, pievienojiet failu pirmās." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Lūdzu, pievienojiet failu pirmās." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bija dažas kļūdas nosakot vārdu, lūdzu, sazinieties ar administratoru" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Ienākošā e-pasta konts nav pareizs apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2040,11 +2044,11 @@ DocType: Blog Post,Email Sent,Nosūtīts e-pasts DocType: DocField,Ignore XSS Filter,Ignorēt XSS filtrs apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,noņemt apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox rezerves iestatījumi -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Nosūtīt kā e-pastu +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Nosūtīt kā e-pastu DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Lietotāja {0} nevar tikt izslēgti apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Cienījamie System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tava valsts +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tava valsts DocType: Event,Sunday,Svētdiena apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In Grid View DocType: Address Template,Template,Template @@ -2052,7 +2056,7 @@ DocType: Address,Delhi,Deli apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP iestatījumi apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ar ko groza apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal maksājumu vārteja iestatījumi -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) tiks saīsināts, jo max atļautās rakstzīmes ir {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) tiks saīsināts, jo max atļautās rakstzīmes ir {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resursu īpašnieks paroli kvalifikāciju DocType: OAuth Client,Response Type,Response Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max lietotāji @@ -2069,7 +2073,7 @@ DocType: DocField,Table,Tabula DocType: File,File Size,Faila izmērs apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Jums nepieciešams autorizēties, lai iesniegtu šo veidlapu" DocType: User,Background Image,Fona attēls -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Izvēlieties savu valsti, laika joslu un Valūta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Izvēlieties savu valsti, laika joslu un Valūta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Starp DocType: Async Task,Queued,Rindā @@ -2078,6 +2082,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Izveidot apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nederīga Filter: {0} DocType: Email Account,no failed attempts,nē neizdevās mēģinājumi +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Nav noklusējuma Adrese veidne atrasts. Lūdzu, izveidojiet jaunu no uzstādīšanas> Poligrāfija un Brendings> Adrese veidni." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Access Token @@ -2095,8 +2100,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub Lietotāja DocType: DocType,Image View,Image View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Izskatās kaut kas nogāja greizi darījuma laikā. Tā kā mēs neesam apstiprinājuši maksājumu, Paypal automātiski atdosim šo summu. Ja tas tā nav, lūdzu, sūtiet mums e-pastu un pieminēt korelācija ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Iekļaut simbolus, ciparus un ar lielajiem burtiem paroli" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Ievietojiet Pēc lauka '{0}' minēts Custom Field '{1}', ar marķējumu '{2}', neeksistē" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Iekļaut simbolus, ciparus un ar lielajiem burtiem paroli" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Ievietojiet Pēc lauka '{0}' minēts Custom Field '{1}', ar marķējumu '{2}', neeksistē" DocType: Workflow State,signal,signāls DocType: DocType,Show Print First,Parādīt Print First apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, lai publicētu" @@ -2127,14 +2132,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Fails '{0}' nav atrasts apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Izņemt sadaļu DocType: User,Change Password,Paroles maiņa -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Nederīga e-pasts: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Sveiki! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Nederīga e-pasts: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Sveiki! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Pasākumu galam jābūt pēc starta apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},"Jums nav atļaujas, lai iegūtu pārskatu par: {0}" +DocType: System Settings,Apply Strict User Permissions,Piesakies Stingri lietotāja atļaujas DocType: DocField,Allow Bulk Edit,Atļaut Lielapjoma rediģēšana DocType: DocField,Allow Bulk Edit,Atļaut Lielapjoma rediģēšana DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Izvērstā meklēšana +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Izvērstā meklēšana apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Password Reset instrukcijas nosūtītas uz jūsu e-pastu apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0. līmenis ir dokuments līmeņa atļaujas, \ augstākiem līmeņiem lauka līmeņa atļaujām." @@ -2153,16 +2159,15 @@ DocType: Web Page,Sidebar and Comments,Sidebar un komentāri apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kad jūs Grozīt dokuments pēc Atcelt un saglabājiet to, tas iegūs jaunu numuru, kas ir versija veco numuru." DocType: Stripe Settings,Publishable Key,publicējamā Key DocType: Stripe Settings,Publishable Key,publicējamā Key -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} gads (-i) pirms DocType: Workflow State,circle-arrow-left,aplis-arrow-pa kreisi apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Redis cache servera nedarbojas. Lūdzu, sazinieties ar administratora / Tech atbalstu" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Izveidot jaunu ierakstu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Izveidot jaunu ierakstu apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Meklēšana apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Meklēšana DocType: Currency,Fraction,Daļa DocType: LDAP Settings,LDAP First Name Field,LDAP Vārds Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Izvēlieties no esošajiem pielikumiem +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Izvēlieties no esošajiem pielikumiem DocType: Custom Field,Field Description,Lauka apraksts apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nosaukums nav uzdots ar Prasīt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-pastā @@ -2208,11 +2213,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Atļauja Level DocType: User,Send Notifications for Transactions I Follow,Nosūtīt Paziņojumi par Darījumiem Sekoju -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nevar iestatīt Iesniegt, Atcelt, Grozīt bez Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nevar iestatīt Iesniegt, Atcelt, Grozīt bez Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Vai jūs tiešām vēlaties dzēst pielikumu? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nevar izdzēst vai atcelt, jo {0} {1} ir saistīta ar {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Nav atrasti ""rezultāti

" -apps/frappe/frappe/__init__.py +1063,Thank you,Paldies +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nevar izdzēst vai atcelt, jo {0} {1} ir saistīta ar {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Paldies apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Glābšana DocType: Print Settings,Print Style Preview,Izdrukāt Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2224,10 +2228,10 @@ DocType: DocField,In List View,List View DocType: Email Account,Use TLS,Izmantot TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Invalid login vai parole apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Pievienot pielāgotu javascript to formām. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Nr +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Nr ,Role Permissions Manager,Lomu atļaujas vadītājs apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nosaukums par jauno drukas formātu -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,skaidrs Pielikums +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,skaidrs Pielikums apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligāti: ,User Permissions Manager,Lietotāja atļaujas vadītājs DocType: Property Setter,New value to be set,"Jaunā vērtība, kas jānosaka" @@ -2257,26 +2261,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dien apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizēt blog posts. DocType: Workflow State,Time,Laiks DocType: DocField,Attach,Pievienot -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nav derīgs fieldname modelis. Tas būtu {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nav derīgs fieldname modelis. Tas būtu {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Sūtīt Ziņojums pieprasījumu tikai tad, ja ir vismaz viens paziņojums ir pieejams dokumentu." DocType: Custom Role,Permission Rules,Atļauju noteikumi DocType: GSuite Settings,GSuite Settings,GSuite iestatījumi DocType: Address,Links,Saites -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vērtība pazudis +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vērtība pazudis apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Pievienot Child -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0}{1}: Iesniegtie Record nevar izdzēst. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0}{1}: Iesniegtie Record nevar izdzēst. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Size DocType: GSuite Templates,Template Name,Veidnes nosaukums -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,jauna tipa dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,jauna tipa dokumenta DocType: Custom DocPerm,Read,Lasīt DocType: Role Permission for Page and Report,Role Permission for Page and Report,Lomu Atļauja un Pārskatu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Izlīdzināt vērtība apps/frappe/frappe/www/update-password.html +14,Old Password,Parole ir novecojusi -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posts ar {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posts ar {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Lai formāta kolonnām, dod kolonnu etiķetes vaicājuma." DocType: Has Domain,Has Domain,ir domēnu apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Vai jums nav konta? Pierakstīties -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Nevar iestatīt Piešķirt Grozīt ja ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Nevar iestatīt Piešķirt Grozīt ja ne Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Rediģēt Lomu Atļaujas DocType: Communication,Link DocType,link DOCTYPE @@ -2375,7 +2379,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Lūdzu, pārliecinieties, ka jūsu profils ir e-pasta adrese" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Jums ir nesaglabātas izmaiņas šajā formā. Lūdzu, saglabājiet pirms turpināt." DocType: Address,Telangana,Telangāna -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Default par {0} ir iespēja +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Default par {0} ir iespēja DocType: Tag Doc Category,Tag Doc Category,Tag Doc kategorija DocType: User,User Image,Lietotājs Image apps/frappe/frappe/email/queue.py +289,Emails are muted,E-pasta vēstules ir izslēgts @@ -2408,7 +2412,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Nākamie p DocType: Workflow State,ok,labi DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Šīs vērtības tiks automātiski atjaunināts darījumos, kā arī būs noderīga ierobežot atļaujas lietotāju par darījumiem, kuros ir šīs vērtības." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Izdevējs -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Neizdevās: {0} uz {1} {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Neizdevās: {0} uz {1} {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Izvēlieties Obligāti apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Pārlūkot apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-pasti Sent @@ -2420,7 +2424,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Lūdzu, Upgrade, lai pievienotu vairāk nekā {0} abonentiem" DocType: Workflow State,hand-left,rokas pa kreisi -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} uz {1} nevar būt unikāls +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} uz {1} nevar būt unikāls DocType: Email Account,Use SSL,Izmantot SSL DocType: Workflow State,play-circle,play-aplis apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,"Izvēlieties Print Format, lai rediģētu" @@ -2475,7 +2479,7 @@ DocType: DocField,No Copy,Nē Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Pieteikties ar LDAP DocType: Web Form,Breadcrumbs,Rīvmaize -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ja īpašnieks +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ja īpašnieks DocType: OAuth Authorization Code,Expiration time,derīguma laiks DocType: Web Page,Website Sidebar,Mājas lapas Sidebar DocType: Web Form,Show Sidebar,Rādīt Sidebar @@ -2495,7 +2499,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Neizdevās atrast apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,"Vārdi un uzvārdi, ko paši ir viegli uzminēt." apps/frappe/frappe/config/website.py +93,Knowledge Base,Zināšanu pamats DocType: Workflow State,briefcase,portfelis -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vērtību nevar mainīt {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vērtību nevar mainīt {0} DocType: Feedback Request,Is Manual,Vai Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stils pārstāv pogu krāsu: Success - zaļa, briesmas - sarkans, inversās - Black, pamatskolas - zils, Info - gaiši zila, Brīdinājums - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Nē ziņojums Loaded. Lūdzu, izmantojiet vaicājumu-ziņojumu / [Kļūdaina Name], lai palaistu atskaiti." @@ -2574,7 +2578,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progress apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,pēc lomas apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Trūkst Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Nederīga fieldname '{0}' in autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Meklēt pēc dokumenta veida +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Meklēt pēc dokumenta veida apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Ļauj lauks palikt rediģējamu pat pēc iesniegšanas DocType: Custom DocPerm,Role and Level,Loma un Level DocType: File,Thumbnail URL,Thumbnail URL @@ -2591,19 +2595,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Vairāk informācijas DocType: Desktop Icon,Desktop Icon,Desktop ikona -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Jūsu maksājums tika veiksmīgi pieņemts +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Jūsu maksājums tika veiksmīgi pieņemts apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Atvaino! Jums nav atļauts apskatīt šo lapu. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Padoms: Dubultklikšķi šūna rediģēt DocType: Workflow State,bell,zvans apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Kļūda E-pasts Alert apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Kļūda E-pasts Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dalīties ar šo dokumentu ar +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Lietotāja atļauju vadītājs apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0}{1} nevar būt lapa mezglu kā tas ir bērni DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Pievienot pielikumu +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Pievienot pielikumu DocType: Communication,Email,E-pasts apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Paldies par jūsu ziņu -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Sūtīt Lasīt saņemšana +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Sūtīt Lasīt saņemšana DocType: Stripe Settings,Stripe Settings,svītra iestatījumi DocType: Stripe Settings,Stripe Settings,svītra iestatījumi DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup via Site Config @@ -2670,6 +2675,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,"Brīdinājums: Šis Print Format ir vecā stila un nevar tikt radīts, izmantojot API." DocType: DocField,Print Width,Print Platums ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST Valsts numurs DocType: User,Allow user to login only before this hour (0-24),"Ļauj lietotājam, lai pieteiktos tikai pirms šīs stundas (0-24)" apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Mape ir obligāta apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2698,7 +2704,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Small Teksta apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrators piekļūt {0} uz {1} izmantojot IP adrese {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Vienāds -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Iespējām ""Dynamic Link"" tipa lauka jānorāda uz citu Link Field ar iespējām kā ""DOCTYPE""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Iespējām ""Dynamic Link"" tipa lauka jānorāda uz citu Link Field ar iespējām kā ""DOCTYPE""" DocType: About Us Settings,Team Members Heading,Komandas locekļi Pozīcija apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Nederīga CSV formāts apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Uzstādīt skaits Backups @@ -2709,7 +2715,7 @@ DocType: Contact,Contact,Kontakts DocType: User,Third Party Authentication,Trešās personas autentifikācija DocType: Website Settings,Banner is above the Top Menu Bar.,Banner ir virs augšējā izvēlnes joslā. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Eksporta Ziņojums: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Eksporta Ziņojums: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} neeksistē DocType: Email Account,Port,Osta DocType: Print Format,Arial,Arial @@ -2732,7 +2738,7 @@ DocType: Kanban Board Column,Column Name,Kolonna Name DocType: Language,Based On,Pamatojoties uz apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Izveidot pēc noklusējuma apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Pārbaudiet Frappe Servera URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} uz {1} nevar indeksēt +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} uz {1} nevar indeksēt DocType: Communication,Email Account,E-pasta konta DocType: Workflow State,Download,Download DocType: Blog Post,Blog Intro,Blogs Intro @@ -2743,7 +2749,7 @@ DocType: Web Page,Insert Code,Ievietot Code DocType: ToDo,Low,Zems apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,"Jūs varat pievienot dinamiskās īpašības no dokumenta, izmantojot Jinja šablonu." apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nederīgs limits {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Uzskaitīt dokumenta tipam +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Uzskaitīt dokumenta tipam DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ja Jums ir augšupielādējot jaunus rekordus, atstājiet ""nosaukums"" (ID) sleju tukšu." DocType: Address,Chattisgarh,Chattisgarh @@ -2765,26 +2771,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,J DocType: Print Settings,Send Print as PDF,Nosūtīt Drukāt PDF formātā DocType: Web Form,Amount,Summa DocType: Workflow Transition,Allowed,Atļauta -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Tur var būt tikai viens fold tādā formā +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Tur var būt tikai viens fold tādā formā apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nevar rakstīt faila formātu {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Atjaunot noklusējuma iestatījumus? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nederīga Sākums apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Nederīga Login. Mēģini vēlreiz. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Iespējas, kas nepieciešami Link vai Table tipa laukam {0} pēc kārtas {1}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Iespējas, kas nepieciešami Link vai Table tipa laukam {0} pēc kārtas {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Iespējas, kas nepieciešami Link vai Table tipa laukam {0} pēc kārtas {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Iespējas, kas nepieciešami Link vai Table tipa laukam {0} pēc kārtas {1}" DocType: Auto Email Report,Send only if there is any data,"Nosūtīt tikai tad, ja ir kāda informācija" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset filtri -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Atļauja 0 līmenī jānosaka pirms augstāks līmenis ir noteikti +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Atļauja 0 līmenī jānosaka pirms augstāks līmenis ir noteikti apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Pielietojums aizver ar {0} DocType: Integration Request,Remote,Remote -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Aprēķināt +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Aprēķināt apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Lūdzu, izvēlieties DOCTYPE pirmais" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Apstiprināt Jūsu e-pasts apps/frappe/frappe/www/login.html +42,Or login with,Vai pieteikties ar DocType: Error Snapshot,Locals,Vietējie apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Paziņoti via {0} uz {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} pieminēja jūs komentāru {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"piemēram, (55 + 434) / 4 vai = Math.sin (Math.PI / 2), ..." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"piemēram, (55 + 434) / 4 vai = Math.sin (Math.PI / 2), ..." apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ir nepieciešams DocType: Integration Request,Integration Type,integrācija Type DocType: Newsletter,Send Attachements,Nosūtīt attachements @@ -2794,15 +2800,15 @@ DocType: DocField,Perm Level,Ilgviļņi Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Pasākumi Mūsdienu kalendārs DocType: Web Page,Web Page,Web lapa DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Global Search" nav atļauta tipa {0} rindā {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Global Search" nav atļauta tipa {0} rindā {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Global Search" nav atļauta tipa {0} rindā {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Global Search" nav atļauta tipa {0} rindā {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,View saraksts -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datumam jābūt formātā: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datumam jābūt formātā: {0} DocType: Workflow,Don't Override Status,Neignorē statuss apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Lūdzu, sniedziet vērtējumu." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Atsauksmes Pieprasījums apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Meklēt termiņš -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Pirmais Lietotājs: You +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Pirmais Lietotājs: You apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Izvēlieties Columns DocType: Translation,Source Text,Avota teksts apps/frappe/frappe/www/login.py +55,Missing parameters for login,Trūkstošie parametri login @@ -2824,7 +2830,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importēšana DocType: ToDo,Assigned By,Piešķirtie Līdz apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"Jūs varat izmantot, pielāgot formu, lai uzstādītu līmeņus laukiem." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Izvēlieties savu reģionu +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Izvēlieties savu reģionu DocType: Custom DocPerm,Level,Līmenis DocType: Custom DocPerm,Report,Ziņojums apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Summa nedrīkst būt lielāka par 0. @@ -2844,7 +2850,7 @@ DocType: Website Theme,Background,Fons DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON saraksts DocTypes izmanto, lai piemērotu lietotāja atļaujas. Ja tās ir tukšas, visi saistīti DocTypes tiks izmantots, lai piemērotu lietotāja atļaujas." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Lūdzu, pievienojiet vērtējumu" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Nevar iestatīt Amend bez Atcelt +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Nevar iestatīt Amend bez Atcelt apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Vai Child tabula apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ir jābūt vienam no {1} @@ -2859,7 +2865,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Tas iet virs slaidrād apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalēt programmas. DocType: Contact,Last Name,Uzvārds DocType: Event,Private,Privāts -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nav brīdinājumus par šodienu +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nav brīdinājumus par šodienu DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Nosūtīt e-pastu Drukāt Pielikumi PDF formātā (ieteicams) DocType: Web Page,Left,Kreisais DocType: Event,All Day,All Day @@ -2873,7 +2879,7 @@ DocType: Event,Send an email reminder in the morning,Sūtīt e-pasta atgādināj DocType: Blog Post,Published On,Publicēts On DocType: Contact,Gender,Dzimums apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obligātā informācija trūkst: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Lauks '{0}' nevar iestatīt kā unikāla, jo tā ir ne-unikālās vērtības" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Lauks '{0}' nevar iestatīt kā unikāla, jo tā ir ne-unikālās vērtības" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Tikai 200 ieliktņi atļauta vienā pieprasījumā DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Reference Type @@ -2886,7 +2892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,brīdinājuma-zīme DocType: Workflow State,User,Lietotājs DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Rādīt titulu pārlūkprogrammas logā kā "prefiksu - virsraksts" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Teksta dokumenta veida +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Teksta dokumenta veida apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,palaist Testi apps/frappe/frappe/handler.py +91,Logged Out,Izlogojies apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,More ... @@ -2912,13 +2918,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Pašlaik apskate DocType: DocField,Default,Pēc noklusējuma apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} pievienots -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Meklēt '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Meklēt '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Lūdzu, vispirms saglabājiet ziņojumu" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonenti pievienotās apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Not In DocType: Workflow State,star,zvaigzne -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,vērtības atdalītas ar komatiem -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max platums tipa Valūta ir 100px rindā {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,vērtības atdalītas ar komatiem +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max platums tipa Valūta ir 100px rindā {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Lūdzu dalīties ar jūsu atsauksmes par {0} apps/frappe/frappe/config/website.py +13,Content web page.,Saturs mājas lapa. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Pievienot jauno lomu @@ -2937,7 +2943,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nav derīgs LDAP lietotāju apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nav derīgs valsts apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Lūdzu, izvēlieties citu maksājuma veidu. PayPal neatbalsta darījumus valūtā '{0}'" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Meklēt lauks {0} nav derīgs +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Meklēt lauks {0} nav derīgs DocType: Workflow State,ok-circle,ok-aplis apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Jūs varat atrast lietas, jautājot "atrast apelsīnu klientiem"" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Atvaino! Lietotājam ir jābūt pilnīga piekļuve savu ierakstu. @@ -2998,7 +3004,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Teksts tiks rādīts Saite uz tīmekļa lapu, ja šī forma ir mājas lapā. Saite maršruts tiks automātiski radīts, balstoties uz `page_name` un` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Atsauksmes Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Lūdzu noteikt {0} pirmais +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Lūdzu noteikt {0} pirmais DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Plāksteris DocType: Async Task,Failed,Neizdevās diff --git a/frappe/translations/mk.csv b/frappe/translations/mk.csv index 404bce405b..985b7dca51 100644 --- a/frappe/translations/mk.csv +++ b/frappe/translations/mk.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Фејсбук Корисничко име DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Забелешка: повеќе сесии ќе им биде дозволено во случај на мобилен уред apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},-От е-мејл сандаче за корисникот} {корисници apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не можам да испраќам оваа порака. Сте преминале на испраќање граница на {0} пораки за овој месец. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Трајно Прати {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Трајно Прати {0}? DocType: Address,County,Каунти DocType: Workflow,If Checked workflow status will not override status in list view,Ако е означено статус работа нема да ја замени статус во листа apps/frappe/frappe/client.py +280,Invalid file path: {0},Валиден датотека патека: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Ве м apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} дрвото DocType: User,User Emails,кориснички пораки DocType: User,Username,Корисничко име -apps/frappe/frappe/model/base_document.py +581,Value too big,Вредноста е премногу голема +apps/frappe/frappe/model/base_document.py +580,Value too big,Вредноста е премногу голема DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Испратена Тест сценарио DocType: Contact,Department,Оддел @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Логови DocType: Custom DocPerm,This role update User Permissions for a user,Ова ажурирање улога на корисничките дозволи за корисникот apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Преименувај {0} DocType: Workflow State,zoom-out,намали -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Не може да се отвори {0} кога неговата пример е отворена +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Не може да се отвори {0} кога неговата пример е отворена apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Табела {0} не може да биде празна apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Со книги apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,слики DocType: Communication,Reference Owner,Суд за сопственикот DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Најмалата циркулираат дел единица (паричка). Како на пример: 1 цент за долари и тоа треба да се внесе како 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} ред" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} ред" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Наведете цело име. apps/frappe/frappe/model/document.py +904,Beginning with,Почнувајќи со apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Податоци Увоз Шаблон @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Родител DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако е вклучено, лозинката сила ќе се спроведе врз основа на Минимална вредност на Лозинка рејтинг. А вредноста на 2, кој медиум силен и 4 се многу силни." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако е вклучено, лозинката сила ќе се спроведе врз основа на Минимална вредност на Лозинка рејтинг. А вредноста на 2, кој медиум силен и 4 се многу силни." DocType: About Us Settings,"""Team Members"" or ""Management""","Членови на тимот" или "менаџмент" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Стандардно за "Проверете" тип на поле мора да биде или "0" или "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Стандардно за "Проверете" тип на поле мора да биде или "0" или "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Вчера DocType: Contact,Designation,Ознака DocType: Test Runner,Test Runner,Тест ранер @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Објавено е поле DocType: Email Group,Email Group,Е-група DocType: Note,Seen By,Видено од apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Додади Повеќе -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Не како +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Не како apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Поставете етикета за прикажување на полето apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Неточна вредност: {0} мора да биде {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Сменете го полето својства (Скриј, само за читање, дозвола и сл)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Прил apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Администратор најавен DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Контакт опции, како што се ""Продажби Query, Поддршка Query"" итн., секое во нов ред или разделени со запирки." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Превземи -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Вметнете +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Вметнете apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Изберете {0} DocType: Print Settings,Classic,Класичен DocType: Desktop Icon,Color,Боја @@ -122,7 +122,7 @@ DocType: Translation,Translation,превод apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Инсталирајте apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Г-дин DocType: Custom Script,Client,Клиентот -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Оваа форма е изменета откако ќе го вчита +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Оваа форма е изменета откако ќе го вчита DocType: User Permission for Page and Report,User Permission for Page and Report,Дозвола за корисникот страница и Извештај DocType: Address,Himachal Pradesh,Химачал Прадеш DocType: System Settings,"If not set, the currency precision will depend on number format","Ако не е поставено, на валута точност ќе зависи од бројот формат" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Причината apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Ве молиме наведете корисник DocType: Email Unsubscribe,Email Unsubscribe,Е-Одјава DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Одберете слика од околу ширина 150px со транспарентна позадина за најдобри резултати. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Првиот корисник ќе стане менаџер на систем (можете да го промените ова подоцна). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Првиот корисник ќе стане менаџер на систем (можете да го промените ова подоцна). ,App Installer,Стан Installer- DocType: Workflow State,circle-arrow-up,круг стрелка нагоре apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Неуспешно ... DocType: Email Domain,Email Domain,Е-домен DocType: Workflow State,italic,курзив apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,За секого -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Не може да се постави Увоз без Направете +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Не може да се постави Увоз без Направете apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Настан и други календари. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Сите полиња се потребни за да се достави коментар. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Влечете за да се најде решение за столбови @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Стандардна лента apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Не можат да избришат Дом и додатоци папки apps/frappe/frappe/config/desk.py +19,Files,додадени фајлови: apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Дозволи да се примени на корисниците врз основа на она што тие улоги се доделени. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Не ви е дозволено да испраќаат електронски пораки во врска со овој документ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Ве молиме изберете барем 1 колона од {0} да средиме / група +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Не ви е дозволено да испраќаат електронски пораки во врска со овој документ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Ве молиме изберете барем 1 колона од {0} да средиме / група DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Изберете го ова ако се тестира вашата исплата користење на API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Не ви е дозволено да ги избришете стандардна веб-сајт Тема DocType: Feedback Trigger,Example,Пример @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Вкупно Претплатници apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Ако Улогата нема пристап на ниво 0, тогаш повисоки нивоа се бесмислени." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Зачувај како DocType: Communication,Seen,Види -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Покажи повеќе детали +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Покажи повеќе детали DocType: System Settings,Run scheduled jobs only if checked,Стартувај закажани работни места само ако проверени apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Ќе се прикаже само ако се овозможени насловите apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Архива @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Сокриј наслов DocType: Address,Current,Тековни DocType: Address,Current,Тековни -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,поврзани документи apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Групи на DocTypes DocType: Auto Email Report,XLSX,xlsx DocType: Workflow State,remove-circle,Отстрани-круг @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Филтер apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} не може да има специјални карактери како {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Ажурирање на многу вредности на едно време. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Грешка: Документот беше променет откако ќе го отвори -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не стандардна адреса Шаблон најде. Ве молиме да се создаде нов една од Поставување> Печатење и Брендирање> Адреса Шаблон. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} одјавени: {1} DocType: Address,West Bengal,Западен Бенгал -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Не може да се постави Assign Прати ако не Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Не може да се постави Assign Прати ако не Submittable DocType: Social Login Keys,Facebook,Фејсбук apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Филтрирани од "{0}" DocType: Salutation,Administrator,Администратор @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Наслов блог apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Стандардна улоги не може да биде исклучен DocType: Address,Mizoram,Мизорам DocType: Newsletter,Newsletter,Билтен -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"не може да се користи под-прашање, со цел од страна на" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"не може да се користи под-прашање, со цел од страна на" DocType: Web Form,Button Help,копче за помош DocType: Kanban Board Column,purple,виолетова DocType: About Us Settings,Team Members,Членови на тимот @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Земете apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Вашата претплата истече на {0}. Да се обнови, {1}." DocType: Workflow State,plus-sign,плус знак apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Поставување веќе заврши -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Стан {0} не е инсталиран +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Стан {0} не е инсталиран DocType: Workflow State,Refresh,Refresh DocType: Event,Public,Јавноста apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ништо да се покаже @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Се допад apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,е-мејл поддршка DocType: DocField,Print Hide If No Value,Печати Сокриј Ако нема вредност DocType: Event,yellow,жолта -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Објавено е поле мора да биде валидна fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Објавено е поле мора да биде валидна fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Upload Прилог DocType: Block Module,Block Module,Блок модул apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Извоз Шаблон @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Една нова корисничка сметка е креирана за тебе во {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,инструкции Преку е-маил apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,инструкции Преку е-маил -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Внесете е-пошта на примачот (и) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Внесете е-пошта на примачот (и) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Е-пошта Знаме редицата apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,не може да се идентификува отворена {0}. Обиди се со нешто друго. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,на порака DocType: Property Setter,Field Name,Име на поле apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite не е конфигуриран. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,или -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Име на модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Продолжи +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Име на модул ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Продолжи DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,сертификат DocType: User,Tile,Плочка @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Прикажи ги сите верзии DocType: Workflow State,Print,Печати DocType: User,Restrict IP,Ограничи IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,семафорот apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Не може да се испраќаат електронски пораки во овој момент apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Пребарај или да напишете командата DocType: Communication,Timeline Name,Хронологија Име @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Продажбата мајстор мен apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Еден последниот чекор apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Име на типот на документот (DOCTYPE), вие сакате ова поле да биде поврзан со. на пример, на клиентите" DocType: User,Roles Assigned,Доделени улоги -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Барај Помош -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Барај Помош +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Барај Помош +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Барај Помош DocType: Top Bar Item,Parent Label,Родител Етикета apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Вашето барање е примено. Ние ќе одговори дома. Ако имате било какви дополнителни информации, ве молиме да одговорите на оваа пошта." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Дозволи автоматски се претвораат во стандардни извештаи и пребарувања. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Уреди наслов DocType: File,File URL,URL датотека DocType: Version,Table HTML,Табела HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Не се пронајдени резултати за ""резултати

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Додади претплатници apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Престојни настани за денес DocType: Email Alert Recipient,Email By Document Field,E-mail на документ поле @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Износот Врз основа на apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Корисникот е задолжително за Сподели DocType: DocField,Hidden,Скриени DocType: Web Form,Allow Incomplete Forms,Дозволете Некомплетните форми -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} мора да се постави првиот +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} мора да се постави првиот apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Користете неколку зборови, да се избегне заеднички фрази." DocType: Workflow State,plane,авион -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Упс. вашата исплата не успеа. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако се постават нови рекорди, "Именување Серија" станува задолжително, доколку се присутни." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Предупредувања за денес +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Предупредувања за денес apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE може да се преименува само од Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},изменетата вредност на {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Ве молиме проверете ја вашата е-мејл за верификација -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Пати не може да биде на крајот на форма +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Пати не може да биде на крајот на форма DocType: Communication,Bounced,Bounced DocType: Deleted Document,Deleted Name,избришани Име apps/frappe/frappe/config/setup.py +14,System and Website Users,Систем и Интернет корисници @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,документ ре DocType: GSuite Templates,Destination ID,код на проект DocType: Desktop Icon,List,Листа DocType: Communication,Link Name,линк Име -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} во ред {1} може да не биде скриен и задолжително без стандардно +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} во ред {1} може да не биде скриен и задолжително без стандардно DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Невалидна лозинка: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Невалидна лозинка: DocType: Print Settings,Send document web view link in email,Испрати документи на веб-приказ линк во е-мејл apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Вашите повратни информации за документот {0} е успешно зачувана apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Претходната -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} редови за {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Под-валута. На пример, "Cent"" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Изберете подигнатите датотеки @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Линк apps/frappe/frappe/utils/file_manager.py +96,No file attached,Не приложената датотека DocType: Version,Version,Верзија DocType: User,Fill Screen,Пополнете екран -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се прикаже овој извештај дрво, поради немањето на податоци. Најверојатно, тоа се филтрирани поради дозволи." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете стандардно е-пошта од Поставување> Email> Email сметка +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Не може да се прикаже овој извештај дрво, поради немањето на податоци. Најверојатно, тоа се филтрирани поради дозволи." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Изберете Датотека apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Измени преку Додавање -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","за типот на документот ..., на пример, клиент" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","за типот на документот ..., на пример, клиент" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Состојбата '{0}' не е валиден DocType: Workflow State,barcode,баркод apps/frappe/frappe/config/setup.py +232,Add your own translations,Додади свои преводи @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Среда apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Освен Улогата врз Правила дозвола, може да се применува на корисничките дозволи врз основа на DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Овие дозволи ќе се применуваат за сите трансакции каде што е дозволено рекорд е поврзан. На пример, ако компанијата C е додадена на корисникот дозволи на корисникот X, X корисникот ќе биде во можност да се види трансакции кои има компанија C како се поврзани вредност само." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,поле Сликата мора да биде валидна fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,поле Сликата мора да биде валидна fieldname DocType: OAuth Client,Token,токен DocType: Property Setter,ID (name) of the entity whose property is to be set,Проект (име) на лице чија сопственост е да се постави apps/frappe/frappe/limits.py +82,"To renew, {0}.","Да се обнови, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Странична лента Теми apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} веќе инсталиран DocType: Workflow State,exclamation-sign,фантастичен знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Прикажи дозволи -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Хронологија поле мора да биде на линк или Динамички линк +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Хронологија поле мора да биде на линк или Динамички линк apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Период apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Страница {0} од {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Вов apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","клуч за криптирање не е валиден, Ве молиме проверете site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Да DocType: Kanban Board Column,darkgrey,темно сива -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Успешна: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Успешна: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,не може да се промени детали корисникот во демо. Ве молиме регистрирате за нова сметка на https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Ве молиме да се дуплираат ова да се прават промени apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF генерација не успеа поради скршена слика линкови @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Склопувачки apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Зачувани apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Што ви треба помош? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Опции за одберете. Секоја опција во нов ред. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Трајно Откажи {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Трајно Откажи {0}? DocType: Workflow State,music,музика DocType: Web Page,Settings,Подесувања apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Ве молиме наведете DOCTYPE DocType: Print Format,Style Settings,прилагодуваúа за стилот -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Подреди поле {0} мора да биде валидна fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Подреди поле {0} мора да биде валидна fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Повеќе DocType: Contact,Sales Manager,Менаџер за продажба apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Преименувај DocType: Print Format,Format Data,Формат на податоци -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Како +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Како DocType: Customize Form Field,Customize Form Field,Персонализација на образец Теренски apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Овозможи пристап DocType: OAuth Client,Grant Type,Тип на грант apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Проверете кои документи се чита од страна на корисникот apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Листата стан не е дозволено -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,користите% како маска -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail на домен не е конфигурирана за оваа сметка, се создаде една?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,користите% како маска +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail на домен не е конфигурирана за оваа сметка, се создаде една?" DocType: User,Reset Password Key,Ресетирање на Лозинка Клучни DocType: Email Account,Enable Auto Reply,Овозможи Авто Одговор apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не се гледа @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Поставете само еднаш DocType: Email Queue Recipient,Email Queue Recipient,Е-Задача на примачот DocType: Address,Nagaland,Нагаланд apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Корисничко име {0} веќе постои -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Не може да се постави увоз како {1} не е importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Не може да се постави увоз како {1} не е importable apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Има грешка во Вашата адреса шаблонот {0} DocType: Footer Item,"target = ""_blank""",целни = "_blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Од Целосно име apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Вие не имаат пристап до Извештај: {0} DocType: User,Send Welcome Email,Испрати Добредојдовте Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Внеси CSV фајл кој ги содржи сите дозволи во ист формат како што Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Отстрани филтер +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Отстрани филтер DocType: Address,Daman and Diu,Даман и Диу DocType: Address,Personal,Лични apps/frappe/frappe/config/setup.py +113,Bulk Rename,Преименам @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Стандардна DOCTYPE не можат да имаат стандарден формат печатење, користете Персонализација Форма" DocType: Report,Query,Пребарување DocType: DocType,Sort Order,Подредување -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"Во List View" не се дозволени за видот {0} во ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"Во List View" не се дозволени за видот {0} во ред {1} DocType: Custom Field,Select the label after which you want to insert new field.,Изберете етикетата по што сакате да го вметнете нова област. ,Document Share Report,Документ Сподели Извештај DocType: User,Last Login,Најнови најавување -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname е потребно во ред {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname е потребно во ред {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона DocType: Custom Field,Adds a custom field to a DocType,Додава сопствен поле на DOCTYPE DocType: File,Is Home Folder,Е Домашнапапка @@ -594,7 +594,7 @@ DocType: File,Folder,Папка DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Билтен менаџер apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Опција 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,сите мислења +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Влези на грешка за време на барања. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} е успешно додадена на е-мејл група. DocType: Address,Uttar Pradesh,Утар Прадеш @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,индикатор DocType: DocShare,Everyone,Сите DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} Само едно правило е дозволено со истата улога, ниво и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0} Само едно правило е дозволено со истата улога, ниво и {1}" DocType: Email Queue,Add Unsubscribe Link,Додади отпишување линк apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Сè уште нема коментари. Започнете ново дискусија. DocType: Workflow State,share,удел @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,не apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Види претплатници apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Г-ѓа DocType: Website Theme,Background Color,Боја на позадина -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Имаше грешка при испраќање на е-мејл. Ве молиме обидете се повторно. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Имаше грешка при испраќање на е-мејл. Ве молиме обидете се повторно. DocType: Portal Settings,Portal Settings,портал Settings DocType: Web Page,0 is highest,0 е највисок apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Дали сте сигурни дека сакате да relink оваа комуникација на {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Контактирајте со apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Пребарување ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Пребарување ... DocType: Workflow State,text-width,текст ширина -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Максималната граница за овој запис Прилог постигне. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Максималната граница за овој запис Прилог постигне. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Следниве задолжителни полиња мора да бидат пополнети:
DocType: Email Alert,View Properties (via Customize Form),За преглед на карактеристиките (преку Персонализација форма) DocType: Note Seen By,Note Seen By,Забелешка гледа од страна на @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Раџастан apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Извештаите се управувани директно од Креаторот за извештаи. Нема што да се направи! apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Ве молиме потврдете го вашиот е-мејл адреса apps/frappe/frappe/model/document.py +903,none of,ниту еден од -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Испрати ми копија +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Испрати ми копија apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Внеси кориснички права DocType: Dropbox Settings,App Secret Key,Стан Таен клуч apps/frappe/frappe/config/website.py +7,Web Site,веб-страница apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Селектираните ставки ќе бидат прикажани на десктоп -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} не може да се постави за Слободна видови +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} не може да се постави за Слободна видови apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban одбор {0} не постои. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Во моментов гледате овој документ DocType: ToDo,Assigned By Full Name,Се доделени од страна Целосно име apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ажурирани -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Извештајот не може да се постави за Слободна видови +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Извештајот не може да се постави за Слободна видови apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,Пред {0} денови DocType: Email Account,Awaiting Password,Чекам на Лозинка DocType: Address,Address Line 1,Адреса Линија 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Состојба на работниот тек (на пр., Предлог, Одобрено, Откажано)." DocType: Print Settings,Allow Print for Draft,Дозволи за печатење за Предлог apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Намести Кол -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Го достави овој документ кој ја потврдува +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Го достави овој документ кој ја потврдува DocType: Contact,Unsubscribed,Отпишавте apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Инсталира сопствени улоги за страница и извештај apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Рејтинг: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Алатката за внесување на податоци DocType: Address,Dadra and Nagar Haveli,Дадра и Нагар Хавели apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Неуспешно датотеки ве молиме почекајте неколку секунди. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Закачите вашата слика +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Закачите вашата слика apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Ред променети вредности DocType: Workflow State,Stop,Стоп DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Линк кон страницата што сакате да ја отворите. Оставете го празно ако сакате да го направи група родител. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Порамни Етикети н DocType: Help Article,Expert,експерт DocType: Workflow State,circle-arrow-right,круг стрелка-десничарската DocType: LDAP Settings,LDAP Server Url,LDAP сервер URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Не може да се отвори пример кога неговата {0} е отворена +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Не може да се отвори пример кога неговата {0} е отворена apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Чекаат на ред за инсталација DocType: Custom DocPerm,Custom DocPerm,Прилагодено DocPerm DocType: Newsletter,Send Unsubscribe Link,Испрати отпишување линк @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Стан {0} избришани DocType: Custom DocPerm,Apply User Permissions,Применуваат корисник дозволи DocType: User,Modules HTML,Модули HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Поставување> User Permissions менаџер apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Како исчезнати вредности Задолжителни DocType: DocType,Other Settings,други поставувања DocType: Social Login Keys,Frappe,фрапе @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Носител токен apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Нема избран документот apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Д-р DocType: Event,Event,Настан -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","На {0}, {1} напиша:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} напиша:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Не може да избришете стандардна област. Можете да го сокрие ако сакате DocType: Top Bar Item,For top bar,На врвот бар apps/frappe/frappe/utils/bot.py +148,Could not identify {0},не може да се идентификува {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,биро за пристап DocType: Workflow State,minus,минус apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Серверска грешка: Ве молиме проверете серверските логови или контактирајте ја техничката поддршка. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Добредојдовте пошта испратена -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Ајде да се подготви системот за првата употреба. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Ајде да се подготви системот за првата употреба. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Избрана apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Веќе сте регистрирани DocType: System Settings,Float Precision,Плови прецизен @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,Дозволи за печатење apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Не Apps Инсталирана apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Одбележување на полето што се задолжителни DocType: Communication,Clicked,Кликнато -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Нема дозвола за '{0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Нема дозвола за '{0} {1} DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Треба да се испрати DocType: DocType,Track Seen,песна Гледано @@ -838,7 +837,7 @@ DocType: Address,Kerala,Керала DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,симултани сесии DocType: OAuth Client,Client Credentials,клиент Сертификати -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Отвори модул или алатка +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Отвори модул или алатка DocType: Communication,Delivery Status,Статус на Испорака DocType: Module Def,App Name,Стан Име apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Максимална големина на датотеки дозволено е {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,референца за ком DocType: Email Queue,Unsubscribe Method,Метод за отпишување DocType: GSuite Templates,Related DocType,поврзани DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Уреди за додавање на содржина -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,изберете јазици -apps/frappe/frappe/__init__.py +510,No permission for {0},Нема дозвола за {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,изберете јазици +apps/frappe/frappe/__init__.py +509,No permission for {0},Нема дозвола за {0} DocType: DocType,Advanced,Напредно apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Се чини API клуч или API Тајната не е во ред !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Суд: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Внесете Образец Тип apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Означени нема евиденција. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Отстранете поле DocType: User,Send Password Update Notification,Испрати Ажурирање Известување Лозинка -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Дозволувајќи им на DOCTYPE, DOCTYPE. Бидете внимателни!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Дозволувајќи им на DOCTYPE, DOCTYPE. Бидете внимателни!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Кориснички формати за печатење, и-мејл" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Освежено на новата верзија DocType: Custom Field,Depends On,Зависи @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,еден од apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Ве молиме изберете датотека за копирање apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Проверка еден момент apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Прикажи Тагови +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ако применуваат строги корисник дозвола се проверува и пристап Дадена е дефинирано за DOCTYPE за пристап, а потоа сите документи, каде што вредноста на врската е празно, нема да биде прикажан на тој пристап" DocType: Address,Billing,Платежна DocType: Email Queue,Not Sent,Не Испратени DocType: Web Form,Actions,Активности @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,јасно apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Секој ден настани треба да заврши во ист ден. DocType: Communication,User Tags,Корисникот Тагови apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Примам слики .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Поставување> User DocType: Workflow State,download-alt,Download-алт apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Симнување на App {0} DocType: Communication,Feedback Request,повратни Информации Барање @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,бекап apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Додади Контакт DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Изборно: Секогаш Испратете на овие документи за идентификација. Секој е-мејл адреса на нов ред -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Сокриј Детали за +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Сокриј Детали за DocType: Workflow State,Tasks,Задачи DocType: Event,Tuesday,Вторник DocType: Blog Settings,Blog Settings,Блог Подесувања @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Напиши датотека Пајтон во истата папка каде што ова е зачувана и се врати колона и резултат. DocType: DocType,Sort Field,Вид поле DocType: Razorpay Settings,Razorpay Settings,Прилагодување Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Измени филтер -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Поле {0} од типот на {1} не можат да бидат задолжителни -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","на пр. Доколку се пријават за корисникот дозволи е избрана за Извештајот DOCTYPE но нема пристап Дозволите се дефинирани за Извештајот за пристап, а потоа сите извештаи се прикажани на оној корисник" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Измени филтер +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Поле {0} од типот на {1} не можат да бидат задолжителни apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Додади повеќе apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Сокриј Графикон DocType: System Settings,Session Expiry Mobile,Сесија Важи Мобилни @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,Одложен apps/frappe/frappe/config/setup.py +128,List of backups available for download,Листа на бекап е достапен за преземање apps/frappe/frappe/www/login.html +89,Sign up,Регистрирај се на Facebook DocType: Test Runner,Output,излез +DocType: Email Alert,Set Property After Alert,Поставете сопственост По сигнализација apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Да додадете полиња на форми. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Изгледа дека нешто не е во ред со Paypal конфигурација овој сајт. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,лист DocType: Portal Menu Item,Portal Menu Item,Портал Ставка DocType: User Email,Email ID,E-mail проект +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ако Примени User Permissions се проверува за Извештајот DOCTYPE но не User Permissions се дефинирани за Извештајот за пристап, а потоа сите извештаи се прикажани на тој пристап" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Список на ресурсите кои клиентот стан ќе имаат пристап до по корисник го дозволува тоа.
на пр проект DocType: Translation,Translated Text,преведен текст DocType: Contact Us Settings,Query Options,Опции за пребарување @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Контакт DocType: System Settings,Setup Complete,Целосно подесување apps/frappe/frappe/config/setup.py +66,Report of all document shares,Извештај од сите акции со документ apps/frappe/frappe/www/update-password.html +18,New Password,Нова лозинка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Филтер {0} исчезнати +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Филтер {0} исчезнати apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Жал ми е! Не може да избришете авто-генерирани коментари DocType: Website Theme,Style using CSS,Стил користење на CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Референтен DOCTYPE @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Блок модули apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Враќам должина на {0} за "{1}" во "{2}"; Поставување на должина како {3} ќе предизвика кратење на податоци. DocType: Print Format,Custom CSS,Прилагодено CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Додадете коментар -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Игнорира: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Игнорира: {0} до {1} DocType: Address,Gujarat,Гуџарат apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Логирајте се за грешка на автоматски настани (распоредувачот). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),"Не е валиден, разделени со запирки вредности (CSV датотеката)" @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,Стандардно Дојдовни DocType: Workflow State,repeat,повторување DocType: Website Settings,Banner,Банер DocType: Role,"If disabled, this role will be removed from all users.","Доколку е исклучено, оваа улога ќе биде отстранет од сите корисници." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Помош за пребарување +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Помош за пребарување apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Се регистрирав но со посебни потреби DocType: DocType,Hide Copy,Сокриј Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Исчистите сите улоги @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Земја apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Адреси DocType: Communication,Shared,Заедничка -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Прикачи документи Печатете +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Прикачи документи Печатете DocType: Bulk Update,Field,Поле DocType: Communication,Received,Доби DocType: Social Login Keys,Google Client ID,Google Број на клиент @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,Пријави пребарување DocType: User,Set New Password,Намести Нова лозинка DocType: User,Github User ID,Github User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ако документот Вид -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не може да се избрише или да го откажете бидејќи {0} {1} е поврзана со {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не може да се избрише или да го откажете бидејќи {0} {1} е поврзана со {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Непознати стан {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S не е валиден формат извештај. Извештај формат треба \ еден од% s DocType: Communication,Chat,Чет -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} се појавува неколку пати во редови {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} се појавува неколку пати во редови {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} од {1} до {2} во ред # {3} DocType: Communication,Expired,Истечен DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Број на колони за областа во мрежа (Вкупно Колумни во мрежа треба да биде помал од 11) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Имате проф apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Непознати печатење Формат: {0} DocType: Workflow State,arrow-down,стрелка надолу apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Колапс -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Корисникот не може да се отстрани {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Корисникот не може да се отстрани {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Последно освежено на DocType: Help Article,Likes,Допаѓања DocType: Website Settings,Top Bar,Топ Бар DocType: GSuite Settings,Script Code,код скрипта apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Креирај Корисник E-mail apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Креирај Корисник E-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Не е наведено дозволи +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Не е наведено дозволи apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Глобалните поставувања: Корисниците ќе бидат во можност да го изберат провери икони apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} не е пронајден DocType: Custom Role,Custom Role,Прилагодено Улогата apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Почетна / Тест Папка 2 DocType: System Settings,Ignore User Permissions If Missing,Игнорира корисник дозволи Ако исчезнати -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Ве молиме да го зачувате документот пред да испратите. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Ве молиме да го зачувате документот пред да испратите. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Внесете ја вашата лозинка DocType: Dropbox Settings,Dropbox Access Secret,Dropbox пристап Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Додадете друг коментар apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Измени DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Претплатата за билтен -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Пати мора да дојде пред прелом на секција +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Пати мора да дојде пред прелом на секција apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Последен пат е изменета Со DocType: Workflow State,hand-down,рака надолу DocType: Address,GST State,GST држава -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Не може да се постави без Прати Откажи +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Не може да се постави без Прати Откажи DocType: Website Theme,Theme,Тема apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Имаше грешки. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Пренасочување URI обврзани да Овласти законик @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мо DocType: Website Theme,Text Color,Боја на текст DocType: Desktop Icon,Force Show,Прикажи сила apps/frappe/frappe/auth.py +78,Invalid Request,Невалиден Барање -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Овој образец не се имате било какви влезни +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Овој образец не се имате било какви влезни apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Сесија Важи мора да биде во формат {0} DocType: Website Sidebar Item,Group,Група DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Изберете целни = "_blank" за отворање на нова страница. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Игнорирај ги кодираат грешки. DocType: Workflow State,wrench,клуч apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Не е поставена -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Поставување> User DocType: Authentication Log,Date,Датум DocType: Website Settings,Disable Signup,Оневозможи Регистрирај се apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Седнете тесни додека вашиот систем е да се биде поставување. Ова може да потрае неколку моменти. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Додај коментар DocType: DocField,Mandatory,Задолжително apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модул за извоз на -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Не основни собата дозволи +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Не основни собата дозволи apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Вашата претплата ќе истече на {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Линк за преземање за вашата резерви ќе биде испратена на следнава e-mail адреса: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значење на Поднесе, Откажи, измени" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,пребарување-извештај apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Доделен на {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,филтри спаси DocType: DocField,Percent,Проценти -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Ве молиме да се постави филтри +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Ве молиме да се постави филтри apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Поврзани со DocType: Workflow State,book,книга DocType: Website Settings,Landing Page,Целна страница -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Грешка во сопствен скрипта +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Грешка во сопствен скрипта apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Име apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Увоз Барам редица. Ова може да потрае неколку минути, ве молиме да бидете трпеливи." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Не дозволи утврдени за овие критериуми. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,Дозволете На apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Вие немате доволно дозволи за да пристапите на овој ресурс. Ве молиме обратете се на вашиот да добиете пристап. DocType: Custom Field,Custom,Прилагодено apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Поставување на е-сигнализација врз основа на различни критериуми. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Мислења поднесе под {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Мислења поднесе под {0} DocType: Email Alert,Send alert if date matches this field's value,Испрати алармирање доколку датумот одговара на вредноста оваа област е DocType: Workflow,Transitions,Транзиции apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Отстрани {0} и ги избришете сите податоци? @@ -1307,9 +1308,8 @@ DocType: User,Login After,Најави по DocType: Print Format,Monospace,Профилите DocType: Letter Head,Printing,Печатење DocType: Workflow State,thumbs-up,палците нагоре -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-пошта нема сметка поставување. Ве молиме да се создаде нов е-мејл од Поставување> Email> Email сметка DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Прецизност треба да биде помеѓу 1 и 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Прецизност треба да биде помеѓу 1 и 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Препратена: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,и DocType: Error Snapshot,Frames,Рамки @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,Слика линк DocType: Auto Email Report,Report Filters,Пријави Филтри apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,сега DocType: Workflow State,step-backward,чекор назад -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Ве молиме да се постави Dropbox копчиња за пристап на вашиот сајт config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Избришете оваа евиденција за да се овозможи испраќање на оваа е-маил адреса apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само задолжителни полиња се неопходни за нови рекорди. Можете да ги избришете незадолжителни колони ако сакате. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,Е Поднесени Папка apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Отвори ги сите apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Потребни валидна Логин ID. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Повторно да се отвори -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Сте го откажа плаќање -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Ве молиме изберете една валидна CSV датотека со податоци +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Ве молиме изберете една валидна CSV датотека со податоци apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} не-дели овој документ со {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Статус документ преминот од {0} до {1} не е дозволено DocType: DocType,"Make ""name"" searchable in Global Search",Направете "име" може да се пребарува во глобалната пребарување @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,о DocType: Help Category,Help Category,помош Категорија apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Корисник {0} е исклучен apps/frappe/frappe/www/404.html +8,Page missing or moved,Страница исчезнати или се преселил -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Измени {0} својства DocType: DocType,Route,пат apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay поставки за плаќање портал DocType: DocField,Name,Име @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Пребарување на документи apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Пребарување на документи DocType: OAuth Authorization Code,Valid,Важи -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Отвори ја врската -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Твојот јазик +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Отвори ја врската +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твојот јазик apps/frappe/frappe/desk/form/load.py +46,Did not load,Не се вчита apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Додај ред DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Поврат DocType: Address,Lakshadweep Islands,Лакшадвеп Острови apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Може да се напише apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Одредени документи, како фактура, не треба да се менува еднаш финалето. Завршна фаза за таквите документи се нарекува спонзор. Можете да ги ограничите кои улоги може да поднесе." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Не ви е дозволено да ги изнесете овој извештај +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Не ви е дозволено да ги изнесете овој извештај apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 избрана ставка DocType: Newsletter,Test Email Address,Тест-мејл адреса DocType: ToDo,Sender,Испраќачот @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,увоз .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,документ проект DocType: Print Settings,Letter,Писмо -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,поле Сликата мора да биде од типот Прикачи слика +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,поле Сликата мора да биде од типот Прикачи слика DocType: DocField,Columns,колумни DocType: Async Task,Succeeded,Успеал apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Задолжителни полиња се бара во {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,Уредувачот на текст apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Прилагодувања за За нас страница. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Уреди Прилагодено HTML DocType: Error Snapshot,Error Snapshot,Состојба грешка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Во +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Во DocType: Email Alert,Value Change,Вредност промени DocType: Standard Reply,Standard Reply,Стандарден одговор apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ширина на полето за внесување @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Користете го ова за да се генерираат fieldname титула apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Увоз-маил од apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Покани како пристап -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Изберете Прилози +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Изберете Прилози apps/frappe/frappe/model/naming.py +94, for {0},за {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Имаше грешки. Ве молам пријавете го ова. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Не ви е дозволено да се печати овој документ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Не ви е дозволено да се печати овој документ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Поставете филтри вредност во Извештајот Филтер маса. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Вчитување Извештај +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Вчитување Извештај apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Вашата претплата истекува денес. DocType: Page,Standard,Стандард apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Прикачи датотека @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Регионална Екстензии DocType: LDAP Settings,Base Distinguished Name (DN),База Почитувани Име (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Оставете овој разговор -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Опции кои не се во собата за поле линк {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опции кои не се во собата за поле линк {0} DocType: Customize Form,"Must be of type ""Attach Image""",Мора да биде од типот "Прикачи слика" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Избери ги сите apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Не можете да го размести "само за читање" поле за {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Забелешка apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Пријави грешка apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,услови повратни информации не се совпаѓаат -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Хронологија поле мора да биде валидна fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Хронологија поле мора да биде валидна fieldname DocType: Currency,Symbol,Симбол -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Ред # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Ред # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Нова лозинка преку е-маил apps/frappe/frappe/auth.py +245,Login not allowed at this time,Пријавата не е дозволено во овој момент DocType: Email Account,Email Sync Option,Е-Sync Опција @@ -1581,7 +1579,7 @@ DocType: DocField,Text,Текст apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Стандардна одговори на заедничките прашања. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Стандардно Испраќање DocType: Workflow State,volume-off,волумен-оф -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Сакан од {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Сакан од {0} DocType: Footer Item,Footer Item,footer точка ,Download Backups,Преземи бекап apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Почетна / Тест папка 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,Текст Порамни apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Името не може да содржи специјални карактери како {0} DocType: Contact Us Settings,Forward To Email Address,Напред е-мејл адреса apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Прикажи ги сите податоци -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Наслов поле мора да биде валидна fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Наслов поле мора да биде валидна fieldname apps/frappe/frappe/config/core.py +7,Documents,Документи DocType: Email Flag Queue,Is Completed,е завршена apps/frappe/frappe/www/me.html +22,Edit Profile,Уредување на профилот @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ова поле ќе се појави само ако fieldname дефинирани овде има вредност или правилата се точни (примери): eval myfield: doc.myfield == "Мојот вредност 'eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,денес -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,денес +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,денес +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,денес apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Откако ќе го поставите ова, корисниците ќе бидат во можност документи пристап (на пр. Блог пост) кога постои врска (на пр. Blogger)." DocType: Error Log,Log of Scheduler Errors,Дневник на грешки Распоред DocType: User,Bio,Био @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ѕвезда се на најниско ниво и 5 ѕвезди се највисок рејтинг DocType: Event,Ref Name,Реф Име DocType: Web Page,Center,Центар +DocType: Email Alert,Value To Be Set,Вредност да се постави apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Првото ниво DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Претставува државите дозволено во еден документ и улогата доделен на промена на државата. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Refresh Форма @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Има приказ на веб apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Име на DOCTYPE треба да почнува со буква и тоа може да се состои само од букви, бројки, места и долни" DocType: Communication,Spam,спам DocType: Integration Request,Integration Request,Барање за интеграција -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Почитуван +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Почитуван DocType: Address,Maharashtra,Махараштра DocType: Address,Accounts User,Кориснички сметки DocType: Web Page,HTML for header section. Optional,HTML секција заглавието. Факултативна apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Оваа функција е сосема нов и уште експериментални -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Дозволениот максимум {0} редови +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Дозволениот максимум {0} редови DocType: Email Unsubscribe,Global Unsubscribe,Глобалната Одјава apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ова е многу честа лозинка. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Поглед DocType: Communication,Assigned,доделени DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Одбери за печатење формат +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Одбери за печатење формат apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Краток шеми тастатурата се лесно да се погоди DocType: Portal Settings,Portal Menu,портал Мени apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Должина на {0} треба да биде помеѓу 1 и 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Корисникот не може Барај apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Неправилен излезен формат DocType: Custom DocPerm,Apply this rule if the User is the Owner,Се применува ова правило ако корисникот е сопственик -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Ќе биде вашиот логин проект +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Ќе биде вашиот логин проект apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Изгради извештај DocType: Note,Notify users with a popup when they log in,Ги извести корисниците со скокачки прозорец кога ќе се логирате во apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} не постои, изберете нова цел да се логирате" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,дозвола у apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ажурирање DocType: Error Snapshot,Snapshot View,Слика Види apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Ве молиме да се спаси Билтен пред да ја испратите -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Опции мора да биде валидна DOCTYPE за областа {0} во ред {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,пред> {0} година (s) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опции мора да биде валидна DOCTYPE за областа {0} во ред {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Уреди Својства DocType: Patch Log,List of patches executed,Листа на закрпи егзекутирани apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} веќе отпишавте -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Комуникациски медиум +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Комуникациски медиум DocType: Website Settings,Banner HTML,Банер HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Ве молам изберете друг начин на плаќање. Razorpay не поддржува трансакции во валута '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Чекаат на ред за резервна копија. Тоа може да потрае неколку минути до еден час. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Регистрирај OAuth потрошувач App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} не може да биде "{2}". Тоа треба да биде еден од "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} не може да биде "{2}". Тоа треба да биде еден од "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} или {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Покаже или скрие десктоп икони apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Лозинка Ажурирање @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Прикажи линија паузи по Секции DocType: Blogger,Short Name,Кратко име apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Страница {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Ќе се изборот Sync Опција како, тоа ќе Resync сите \ прочитате како и непрочитана порака од серверот. Ова исто така може да предизвика дуплирање \ на комуникација (e-mail)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,додадени фајлови: Големина @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,Купување менаџер DocType: Custom Script,Sample,Пример apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Некатегоризирана Тагови DocType: Event,Every Week,Секоја недела +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-пошта нема сметка поставување. Ве молиме да се создаде нов е-мејл од Поставување> Email> Email сметка apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Кликни тука за да се провери вашата употреба или да преминеш на повисока план DocType: Custom Field,Is Mandatory Field,Е задолжително поле DocType: User,Website User,Веб-сајт пристап @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Прилагодено лента Мени DocType: Workflow State,pencil,молив apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Разговорни пораки и други известувања. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Внесете Откако не може да се постави како {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Внесете Откако не може да се постави како {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Сподели {0} со apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,поставување на е-сметка ве молиме внесете ја вашата лозинка за: DocType: Workflow State,hand-up,рака-up DocType: Blog Settings,Writers Introduction,Писатели Вовед DocType: Address,Phone,Телефон -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Грешка при оценување на E-mail сигнализација {0}. Ве молиме да го поправи вашиот дефиниција. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Грешка при оценување на E-mail сигнализација {0}. Ве молиме да го поправи вашиот дефиниција. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Одберете го типот документ или Улогата да се започне. DocType: Contact,Passive,Пасивни DocType: Contact,Accounts Manager,Менаџер сметки +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,вашата исплата е откажано. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Изберете тип на датотека DocType: Help Article,Knowledge Base Editor,База на знаење на уредникот apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страницата не е пронајдена @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,Тип на имотот DocType: Workflow State,screenshot,екранот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Само администратор може да го спаси стандарден извештај. Ве молиме преименувајте и спаси. DocType: System Settings,Background Workers,позадина работници +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} спротивставени со мета објект DocType: Deleted Document,Data,Податоци apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Статус документ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Сте го направиле {0} од {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Прикажи корисник дозволи apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Вие треба да бидете најавени на системот и имаат Систем за менаџер улога да биде во можност да пристапите бекап. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,останатите -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Ве молиме да се спаси пред приложување. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Ве молиме да се спаси пред приложување. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Додадено {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Аватарот на темата е поставена во {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype не може да се менува од {0} до {1} во ред {2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Седни apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Седница на започнување успеа apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Оваа e-mail бил испратен во {0} и се копира на {1} DocType: Workflow State,th,та -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ве молиме поставете стандардно е-пошта од Поставување> Email> Email сметка -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Креирај нова {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Креирај нова {0} DocType: Email Rule,Is Spam,е спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Извештај {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Отвори {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Отвори {0} DocType: OAuth Client,Default Redirect URI,Аватарот на пренасочување URI DocType: Email Alert,Recipients,Примателите DocType: Workflow State,ok-sign,OK-знак @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,помош членовите ,Modules Setup,Модули подесување apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,вашата исплата не успеа. DocType: Communication,Unshared,неразделен DocType: Address,Karnataka,Карнатака apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модул Не е пронајдено @@ -1962,7 +1965,7 @@ DocType: Website Settings,Brand Image,бренд слика DocType: Print Settings,A4,А4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Поставување на врвот лента за навигација, footer и лого." DocType: Web Form Field,Max Value,Макс вредност -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},За {0} на ниво {1} на {2} во ред {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},За {0} на ниво {1} на {2} во ред {3} DocType: Contact,All,Сите DocType: Email Queue,Recipient,Примачот DocType: Communication,Has Attachment,има Прилог @@ -1979,7 +1982,8 @@ DocType: Workflow State,align-right,усогласат-десничарскат DocType: Auto Email Report,Email To,Е-пошта apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Папка {0} не е празна DocType: Page,Roles,Улоги -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Поле {0} не е избор. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Грешка: Вредност недостасува за {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Поле {0} не е избор. DocType: System Settings,Session Expiry,Сесија Важи DocType: Workflow State,ban-circle,Бан круг DocType: Email Flag Queue,Unread,непрочитани @@ -1994,7 +1998,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Корисникот Стандардни apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Креирај нова DocType: Workflow State,chevron-down,Шеврон надолу -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Е-пошта нема испратено до {0} (отпишавте / инвалиди) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Е-пошта нема испратено до {0} (отпишавте / инвалиди) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Најмалата Фракција валутна вредност apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,За да доделите @@ -2005,12 +2009,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Од DocType: Website Theme,Google Font (Heading),Google Font (наслов) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Изберете група јазол во прв план. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Најди {0} во {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Најди {0} во {1} DocType: OAuth Client,Implicit,имплицитни DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Додаваат како средство за комуникација против оваа DOCTYPE (мора да има области, "Статус", "Тема")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","Врски за добивање на овластување код еднаш на корисникот овозможува пристап, како и одговори неуспех. Обично ОСТАНАТОТО крајната точка изложени од страна на клиентот App.
на пример http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Не е дозволено да се промени {0} по поднесувањето +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Не е дозволено да се промени {0} по поднесувањето DocType: Communication,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,OAuth потрошувач apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Корисници @@ -2025,7 +2029,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,филтер податоци DocType: Auto Email Report,Filter Data,филтер податоци apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Додадете ознака -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Ве молиме приложите датотека во прв план. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Ве молиме приложите датотека во прв план. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Имаше некои грешки поставување на името, ве молиме контактирајте го администраторот" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Дојдовни e-mail сметка не е точен apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2040,11 +2044,11 @@ DocType: Blog Post,Email Sent,Е-мејл испратен DocType: DocField,Ignore XSS Filter,Игнорирај XSS филтер apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,отстранети apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,прилагодувања Dropbox резерви -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Испрати е-мејл +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Испрати е-мејл DocType: Website Theme,Link Color,Линк боја apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Корисник {0} не може да биде исклучен apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Почитувани Систем за менаџер," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Твојата земја +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Твојата земја DocType: Event,Sunday,Недела apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Во преглед на решетка DocType: Address Template,Template,Шаблон @@ -2052,7 +2056,7 @@ DocType: Address,Delhi,Делхи apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Прилагодување LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Амандмани apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal поставувања исплата портал -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} "({3}) ќе се скрати, како максимум дозволени карактери е {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} "({3}) ќе се скрати, како максимум дозволени карактери е {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ресурс за сопственикот Лозинка Сертификати DocType: OAuth Client,Response Type,Тип на одговор apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max корисници @@ -2069,7 +2073,7 @@ DocType: DocField,Table,Табела DocType: File,File Size,Големина на датотеката apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Мора да се пријавите за да поднесете овој образец DocType: User,Background Image,Позадинската слика -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Изберете ја вашата земја, временска зона и валута" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Изберете ја вашата земја, временска зона и валута" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,меѓу DocType: Async Task,Queued,Чекаат на ред @@ -2078,6 +2082,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Направете apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Невалиден Филтер: {0} DocType: Email Account,no failed attempts,Не неуспешни обиди +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не стандардна адреса Шаблон најде. Ве молиме да се создаде нов една од Поставување> Печатење и Брендирање> Адреса Шаблон. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App пристап Клучни DocType: OAuth Bearer Token,Access Token,Пристап знак @@ -2095,8 +2100,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Корисничко име DocType: DocType,Image View,Слика Види apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Изгледа дека нешто не беше во ред за време на трансакцијата. Бидејќи ние не се потврди за плаќање, PayPal автоматски ќе рефундирање на овој износ. Ако не е така, ве молиме испратете ни e-mail и наведете проект Корелација: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Вклучуваат симболи, броеви и големи букви во лозинката" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Вметнете по полето '{0}' споменати во сопствено поле "{1} ', со ознака" {2}', не постои" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Вклучуваат симболи, броеви и големи букви во лозинката" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Вметнете по полето '{0}' споменати во сопствено поле "{1} ', со ознака" {2}', не постои" DocType: Workflow State,signal,сигнал DocType: DocType,Show Print First,Прикажи печатење Прво apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter за да ја објавите @@ -2127,14 +2132,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,'{0} "не е пронајдена датотека apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Отстрани Дел DocType: User,Change Password,Промени го пасвордот -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Невалиден Email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Здраво! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Невалиден Email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Здраво! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Крајот настан мора да биде по почетокот apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Вие немате дозвола да се добие извештај за: {0} +DocType: System Settings,Apply Strict User Permissions,Применуваат строги User Permissions DocType: DocField,Allow Bulk Edit,Дозволете Масовно Уреди DocType: DocField,Allow Bulk Edit,Дозволете Масовно Уреди DocType: Blog Post,Blog Post,Блог пост -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Напредно пребарување +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Напредно пребарување apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Инструкции за ресетирање на лозинката биле пратени на вашата e-mail apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 е за дозволи ниво документ, \ повисоко ниво за дозволи на ниво на поле." @@ -2153,16 +2159,15 @@ DocType: Web Page,Sidebar and Comments,Лента и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Кога ќе се измени на документот по Cancel и спаси го, ќе добие нов број, кој е верзија на стариот број." DocType: Stripe Settings,Publishable Key,Клучни publishable DocType: Stripe Settings,Publishable Key,Клучни publishable -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,пред> {0} година (s) DocType: Workflow State,circle-arrow-left,круг стрелка лево- apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis кеш серверот не работи. Ве молиме контактирајте го Администраторот / Техничката поддршка apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Името на партијата -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Направи нов рекорд +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Направи нов рекорд apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,пребарување apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,пребарување DocType: Currency,Fraction,Дел DocType: LDAP Settings,LDAP First Name Field,LDAP-Име на поле -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Изберете од постоечките додатоци +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Изберете од постоечките додатоци DocType: Custom Field,Field Description,Поле Опис apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Името не е поставена преку Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-mail сандаче @@ -2208,11 +2213,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Инфо: DocType: Custom Field,Permission Level,Дозвола ниво DocType: User,Send Notifications for Transactions I Follow,Испрати Известувања за трансакции следам -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не може да се постави Прати, Откажи, измени без Напиши" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не може да се постави Прати, Откажи, измени без Напиши" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Дали сте сигурни дека сакате да ја избришете прилог? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не може да се избрише или да го откажете бидејќи {0} {1} е поврзана со {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Не се пронајдени резултати за ""резултати

" -apps/frappe/frappe/__init__.py +1063,Thank you,Ви благодариме +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не може да се избрише или да го откажете бидејќи {0} {1} е поврзана со {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Ви благодариме apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Заштеда DocType: Print Settings,Print Style Preview,Печати Стил Преглед apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2224,10 +2228,10 @@ DocType: DocField,In List View,Во List View DocType: Email Account,Use TLS,Употреба TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Неправилен Влезот или лозинка apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Додадете сопствени javascript за да се форми. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,С.р. Не +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,С.р. Не ,Role Permissions Manager,Менаџер улога на пишување apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Името на новиот формат за печатење -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Отстрани Прилог +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Отстрани Прилог apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Задолжително: ,User Permissions Manager,Менаџер на членот DocType: Property Setter,New value to be set,Нова вредност треба да се постави @@ -2257,26 +2261,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Пре apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризираат блог постови. DocType: Workflow State,Time,Време DocType: DocField,Attach,Прикачи -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валиден fieldname шема. Тоа треба да биде {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не е валиден fieldname шема. Тоа треба да биде {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Испрати Повратна информација Барање само ако има најмалку една комуникација е на располагање за овој документ. DocType: Custom Role,Permission Rules,Дозвола Правила DocType: GSuite Settings,GSuite Settings,GSuite Settings DocType: Address,Links,Линкови -apps/frappe/frappe/model/base_document.py +428,Value missing for,Недостасува вредност за +apps/frappe/frappe/model/base_document.py +427,Value missing for,Недостасува вредност за apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Додади детето -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поднесени рекорд не може да се избрише. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поднесени рекорд не може да се избрише. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup Големина DocType: GSuite Templates,Template Name,шаблон Име -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,нов тип на документ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нов тип на документ DocType: Custom DocPerm,Read,Прочитајте DocType: Role Permission for Page and Report,Role Permission for Page and Report,Улогата Дозвола за Пејџ и Извештај apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Порамни вредност apps/frappe/frappe/www/update-password.html +14,Old Password,Стара лозинка -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Постови на {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Постови на {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Да колони формат, им даде на етикети колона во Барањето." DocType: Has Domain,Has Domain,има домен apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Немате профил? Пријавете се -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Не може да се постави Assign се измени ако не Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Не може да се постави Assign се измени ако не Submittable DocType: Address,Bihar,Бихар apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Уреди Улогата на пишување DocType: Communication,Link DocType,линк DOCTYPE @@ -2375,7 +2379,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Ве молиме да се осигура дека вашиот профил е-мејл адреса apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Сте имале незачувани промени во оваа форма. Ве молиме да се спаси пред да продолжите. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Стандардно за {0} мора да биде опција +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Стандардно за {0} мора да биде опција DocType: Tag Doc Category,Tag Doc Category,Таг Док Категорија DocType: User,User Image,Најави image apps/frappe/frappe/email/queue.py +289,Emails are muted,Пораките се пригушени @@ -2408,7 +2412,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Следн DocType: Workflow State,ok,ред DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Овие вредности ќе се ажурира автоматски во трансакции, а исто така ќе биде корисно да се ограничи дозволи за оваа корисник на трансакции кои ги содржат овие вредности." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Издавач -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Не успеа: {0} до {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Не успеа: {0} до {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,изберете Задолжителна apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Преглед на apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,испратени пораки @@ -2420,7 +2424,7 @@ DocType: Async Task,Running,Водење apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Ресетирање на Лозинка apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Надградете го додадете повеќе од {0} претплатници DocType: Workflow State,hand-left,рака-левичарската -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} не може да биде уникатно +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} не може да биде уникатно DocType: Email Account,Use SSL,Употреба SSL DocType: Workflow State,play-circle,игра-круг apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Изберете Print Формат на Edit @@ -2475,7 +2479,7 @@ DocType: DocField,No Copy,Не Копирај DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Пријавете се со LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ако сопственикот +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ако сопственикот DocType: OAuth Authorization Code,Expiration time,време на траење DocType: Web Page,Website Sidebar,Веб-страница на лента DocType: Web Form,Show Sidebar,Прикажи лента @@ -2495,7 +2499,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не може д apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,"Имиња и презимиња, сами по себе се лесно да се погоди." apps/frappe/frappe/config/website.py +93,Knowledge Base,База на знаење DocType: Workflow State,briefcase,куфер -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Вредност не може да се промени за {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Вредност не може да се промени за {0} DocType: Feedback Request,Is Manual,Прирачникот е DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Стил претставува боја на копчето: Успех - Зелен, опасност - црвена, Инверзна - Црното, а Примарна - темно сина, Инфо - Светло сина, Предупредување - портокал" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Не Пријави се вчитува. Ве молиме користете пребарување Извештајот / [Извештај Име] за да ја извршите извештај. @@ -2574,7 +2578,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,напред apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,по улога apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,недостасува сфера apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Невалиден fieldname '{0}' во autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Барај во типот на документот +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Барај во типот на документот apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,"Дозволете поле, за да остане уредување дури и по поднесувањето" DocType: Custom DocPerm,Role and Level,Улогата и ниво DocType: File,Thumbnail URL,Thumbnail URL @@ -2591,19 +2595,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Повеќе информации DocType: Desktop Icon,Desktop Icon,десктоп икони -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,вашата исплата е успешно прифатен +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,вашата исплата е успешно прифатен apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Жал ми е! Немате дозвола да го погледнете овој страница. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Совет: Двоен клик ќелија за уредување DocType: Workflow State,bell,Бел apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка во-пошта сигнализација apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка во-пошта сигнализација apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Делење на овој документ со +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Поставување> User Permissions менаџер apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може да биде лист јазол, како што има деца" DocType: Communication,Info,Информации -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Додај прилог +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Додај прилог DocType: Communication,Email,Е-пошта apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Ви благодариме за Вашата порака -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Испрати Читај Приемот +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Испрати Читај Приемот DocType: Stripe Settings,Stripe Settings,Подесувања лента DocType: Stripe Settings,Stripe Settings,Подесувања лента DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox за поставување преку сајтот Config @@ -2670,6 +2675,7 @@ DocType: DocType,Web View,веб Види apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Предупредување: Оваа Верзија за форматот е во стар стил и не може да бидат генерирани преку API. DocType: DocField,Print Width,Ширина на печатење ,Setup Wizard,Советник за подесување +DocType: Address,GST State Number,GST држава Број DocType: User,Allow user to login only before this hour (0-24),Им овозможи на корисникот да се најавите само пред овој час (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Папка е задолжително apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2698,7 +2704,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Мал текст apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Администратор пристапи {0} од {1} преку IP адреса {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Е еднаква на -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на поле опции "Динамички линк" мора да се укаже на друг линк поле со опции како "DOCTYPE" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Тип на поле опции "Динамички линк" мора да се укаже на друг линк поле со опции како "DOCTYPE" DocType: About Us Settings,Team Members Heading,Членови на тимот Заглавие apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Невалиден CSV формат apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Сетови од поголем број на копии @@ -2709,7 +2715,7 @@ DocType: Contact,Contact,Контакт DocType: User,Third Party Authentication,Трета партија за проверка на автентичност DocType: Website Settings,Banner is above the Top Menu Bar.,Банер е над врвот мени. DocType: Razorpay Settings,API Secret,API тајна -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Извоз извештај: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Извоз извештај: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} не постои DocType: Email Account,Port,Порт DocType: Print Format,Arial,Arial @@ -2732,7 +2738,7 @@ DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,Врз основа на apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Направи Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Проверете фрапе URL на серверот -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} може да не бидат индексирани +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} може да не бидат индексирани DocType: Communication,Email Account,E-mail сметка DocType: Workflow State,Download,Преземи DocType: Blog Post,Blog Intro,Блог Вовед @@ -2743,7 +2749,7 @@ DocType: Web Page,Insert Code,Внеси код DocType: ToDo,Low,Ниски apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Можете да додадете динамични својства од документот со користење Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Неважечки граница {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Листа на типот на документот +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Листа на типот на документот DocType: Event,Ref Type,Реф Тип apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако се постават нови рекорди, го напушти "име" (проект) колона празно." DocType: Address,Chattisgarh,Chattisgarh @@ -2765,26 +2771,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Испрати печатење како PDF DocType: Web Form,Amount,Износ DocType: Workflow Transition,Allowed,Дозволено -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Може да има само едно стадо во форма +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Може да има само едно стадо во форма apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Не можам да ја запишам датотеката формат за {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Враќање на стандардните поставувања? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Невалиден Дома apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Неправилен Влезот. Обиди се повторно. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Опции потребни за линк или поле маса тип {0} во ред {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Опции потребни за линк или поле маса тип {0} во ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Опции потребни за линк или поле маса тип {0} во ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Опции потребни за линк или поле маса тип {0} во ред {1} DocType: Auto Email Report,Send only if there is any data,Испрати само ако има било какви податоци apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Ресетирај Филтри -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Дозвола на ниво 0, мора да се постави пред да се постават повисоки нивоа" +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Дозвола на ниво 0, мора да се постави пред да се постават повисоки нивоа" apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Доделување затворен од страна {0} DocType: Integration Request,Remote,Далечински управувач -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Пресметајте +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Пресметајте apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Ве молиме изберете DOCTYPE прв apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Потврдете ја вашата е-мејл apps/frappe/frappe/www/login.html +42,Or login with,Или пријавете се со DocType: Error Snapshot,Locals,Локалните жители apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Доставени преку {0} на {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} го спомнавте во коментар во {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"на пример, (55 + 434) / 4 или = Math.sin (Math.PI / 2) ..." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"на пример, (55 + 434) / 4 или = Math.sin (Math.PI / 2) ..." apps/frappe/frappe/model/naming.py +44,{0} is required,{0} е потребно DocType: Integration Request,Integration Type,Тип на интеграција DocType: Newsletter,Send Attachements,Испрати прилози @@ -2794,15 +2800,15 @@ DocType: DocField,Perm Level,Перм ниво apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Настани во денес Календар DocType: Web Page,Web Page,Веб-страница DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Во глобалната пребарување" не е дозволено за видот {0} во ред {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Приказ на листа -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Датум мора да биде во формат: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Датум мора да биде во формат: {0} DocType: Workflow,Don't Override Status,Не потиснување Статус apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Ве молиме да даде оценка. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Повратни Информации Барање apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,термин за пребарување -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Првата Корисник: Вие +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Првата Корисник: Вие apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Изберете Колони DocType: Translation,Source Text,извор на текстот apps/frappe/frappe/www/login.py +55,Missing parameters for login,Недостасува параметри за да се логирате @@ -2824,7 +2830,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Увоз DocType: ToDo,Assigned By,Доделени од страна apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Можете да ги користите Персонализација Образец за да го поставите нивото на полиња. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Одберете го вашиот регион +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Одберете го вашиот регион DocType: Custom DocPerm,Level,Ниво DocType: Custom DocPerm,Report,Извештај apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Износот мора да биде поголем од 0. @@ -2844,7 +2850,7 @@ DocType: Website Theme,Background,позадина DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON листа на DocTypes користи да се применуваат корисник дозволи. Ако се празни, сите поврзани DocTypes ќе се користи за да се однесуваат на корисничките дозволи." DocType: Report,Ref DocType,Реф DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Ве молиме додадете рејтинг -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Не може да се постави измени без Откажи +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Не може да се постави измени без Откажи apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Цела страна DocType: DocType,Is Child Table,Е табела на децата apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} мора да биде еден од {1} @@ -2859,7 +2865,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ова оди над apps/frappe/frappe/config/setup.py +260,Install Applications.,Инсталирање на апликации. DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватен -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Без сигнали за денес +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Без сигнали за денес DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Испрати Е-пошта Печати прилози како PDF (се препорачува) DocType: Web Page,Left,Лево DocType: Event,All Day,Цел ден @@ -2873,7 +2879,7 @@ DocType: Event,Send an email reminder in the morning,Испрати е-потс DocType: Blog Post,Published On,Објавено на DocType: Contact,Gender,Пол apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Задолжителна информации недостасува: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Поле '{0}' не може да се постави како уникатна како што има не-уникатни вредности +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Поле '{0}' не може да се постави како уникатна како што има не-уникатни вредности apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,На само 200 инсерти дозволено во едно барање DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Референтен Тип @@ -2886,7 +2892,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,предупредување знакот DocType: Workflow State,User,Корисникот DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Прикажи титула во прозорецот на прелистувачот како "Префикс - назив" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,текст во типот на документот +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,текст во типот на документот apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,се кандидира тестови apps/frappe/frappe/handler.py +91,Logged Out,одјавени apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Повеќе... @@ -2912,13 +2918,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Моментално гледате DocType: DocField,Default,Стандардно apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} додаде -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Барањето за '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Барањето за '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Чувајте го првиот извештај apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,Додадени {0} претплатници apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,А не во DocType: Workflow State,star,ѕвезда -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,"вредности, разделени со запирки" -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Макс ширина за видот на валута е 100пк во ред {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,"вредности, разделени со запирки" +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Макс ширина за видот на валута е 100пк во ред {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Молам да ги споделите вашето мислење за {0} apps/frappe/frappe/config/website.py +13,Content web page.,Содржина на веб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Додадете нова улога @@ -2937,7 +2943,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Не е валидна корисникот LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} не е валиден држава apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Ве молам изберете друг начин на плаќање. PayPal не поддржува трансакции во валута '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,полето за пребарување {0} не е валиден +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,полето за пребарување {0} не е валиден DocType: Workflow State,ok-circle,OK-круг apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Може да се најдат работи со барање "се најде портокал во клиенти apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Жал ми е! Корисникот треба да имаат целосен пристап до своето досие. @@ -2998,7 +3004,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Филтер Мета DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, за да бидат прикажани за линк на веб страната ако оваа форма има веб страница. Линк пат ќе бидат автоматски генерирани врз основа на `page_name` и` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Активирањето на повратни информации -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Ве молиме да се постави {0} Првиот +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Ве молиме да се постави {0} Првиот DocType: Unhandled Email,Message-id,Порака-проект DocType: Patch Log,Patch,Далноводи DocType: Async Task,Failed,Не успеа diff --git a/frappe/translations/ml.csv b/frappe/translations/ml.csv index cd1dfec862..8cfe5a8bc6 100644 --- a/frappe/translations/ml.csv +++ b/frappe/translations/ml.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ഫേസ് ഉപയോക്തൃനാ DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,കുറിപ്പ്: ഒന്നിലധികം സെഷനുകൾ മൊബൈൽ ഉപകരണം കാര്യത്തിൽ അനുവദിക്കില്ല apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},ഉപയോക്താവ് തയ്യാറാക്കിയിരിക്കുന്നു ഇമെയിൽ ഇൻബോക്സ് {ഉപയോക്താക്കൾ} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ഈ ഇമെയിൽ അയയ്ക്കാൻ കഴിയില്ല. നിങ്ങൾ ഈ മാസത്തെ {0} ഇമെയിലുകൾ അയയ്ക്കുന്നത് പരിധി കടന്നു. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,ശാശ്വതമായി {0} സമർപ്പിക്കുക? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,ശാശ്വതമായി {0} സമർപ്പിക്കുക? DocType: Address,County,കൗണ്ടി DocType: Workflow,If Checked workflow status will not override status in list view,ചെക്കുചെയ്ത വർക്ക്ഫ്ലോയെ നില ലിസ്റ്റ് കാഴ്ചയിൽ സ്റ്റാറ്റസ് അസാധുവാക്കാനോ എങ്കിൽ apps/frappe/frappe/client.py +280,Invalid file path: {0},അസാധുവായ ഫയൽ പാത്ത്: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ഒര apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ട്രീ DocType: User,User Emails,ഉപയോക്തൃ ഇമെയിലുകൾ DocType: User,Username,ഉപയോക്തൃനാമം -apps/frappe/frappe/model/base_document.py +581,Value too big,വളരെ വലുതാണ് മൂല്യം +apps/frappe/frappe/model/base_document.py +580,Value too big,വളരെ വലുതാണ് മൂല്യം DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,റൺ സ്ക്രിപ്റ്റ് ടെസ്റ്റ് DocType: Contact,Department,വകുപ്പ് @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,ലോഗുകൾ DocType: Custom DocPerm,This role update User Permissions for a user,ഒരു ഉപയോക്താവിനായി ഈ പങ്ക് അപ്ഡേറ്റ് ഉപയോക്തൃ അനുമതികൾ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},{0} പേരു്മാറ്റുക DocType: Workflow State,zoom-out,സൂം ഔട്ട് -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,അതിന്റെ ഉദാഹരണത്തിന് തുറക്കുമ്പോൾ {0} തുറക്കാൻ കഴിയില്ല +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,അതിന്റെ ഉദാഹരണത്തിന് തുറക്കുമ്പോൾ {0} തുറക്കാൻ കഴിയില്ല apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ടേബിൾ {0} ഒഴിച്ചിടാനാവില്ല apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Ledgers കൂടി apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,ചിത്രങ്ങൾ DocType: Communication,Reference Owner,റെഫറൻസ് ഉടമ DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ചെറിയ രക്തചംക്രമണത്തെ അംശം യൂണിറ്റ് (നാണയം). ഡോളറായും വേണ്ടി ഉദാ 1 ശതമാനം വേണ്ടി അതു 0.01 ആയി രേഖപ്പെടുത്തണം DocType: Social Login Keys,GitHub,സാമൂഹികം -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, വരി {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, വരി {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,ഒരു FULLNAME തരൂ. apps/frappe/frappe/model/document.py +904,Beginning with,തുടങ്ങുന്നതിൽ കൂടി apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ഡാറ്റാ ഇംപോർട്ട് ഫലകം @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,പേരന്റ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ, പാസ്വേഡ് ശക്തി കുറഞ്ഞ പാസ്വേഡ് സ്കോർ മൂല്യം അടിസ്ഥാനമാക്കി നടപ്പിലാക്കും. 2 ഒരു മൂല്യം ഇടത്തരം ശക്തമായ ഒരാളായി 4 വളരെ ശക്തമായ ഒരാളായി." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","പ്രവർത്തനക്ഷമമാക്കിയിട്ടുണ്ടെങ്കിൽ, പാസ്വേഡ് ശക്തി കുറഞ്ഞ പാസ്വേഡ് സ്കോർ മൂല്യം അടിസ്ഥാനമാക്കി നടപ്പിലാക്കും. 2 ഒരു മൂല്യം ഇടത്തരം ശക്തമായ ഒരാളായി 4 വളരെ ശക്തമായ ഒരാളായി." DocType: About Us Settings,"""Team Members"" or ""Management""","ടീം അംഗങ്ങൾ" അല്ലെങ്കിൽ "മാനേജ്മെന്റ്" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',വയലിലെ 'പരിശോധിക്കുക' തരം '0' അല്ലെങ്കിൽ '1' ഒന്നുകിൽ ആയിരിക്കണം സ്ഥിരസ്ഥിതി +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',വയലിലെ 'പരിശോധിക്കുക' തരം '0' അല്ലെങ്കിൽ '1' ഒന്നുകിൽ ആയിരിക്കണം സ്ഥിരസ്ഥിതി apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ഇന്നലെ DocType: Contact,Designation,പദവിയും DocType: Test Runner,Test Runner,ടെസ്റ്റ് റണ്ണർ @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ഫീൽഡ് പ്രസിദ്ധീ DocType: Email Group,Email Group,ഇമെയിൽ ഗ്രൂപ്പ് DocType: Note,Seen By,പ്രത്യക്ഷമായി apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,ഒന്നിലധികം ചേർക്കുക -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ഇഷ്ടമല്ല +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ഇഷ്ടമല്ല apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ഫീൽഡിനായി ഡിസ്പ്ലേ ലേബൽ സജ്ജമാക്കുക apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},തെറ്റായ മൂല്യം: {0} {1} {2} ആയിരിക്കണം apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","മാറ്റുക ഫീൽഡ് സവിശേഷതകൾ (തോൽ, വായന, അനുമതി മുതലായവ)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ഞങ് apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,അഡ്മിനിസ്ട്രേറ്റർ ലോഗിൻ ചെയ്ത ൽ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""സെയിൽസ് ക്വറി, പിന്തുണ ക്വറി 'തുടങ്ങിയ കോൺടാക്റ്റ് ഓപ്ഷനുകൾ, ഒരു പുതിയ വരിയിൽ ഓരോ അല്ലെങ്കിൽ കോമ ഉപയോഗിച്ച് വേർതിരിച്ച്." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ഇറക്കുമതി -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,ഇടയ്ക്കു്ചേര്ക്കുക +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,ഇടയ്ക്കു്ചേര്ക്കുക apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} തിരഞ്ഞെടുക്കുക DocType: Print Settings,Classic,ക്ലാസിക് DocType: Desktop Icon,Color,കളർ @@ -122,7 +122,7 @@ DocType: Translation,Translation,വിവർത്തനം apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ഇൻസ്റ്റോൾ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,മിസ്റ്റർ DocType: Custom Script,Client,ക്ലയന്റ് -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,ഈ ഫോം നിങ്ങൾ അതു ലഭ്യമായ ശേഷം പരിഷ്ക്കരിച്ചു +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,ഈ ഫോം നിങ്ങൾ അതു ലഭ്യമായ ശേഷം പരിഷ്ക്കരിച്ചു DocType: User Permission for Page and Report,User Permission for Page and Report,പേജും റിപ്പോർട്ട് ഉപയോക്താവ് അനുമതി DocType: Address,Himachal Pradesh,ഹിമാചൽ പ്രദേശ് DocType: System Settings,"If not set, the currency precision will depend on number format","സജ്ജമാക്കിയില്ലെങ്കിൽ, കറൻസി കൃത്യത നമ്പർ ഫോർമാറ്റ് ആശ്രയിച്ചിരിക്കും" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,കാരണം apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,ഉപയോക്താവിനെ വ്യക്തമാക്കുക DocType: Email Unsubscribe,Email Unsubscribe,ഇമെയിൽ അൺസബ്സ്ക്രൈബ് DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,മികച്ച ഫലങ്ങൾക്ക് സുതാര്യമായ പശ്ചാത്തലമുള്ള ഏകദേശം വീതി 150px ഒരു ചിത്രം തിരഞ്ഞെടുക്കുക. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,ആദ്യ ഉപയോക്താവിന് സിസ്റ്റം മാനേജർ (നിങ്ങൾ പിന്നീട് മാറ്റാനാകും) മാറും. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,ആദ്യ ഉപയോക്താവിന് സിസ്റ്റം മാനേജർ (നിങ്ങൾ പിന്നീട് മാറ്റാനാകും) മാറും. ,App Installer,അപ്ലിക്കേഷൻ ഇൻസ്റ്റോളർ DocType: Workflow State,circle-arrow-up,സർക്കിൾ-അമ്പ്-അപ്പ് apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,അപ്ലോഡ് ചെയ്യുന്നു ... DocType: Email Domain,Email Domain,ഇമെയിൽ ഡൊമെയ്ൻ DocType: Workflow State,italic,ചരിച്ചെഴുത്ത് apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,എല്ലാവർക്കും -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: സൃഷ്ടിക്കുക ഇല്ലാതെ ഇംപോർട്ട് സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: സൃഷ്ടിക്കുക ഇല്ലാതെ ഇംപോർട്ട് സജ്ജീകരിക്കാൻ കഴിയില്ല apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ഇവന്റ് മറ്റ് കലണ്ടറുകൾ. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,എല്ലാ ഫീൽഡുകളും അഭിപ്രായം സമർപ്പിക്കാൻ ആവശ്യമാണ്. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,നിരകൾ അടുക്കുന്നതിന് വലിച്ചിടുക @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,സ്റ്റാൻഡേർഡ apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ഹോം ആൻഡ് അറ്റാച്മെന്റ് ഫോൾഡറുകൾ ഇല്ലാതാക്കാൻ കഴിയില്ല apps/frappe/frappe/config/desk.py +19,Files,ഫയലുകൾ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,അനുമതികൾ തങ്ങൾ ലഭ്യമാക്കുകയും എന്ത് റോളുകൾ അടിസ്ഥാനമാക്കി ഉപയോക്താക്കൾ തേച്ച് ലഭിക്കും. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,ഈ പ്രമാണത്തിൽ ബന്ധപ്പെട്ട ഇമെയിലുകൾ അയക്കാൻ അനുവദനീയമല്ല -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,/ ഗ്രൂപ്പ് അടുക്കുന്നതിന് {0} നിന്ന് കുറയാതെ 1 നിര തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,ഈ പ്രമാണത്തിൽ ബന്ധപ്പെട്ട ഇമെയിലുകൾ അയക്കാൻ അനുവദനീയമല്ല +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,/ ഗ്രൂപ്പ് അടുക്കുന്നതിന് {0} നിന്ന് കുറയാതെ 1 നിര തിരഞ്ഞെടുക്കുക DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ഈ പരിശോധിക്കുക നിങ്ങൾ സാൻഡ്ബോക്സ് API ഉപയോഗിച്ച് പേയ്മെന്റ് പരീക്ഷിക്കുന്നതിനാൽ എങ്കിൽ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,ഒരു സാധാരണ വെബ്സൈറ്റ് തീം ഇല്ലാതാക്കാൻ അനുവദനീയമല്ല DocType: Feedback Trigger,Example,ഉദാഹരണം @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,ആകെ സബ്സ്ക്രൈബ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ഒരു റോൾ ലെവൽ 0 ന് ആക്സസ് ഇല്ല, എങ്കിൽ, പൊണ്ണത്തടിക്ക് അർത്ഥമില്ലാത്തവയാണ്." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,ഇതായി സംരക്ഷിക്കുക DocType: Communication,Seen,കണ്ടതാണ് -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,കൂടുതൽ വിശദാംശങ്ങൾ കാണിക്കുക +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,കൂടുതൽ വിശദാംശങ്ങൾ കാണിക്കുക DocType: System Settings,Run scheduled jobs only if checked,ഷെഡ്യൂൾ ജോലികൾ പ്രവർത്തിപ്പിക്കുക ചെക്ക് ചെയ്ത മാത്രം ചെയ്താൽ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,വിഭാഗം തലക്കെട്ടുകൾ തയ്യാറാണെങ്കിൽ മാത്രമേ കാണിക്കൂ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,ആർക്കൈവ് @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,മറയ്ക്കുക തലക്കെട്ട് DocType: Address,Current,നിലവിൽ DocType: Address,Current,നിലവിൽ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,ബന്ധപ്പെട്ട പ്രമാണങ്ങൾ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes ഓഫ് ഗ്രൂപ്പുകൾ DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,നീക്കം-സർക്കിൾ @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,ഫിൽറ്റർ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} {1} പോലുള്ള പ്രത്യേക പ്രതീകങ്ങൾ കഴിയില്ല apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ഒരു സമയത്ത് പല മൂല്യങ്ങൾ അപ്ഡേറ്റ് ചെയ്യുക. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,പിശക്: ഡോക്യുമെന്റ് നിങ്ങൾ അതു തുറന്നു ശേഷം പരിഷ്ക്കരിച്ചു -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിര വിലാസം ഫലകം കണ്ടെത്തി. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസം ഫലകം നിന്ന് പുതിയതൊന്ന് സൃഷ്ടിക്കുക." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ലോഗ് ഔട്ട്: {1} DocType: Address,West Bengal,പശ്ചിമ ബംഗാൾ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ സമർപ്പിക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ സമർപ്പിക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല DocType: Social Login Keys,Facebook,ഫേസ് apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","{0}" ഫിൽട്ടർ DocType: Salutation,Administrator,അഡ്മിനിസ്ട്രേറ്റർ @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,ബ്ലോഗ് ശീർഷകം apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,സ്റ്റാൻഡേർഡ് വേഷങ്ങൾ പ്രവർത്തനരഹിതമാക്കാനാകില്ല DocType: Address,Mizoram,മിസോറം DocType: Newsletter,Newsletter,വാർത്താക്കുറിപ്പ് -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ഉത്തരവ് സബ് അന്വേഷണം ഉപയോഗിക്കാനാകില്ല +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ഉത്തരവ് സബ് അന്വേഷണം ഉപയോഗിക്കാനാകില്ല DocType: Web Form,Button Help,ബട്ടൺ സഹായം DocType: Kanban Board Column,purple,പർപ്പിൾ DocType: About Us Settings,Team Members,ടീം അംഗങ്ങൾ @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","നിങ്ങളുടെ സബ്സ്ക്രിപ്ഷൻ ന് {0} കാലഹരണപ്പെട്ടു. , പുതുക്കുന്നതിന് {1}." DocType: Workflow State,plus-sign,പ്ലസ്-അടയാളം apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ഇതിനകം പൂർണ്ണമായ സജ്ജീകരണം -apps/frappe/frappe/__init__.py +890,App {0} is not installed,അപ്ലിക്കേഷൻ {0} ഇൻസ്റ്റാളുചെയ്തില്ല +apps/frappe/frappe/__init__.py +889,App {0} is not installed,അപ്ലിക്കേഷൻ {0} ഇൻസ്റ്റാളുചെയ്തില്ല DocType: Workflow State,Refresh,പുതുക്കുക DocType: Event,Public,പബ്ലിക് apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,കാണിക്കുന്നതിന് ഒന്നുമില്ല @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ഇഷ്ടപ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ഇമെയിൽ പിന്തുണ DocType: DocField,Print Hide If No Value,ഇല്ല മാനിയ്ക്കുന്നുണ്ടെങ്കിൽ പ്രിന്റ് മറയ്ക്കുക DocType: Event,yellow,മഞ്ഞ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,പ്രസിദ്ധീകരിച്ചു ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,പ്രസിദ്ധീകരിച്ചു ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,അപ്ലോഡുചെയ്യുക അറ്റാച്ചുമെൻറ് DocType: Block Module,Block Module,ബ്ലോക്ക് മൊഡ്യൂൾ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,എക്സ്പോർട്ട് ഫലകം @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},ഒരു പുതിയ അക്കൗണ്ട് {0} എന്തിനു വേണ്ടി സൃഷ്ടിക്കപ്പെട്ടു apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,നിർദ്ദേശങ്ങൾ ഇമെയിൽ apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,നിർദ്ദേശങ്ങൾ ഇമെയിൽ -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ഇമെയിൽ നബി (സ) നൽകുക +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ഇമെയിൽ നബി (സ) നൽകുക DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ഇമെയിൽ ഫ്ലാഗ് ക്യൂ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,{0} തുറക്കുക തിരിച്ചറിയാൻ കഴിയില്ല. മറ്റെന്തെങ്കിലും ശ്രമിക്കുക. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,സന്ദേശ ID DocType: Property Setter,Field Name,ഫീൽഡ് പേര് apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ഗൂഗിൾ ഗ്സുഇതെ ക്രമീകരിച്ചിട്ടില്ല. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,അഥവാ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ഘടകം പേര് ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,തുടരുക +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ഘടകം പേര് ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,തുടരുക DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,സർട്ടിഫിക്കറ്റ് DocType: User,Tile,ടൈൽ @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,എല്ലാ പതിപ്പുകളും കാണിക്കുക DocType: Workflow State,Print,പ്രിന്റ് DocType: User,Restrict IP,ഐപി പരിമിതപ്പെടുത്തുക +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ഡാഷ്ബോർഡ് apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ഈ സമയം ഇമെയിലുകൾ അയക്കാൻ പറ്റുന്നില്ല apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ഒരു കമാൻഡ് തിരയുക അല്ലെങ്കിൽ ടൈപ്പ് DocType: Communication,Timeline Name,ടൈംലൈൻ പേര് @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,സെയിൽസ് മാസ്റ് apps/frappe/frappe/www/complete_signup.html +13,One Last Step,അവസാന ഘട്ടം apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ഡോക്യുമെന്റ് പേര് (DocType) നിങ്ങൾക്ക് ഈ ഫീൽഡ് ലിങ്കുചെയ്യുന്നതല്ല ആഗ്രഹിക്കുന്നു. ഉദാ കസ്റ്റമർ DocType: User,Roles Assigned,അസൈൻഡ് റോളുകൾ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,തിരയൽ സഹായം -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,തിരയൽ സഹായം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,തിരയൽ സഹായം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,തിരയൽ സഹായം DocType: Top Bar Item,Parent Label,പാരന്റ് ലേബൽ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","നിങ്ങളുടെ ചോദ്യ ലഭിച്ചിട്ടുണ്ട്. ഉടൻ തിരികെ പറയും. നിങ്ങൾക്ക് എന്തെങ്കിലും അധിക വിവരങ്ങൾ ഉണ്ടെങ്കിൽ, ഈ മെയിൽ മറുപടി നൽകുക." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,അനുമതികൾ യാന്ത്രികമായി സ്റ്റാൻഡേർഡ് റിപ്പോർട്ടുകൾ തിരച്ചിലുകളും വിവർത്തനം ചെയ്യുന്നു. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,എഡിറ്റ് തലക്കെട്ട് DocType: File,File URL,പ്രമാണം യുആർഎൽ DocType: Version,Table HTML,പട്ടിക എച്ച്ടിഎംഎൽ +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'നായി ഫലങ്ങളൊന്നും കണ്ടെത്തിയില്ല

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,വരിക്കാരെ ചേര്ക്കുക apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ഇന്ന് വേണ്ടി വരാനിരിക്കുന്ന DocType: Email Alert Recipient,Email By Document Field,ഡോക്യുമെന്റ് ഫീൽഡ് ഇമെയിൽ @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,ഫീൽഡ് അടിസ്ഥാന apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ഉപയോക്താവ് പങ്കിടുക നിര്ബന്ധമാണ് DocType: DocField,Hidden,മറച്ചത് DocType: Web Form,Allow Incomplete Forms,അപൂർണം ഫോം അനുവദിക്കുക -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ആദ്യ സെറ്റ് വേണം +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ആദ്യ സെറ്റ് വേണം apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","സാധാരണ ശൈലികൾ ഒഴിവാക്കുക, ഏതാനും വാക്കുകൾ ഉപയോഗിക്കുക." DocType: Workflow State,plane,വിമാനം -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,ശ്ശോ. നിങ്ങളുടെ പേയ്മെന്റ് പരാജയപ്പെട്ടു. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","നിങ്ങൾ പുതിയ റെക്കോഡുകൾ അപ്ലോഡ് ചെയ്യുന്നതെങ്കിൽ ദൃശ്യമാകുന്നു, "എന്നും പേരിട്ടു സീരീസ്", നിർബന്ധമാണ് മാറുന്നു." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,ഇന്ന് അലേർട്ടുകൾ നേടുക +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,ഇന്ന് അലേർട്ടുകൾ നേടുക apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType മാത്രം അഡ്മിനിസ്ട്രേറ്റർ പുനർനാമകരണം കഴിയും apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},{0} മാറ്റി മൂല്യം DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,പരിശോധനയ്ക്കായി നിങ്ങളുടെ ഇമെയിൽ പരിശോധിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,തൊഴുത്തിൽ ഫോം അവസാനത്തിൽ ആകാൻ പാടില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,തൊഴുത്തിൽ ഫോം അവസാനത്തിൽ ആകാൻ പാടില്ല DocType: Communication,Bounced,ദുശ്മൻ DocType: Deleted Document,Deleted Name,ഇല്ലാതാക്കി പേര് apps/frappe/frappe/config/setup.py +14,System and Website Users,സിസ്റ്റവും വെബ്സൈറ്റ് ഉപയോക്താക്കൾ @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,പ്രമാണം DocType: GSuite Templates,Destination ID,ലക്ഷ്യ ഐഡി DocType: Desktop Icon,List,പട്ടിക DocType: Communication,Link Name,ലിങ്ക് പേര് -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ഫീൽഡ് {0} നിരയിൽ {1} സ്വതവേ കൂടാതെ മറഞ്ഞിരിക്കുന്നതും നിർബന്ധമായി ചെയ്യാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ഫീൽഡ് {0} നിരയിൽ {1} സ്വതവേ കൂടാതെ മറഞ്ഞിരിക്കുന്നതും നിർബന്ധമായി ചെയ്യാൻ കഴിയില്ല DocType: System Settings,mm/dd/yyyy,മില്ലീമീറ്റർ / / വർഷം apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,അസാധുവായ പാസ്വേഡ്: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,അസാധുവായ പാസ്വേഡ്: DocType: Print Settings,Send document web view link in email,ഇമെയിലിൽ പ്രമാണം വെബ് കാഴ്ച ലിങ്ക് അയയ്ക്കുക apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,പ്രമാണം {0} വിജയകരമായി സംരക്ഷിക്കപ്പെടും നിങ്ങളുടെ ഫീഡ്ബാക്ക് apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,മുമ്പത്തെ -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,മറു: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,മറു: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} വേണ്ടി {1} വരികൾ DocType: Currency,"Sub-currency. For e.g. ""Cent""",സബ്-കറൻസി. ഉദാ: "സെന്റ്" എന്ന apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,അപ്ലോഡ് ഫയൽ തിരഞ്ഞെടുക്കുക @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,ലിങ്ക് apps/frappe/frappe/utils/file_manager.py +96,No file attached,ഫയൽ അറ്റാച്ചുചെയ്തിട്ടില്ല DocType: Version,Version,പതിപ്പ് DocType: User,Fill Screen,സ്ക്രീൻ നിറയ്ക്കുക -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","കാരണം കാണാതായ ഡാറ്റ വരെ, ഈ മരം റിപ്പോർട്ട് പ്രദർശിപ്പിക്കാൻ കഴിഞ്ഞില്ല. മിക്കവാറും, അത് മൂലം അനുമതികൾ വരെ ഫിൽട്ടർ ചെയ്തുകൊണ്ടിരിക്കുന്നു." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൗണ്ടിൽ നിന്ന് ദയവായി ചിഹ്നങ്ങള്ക്കു്സഹജമായുള്ളപ്രഭാവംസജ്ജമാക്കുക ഇമെയിൽ അക്കൗണ്ട് +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","കാരണം കാണാതായ ഡാറ്റ വരെ, ഈ മരം റിപ്പോർട്ട് പ്രദർശിപ്പിക്കാൻ കഴിഞ്ഞില്ല. മിക്കവാറും, അത് മൂലം അനുമതികൾ വരെ ഫിൽട്ടർ ചെയ്തുകൊണ്ടിരിക്കുന്നു." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ഫയൽ തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,അപ്ലോഡ് വഴി എഡിറ്റ് -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","ഡോക്യുമെന്റ് ..., ഉദാ ഉപഭോക്താവ്" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","ഡോക്യുമെന്റ് ..., ഉദാ ഉപഭോക്താവ്" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,കണ്ടീഷൻ '{0}' അസാധുവാണ് DocType: Workflow State,barcode,ബാർകോഡ് apps/frappe/frappe/config/setup.py +232,Add your own translations,നിങ്ങളുടെ സ്വന്തം വിവർത്തനങ്ങൾ ചേർക്കുക @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,ബുധനാഴ്ച apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","ഞങ്ങളുടെ റോൾ അടിസ്ഥാനമാക്കിയുള്ള അനുമതി നിയമങ്ങൾ നിന്നും, നിങ്ങളെ DocTypes അടിസ്ഥാനമാക്കി ഉപയോക്തൃ അനുമതികൾ അപേക്ഷിക്കാം." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","ഈ അനുമതികൾ അനുവദനീയ റെക്കോർഡ് ലിങ്കുചെയ്തിരിക്കും എവിടെ എല്ലാ ഇടപാടുകൾക്ക് ബാധകമാകും. കമ്പനി സി ഉപയോക്തൃ എക്സ് ഉപയോക്താവ് അനുമതികൾ ചേർത്തു ഉദാഹരണത്തിന്, ഉപയോക്താവിന്റെ എക്സ് മാത്രമേ ലിങ്കുചെയ്ത മൂല്യം എന്ന് കമ്പനി സി ഉണ്ട് എന്ന് ഇടപാടുകൾ കാണാൻ കഴിയും." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,ചിത്രം ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,ചിത്രം ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം DocType: OAuth Client,Token,ടോക്കൺ DocType: Property Setter,ID (name) of the entity whose property is to be set,ആരുടെ പ്രോപ്പർട്ടി സജ്ജീകരിക്കാൻ എന്നതാണ് സ്ഥാപനത്തിന്റെ ഐഡി (പേര്) apps/frappe/frappe/limits.py +82,"To renew, {0}.",", പുതുക്കുന്നതിന് {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,സൈഡ്ബാർ ഇനങ്ങൾ apps/frappe/frappe/installer.py +125,App {0} already installed,അപ്ലിക്കേഷൻ {0} ഇതിനകം ഇൻസ്റ്റാൾ DocType: Workflow State,exclamation-sign,ഉദ്ഘോഷം-അടയാളം apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,അനുമതികളും കാണിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,ടൈംലൈൻ ഫീൽഡ് ഒരു ലിങ്ക് അല്ലെങ്കിൽ ഡൈനമിക് ലിങ്ക് ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,ടൈംലൈൻ ഫീൽഡ് ഒരു ലിങ്ക് അല്ലെങ്കിൽ ഡൈനമിക് ലിങ്ക് ആയിരിക്കണം apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,തീയതി ശ്രേണി apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},{1} എന്ന പേജ് {0} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,വെ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","എൻക്രിപ്ഷൻ കീ അസാധുവാണ്, ദയവായി സിതെ_ചൊന്ഫിഗ്.ജ്സൊന് പരിശോധിക്കുക" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ചെയ്യാ DocType: Kanban Board Column,darkgrey,ഇരുണ്ട ചാരനിറം -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},വിജയകരം: {0} {1} വരെ +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},വിജയകരം: {0} {1} വരെ apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ഡെമോ ഉപയോക്താക്കളുള്ള വിശദാംശങ്ങൾ മാറ്റാൻ കഴിയില്ല. https://erpnext.com ഒരു പുതിയ അക്കൗണ്ട് പ്രവേശന ദയവായി apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,മാറ്റങ്ങൾ വരുത്താൻ ഇത് തനിപ്പകർപ്പ് ദയവായി apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,പിഡിഎഫ് തലമുറ കാരണം തകർന്നുപോകും ഇമേജ് കണ്ണികളുടെ പരാജയപ്പെട്ടു @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,സൌകര്യങ്ങളൊക്ക apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,സംരക്ഷിച്ച apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,എന്ത് സഹായമാണ് എന്താണ് വേണ്ടത്? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,തിരഞ്ഞെടുത്ത ഓപ്ഷനുകൾ. പുതിയ ലൈനിൽ ഓരോ ഓപ്ഷൻ. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,ശാശ്വതമായി {0} റദ്ദാക്കുക? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,ശാശ്വതമായി {0} റദ്ദാക്കുക? DocType: Workflow State,music,സംഗീതം DocType: Web Page,Settings,ക്രമീകരണങ്ങൾ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Doctype വ്യക്തമാക്കുക DocType: Print Format,Style Settings,ശൈലി ക്രമീകരണങ്ങൾ -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,അടുക്കുക ഫീൽഡ് {0} സാധുവായ FIELDNAME ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,അടുക്കുക ഫീൽഡ് {0} സാധുവായ FIELDNAME ആയിരിക്കണം apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,കൂടുതൽ DocType: Contact,Sales Manager,സെയിൽസ് മാനേജർ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,പേരു്മാറ്റുക DocType: Print Format,Format Data,ഫോർമാറ്റ് ഡാറ്റാ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,അങ്ങിനെ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,അങ്ങിനെ DocType: Customize Form Field,Customize Form Field,ഫോം ഫീൽഡ് ഇഷ്ടാനുസൃതമാക്കുക apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,ഉപയോക്താവ് അനുവദിക്കുക DocType: OAuth Client,Grant Type,ഗ്രാന്റ് ഇനം apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ഒരു ഉപയോക്താവ് വായിക്കാവുന്ന ആയ പ്രമാണങ്ങൾ പരിശോധിക്കുക apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,അപ്ലിക്കേഷൻ ലിസ്റ്റിംഗ് അനുവദനീയമല്ല -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,തുരുപ്പിറക്കി% ഉപയോഗിക്കുക -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","ഇമെയിൽ ഡൊമെയ്ൻ ഈ അക്കൗണ്ടിന് കോൺഫിഗർ, സൃഷ്ടിക്കുക?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,തുരുപ്പിറക്കി% ഉപയോഗിക്കുക +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ഇമെയിൽ ഡൊമെയ്ൻ ഈ അക്കൗണ്ടിന് കോൺഫിഗർ, സൃഷ്ടിക്കുക?" DocType: User,Reset Password Key,പാസ്വേഡ് കീ പുനഃസജ്ജമാക്കുക DocType: Email Account,Enable Auto Reply,ഓട്ടോ മറുപടി പ്രവർത്തനക്ഷമമാക്കുക apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,കണ്ടില്ലേ @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ഒരിക്കൽ മാത്രം സജ DocType: Email Queue Recipient,Email Queue Recipient,ഇമെയിൽ ക്യൂ സ്വീകർത്താവ് DocType: Address,Nagaland,നാഗാലാൻഡ് apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ഉപയോക്തൃനാമം {0} ഇതിനകം നിലവിലുണ്ട് -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} importable അല്ല പോലെ ഇറക്കുമതിയും സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} importable അല്ല പോലെ ഇറക്കുമതിയും സജ്ജീകരിക്കാൻ കഴിയില്ല apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},നിങ്ങളുടെ വിലാസ ഫലകം {0} ഒരു പിശക് ഉണ്ട് DocType: Footer Item,"target = ""_blank""",ലക്ഷ്യം = "_blank" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,മുഴുവൻ പേര് നിന apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},നിങ്ങൾ റിപ്പോർട്ട് ആക്സസ് ഇല്ല: {0} DocType: User,Send Welcome Email,സ്വാഗത ഇമെയിൽ അയയ്ക്കുക apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ഡൗൺലോഡ് അതേ ഫോർമാറ്റിൽ എല്ലാ ഉപയോക്തൃ അനുമതികൾ അടങ്ങുന്ന CSV ഫയൽ അപ്ലോഡ് ചെയ്യുക. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ഫിൽറ്റർ നീക്കംചെയ്യുക +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ഫിൽറ്റർ നീക്കംചെയ്യുക DocType: Address,Daman and Diu,ദാമൻ ആൻഡ് ദിയു DocType: Address,Personal,വ്യക്തിപരം apps/frappe/frappe/config/setup.py +113,Bulk Rename,ബൾക്ക് പേരു്മാറ്റുക @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","സ്റ്റാൻഡേർഡ് ദൊച്ത്യ്പെ, സ്ഥിര പ്രിന്റ് ഫോർമാറ്റിൽ കഴിയില്ല ഇഷ്ടാനുസൃതമാക്കുക ഫോം ഉപയോഗിക്കുക" DocType: Report,Query,അന്വേഷണം DocType: DocType,Sort Order,ക്രമീകരണം -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'പട്ടിക കാഴ്ചയിൽ' വരി ടൈപ്പ് {0} അനുവദിച്ചിട്ടില്ല {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'പട്ടിക കാഴ്ചയിൽ' വരി ടൈപ്പ് {0} അനുവദിച്ചിട്ടില്ല {1} DocType: Custom Field,Select the label after which you want to insert new field.,നിങ്ങൾ പുതിയ ഫീൽഡ് തിരുകാൻ ആഗ്രഹിക്കുന്ന ശേഷം ലേബൽ തിരഞ്ഞെടുക്കുക. ,Document Share Report,ഡോക്യുമെന്റ് പങ്കിടുക റിപ്പോർട്ട് DocType: User,Last Login,കഴിഞ്ഞ ലോഗിൻ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME വരി {0} ആവശ്യമാണ് +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME വരി {0} ആവശ്യമാണ് apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,കള്ളി DocType: Custom Field,Adds a custom field to a DocType,ഒരു DocType ഒരു കസ്റ്റം ഫീൽഡ് ചേർക്കുന്നു DocType: File,Is Home Folder,ഹോം ഫോൾഡർ Is @@ -594,7 +594,7 @@ DocType: File,Folder,ഫോൾഡർ DocType: DocField,Index,സൂചിക DocType: Email Group,Newsletter Manager,വാർത്താക്കുറിപ്പ് മാനേജർ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ഓപ്ഷൻ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,എല്ലാ പോസ്റ്റുകൾ +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} മുതൽ {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,അഭ്യർത്ഥനകൾ സമയത്ത് പിശക് ലോഗ്. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} വിജയകരമായി ഇമെയിൽ ഗ്രൂപ്പ് ചേർത്തു. DocType: Address,Uttar Pradesh,ഉത്തർപ്രദേശ് @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,സൂചകം DocType: DocShare,Everyone,എല്ലാവരും DocType: Workflow State,backward,പിന്നാക്ക -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ഒന്നു മാത്രം ഒരേ വേഷം അനുവദിച്ച ഭരണം, ലെവൽ, {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: ഒന്നു മാത്രം ഒരേ വേഷം അനുവദിച്ച ഭരണം, ലെവൽ, {1}" DocType: Email Queue,Add Unsubscribe Link,അൺസബ്സ്ക്രൈബ് ലിങ്ക് ചേർക്കുക apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ഇതുവരെ അഭിപ്രായങ്ങളൊന്നുമില്ല. ഒരു പുതിയ ചർച്ച ആരംഭിക്കുക. DocType: Workflow State,share,പങ്ക് @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,അന apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,കാണുക സബ്സ്ക്രൈബുചെയ്തവർ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,മിസ് DocType: Website Theme,Background Color,പശ്ചാത്തല നിറം -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ഇമെയിൽ അയയ്ക്കുമ്പോൾ പിശകുകളുണ്ടായിരുന്നു. വീണ്ടും ശ്രമിക്കുക. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ഇമെയിൽ അയയ്ക്കുമ്പോൾ പിശകുകളുണ്ടായിരുന്നു. വീണ്ടും ശ്രമിക്കുക. DocType: Portal Settings,Portal Settings,പോർട്ടൽ ക്രമീകരണങ്ങൾ DocType: Web Page,0 is highest,0 ഉയർന്ന apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,നിങ്ങൾക്ക് ഉറപ്പാണോ {0} ഈ ആശയവിനിമയം വീണ്ടും ലിങ്ക് ചെയ്യണമെന്ന് ഉറപ്പാണോ? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,നമ്മുടെ പക് apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,തിരയുന്നു ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,തിരയുന്നു ... DocType: Workflow State,text-width,ടെക്സ്റ്റ്-വീതി -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ഈ റെക്കോർഡ് മാക്സിമം സഹപത്രങ്ങൾ പരിധി എത്തി. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ഈ റെക്കോർഡ് മാക്സിമം സഹപത്രങ്ങൾ പരിധി എത്തി. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,താഴെ നിർബന്ധമായി ഫീൽഡുകൾ പൂരിപ്പിക്കണം:
DocType: Email Alert,View Properties (via Customize Form),(കസ്റ്റമൈസ് ഫോം വഴി) അവതരണരീതികള്പ്രയോഗിച്ചുകൊണ്ടിരിയ്ക്കുന്നു DocType: Note Seen By,Note Seen By,കണ്ട കുറിപ്പ് @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,രാജസ്ഥാൻ apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,റിപ്പോർട്ട് ബിൽഡർ റിപ്പോർട്ടുകൾ റിപ്പോർട്ട് ബിൽഡർ നേരിട്ടു നിയന്ത്രിക്കുന്നത്. ഒന്നും ചെയ്യാനുണ്ടായിരുന്നില്ല. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,നിങ്ങളുടെ ഇമെയിൽ വിലാസം പരിശോധിക്കുന്നതിന് ദയവായി apps/frappe/frappe/model/document.py +903,none of,ആരും -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,എന്നെക്കുറിച്ച് ഒരു കോപ്പി അയയ്ക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,എന്നെക്കുറിച്ച് ഒരു കോപ്പി അയയ്ക്കുക apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,ഉപയോക്താവിന്റെ അനുമതികൾ അപ്ലോഡുചെയ്യുക DocType: Dropbox Settings,App Secret Key,അപ്ലിക്കേഷൻ രഹസ്യ കീ apps/frappe/frappe/config/website.py +7,Web Site,വെബ് സൈറ്റ് apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ചെക്കുചെയ്ത ഇനങ്ങൾ ഡെസ്ക്ടോപ്പിൽ കാണിക്കും -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} സിംഗിൾ തരം സജ്ജമാക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} സിംഗിൾ തരം സജ്ജമാക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban ബോർഡ് {0} നിലവിലില്ല. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} നിലവിൽ ഈ പ്രമാണം കാണുന്നു ചെയ്യുന്നു DocType: ToDo,Assigned By Full Name,മുഴുവൻ പേര് നിർണ്ണയിച്ച apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} നവീകരിച്ചത് -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,റിപ്പോർട്ട് സിംഗിൾ തരങ്ങൾക്കുള്ള സജ്ജമാക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,റിപ്പോർട്ട് സിംഗിൾ തരങ്ങൾക്കുള്ള സജ്ജമാക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ദിവസം മുമ്പ് DocType: Email Account,Awaiting Password,പാസ്വേഡ് കാത്തിരിക്കുന്നു DocType: Address,Address Line 1,വിലാസ ലൈൻ 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","വർക്ക്ഫ്ലോ വേണ്ടി സ്റ്റേറ്റ്സ് (ഉദാ കരട്, അംഗീകാരം, റദ്ദാക്കി)." DocType: Print Settings,Allow Print for Draft,ഡ്രാഫ്റ്റ് പ്രിന്റ് അനുവദിക്കുക apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,സജ്ജമാക്കുക ക്വാണ്ടിറ്റി -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,സ്ഥിരീകരിക്കുന്നതിന് ഈ പ്രമാണം സമർപ്പിക്കുക +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,സ്ഥിരീകരിക്കുന്നതിന് ഈ പ്രമാണം സമർപ്പിക്കുക DocType: Contact,Unsubscribed,അൺസബ്സ്ക്രൈബുചെയ്ത apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,പേജ് റിപ്പോർട്ട് ഇഷ്ടാനുസൃത വേഷങ്ങൾ സജ്ജമാക്കുക apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,റേറ്റിംഗ്: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ഡാറ്റാ ഇംപോർട്ട് ടൂൾ DocType: Address,Dadra and Nagar Haveli,"ദാദ്ര, നാഗർ ഹവേലി" apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ഫയലുകൾ അപ്ലോഡ് അൽപ ദയവായി കാത്തിരിക്കുക. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,നിങ്ങളുടെ ചിത്രം അറ്റാച്ച് +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,നിങ്ങളുടെ ചിത്രം അറ്റാച്ച് apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,വരി മൂല്യങ്ങൾ മാറ്റി DocType: Workflow State,Stop,നിർത്തുക DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,നിങ്ങൾ തുറക്കാൻ ആഗ്രഹിക്കുന്ന പേജിലേക്ക് ലിങ്ക്. അത് ഒരു ഗ്രൂപ്പ് മാതാവോ ആഗ്രഹിക്കുന്ന പക്ഷം ശൂന്യമാക്കിയിടുക. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,ഇടതുപക്ഷ ലേ DocType: Help Article,Expert,വിദഗ്ധ DocType: Workflow State,circle-arrow-right,സർക്കിൾ-അമ്പ്-വലത് DocType: LDAP Settings,LDAP Server Url,എൽഡാപ്പ് സെർവർ URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,അതിന്റെ {0} തുറക്കുമ്പോൾ തുറന്ന ഉദാഹരണത്തിന് അല്ല Can +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,അതിന്റെ {0} തുറക്കുമ്പോൾ തുറന്ന ഉദാഹരണത്തിന് അല്ല Can apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ഇൻസ്റ്റാൾ ക്യൂവിലാക്കി DocType: Custom DocPerm,Custom DocPerm,കസ്റ്റം DocPerm DocType: Newsletter,Send Unsubscribe Link,അയയ്ക്കുക അൺസബ്സ്ക്രൈബ് ലിങ്ക് @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,അപ്ലിക്കേഷൻ {0} നീക്കംചെയ്തു DocType: Custom DocPerm,Apply User Permissions,ഉപയോക്താവിന്റെ അനുമതികൾ പ്രയോഗിക്കുക DocType: User,Modules HTML,മൊഡ്യൂളുകൾ എച്ച്ടിഎംഎൽ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ മാനേജർ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ആവശ്യമുള്ള കാണുന്നില്ല മൂല്യങ്ങൾ DocType: DocType,Other Settings,മറ്റു ക്രമീകരണങ്ങൾ DocType: Social Login Keys,Frappe,അവളെന്നോട് @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ബെയറർ ടോ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,പ്രമാണമൊന്നും തിരഞ്ഞെടുത്ത apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ഡോ DocType: Event,Event,ഇവന്റ് -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0} ന് {1} എഴുതി: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0} ന് {1} എഴുതി: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,സ്റ്റാൻഡേർഡ് ഫീൽഡ് ഇല്ലാതാക്കാൻ കഴിയില്ല. ആവശ്യമെങ്കിൽ അത് മറയ്ക്കാം DocType: Top Bar Item,For top bar,മുകളിൽ ബാർ വേണ്ടി apps/frappe/frappe/utils/bot.py +148,Could not identify {0},തിരിച്ചറിയാൻ കഴിഞ്ഞില്ല {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,ഡെസ്ക് അക്സസ് DocType: Workflow State,minus,കുറവുചെയ്യപ്പെട്ട apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,സെർവർ തകരാർ: നിങ്ങളുടെ സെർവർ ലോഗുകൾ പരിശോധിക്കുകയോ പിഴവ് ബന്ധപ്പെടുക. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,സ്വാഗതം മെയിൽ അയച്ചിട്ടുണ്ട് -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,ആദ്യ ഉപയോഗത്തിനായി സിസ്റ്റം ഒരുക്കും പറയട്ടെ. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,ആദ്യ ഉപയോഗത്തിനായി സിസ്റ്റം ഒരുക്കും പറയട്ടെ. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,സവിശേഷതയുള്ള apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ഇതിനകം രജിസ്റ്റർ DocType: System Settings,Float Precision,ഫ്ലോട്ട് കൃത്യത @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,പ്രിന്റ് അനുവദിക് apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,അപ്ലിക്കേഷനുകളൊന്നും ഇൻസ്റ്റാൾ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ഫീൽഡ് പോലെ നിർബന്ധിതം മർക്കോസ് DocType: Communication,Clicked,ക്ലിക്കുചെയ്ത -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ഇതിനായി '{0}' {1} അനുമതിയില്ല +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ഇതിനായി '{0}' {1} അനുമതിയില്ല DocType: User,Google User ID,ഗൂഗിൾ യൂസർ ഐഡി apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,അയയ്ക്കാൻ ഷെഡ്യൂൾ DocType: DocType,Track Seen,ട്രാക്ക് കാണുന്നത് @@ -838,7 +837,7 @@ DocType: Address,Kerala,കേരളം DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,ഒരേസമയത്ത് സെഷനുകൾ DocType: OAuth Client,Client Credentials,ക്ലയന്റ് ക്രഡൻഷ്യലുകൾ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ഒരു ഘടകം അല്ലെങ്കിൽ ഉപകരണം തുറക്കുക +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ഒരു ഘടകം അല്ലെങ്കിൽ ഉപകരണം തുറക്കുക DocType: Communication,Delivery Status,ഡെലിവറി സ്റ്റാറ്റസ് DocType: Module Def,App Name,അപ്ലിക്കേഷൻ പേര് apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,അനുവദിച്ച പരമാവധി ഫയൽ വലുപ്പം ഇതാണ് {0} എം.ബി. @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,റെഫറൻസ് കമ DocType: Email Queue,Unsubscribe Method,ഒഴിവാക്കുക രീതി DocType: GSuite Templates,Related DocType,ബന്ധപ്പെട്ട ദൊച്ത്യ്പെ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,ഉള്ളടക്കം ചേർക്കാൻ എഡിറ്റ് -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ഭാഷകൾ തിരഞ്ഞെടുക്കുക -apps/frappe/frappe/__init__.py +510,No permission for {0},{0} വേണ്ടി അനുമതിയില്ല +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ഭാഷകൾ തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/__init__.py +509,No permission for {0},{0} വേണ്ടി അനുമതിയില്ല DocType: DocType,Advanced,വിപുലമായ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API കീ അല്ലെങ്കിൽ API രഹസ്യം തെറ്റായ തോന്നുന്നു !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},റഫറൻസ്: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,ഫോം ടൈപ്പ് നൽ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ഇല്ല റെക്കോഡുകൾ ടാഗ് ചെയ്തു. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ഫീൽഡ് നീക്കംചെയ്യുക DocType: User,Send Password Update Notification,പാസ്വേഡ് അപ്ഡേറ്റ് അറിയിപ്പ് അയയ്ക്കുക -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DocType, DocType അനുവദിച്ചത്. ശ്രദ്ധാലുവായിരിക്കുക!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType അനുവദിച്ചത്. ശ്രദ്ധാലുവായിരിക്കുക!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","അച്ചടി, ഇമെയിൽ ഇച്ഛാനുസൃതമാക്കിയിട്ടുള്ള ഫോർമാറ്റുകൾ" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,പുതിയ പതിപ്പിലേക്ക് അപ്ഡേറ്റ് DocType: Custom Field,Depends On,ആശ്രയിച്ചിരിക്കുന്നു @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,ഒരുത്തൻ apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,പകർത്താൻ ദയവായി ഫയൽ തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ഒറ്റ നിമിഷം പരിശോധിക്കുന്നു apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,കാണിക്കുക ടാഗുകൾ +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","പ്രയോഗിക്കുക കർശന ഉപയോക്താവ് അനുമതി പരിശോധിച്ച ആണ് ഉപയോക്താവ് അനുമതി ഒരു ഉപയോക്താവിന് ദൊച്ത്യ്പെ നിർവചിക്കണം എങ്കിൽ, ലിങ്ക് മൂല്യം ശൂന്യമാണ് എല്ലാ രേഖകളും, ഉപയോക്താവിന് കാണിക്കില്ല" DocType: Address,Billing,ബില്ലിംഗ് DocType: Email Queue,Not Sent,അയച്ചിട്ടില്ല DocType: Web Form,Actions,ക്രിയകൾ @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,വ്യക apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,എല്ലാ ദിവസവും ഇവന്റുകൾ ഒരേ ദിവസം പൂർത്തിയാക്കാൻ വേണം. DocType: Communication,User Tags,ഉപയോക്താവിന്റെ ടാഗുകൾ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ചിത്രങ്ങൾ നേടുന്നു .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: Workflow State,download-alt,ഡൗൺലോഡ്-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ഡൌൺലോഡുചെയ്യുന്നു അപ്ലിക്കേഷൻ {0} DocType: Communication,Feedback Request,പ്രതികരണം അഭ്യർത്ഥന @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,ബാക്കപ്പുകളിൽ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,കോൺടാക്റ്റ് ചേർക്കുക DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ഓപ്ഷണൽ: എല്ലായ്പ്പോഴും ഈ ഐഡികളും അയക്കുന്നു. ഒരു പുതിയ വരി ഓരോ ഇമെയിൽ വിലാസം -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,വിശദാംശങ്ങൾ മറയ്ക്കുക +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,വിശദാംശങ്ങൾ മറയ്ക്കുക DocType: Workflow State,Tasks,ടാസ്കുകൾ DocType: Event,Tuesday,ചൊവ്വാഴ്ച DocType: Blog Settings,Blog Settings,ബ്ലോഗ് ക്രമീകരണങ്ങൾ @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ഈ സംരക്ഷിച്ചു അതേ ഫോൾഡറിൽ പൈഥൺ ഫയൽ എഴുതുക കൂടാതെ നിര ഫലം മടങ്ങിവരും. DocType: DocType,Sort Field,അടുക്കുക ഫീൽഡ് DocType: Razorpay Settings,Razorpay Settings,Razorpay ക്രമീകരണങ്ങൾ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,എഡിറ്റ് ഫിൽറ്റർ -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ഫീൽഡ് {0} തരത്തിലുള്ള {1} നിർബന്ധമായിരിക്കും കഴിയില്ല -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ഉദാ. പ്രയോഗിക്കുക ഉപയോക്തൃ അനുമതികൾ റിപ്പോർട്ട് DocType വേണ്ടി പരിശോധിയ്ക്കുന്നു എന്നാൽ ആരും ഉപയോക്താവിന്റെ അനുമതികൾ ഒരു ഉപയോക്താവ് വേണ്ടി റിപ്പോർട്ട് വേണ്ടി നിർവചിച്ചിരിക്കുന്നത്, പിന്നെ എല്ലാ റിപ്പോർട്ടുകൾ ആ ഉപയോക്താവിന് ദൃശ്യമാകുന്ന ചെയ്യുന്നു എങ്കിൽ" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,എഡിറ്റ് ഫിൽറ്റർ +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ഫീൽഡ് {0} തരത്തിലുള്ള {1} നിർബന്ധമായിരിക്കും കഴിയില്ല apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,കൂടുതൽ ചേർക്കുക apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ചാർട്ട് മറയ്ക്കുക DocType: System Settings,Session Expiry Mobile,സെഷൻ കാലഹരണപ്പെടൽ മൊബൈൽ @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,വൈകിയ apps/frappe/frappe/config/setup.py +128,List of backups available for download,ഡൌൺലോഡ് ലഭ്യമായ ബാക്കപ്പുകളും പട്ടിക apps/frappe/frappe/www/login.html +89,Sign up,സൈൻ അപ്പ് ചെയ്യുക DocType: Test Runner,Output,ഔട്ട്പുട്ട് +DocType: Email Alert,Set Property After Alert,അലേർട്ട് ശേഷം പ്രോപ്പർട്ടി സജ്ജീകരിക്കുക apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ഫോമുകൾ വയലിൽ ചേർക്കുക. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,എന്തെങ്കിലും ഈ സൈറ്റിന്റെ പേപാൽ കോൺഫിഗറേഷൻ തെറ്റ് തോന്നുന്നു. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ഇല DocType: Portal Menu Item,Portal Menu Item,പോർട്ടൽ മെനു ഇനം DocType: User Email,Email ID,ഇമെയിൽ ഐഡി +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","പ്രയോഗിക്കുക ഉപയോക്തൃ അനുമതികൾ റിപ്പോർട്ട് ദൊച്ത്യ്പെ പരിശോധിക്കുന്ന എന്നാൽ ഉപയോക്തൃ അനുമതികൾ ഒരു ഉപയോക്താവിന് റിപ്പോർട്ട് നിർവചിച്ചിരിക്കുന്ന, പിന്നെ എല്ലാ റിപ്പോർട്ടുകൾ ആ ഉപയോക്താവ് കാണിക്കുന്നു എങ്കിൽ" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,ഉപയോക്താക്കൾക്ക് അനുവദിക്കുന്നു ശേഷം ക്ലയന്റ് അപ്ലിക്കേഷൻ ആക്സസ് ഉണ്ടായിരിക്കും ഉറവിടങ്ങളിലെ ഒരു ലിസ്റ്റ്.
ഉദാ പദ്ധതി DocType: Translation,Translated Text,വിവർത്തനം ചെയ്ത വാചകം DocType: Contact Us Settings,Query Options,അന്വേഷണം ഓപ്ഷനുകൾ @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,ബന്ധങ്ങൾ DocType: System Settings,Setup Complete,സെറ്റപ്പ് പൂർത്തിയാക്കുക apps/frappe/frappe/config/setup.py +66,Report of all document shares,എല്ലാ ഡോക്യുമെന്റ് ഓഹരികളുടെ റിപ്പോർട്ട് apps/frappe/frappe/www/update-password.html +18,New Password,പുതിയ പാസ്വേഡ് -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ഫിൽട്ടർചെയ്യുക {0} കാണാതായി +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ഫിൽട്ടർചെയ്യുക {0} കാണാതായി apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,ക്ഷമിക്കണം! നിങ്ങൾ സ്വയം സൃഷ്ടിക്കപ്പെടുന്ന അഭിപ്രായങ്ങൾ ഇല്ലാതാക്കാൻ കഴിയില്ല DocType: Website Theme,Style using CSS,സി.എസ്.എസ് ഉപയോഗിച്ച് സ്റ്റൈൽ apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,റഫറൻസ് DocType @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,ബ്ലോക്ക് മൊഡ്യൂള apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,'{1}' എന്ന {0} നീളം പുനഃസ്ഥാപിക്കുന്നു '{2}' ലെ; {3} ഡാറ്റയുടെ ചുരുക്കാനുള്ള കാരണമാകും പോലെ നീളം ക്രമീകരിക്കുന്നു. DocType: Print Format,Custom CSS,കസ്റ്റം സി.എസ്.എസ് apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ഒരു അഭിപ്രായം ചേർക്കുക -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},അവഗണിച്ചു: {0} {1} വരെ +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},അവഗണിച്ചു: {0} {1} വരെ DocType: Address,Gujarat,ഗുജറാത്ത് apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ഓട്ടോമേറ്റഡ് ഇവന്റുകൾ (ഷെഡ്യൂളർ) ലെ പിശക് ലോഗ്. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),സാധുവായ ഒരു കോമ (CSV ഫയൽ) മൂല്യം വേർതിരിച്ചത് @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,സ്വതേ ഇൻകമിംഗ് DocType: Workflow State,repeat,ആവർത്തിച്ച് DocType: Website Settings,Banner,ബാനർ DocType: Role,"If disabled, this role will be removed from all users.","അപ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ, ഈ പങ്ക് എല്ലാ ഉപയോക്താക്കൾക്കും നിന്നും നീക്കം ചെയ്യും." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,തിരച്ചിൽ ന് സഹായം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,തിരച്ചിൽ ന് സഹായം apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,രജിസ്ട്രേഡ് പ്രവർത്തനരഹിതമാക്കി DocType: DocType,Hide Copy,പകർത്തുക മറയ്ക്കുക apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ഏകവ്യക്തി മായ്ക്കുക @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,രാജ്യം apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,വിലാസങ്ങൾ DocType: Communication,Shared,പങ്കിട്ടു -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ഡോക്യുമെന്റ് പ്രിന്റ് അറ്റാച്ച് +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ഡോക്യുമെന്റ് പ്രിന്റ് അറ്റാച്ച് DocType: Bulk Update,Field,ഫീൽഡ് DocType: Communication,Received,ലഭിച്ച DocType: Social Login Keys,Google Client ID,ഗൂഗിൾ ക്ലയന്റ് ID @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,ചോദ്യ റിപ്പോർട് DocType: User,Set New Password,പുതിയ പാസ്വേഡ് സജ്ജമാക്കുക DocType: User,Github User ID,സാമൂഹികം ഉപയോക്തൃ ഐഡി apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ഡോക്യുമെൻറ് എങ്കിൽ -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ഇല്ലാതാക്കാനോ റദ്ദാക്കാൻ കഴിയില്ല കാരണം {0} {1} {2} ലിങ്കുചെയ്തതിരിക്കുന്നതിനാൽ {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ഇല്ലാതാക്കാനോ റദ്ദാക്കാൻ കഴിയില്ല കാരണം {0} {1} {2} ലിങ്കുചെയ്തതിരിക്കുന്നതിനാൽ {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},അജ്ഞാത അപ്ലിക്കേഷൻ {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% ങ്ങള് സാധുവായ റിപ്പോർട്ട് ഫോർമാറ്റിൽ അല്ല. റിപ്പോർട്ട് ഫോർമാറ്റ് ഇനിപ്പറയുന്ന% ഒന്നാണ് \ വേണം DocType: Communication,Chat,ചാറ്റ് -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} വരികൾ {1} ഒന്നിലധികം പ്രാവശ്യം +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} വരികൾ {1} ഒന്നിലധികം പ്രാവശ്യം apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} നിന്ന് {2} വരി # ലെ {3} DocType: Communication,Expired,കാലഹരണപ്പെട്ടു DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ഒരു ഗ്രിഡ് ഒരു വയലിലെ വേണ്ടി നിരകളുടെ എണ്ണം (ഒരു ഗ്രിഡ് മൊത്തം നിരകൾ 11 കുറവായിരിക്കണം) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ഒരു അക് apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},അറിയപ്പെടാത്ത പ്രിന്റ് ഫോർമാറ്റ്: {0} DocType: Workflow State,arrow-down,അമ്പ്-ഡൗൺ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,തകര്ന്നടിയുക -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},{1}: ഉപയോക്താവ് {0} ഇല്ലാതാക്കാൻ അനുവദിച്ചിട്ടില്ല +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},{1}: ഉപയോക്താവ് {0} ഇല്ലാതാക്കാൻ അനുവദിച്ചിട്ടില്ല apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,അവസാനം അപ്ഡേറ്റ് DocType: Help Article,Likes,ഇഷ്ടങ്ങൾ DocType: Website Settings,Top Bar,ടോപ്പ് ബാർ DocType: GSuite Settings,Script Code,സ്ക്രിപ്റ്റ് കോഡ് apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ഉപയോക്തൃ ഇമെയിൽ സൃഷ്ടിക്കുക apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,ഉപയോക്തൃ ഇമെയിൽ സൃഷ്ടിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,അനുമതികളൊന്നും നിഷ്കർഷിച്ചിട്ടില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,അനുമതികളൊന്നും നിഷ്കർഷിച്ചിട്ടില്ല apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ആഗോള ക്രമീകരണങ്ങൾ: ഉപയോക്താക്കൾ ചെക്കുചെയ്തിരിക്കുന്ന ഐക്കണുകൾ തിരഞ്ഞെടുക്കാൻ കഴിയും apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} കണ്ടെത്തിയില്ല DocType: Custom Role,Custom Role,കസ്റ്റം റോൾ apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ഹോം / ടെസ്റ്റ് ഫോൾഡർ 2 DocType: System Settings,Ignore User Permissions If Missing,കാണാതായ എങ്കിൽ ഉപയോക്താവിന്റെ അനുമതികൾ അവഗണിക്കുക -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,അപ്ലോഡ് ചെയ്യുന്നതിന് മുമ്പായി ഡോക്കുമെന്റ് സംരക്ഷിക്കുക. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,അപ്ലോഡ് ചെയ്യുന്നതിന് മുമ്പായി ഡോക്കുമെന്റ് സംരക്ഷിക്കുക. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,നിങ്ങളുടെ പാസ്വേഡ് നൽകുക DocType: Dropbox Settings,Dropbox Access Secret,ഡ്രോപ്പ്ബോക്സ് അക്സസ് രഹസ്യം apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,മറ്റൊരു അഭിപ്രായം ചേർക്കുക apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType എഡിറ്റ് apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,വാർത്താക്കുറിപ്പിൽ നിന്നും നിങ്ങൾ അൺസബ്സ്ക്രൈബ് -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,തൊഴുത്തിൽ ഒരു വിഭാഗം ബ്രേക്ക് മുമ്പിൽ വരേണ്ടതു +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,തൊഴുത്തിൽ ഒരു വിഭാഗം ബ്രേക്ക് മുമ്പിൽ വരേണ്ടതു apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,കഴിഞ്ഞ പരിഷ്കരിച്ചു DocType: Workflow State,hand-down,കൈ താഴെ DocType: Address,GST State,ചരക്കുസേവന സംസ്ഥാന -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: സമർപ്പിക്കുക ഇല്ലാതെ റദ്ദാക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: സമർപ്പിക്കുക ഇല്ലാതെ റദ്ദാക്കുക സജ്ജീകരിക്കാൻ കഴിയില്ല DocType: Website Theme,Theme,തീം apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,പിശകുകളുണ്ടായിരുന്നു. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,യുആർഐ റീഡയറക്ടുചെയ്യുക ഓത്ത് കോഡ് ഒരാളുണ്ട് @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,എ DocType: Website Theme,Text Color,ടെക്സ്റ്റ് നിറം DocType: Desktop Icon,Force Show,ഫോഴ്സ് കാണിക്കുക apps/frappe/frappe/auth.py +78,Invalid Request,അസാധുവായ അഭ്യർത്ഥന -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ഈ ഫോം ഏതെങ്കിലും ഇൻപുട്ട് ഇല്ല +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ഈ ഫോം ഏതെങ്കിലും ഇൻപുട്ട് ഇല്ല apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},സെഷൻ കാലഹരണപ്പെടൽ ഫോർമാറ്റ് {0} ആയിരിക്കണം DocType: Website Sidebar Item,Group,ഗ്രൂപ്പ് DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ഒരു പുതിയ പേജിൽ തുറക്കാൻ തിരഞ്ഞെടുക്കുക ലക്ഷ്യം = "_blank". @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,എൻകോഡുചെയ്യൽ പിശകുകൾ അവഗണിക്കുക. DocType: Workflow State,wrench,പിടിച്ചു വലിക്കല് apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,സജ്ജമാക്കിയിട്ടില്ല -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,സജ്ജീകരണം> ഉപയോക്താവ് DocType: Authentication Log,Date,തീയതി DocType: Website Settings,Disable Signup,സൈൻഅപ് അപ്രാപ്തമാക്കുക apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,നിങ്ങളുടെ സിസ്റ്റം ഒരാളായി സെറ്റപ്പ് അതേസമയം ശരിയായി ഇരിക്കുക. ഇതിന് കുറച്ചു എടുത്തേക്കാം. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,അഭിപ്രായം ചേർക്കുക DocType: DocField,Mandatory,കല്പ്പനകൊടുക്കുന്ന apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,എക്സ്പോർട്ട് മൊഡ്യൂൾ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: ഇല്ല അടിസ്ഥാന അനുമതികൾ സെറ്റ് +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: ഇല്ല അടിസ്ഥാന അനുമതികൾ സെറ്റ് apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,നിങ്ങളുടെ സബ്സ്ക്രിപ്ഷൻ ന് {0} കാലഹരണപ്പെടും. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},{0}: നിങ്ങളുടെ ബാക്കപ്പ് ഡൗൺലോഡ് ലിങ്ക് താഴെ ഇമെയിൽ വിലാസം ന് ഇമെയിൽ ചെയ്യും apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","എന്ന സമർപ്പിക്കുക, റദ്ദാക്കുക, നന്നാക്കുവിൻ അർത്ഥം" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,അന്വേഷണവുമായി-റ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},{1}: {0} ലേ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,സംരക്ഷിച്ച ഫിൽട്ടറുകൾ DocType: DocField,Percent,ശതമാനം -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ഫിൽട്ടറുകൾ സജ്ജമാക്കുക +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ഫിൽട്ടറുകൾ സജ്ജമാക്കുക apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,കൂടി ലിങ്ക്ഡ് DocType: Workflow State,book,പുസ്തകം DocType: Website Settings,Landing Page,ലാൻഡിംഗ് പേജ് -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,കസ്റ്റം സ്ക്രിപ്റ്റ് പിശക് +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,കസ്റ്റം സ്ക്രിപ്റ്റ് പിശക് apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} പേര് apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ഇംപോർട്ട് അഭ്യർത്ഥന ക്യൂവിലാണ്. ഇതിന് കുറച്ചു എടുത്തേക്കാം, ദയവായി ക്ഷമിക്കുക." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ഇല്ല അനുമതികൾ ഈ മാനദണ്ഡങ്ങൾ വെച്ചിരിക്കുന്നു. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,മൊബൈൽ ന apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,ഈ വിഭവം ആക്സസ് മതിയായ അനുമതികൾ ഇല്ല. ആക്സസ് ലഭിക്കാൻ നിങ്ങളുടെ മാനേജറെ ബന്ധപ്പെടുക. DocType: Custom Field,Custom,കസ്റ്റം apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,വിവിധ മാനദണ്ഡങ്ങൾ അടിസ്ഥാനമാക്കി സെറ്റപ്പ് ഇമെയിൽ അലേർട്ട്. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},{0} പ്രകാരം സമർപ്പിച്ച പോസ്റ്റുകൾ +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},{0} പ്രകാരം സമർപ്പിച്ച പോസ്റ്റുകൾ DocType: Email Alert,Send alert if date matches this field's value,തീയതി ഈ ഫീൽഡ് മൂല്യം പൊരുത്തപ്പെടുന്നുണ്ടോയെന്ന കാര്യം അലേർട്ട് അയയ്ക്കുക DocType: Workflow,Transitions,സംക്രമണങ്ങളും apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,നീക്കംചെയ്യുക {0} എല്ലാ ഡാറ്റയും ഇല്ലാതാക്കും? @@ -1307,9 +1308,8 @@ DocType: User,Login After,ശേഷം ലോഗിൻ DocType: Print Format,Monospace,മോണോസ്പെയ്സ് DocType: Letter Head,Printing,അച്ചടി DocType: Workflow State,thumbs-up,വിജയചിഹ്നം -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരണം. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൗണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്കൗണ്ട് സൃഷ്ടിക്കുക DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,"കൃത്യത 1, 6 നും ഇടയിൽ ആയിരിക്കണം" +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,"കൃത്യത 1, 6 നും ഇടയിൽ ആയിരിക്കണം" apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ഒപ്പം DocType: Error Snapshot,Frames,ഫ്രെയിംസ് @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,ചിത്രം ലിങ്ക് DocType: Auto Email Report,Report Filters,റിപ്പോർട്ട് ഫിൽട്ടറുകൾ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ഇപ്പോള് DocType: Workflow State,step-backward,ഘട്ടം പിന്നാക്ക -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,നിങ്ങളുടെ സൈറ്റ് ക്രമീകരണ ലെ ഡ്രോപ്പ്ബോക്സ് പ്രവേശനം സജ്ജീകരിക്കുക apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ഈ ഇമെയിൽ വിലാസത്തിലേക്ക് അയയ്ക്കുന്നത് അനുവദിക്കുന്നതിന് ഈ റെക്കോർഡ് ഇല്ലാതാക്കുക apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,മാത്രം നിർബന്ധമായി ഫീൽഡുകളിൽ പുതിയ റെക്കോഡുകൾ അനിവാര്യവുമാണ്. നിങ്ങൾ ആഗ്രഹിക്കുന്നെങ്കിൽ-അല്ലാത്ത നിർബന്ധമായി നിരകൾ ഇല്ലാതാക്കാൻ കഴിയും. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,കൂടെയുള്ള ഫോൾഡ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,എല്ലാം വികസിപ്പിക്കുക apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,സാധുവായ ലോഗിൻ ഐഡി ആവശ്യമാണ്. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,വീണ്ടും തുറക്കുക -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,നിങ്ങൾ പേയ്മെന്റ് റദ്ദാക്കി -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ഡാറ്റ ഉപയോഗിച്ച് ഒരു സാധുവായ CSV ഫയൽ തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ഡാറ്റ ഉപയോഗിച്ച് ഒരു സാധുവായ CSV ഫയൽ തിരഞ്ഞെടുക്കുക apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} {1} ഈ ഡോക്യുമെന്റ് അൺ-പങ്കിട്ടു apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} നിന്ന് {1} അനുവദിച്ചിട്ടില്ല വരെ ഡോക്യുമെന്റ് നില സംക്രമണം DocType: DocType,"Make ""name"" searchable in Global Search",ആഗോള തിരയൽ "നാമം" തിരയാവുന്നവിധമാക്കൂ @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,യ DocType: Help Category,Help Category,സഹായം വർഗ്ഗം apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ഉപയോക്താവ് {0} അപ്രാപ്തമാക്കിയിട്ടുണ്ടെങ്കിൽ apps/frappe/frappe/www/404.html +8,Page missing or moved,കാണാതായ നീക്കിയിരുന്നു പേജ് -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,എഡിറ്റ് {0} ഉള്ള DocType: DocType,Route,റൂട്ട് apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,രജൊര്പയ് പേയ്മെന്റ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ DocType: DocField,Name,പേര് @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ഡോക്സ് തിരയൂ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ഡോക്സ് തിരയൂ DocType: OAuth Authorization Code,Valid,സാധുവായ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,ലിങ്ക് -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,നിങ്ങളുടെ ഭാഷ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ലിങ്ക് +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,നിങ്ങളുടെ ഭാഷ apps/frappe/frappe/desk/form/load.py +46,Did not load,ലോഡ് ചെയ്തിട്ടില്ല apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,വരി ചേർക്കുക DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,പ്രത DocType: Address,Lakshadweep Islands,ലക്ഷദ്വീപ് ദ്വീപുകൾ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,എഴുതാം apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","ചില രേഖകൾ, ഒരു ഇൻവോയിസ് പോലെ, ഒരിക്കൽ അവസാന രൂപാന്തരപ്പെടുകയും പാടില്ല. ഇത്തരം രേഖകൾ അന്തിമ സംസ്ഥാന സമർപ്പിച്ചു വിളിക്കുന്നു. നിങ്ങൾക്ക് വേഷങ്ങൾ സമർപ്പിക്കുക കഴിയുന്ന നിയന്ത്രിക്കാൻ കഴിയും." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,നിങ്ങൾ ഈ റിപ്പോർട്ട് കയറ്റുമതി ചെയ്യാൻ അനുവദിച്ചിട്ടില്ല +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,നിങ്ങൾ ഈ റിപ്പോർട്ട് കയറ്റുമതി ചെയ്യാൻ അനുവദിച്ചിട്ടില്ല apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ഇനം തിരഞ്ഞെടുത്തു DocType: Newsletter,Test Email Address,ടെസ്റ്റ് ഇമെയിൽ വിലാസം DocType: ToDo,Sender,അയച്ചയാളുടെ @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,ഇംപോർട്ട് .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,പ്രമാണ ID DocType: Print Settings,Letter,കത്ത് -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,ചിത്രം ഫീൽഡ് ചിത്രം അറ്റാച്ച് തരത്തിലുള്ള ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,ചിത്രം ഫീൽഡ് ചിത്രം അറ്റാച്ച് തരത്തിലുള്ള ആയിരിക്കണം DocType: DocField,Columns,നിരകൾ DocType: Async Task,Succeeded,പിൻഗാമി apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},{0} ആവശ്യമായ നിർബന്ധിതം ഫീൽഡുകൾ @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,ടെക്സ്റ്റ് എഡിറ്റ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,കുറിച്ച് ഞങ്ങളോട് പേജ് വേണ്ടി ക്രമീകരണങ്ങൾ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,എഡിറ്റ് കസ്റ്റം എച്ച്ടിഎംഎൽ DocType: Error Snapshot,Error Snapshot,പിശക് സ്നാപ്ഷോട്ട് -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ൽ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ൽ DocType: Email Alert,Value Change,മൂല്യം മാറ്റുക DocType: Standard Reply,Standard Reply,സ്റ്റാൻഡേർഡ് മറുപടി apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ഇൻപുട്ട് ബോക്സ് വീതി @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ശീർഷകം ഉണ്ടാക്കുന്നതിനു് ഈ FIELDNAME ഉപയോഗിക്കുക apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,നിന്നും ഇറക്കുമതി ഇമെയിൽ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,ഉപയോക്താവ് ആയി ക്ഷണിക്കുക -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,അറ്റാച്മെന്റ് തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,അറ്റാച്മെന്റ് തിരഞ്ഞെടുക്കുക apps/frappe/frappe/model/naming.py +94, for {0},{0} വേണ്ടി apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,പിശകുകൾ ഉണ്ടായിരുന്നു. ഇത് അറിയിക്കുക. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,ഈ പ്രമാണം പ്രിന്റ് അനുവദിച്ചിട്ടില്ല +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,ഈ പ്രമാണം പ്രിന്റ് അനുവദിച്ചിട്ടില്ല apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,റിപ്പോർട്ട് ഫിൽറ്റർ പട്ടികയിൽ ഫിൽട്ടറുകൾ മൂല്യം സജ്ജമാക്കുക. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,ലോഡുചെയ്യുന്നു റിപ്പോർട്ട് +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ലോഡുചെയ്യുന്നു റിപ്പോർട്ട് apps/frappe/frappe/limits.py +72,Your subscription will expire today.,നിങ്ങളുടെ സബ്സ്ക്രിപ്ഷൻ ഇന്ന് കാലഹരണപ്പെടും. DocType: Page,Standard,സ്റ്റാൻഡേർഡ് apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,പ്രമാണം അറ്റാച്ച് @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,റീജണൽ വിപുലീകരണങ്ങൾ DocType: LDAP Settings,Base Distinguished Name (DN),ബേസ് വ്യതിരിക്ത പേര് (ഡിഎൻ) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ഈ സംഭാഷണം വിടുക -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ലിങ്ക് ഫീൽഡ് {0} വെച്ചിരിക്കുന്നു അല്ല ഓപ്ഷനുകൾ +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ലിങ്ക് ഫീൽഡ് {0} വെച്ചിരിക്കുന്നു അല്ല ഓപ്ഷനുകൾ DocType: Customize Form,"Must be of type ""Attach Image""",തരം ആയിരിക്കണം "ഇമേജ് അറ്റാച്ച്" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,തെരഞ്ഞെടുത്തവയെല്ലാംവേണ്ടെന്നു്വയ്ക്കുക apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},നിങ്ങൾ വിടേണ്ടതാണ് ചെയ്യാൻ കഴിയില്ലെന്നും {0} നിലത്തിന്റെ 'വായന മാത്രം' @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,കുറിപ്പ് apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,പിശക് റിപ്പോർട്ട് apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,ഫീഡ്ബാക്ക് അവസ്ഥ പൊരുത്തപ്പെടുന്നില്ല -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,ടൈംലൈൻ ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,ടൈംലൈൻ ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം DocType: Currency,Symbol,ചിഹ്നം -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,വരി # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,വരി # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,പുതിയ പാസ്വേഡ് ഇമെയിൽ ചെയ്തു apps/frappe/frappe/auth.py +245,Login not allowed at this time,ലോഗ് ഈ സമയം അനുവദിച്ചിട്ടില്ല DocType: Email Account,Email Sync Option,ഇമെയിൽ സമന്വയിപ്പിക്കുക ഓപ്ഷൻ @@ -1581,7 +1579,7 @@ DocType: DocField,Text,ഉള്ളടക്കം apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,സ്റ്റാൻഡേർഡ് സാധാരണമായ ചോദ്യങ്ങളോട് മറുപടി. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,സ്ഥിരസ്ഥിതി അയയ്ക്കുന്നു DocType: Workflow State,volume-off,വോള്യം ഓഫ് -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},{0} ഇഷ്ടപ്പെട്ടു +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},{0} ഇഷ്ടപ്പെട്ടു DocType: Footer Item,Footer Item,അടിക്കുറിപ്പ് ഇനം ,Download Backups,ഡൗൺലോഡ് ബാക്കപ്പുകൾ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ഹോം / ടെസ്റ്റ് ഫോൾഡർ 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,വാചക വിന്യാസം apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},പേര് പോലെ {0} പ്രത്യേക പ്രതീകങ്ങൾ ഉൾക്കൊള്ളാൻ കഴിയില്ല DocType: Contact Us Settings,Forward To Email Address,ഫോർവേഡ് ഇമെയിൽ വിലാസത്തിലേക്ക് apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,എല്ലാ ഡാറ്റയും കാണിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,തലക്കെട്ട് ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,തലക്കെട്ട് ഫീൽഡ് സാധുവായ FIELDNAME ആയിരിക്കണം apps/frappe/frappe/config/core.py +7,Documents,പ്രമാണങ്ങൾ DocType: Email Flag Queue,Is Completed,പൂർത്തിയായി apps/frappe/frappe/www/me.html +22,Edit Profile,എഡിറ്റ് പ്രൊഫൈൽ @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield .പൗരോഹിത്യം: doc.myfield == 'എന്റെ value' .പൗരോഹിത്യം: doc.age> 18 ഇവിടെ വ്യക്തമാക്കുമ്പോൾ FIELDNAME മൂല്യം ഉണ്ടെങ്കിൽ മാത്രമേ അല്ലെങ്കിൽ നിയമങ്ങൾ സത്യം ആകുന്നു (ഉദാഹരണങ്ങൾ) ഈ ഫീൽഡ് ദൃശ്യമാകും -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ഇന്ന് -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ഇന്ന് +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ഇന്ന് +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ഇന്ന് apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","നിങ്ങൾ ഈ വെച്ചിരിക്കുന്നു ഒരിക്കൽ, ഉപയോക്താക്കൾക്ക് സാധിച്ചിരുന്നു ആക്സസ് രേഖകൾ (ഉദാ. പോസ്റ്റിന്റെ ബ്ലോഗ്) ലിങ്ക് നിലനിൽക്കുന്ന ആയിരിക്കും (ഉദാ. ബ്ലോഗർ)." DocType: Error Log,Log of Scheduler Errors,ഷെഡ്യൂളുകൾ അബദ്ധങ്ങൾ പ്രവേശിക്കുക DocType: User,Bio,ബയോ @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 നക്ഷത്ര ഏറ്റവും & 5 നക്ഷത്രങ്ങൾ ഉയർന്ന റേറ്റിംഗ് ഒരാളായി ഒരാളായി DocType: Event,Ref Name,റഫറൻസ് പേര് DocType: Web Page,Center,കേന്ദ്രം +DocType: Email Alert,Value To Be Set,മൂല്യം സജ്ജമാക്കാൻ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,ആദ്യം ലെവൽ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,സംസ്ഥാന മാറ്റാൻ അസൈൻ ഒന്ന് ഡോക്യുമെന്റ് പങ്കും അനുവദനീയമല്ല സംസ്ഥാനങ്ങളിൽ പ്രതിനിധാനം ചെയ്യുന്നു. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,ഫോം പുതുക്കുക @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,വെബ് കാണുക ഉണ്ട് apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType പേര് ഒരു അക്ഷരത്തിൽ ആരംഭിക്കേണ്ടതാണ് അതു അക്ഷരങ്ങൾ, അക്കങ്ങൾ, സ്പെയ്സുകൾ, അടിവരകൾ ഉണ്ടാവുക കഴിയും" DocType: Communication,Spam,സ്പാം DocType: Integration Request,Integration Request,ഇന്റഗ്രേഷൻ അഭ്യർത്ഥന -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,പ്രിയ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,പ്രിയ DocType: Address,Maharashtra,മഹാരാഷ്ട്ര DocType: Address,Accounts User,ഉപയോക്തൃ അക്കൗണ്ടുകൾ DocType: Web Page,HTML for header section. Optional,തലക്കെട്ട് വിഭാഗത്തിൽ ഒരു HTML. ഓപ്ഷണൽ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ഈ സവിശേഷത പുതിയ ബ്രാൻഡ് ഇപ്പോഴും പരീക്ഷണാത്മകമാണ് -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,അനുവദനീയമായ പരമാവധി {0} വരികൾ +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,അനുവദനീയമായ പരമാവധി {0} വരികൾ DocType: Email Unsubscribe,Global Unsubscribe,ആഗോള വരിക്കിരല്ലാതാക്കൂ apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ഇത് ഒരു സാധാരണ പാസ്വേഡ്. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,കാണുക DocType: Communication,Assigned,അസൈൻഡ് DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,പ്രിന്റ് ഫോർമാറ്റ് തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,പ്രിന്റ് ഫോർമാറ്റ് തിരഞ്ഞെടുക്കുക apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,ഹൃസ്വ കീബോർഡ് പാറ്റേണുകൾ ഊഹിക്കാൻ എളുപ്പമാണ് DocType: Portal Settings,Portal Menu,പോർട്ടൽ മെനു apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,"{0} ദൈർഘ്യം 1, 1000 ആയിരിക്കണം" @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ഉപയോക്താവ് തിരച്ചില് സാദ്ധ്യമല്ല apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,അസാധുവായ ഔട്ട്പുട്ട് ഫോർമാറ്റ് DocType: Custom DocPerm,Apply this rule if the User is the Owner,ഉപയോക്തൃ ഉടമ സംഭവിക്കുകയാണെങ്കിൽ ഈ ഭരണം പ്രയോഗിക്കുക -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,നിങ്ങളുടെ ലോഗിൻ ഐഡി ആയിരിക്കും +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,നിങ്ങളുടെ ലോഗിൻ ഐഡി ആയിരിക്കും apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,റിപ്പോർട്ട് ബിൽഡ് DocType: Note,Notify users with a popup when they log in,അവർ പ്രവേശിക്കുന്ന സമയത്ത് പോപപ്പ് ഉപയോക്താക്കൾക്ക് അറിയിക്കുക apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ലയിപ്പിക്കാൻ, നിലവിലില്ല പുതിയ ലക്ഷ്യം തിരഞ്ഞെടുക്കുക ഇല്ല" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,റോളുക apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,പുതുക്കിയ DocType: Error Snapshot,Snapshot View,സ്നാപ്ഷോട്ട് കാണുക apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,അയക്കുന്നതിന് മുമ്പ് വാർത്താക്കുറിപ്പ് ദയവായി സംരക്ഷിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ഓപ്ഷനുകൾ ഫീൽഡ് {0} നിരയിൽ {1} ഒരു സാധുവായ DocType ആയിരിക്കണം +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ഓപ്ഷനുകൾ ഫീൽഡ് {0} നിരയിൽ {1} ഒരു സാധുവായ DocType ആയിരിക്കണം apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,എഡിറ്റ് ഗുണഗണങ്ങള് DocType: Patch Log,List of patches executed,വധിക്കപ്പെട്ട പാച്ചുകൾ പട്ടിക apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ഇതിനകം അൺസബ്സ്ക്രൈബുചെയ്യപ്പെടും -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,കമ്മ്യൂണിക്കേഷൻ മീഡിയം +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,കമ്മ്യൂണിക്കേഷൻ മീഡിയം DocType: Website Settings,Banner HTML,ബാനർ എച്ച്ടിഎംഎൽ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',മറ്റൊരു പെയ്മെന്റ് രീതി തിരഞ്ഞെടുക്കുക. രജൊര്പയ് കറൻസി ഇടപാടുകളും പിന്തുണയ്ക്കുന്നില്ല '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,ബാക്കപ്പ് ക്യൂവിലാക്കി. ഇതിന് ഒരു മണിക്കൂർ കുറച്ച് മിനിറ്റുകൾ എടുത്തേക്കാം. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,രജിസ്റ്റർ OAuth ക്ലയന്റ് അപ്ലിക്കേഷൻ -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" പാടില്ല. ഇത് "{3}" ഒരെണ്ണം ആയിരിക്കണം +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" പാടില്ല. ഇത് "{3}" ഒരെണ്ണം ആയിരിക്കണം apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} അല്ലെങ്കിൽ {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,കാണിക്കുക അല്ലെങ്കിൽ മറയ്ക്കുക ഡെസ്ക്ടോപ്പ് ഐക്കണുകൾ apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,പാസ്വേഡ് അപ്ഡേറ്റ് @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,വിഭാഗങ്ങൾ ശേഷം വരിയുടെഅക്കംകാണിക്കുക ബ്രേക്കുകൾ DocType: Blogger,Short Name,ഹ്രസ്വ പേര് apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},പേജ് {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","എല്ലാം ചെയ്തു സമന്വയിപ്പിക്കുക ഓപ്ഷൻ തിരഞ്ഞെടുത്ത്, അതു വായിക്കാനും അതുപോലെ സെർവറിൽ നിന്ന് വായിക്കാത്ത സന്ദേശം \ ആപ്സ് ചെയ്യും. ഇത് കമ്മ്യൂണിക്കേഷൻ (ഇമെയിലുകൾ) ആവർത്തിക്കുന്നത് \ കാരണമാകും." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,വലുപ്പമുള്ള ഫയലുകൾ @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,വാങ്ങൽ മാനേജർ DocType: Custom Script,Sample,സാമ്പിൾ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ടാഗുകൾ DocType: Event,Every Week,എല്ലാ ആഴ്ചയും +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരണം. സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൗണ്ടിൽ നിന്ന് ഒരു പുതിയ ഇമെയിൽ അക്കൗണ്ട് സൃഷ്ടിക്കുക apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,നിങ്ങളുടെ ഉപയോഗ പരിശോധിക്കുകയോ ഒരു ഉയർന്ന പ്ലാനും അപ്ഗ്രേഡ് ഇവിടെ ക്ലിക്ക് DocType: Custom Field,Is Mandatory Field,നിർബന്ധിതം ഫീൽഡാണ് DocType: User,Website User,വെബ്സൈറ്റ് ഉപയോക്താവ് @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,കസ്റ്റം സൈഡ്ബാർ മെനു DocType: Workflow State,pencil,പെന്സില് apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,സന്ദേശങ്ങൾ മറ്റ് അറിയിപ്പുകൾ ചാറ്റ്. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},{0} ആയി സജ്ജമാക്കാൻ കഴിയില്ല ശേഷം ചേർക്കൽ +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},{0} ആയി സജ്ജമാക്കാൻ കഴിയില്ല ശേഷം ചേർക്കൽ apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,പങ്കിടുക {0} ഉപയോഗിച്ച് apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ഇമെയിൽ അക്കൗണ്ട് സജ്ജീകരണം ദയവായി നിങ്ങളുടെ പാസ്വേഡ് നൽകുക: DocType: Workflow State,hand-up,കൈ ഉയർത്തുക DocType: Blog Settings,Writers Introduction,എഴുത്തുകാർ ആമുഖം DocType: Address,Phone,ഫോൺ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ഇമെയിൽ അലേർട്ട് {0} മൂല്യനിർണ്ണയം പിശക്. നിങ്ങളുടെ ടെംപ്ലേറ്റ് പരിഹരിക്കുക. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ഇമെയിൽ അലേർട്ട് {0} മൂല്യനിർണ്ണയം പിശക്. നിങ്ങളുടെ ടെംപ്ലേറ്റ് പരിഹരിക്കുക. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ആരംഭിക്കാൻ ഡോക്യുമെന്റ് അല്ലെങ്കിൽ റോൾ തിരഞ്ഞെടുക്കുക. DocType: Contact,Passive,നിഷ്കിയമായ DocType: Contact,Accounts Manager,അക്കൗണ്ടുകൾ മാനേജർ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,നിങ്ങളുടെ പേയ്മെന്റ് റദ്ദാക്കി. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ഫയൽ തെരഞ്ഞെടുക്കു DocType: Help Article,Knowledge Base Editor,ബേസ് എഡിറ്റർ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,പേജ് കാണാനായില്ല @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,പ്രോപ്പർട്ടി DocType: Workflow State,screenshot,സ്ക്രീൻഷോട്ട് apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,മാത്രം അഡ്മിനിസ്ട്രേറ്റർ ഒരു സാധാരണ റിപ്പോർട്ട് രക്ഷിക്കാൻ കഴിയും. പുനർനാമകരണം സംരക്ഷിക്കുക. DocType: System Settings,Background Workers,പശ്ചാത്തല വർക്കേഴ്സ് +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} മെറ്റാ വസ്തു വൈരുദ്ധ്യമുണ്ടാകാമെന്ന് DocType: Deleted Document,Data,ഡാറ്റാ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ഡോക്യുമെന്റ് അവസ്ഥ apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},നിങ്ങൾ {0} എന്ന {1} ഉണ്ടാക്കി @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,കാണിക്കുക ഉപയോക്തൃ അനുമതികൾ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,താങ്കൾ ലോഗിൻ ചെയ്യേണ്ടതുണ്ട് സിസ്റ്റം മാനേജർ റോൾ ബാക്കപ്പുകൾ ആക്സസ് ചെയ്യാൻ കഴിയുകയും വേണം. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,അവശേഷിക്കുന്ന -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,കൂട്ടിച്ചേർത്തപ്പോൾ മുമ്പ് സംരക്ഷിക്കുക. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,കൂട്ടിച്ചേർത്തപ്പോൾ മുമ്പ് സംരക്ഷിക്കുക. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),ചേർത്തു {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},സ്ഥിര തീം {0} സജ്ജമാകുന്നു apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} നിരയിൽ {1} ലേക്ക് നിന്നും മാറ്റാൻ കഴിയില്ല @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,സെഷ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,സെഷൻ ആരംഭിക്കുക പരാജയപ്പെട്ടു apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ഈ ഇമെയിൽ {0} അയയ്ക്കുന്ന {1} പകർത്തിയിട്ടുണ്ട് DocType: Workflow State,th,ആം -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,സജ്ജീകരണം> ഇമെയിൽ> ഇമെയിൽ അക്കൗണ്ടിൽ നിന്ന് ദയവായി ചിഹ്നങ്ങള്ക്കു്സഹജമായുള്ളപ്രഭാവംസജ്ജമാക്കുക ഇമെയിൽ അക്കൗണ്ട് -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ഒരു പുതിയ {0} സൃഷ്ടിക്കുക +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ഒരു പുതിയ {0} സൃഷ്ടിക്കുക DocType: Email Rule,Is Spam,സ്പാം ആണ് apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},റിപ്പോർട്ട് {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},തുറക്കുക {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},തുറക്കുക {0} DocType: OAuth Client,Default Redirect URI,സ്വതേ റീഡയറക്റ്റ് യൂആര്ഐ DocType: Email Alert,Recipients,സ്വീകർത്താക്കൾ DocType: Workflow State,ok-sign,OK-അടയാളം @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,സഹായം ലേഖനങ്ങൾ ,Modules Setup,മൊഡ്യൂളുകൾ സെറ്റപ്പ് apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ടൈപ്പ്: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,നിങ്ങളുടെ പേയ്മെന്റ് പരാജയപ്പെട്ടു. DocType: Communication,Unshared,പങ്കിട്ടത് DocType: Address,Karnataka,കർണാടക apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,മൊഡ്യൂൾ കണ്ടെത്തിയില്ല @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,ബ്രാൻഡ് ഇമേജ് DocType: Print Settings,A4,എ 4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","മുകളിൽ നാവിഗേഷൻ ബാർ, അടിക്കുറിപ്പ്, ലോഗോ എന്ന സെറ്റപ്പ്." DocType: Web Form Field,Max Value,പരമാവധി മൂല്യം -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{2} നിരയിൽ {3} ലെ {1} തലത്തിൽ {0} വേണ്ടി +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{2} നിരയിൽ {3} ലെ {1} തലത്തിൽ {0} വേണ്ടി DocType: Contact,All,എല്ലാം DocType: Email Queue,Recipient,സ്വീകർത്താവ് DocType: Communication,Has Attachment,അറ്റാച്ചുമെൻ @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,വിന്യസിക്കുക-വല DocType: Auto Email Report,Email To,ഇമെയിൽ ചെയ്യുക apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ഫോൾഡർ {0} ശൂന്യമല്ലങ്കിൽ DocType: Page,Roles,റോളുകൾ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ഫീൽഡ് {0} തിരഞ്ഞെടുക്കാനാകാത്ത അല്ല. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},പിശക്: {1}: {0} മൂല്യം നഷ്ടമായി +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ഫീൽഡ് {0} തിരഞ്ഞെടുക്കാനാകാത്ത അല്ല. DocType: System Settings,Session Expiry,സെഷൻ കാലഹരണ DocType: Workflow State,ban-circle,നിരോധനം-സർക്കിൾ DocType: Email Flag Queue,Unread,വായിക്കാത്ത @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ഉപയോക്താവിന്റെ സ്ഥിരസ്ഥിതികൾ apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,പുതിയ സൃഷ്ടിക്കുക DocType: Workflow State,chevron-down,ഷെവ്റോൺ-ഡൗൺ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),ഇമെയിൽ {0} (അപ്രാപ്തമാക്കി / സബ്സ്ക്രൈബുചെയ്യാത്ത) അയച്ചില്ല +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),ഇമെയിൽ {0} (അപ്രാപ്തമാക്കി / സബ്സ്ക്രൈബുചെയ്യാത്ത) അയച്ചില്ല DocType: Async Task,Traceback,തിരഞ്ഞു നോക്കുക DocType: Currency,Smallest Currency Fraction Value,ചെറിയ നാണയ വിഭജനപ്രവര്ത്തി മൂല്യം apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,സമുന്നത @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,നിന്നും DocType: Website Theme,Google Font (Heading),ഗൂഗിൾ ഫോണ്ട് (ശീർഷകം) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,ആദ്യം ഒരു ഗ്രൂപ്പ് നോഡ് തിരഞ്ഞെടുക്കുക. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} {1} കണ്ടെത്താം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} {1} കണ്ടെത്താം DocType: OAuth Client,Implicit,ഇംപ്ലിസിറ്റ് DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","ഈ DocType നേരെ ആശയവിനിമയ ആയി അനുബന്ധിക്കുക (നിലങ്ങളും ഉണ്ടായിരിക്കണം, "അവസ്ഥ", "വിഷയം")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","ഉപയോക്താവ് ഒരിക്കൽ അംഗീകാരമുള്ള കോഡ് സ്വീകരിക്കുന്നതിനായി കളായി ആക്സസ് അനുവദിക്കുന്നു, അതുപോലെ പരാജയം പ്രതികരണങ്ങൾ. സാധാരണ ഒരു വിശ്രമവും എൻഡ്പോയിന്റും ക്ലയന്റ് അപ്ലിക്കേഷൻ തുറന്നുകാണിക്കുന്നു.
ഉദാ http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,സമർപ്പണം ശേഷം {0} മാറ്റാൻ അനുവാദമില്ല +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,സമർപ്പണം ശേഷം {0} മാറ്റാൻ അനുവാദമില്ല DocType: Communication,Comment Type,അഭിപ്രായം തരം DocType: OAuth Client,OAuth Client,OAuth ക്ലയന്റ് apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ഉപയോക്താക്കൾ @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,ഫിൽറ്റർ ഡാറ്റ DocType: Auto Email Report,Filter Data,ഫിൽറ്റർ ഡാറ്റ apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ഒരു ടാഗ് ചേർക്കുക -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,ആദ്യം ഒരു ഫയൽ അറ്റാച്ച് ദയവായി. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ആദ്യം ഒരു ഫയൽ അറ്റാച്ച് ദയവായി. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","പേര് ക്രമീകരിക്കുന്നതിൽ ചില പിശകുകൾ ഉണ്ടായിരുന്നു, അഡ്മിനിസ്ട്രേറ്റർ ബന്ധപ്പെടുക" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ഇൻകമിംഗ് ഇമെയിൽ അക്കൗണ്ട് ശരിയല്ല apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,ഇമെയിൽ അയച്ചവ DocType: DocField,Ignore XSS Filter,XSS ഫിൽറ്റർ അവഗണിക്കുക apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,നീക്കംചെയ്തു apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ഡ്രോപ്പ്ബോക്സ് ബാക്കപ്പ് ക്രമീകരണങ്ങൾ -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ഇമെയിൽ പോലെ അയയ്ക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ഇമെയിൽ പോലെ അയയ്ക്കുക DocType: Website Theme,Link Color,ലിങ്ക് കളർ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ഉപയോക്താവ് {0} പ്രവർത്തനരഹിതമാകും കഴിയില്ല apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","പ്രിയ സിസ്റ്റം മാനേജർ," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,നിങ്ങളുടെ രാജ്യം +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,നിങ്ങളുടെ രാജ്യം DocType: Event,Sunday,ഞായറാഴ്ച apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ഗ്രിഡ് കാഴ്ചയിൽ DocType: Address Template,Template,ഫലകം @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,ഡൽഹി apps/frappe/frappe/config/integrations.py +48,LDAP Settings,എൽഡാപ്പ് ക്രമീകരണങ്ങൾ apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,.ദി apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,പേപാൽ പേയ്മെന്റ് ഗേറ്റ്വേ ക്രമീകരണങ്ങൾ -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) പരമാവധി പ്രതീകങ്ങൾ അനുവദനീയമല്ല പോലെ ഫയലിന് ലഭിക്കും {2} ആണ് +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) പരമാവധി പ്രതീകങ്ങൾ അനുവദനീയമല്ല പോലെ ഫയലിന് ലഭിക്കും {2} ആണ് DocType: OAuth Client,Resource Owner Password Credentials,റിസോഴ്സ് ഉടമ പാസ്വേഡ് ക്രെഡൻഷ്യലുകൾ DocType: OAuth Client,Response Type,പ്രതികരണ തരം apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,പരമാവധി ഉപയോക്താക്കളെ @@ -2070,7 +2074,7 @@ DocType: DocField,Table,ടേബിൾ DocType: File,File Size,ഫയൽ വലിപ്പം apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,നിങ്ങൾ ഈ ഫോം സമർപ്പിക്കാൻ ലോഗിൻ ചെയ്യണം DocType: User,Background Image,പശ്ചാത്തല ചിത്രം -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","നിങ്ങളുടെ രാജ്യം, സമയ സോൺ, കറൻസി തിരഞ്ഞെടുക്കുക" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","നിങ്ങളുടെ രാജ്യം, സമയ സോൺ, കറൻസി തിരഞ്ഞെടുക്കുക" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,മെക്സിക്കോ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ഇടയില് DocType: Async Task,Queued,ക്യൂവിലാക്കി @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,സൃഷ്ടിക്കുക apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},അസാധുവായ ഫിൽറ്റർ: {0} DocType: Email Account,no failed attempts,പരാജയപ്പെട്ടു ശ്രമങ്ങളൊന്നും +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"സ്ഥിര വിലാസം ഫലകം കണ്ടെത്തി. സജ്ജീകരണം> അച്ചടി, ബ്രാൻഡിംഗ്> വിലാസം ഫലകം നിന്ന് പുതിയതൊന്ന് സൃഷ്ടിക്കുക." DocType: GSuite Settings,refresh_token,രെഫ്രെശ്_തൊകെന് DocType: Dropbox Settings,App Access Key,അപ്ലിക്കേഷൻ ആക്സസ് കീ DocType: OAuth Bearer Token,Access Token,അക്സസ് ടോക്കൺ @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,സാമൂഹികം ഉപയോക്തൃനാമം DocType: DocType,Image View,ചിത്രം കാണുക apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","എന്തോ ഇടപാട് സമയത്ത് തെറ്റായി സംഭവിച്ചതുപോലെ തോന്നുന്നു. ഞങ്ങൾ പേയ്മെന്റ് സ്ഥിരീകരിച്ചു വരാത്തതിനാൽ, പേപാൽ യാന്ത്രികമായി ഈ തുക തിരികെ നൽകും. ഇല്ലെങ്കിൽ, ഞങ്ങളെ ഒരു ഇമെയിൽ അയയ്ക്കുക ഒപ്പം മറന്ന കോറിലേഷൻ ഐഡി: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","പാസ്വേഡ് ചിഹ്നങ്ങൾ, അക്കങ്ങൾ മൂലധന അക്ഷരങ്ങൾ ഉൾപ്പെടുത്തുക" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ഫീൽഡ് കസ്റ്റം ഫീൽഡ് പരാമർശിച്ചു, ലേബലുള്ള '{2}' ചേർക്കൽ '{0}' '{1}', നിലവിലില്ല" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","പാസ്വേഡ് ചിഹ്നങ്ങൾ, അക്കങ്ങൾ മൂലധന അക്ഷരങ്ങൾ ഉൾപ്പെടുത്തുക" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ഫീൽഡ് കസ്റ്റം ഫീൽഡ് പരാമർശിച്ചു, ലേബലുള്ള '{2}' ചേർക്കൽ '{0}' '{1}', നിലവിലില്ല" DocType: Workflow State,signal,സിഗ്നൽ DocType: DocType,Show Print First,ആദ്യം പ്രിന്റ് കാണിക്കുക apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,കണ്ട്രോൾ + കുറിപ്പ് തീയതികൾ @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,പ്രമാണം '{0}' കണ്ടെത്തിയില്ല apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,വിഭാഗം നീക്കംചെയ്യുക DocType: User,Change Password,പാസ്വേഡ് മാറ്റുക -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},അസാധുവായ ഇമെയിൽ: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ഹലോ! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},അസാധുവായ ഇമെയിൽ: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ഹലോ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ഇവന്റ് അവസാനം ആരംഭത്തിനു ശേഷം ആയിരിക്കണം apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},നിങ്ങൾക്ക് ഒരു റിപ്പോർട്ട് ലഭിക്കുന്നതിന് അനുമതി ഇല്ല: {0} +DocType: System Settings,Apply Strict User Permissions,കർശന ഉപയോക്താവ് അനുമതികൾ പ്രയോഗിക്കുക DocType: DocField,Allow Bulk Edit,ബൾക്ക് എഡിറ്റ് അനുവദിക്കുക DocType: DocField,Allow Bulk Edit,ബൾക്ക് എഡിറ്റ് അനുവദിക്കുക DocType: Blog Post,Blog Post,ബ്ലോഗ് പോസ്റ്റുകൾ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,വിപുലമായ തിരച്ചിൽ +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,വിപുലമായ തിരച്ചിൽ apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,പാസ്വേഡ് പുനഃക്രമീകരിക്കാനുള്ള നിർദ്ദേശങ്ങൾ നിങ്ങളുടെ ഇമെയിൽ അയച്ചിട്ടുണ്ട് apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","ലെവൽ 0 ഫീൽഡ് നില അനുമതികൾ വേണ്ടി ഉയർന്ന \, പ്രമാണം നില അനുമതികൾ വേണ്ടി ആണ്." @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,സൈഡ്ബാർ അഭിപ്ര apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","നിങ്ങൾ ശേഷം അത് റദ്ദാക്കുക, രക്ഷിക്കും ഒരു പ്രമാണത്തിൽ നന്നാക്കുവിൻ, അത് പഴയ നമ്പർ ഒരു പതിപ്പാണ് ഒരു പുതിയ നമ്പർ ലഭിക്കും." DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ DocType: Stripe Settings,Publishable Key,പുബ്ലിശബ്ലെ കീ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} വർഷം (ങ്ങൾ) മുമ്പ് DocType: Workflow State,circle-arrow-left,സർക്കിൾ-അമ്പ്-ഇടത് apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,പ്രവർത്തിക്കുന്നില്ല Redis കാഷെ സെർവർ. അഡ്മിനിസ്ട്രേറ്റർ / ടെക് പിന്തുണ ബന്ധപ്പെടുക apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,പാർട്ടി പേര് -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ഒരു പുതിയ റെക്കോർഡ് നിർമ്മിക്കുക +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ഒരു പുതിയ റെക്കോർഡ് നിർമ്മിക്കുക apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,തിരയുന്നു apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,തിരയുന്നു DocType: Currency,Fraction,അംശം DocType: LDAP Settings,LDAP First Name Field,എൽഡാപ്പ് പേരിന്റെ ആദ്യ -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,നിലവിലുള്ള അറ്റാച്ച്മെന്റുകൾ നിന്ന് തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,നിലവിലുള്ള അറ്റാച്ച്മെന്റുകൾ നിന്ന് തിരഞ്ഞെടുക്കുക DocType: Custom Field,Field Description,ഫീൽഡ് വിവരണം apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,പേര് പ്രോംപ്റ്റ് വഴി സജ്ജീകരിക്കാനായില്ല apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ഇമെയിൽ ഇൻബോക്സ് @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,വിവരങ്ങളും: DocType: Custom Field,Permission Level,അനുമതി ലെവൽ DocType: User,Send Notifications for Transactions I Follow,ഞാൻ പിന്തുടരുക ഇടപാടുകൾക്ക് അറിയിപ്പുകൾ അയയ്ക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}:, സമർപ്പിക്കുക സജ്ജമാക്കാൻ റദ്ദാക്കുക, റൈറ്റ് ഇല്ലാതെ നന്നാക്കുവിൻ ചെയ്യാൻ കഴിയില്ല" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}:, സമർപ്പിക്കുക സജ്ജമാക്കാൻ റദ്ദാക്കുക, റൈറ്റ് ഇല്ലാതെ നന്നാക്കുവിൻ ചെയ്യാൻ കഴിയില്ല" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,നിങ്ങൾ അറ്റാച്ച്മെന്റ് ഇല്ലാതാക്കണമെന്ന് നിങ്ങൾക്ക് ഉറപ്പാണോ? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ഇല്ലാതാക്കാനോ റദ്ദാക്കാൻ കഴിയില്ല കാരണം {0} {1} {2} ലിങ്കുചെയ്തതിരിക്കുന്നതിനാൽ {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'നായി ഫലങ്ങളൊന്നും കണ്ടെത്തിയില്ല

-apps/frappe/frappe/__init__.py +1063,Thank you,നന്ദി +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ഇല്ലാതാക്കാനോ റദ്ദാക്കാൻ കഴിയില്ല കാരണം {0} {1} {2} ലിങ്കുചെയ്തതിരിക്കുന്നതിനാൽ {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,നന്ദി apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,സംരക്ഷിക്കുന്നു DocType: Print Settings,Print Style Preview,പ്രിന്റ് സ്റ്റൈൽ പ്രിവ്യൂ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,പട്ടിക കാണുക ൽ DocType: Email Account,Use TLS,ടിഎൽഎസ് ഉപയോഗിക്കുക apps/frappe/frappe/email/smtp.py +24,Invalid login or password,പ്രവേശനം അസാധുവാണ് അല്ലെങ്കിൽ പാസ്വേഡ് apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ഫോമുകൾ ഇച്ഛാനുസൃത JavaScript ചേർക്കുക. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,ഇല്ല എസ്.ആർ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,ഇല്ല എസ്.ആർ ,Role Permissions Manager,റോൾ അനുമതികൾ മാനേജർ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,പുതിയ പ്രിന്റ് ഫോർമാറ്റ് പേര് -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,തെളിഞ്ഞ അറ്റാച്ച്മെന്റ് +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,തെളിഞ്ഞ അറ്റാച്ച്മെന്റ് apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,നിർബന്ധിതം: ,User Permissions Manager,ഉപയോക്തൃ അനുമതികൾ മാനേജർ DocType: Property Setter,New value to be set,പുതിയ മൂല്യം സജ്ജീകരിക്കാൻ @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ദ apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ബ്ലോഗ് പോസ്റ്റുകൾ തരംതിരിക്കുന്നു. DocType: Workflow State,Time,സമയം DocType: DocField,Attach,അറ്റാച്ച് -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ഒരു സാധുവായ FIELDNAME പാറ്റേൺ അല്ല. ഇത് {{FIELD_NAME}} ആയിരിക്കണം. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ഒരു സാധുവായ FIELDNAME പാറ്റേൺ അല്ല. ഇത് {{FIELD_NAME}} ആയിരിക്കണം. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,പ്രതികരണം അഭ്യർത്ഥന അയയ്ക്കുക കുറഞ്ഞത് ഒരു ആശയവിനിമയത്തിൽ മാത്രം പ്രമാണം ലഭ്യമാണ്. DocType: Custom Role,Permission Rules,അനുമതി നിയമങ്ങൾ DocType: GSuite Settings,GSuite Settings,ഗ്സുഇതെ ക്രമീകരണങ്ങൾ DocType: Address,Links,ലിങ്കുകൾ -apps/frappe/frappe/model/base_document.py +428,Value missing for,നഷ്ടമായി മൂല്യം +apps/frappe/frappe/model/base_document.py +427,Value missing for,നഷ്ടമായി മൂല്യം apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,ശിശു ചേർക്കുക -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: സമർപ്പിച്ചു റിക്കോർഡ് ഇല്ലാതാക്കാൻ കഴിയില്ല. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: സമർപ്പിച്ചു റിക്കോർഡ് ഇല്ലാതാക്കാൻ കഴിയില്ല. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ബാക്കപ്പ് വലുപ്പം DocType: GSuite Templates,Template Name,ടെംപ്ലേറ്റ് നാമം -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,പ്രമാണത്തിൻറെ പുതിയ തരം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,പ്രമാണത്തിൻറെ പുതിയ തരം DocType: Custom DocPerm,Read,വായിക്കുക DocType: Role Permission for Page and Report,Role Permission for Page and Report,പേജും റിപ്പോർട്ട് പങ്ക് അനുമതി apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,മൂല്യം വിന്യസിക്കുക apps/frappe/frappe/www/update-password.html +14,Old Password,പഴയ പാസ്വേഡ് -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},{0} പോസ്റ്റുകൾ +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},{0} പോസ്റ്റുകൾ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ഫോർമാറ്റ് നിരകൾ, ചോദ്യത്തിലെ കോളം ലേബലുകൾ തരും." DocType: Has Domain,Has Domain,ഡൊമെയ്ൻ ഉണ്ട് apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ഒരു അക്കൗണ്ട് ഇല്ലേ? സൈൻ അപ്പ് ചെയ്യുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable ആണെങ്കിലോ നിയോഗിക്കുകയോ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല DocType: Address,Bihar,ബിഹാർ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,എഡിറ്റ് റോൾ അനുമതികൾ DocType: Communication,Link DocType,ലിങ്ക് DocType @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,നിങ്ങളുടെ പ്രൊഫൈൽ ഒരു ഇമെയിൽ വിലാസം എന്ന് ദയവായി ഉറപ്പ് apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,നിങ്ങൾ ഈ രൂപത്തിൽ സംരക്ഷിക്കാത്ത മാറ്റങ്ങളുണ്ട്. തുടരുന്നതിനു മുമ്പ് സംരക്ഷിക്കുക. DocType: Address,Telangana,തെലുങ്കാന -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} സ്ഥിരസ്ഥിതി ഒരു ഓപ്ഷൻ ആയിരിക്കണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} സ്ഥിരസ്ഥിതി ഒരു ഓപ്ഷൻ ആയിരിക്കണം DocType: Tag Doc Category,Tag Doc Category,ടാഗ് ഡോക് വർഗ്ഗം DocType: User,User Image,ഉപയോക്തൃ ചിത്ര apps/frappe/frappe/email/queue.py +289,Emails are muted,ഇമെയിലുകൾ നിശബ്ദമാക്കി @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,അടു DocType: Workflow State,ok,ശരി DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ഈ മൂല്യങ്ങൾ യാന്ത്രികമായി ഇടപാടുകൾ പരിഷ്കരിച്ച ചെയ്യപ്പെടുകയും ഈ മൂല്യങ്ങൾ അടങ്ങിയ ഇടപാടുകൾ ഈ ഉപയോക്താവിനായി അനുമതികൾ പരിമിതപ്പെടുത്താൻ സഹായിക്കും. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,പ്രസാധകർ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** പരാജയപ്പെട്ടു: {2}: {0} {1} വരെ +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** പരാജയപ്പെട്ടു: {2}: {0} {1} വരെ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,നിർബന്ധിതം തിരഞ്ഞെടുക്കുക apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ബ്രൗസ് apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ഇമെയിലുകൾ അയച്ചു @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,ഓട്ടമത്സരം apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,പാസ്വേഡ് പുനഃസജ്ജമാക്കുക apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,{0} വരിക്കാരുടെ അധികം ചേർക്കാൻ അപ്ഗ്രേഡ് ചെയ്യുക DocType: Workflow State,hand-left,കൈ-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} അതുല്യമായ ആകാൻ പാടില്ല വേണ്ടി +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} അതുല്യമായ ആകാൻ പാടില്ല വേണ്ടി DocType: Email Account,Use SSL,SSL ഉപയോഗിക്കുക DocType: Workflow State,play-circle,പ്ലേ സർക്കിൾ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,എഡിറ്റ് പ്രിന്റ് ഫോർമാറ്റ് തിരഞ്ഞെടുക്കുക @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,ഇല്ല പകർത്തുക DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,എൽഡാപ്പ് ഉപയോഗിച്ച് ലോഗിൻ DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,ഉടമ എങ്കിൽ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,ഉടമ എങ്കിൽ DocType: OAuth Authorization Code,Expiration time,കാലഹരണപ്പെടുന്ന സമയം DocType: Web Page,Website Sidebar,വെബ്സൈറ്റ് സൈഡ്ബാർ DocType: Web Form,Show Sidebar,സൈഡ്ബാർ കാണിക്കുക @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},കണ്ടെ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,തങ്ങളെ പേരുകളും മൂൺ ഊഹിക്കാൻ എളുപ്പമാണ്. apps/frappe/frappe/config/website.py +93,Knowledge Base,ബേസ് DocType: Workflow State,briefcase,ബീഫ്കേസ് -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},മൂല്യം {0} വേണ്ടി മാറ്റാൻ കഴിയില്ല +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},മൂല്യം {0} വേണ്ടി മാറ്റാൻ കഴിയില്ല DocType: Feedback Request,Is Manual,മാനുവൽ ആണ് DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","സ്റ്റൈൽ ബട്ടൺ നിറം പ്രതിനിധീകരിക്കുന്നു: വിജയിച്ചു - ഗ്രീൻ, അപകടം - റെഡ്, യ്ക്കും - ബ്ലാക്ക്, പ്രൈമറി - ഇരുണ്ട നീല, വിവരങ്ങളും - ഇളം നീല, മുന്നറിയിപ്പ് - ഓറഞ്ച്" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,ഇല്ല റിപ്പോർട്ട് ലോഡുചെയ്തിട്ടില്ല. ഒരു റിപ്പോർട്ട് പ്രവർത്തിപ്പിക്കാൻ ചോദ്യ-റിപ്പോർട്ട് / [റിപ്പോർട്ട് പേര്] ഉപയോഗിക്കുക. @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,പുരേ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,റോൾ എന്നയാളുടെ apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,കാണാതായ ഫീൽഡുകൾ apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,അസാധുവായ FIELDNAME '{0}' autoname ലെ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ഒരു ഡോക്യുമെന്റ് തരം തിരച്ചിൽ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ഒരു ഡോക്യുമെന്റ് തരം തിരച്ചിൽ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ഫീൽഡ് പോലും സമർപ്പണം ശേഷം അതിനാദ്യം തുടരാൻ അനുവദിക്കുക DocType: Custom DocPerm,Role and Level,പങ്കും ലെവൽ DocType: File,Thumbnail URL,ലഘുചിത്രം യുആർഎൽ @@ -2592,19 +2596,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + g) DocType: Contact,More Information,കൂടുതൽ വിവരങ്ങൾ DocType: Desktop Icon,Desktop Icon,ഡെസ്ക്ടോപ്പ് ഐക്കൺ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,നിങ്ങളുടെ പേയ്മെന്റ് വിജയകരമായി സ്വീകരിച്ചു +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,നിങ്ങളുടെ പേയ്മെന്റ് വിജയകരമായി സ്വീകരിച്ചു apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,ക്ഷമിക്കണം! നിങ്ങൾക്ക് ഈ പേജ് കാണുന്നതിന് അനുമതിയില്ല. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,നുറുങ്ങ്: ഇരട്ട ക്ലിക്കിൽ സെല്ലിലും ലേക്കുള്ള DocType: Workflow State,bell,മണി apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ഇമെയിൽ അലേർട്ട് പിശക് apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ഇമെയിൽ അലേർട്ട് പിശക് apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ഈ ഡോക്യുമെന്റ് പങ്കിടുക +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,സജ്ജീകരണം> ഉപയോക്തൃ അനുമതികൾ മാനേജർ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,അത് മക്കൾ പോലെ {0} {1} ഒരു ഇല നോഡ് ആകാൻ പാടില്ല DocType: Communication,Info,രം -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,അറ്റാച്ച്മെന്റ് ചേർക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,അറ്റാച്ച്മെന്റ് ചേർക്കുക DocType: Communication,Email,ഇമെയിൽ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,നിങ്ങളുടെ സന്ദേശം നന്ദി -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,വായന രസീത് അയയ്ക്കുക +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,വായന രസീത് അയയ്ക്കുക DocType: Stripe Settings,Stripe Settings,വര ക്രമീകരണങ്ങൾ DocType: Stripe Settings,Stripe Settings,വര ക്രമീകരണങ്ങൾ DocType: Dropbox Settings,Dropbox Setup via Site Config,സൈറ്റ് കോൺഫിഗറേഷൻ വഴി ഡ്രോപ്പ്ബോക്സ് സജ്ജീകരണം @@ -2671,6 +2676,7 @@ DocType: DocType,Web View,വെബ് കാണുക apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,മുന്നറിയിപ്പ്: ഈ അച്ചടി ഫോർമാറ്റ് പഴയ ശൈലിയിൽ ആണ് API വഴി ഉണ്ടാകുന്നതല്ല കഴിയില്ല. DocType: DocField,Print Width,പ്രിന്റ് വീതി ,Setup Wizard,സെറ്റപ്പ് വിസാർഡ് +DocType: Address,GST State Number,ചരക്കുസേവന സംസ്ഥാന നമ്പർ DocType: User,Allow user to login only before this hour (0-24),(0-24) യൂസർ മാത്രമേ ഈ മണിക്കൂര് മുമ്പ് ലോഗിൻ അനുവദിക്കുക apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ഫോൾഡർ നിർബന്ധമാണ് apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2699,7 +2705,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ചെറിയ ടെക്സ്റ്റ് apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,അഡ്മിനിസ്ട്രേറ്റർ ഐപി വിലാസം {2} വഴി {1} ന് {0} പ്രവേശിക്കാനോ. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,സമമായവ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',വയലിലെ ഓപ്ഷനുകൾ 'ഡൈനാമിക് ലിങ്ക്' ടൈപ്പ് 'DocType' ഉപാധികൾ മറ്റൊരു ലിങ്ക് ഫീൽഡ് നയിക്കേണ്ടത് +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',വയലിലെ ഓപ്ഷനുകൾ 'ഡൈനാമിക് ലിങ്ക്' ടൈപ്പ് 'DocType' ഉപാധികൾ മറ്റൊരു ലിങ്ക് ഫീൽഡ് നയിക്കേണ്ടത് DocType: About Us Settings,Team Members Heading,ടീം അംഗങ്ങൾ ശീർഷകം apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,അസാധുവായ CSV ഫോർമാറ്റ് apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,ബാക്കപ്പുകൾ എണ്ണം ക്രമീകരിക്കുക @@ -2710,7 +2716,7 @@ DocType: Contact,Contact,കോൺടാക്റ്റ് DocType: User,Third Party Authentication,മൂന്നാം കക്ഷി ആധികാരികത DocType: Website Settings,Banner is above the Top Menu Bar.,ബാനർ ടോപ്പ് മെനു ബാർ മുകളിൽ ആണ്. DocType: Razorpay Settings,API Secret,എപിഐ രഹസ്യം -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,കയറ്റുമതി റിപ്പോർട്ട്: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,കയറ്റുമതി റിപ്പോർട്ട്: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} നിലവിലില്ല DocType: Email Account,Port,പോര്ട് DocType: Print Format,Arial,ഏരിയല് @@ -2733,7 +2739,7 @@ DocType: Kanban Board Column,Column Name,നിരയുടെ പേര് DocType: Language,Based On,അടിസ്ഥാനപെടുത്തി apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,സ്ഥിരസ്ഥിതി നിർമ്മിക്കുക apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,അവളെന്നോട് സെർവർ URL പരിശോധിക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ഇൻഡെക്സ് കഴിയില്ല വേണ്ടി +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ഇൻഡെക്സ് കഴിയില്ല വേണ്ടി DocType: Communication,Email Account,ഇമെയിൽ അക്കൗണ്ട് DocType: Workflow State,Download,ഡൗൺലോഡ് DocType: Blog Post,Blog Intro,ബ്ലോഗ് അവതാരിക @@ -2744,7 +2750,7 @@ DocType: Web Page,Insert Code,തിരുകുക കോഡ് DocType: ToDo,Low,ലോ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,നിങ്ങൾക്ക് Jinja templating ഉപയോഗിച്ച് പ്രമാണത്തിൽ നിന്നും ഡൈനാമിക് പ്രോപ്പർട്ടികൾ ചേർക്കാൻ കഴിയും. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},അസാധുവായ പരിധി {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ഒരു ഡോക്യുമെന്റ് തര ലിസ്റ്റ് +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ഒരു ഡോക്യുമെന്റ് തര ലിസ്റ്റ് DocType: Event,Ref Type,റഫറൻസ് തരം apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","നിങ്ങൾ പുതിയ റെക്കോഡുകൾ അപ്ലോഡ് ചെയ്യുന്നതെങ്കിൽ, "പേര്" (ഐഡി) കോളം ശൂന്യമായിടൂ." DocType: Address,Chattisgarh,ഛത്തീസ്ഗഢ് @@ -2766,26 +2772,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDF ആയി പ്രിന്റ് അയയ്ക്കുക DocType: Web Form,Amount,തുക DocType: Workflow Transition,Allowed,അനുവദനീയം -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ഒരു രൂപത്തിൽ മാത്രം ഒരു തൊഴുത്തിൽ തോന്നേണ്ടതില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ഒരു രൂപത്തിൽ മാത്രം ഒരു തൊഴുത്തിൽ തോന്നേണ്ടതില്ല apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0} ഫയൽ ഫോർമാറ്റ് എഴുതാൻ കഴിയുന്നില്ല apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,സ്ഥിരസ്ഥിതി ക്രമീകരണങ്ങൾ പുനഃസ്ഥാപിക്കുക? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,അസാധുവായ ഹോം പേജ് apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,അസാധുവായ ലോഗിൻ. വീണ്ടും ശ്രമിക്ക്. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ലിങ്ക് അല്ലെങ്കിൽ പട്ടിക തരം ഫീൽഡിൽ {0} നിരയിൽ {1} ആവശ്യമായ ഓപ്ഷനുകൾ -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ലിങ്ക് അല്ലെങ്കിൽ പട്ടിക തരം ഫീൽഡിൽ {0} നിരയിൽ {1} ആവശ്യമായ ഓപ്ഷനുകൾ +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ലിങ്ക് അല്ലെങ്കിൽ പട്ടിക തരം ഫീൽഡിൽ {0} നിരയിൽ {1} ആവശ്യമായ ഓപ്ഷനുകൾ +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ലിങ്ക് അല്ലെങ്കിൽ പട്ടിക തരം ഫീൽഡിൽ {0} നിരയിൽ {1} ആവശ്യമായ ഓപ്ഷനുകൾ DocType: Auto Email Report,Send only if there is any data,ഏതെങ്കിലും ഡാറ്റ ഉണ്ടെങ്കിൽ മാത്രം അയയ്ക്കുക apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ഫിൽട്ടറുകൾ പുനഃസജ്ജമാക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: പൊണ്ണത്തടിക്ക് വെക്കുന്നതു മുമ്പ് ലെവൽ 0 ന് അനുമതി സജ്ജമാക്കാൻ വേണം +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: പൊണ്ണത്തടിക്ക് വെക്കുന്നതു മുമ്പ് ലെവൽ 0 ന് അനുമതി സജ്ജമാക്കാൻ വേണം apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},{0} അടച്ച അസൈൻമെന്റ് DocType: Integration Request,Remote,റിമോട്ട് -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,കണക്കുകൂട്ടുക +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,കണക്കുകൂട്ടുക apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,DocType ആദ്യം തിരഞ്ഞെടുക്കുക apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,നിങ്ങളുടെ ഇമെയിൽ സ്ഥിരീകരിക്കുക apps/frappe/frappe/www/login.html +42,Or login with,അതല്ല ഉപയോഗിച്ച് ലോഗിൻ DocType: Error Snapshot,Locals,നാട്ടുകാർ apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ന് {1} {0} വഴി ആശയവിനിമയം: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} {1} ഒരു അഭിപ്രായത്തിൽ പരാമർശിച്ചു -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ഉദാ (55 + 434) / 4 അല്ലെങ്കിൽ = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ഉദാ (55 + 434) / 4 അല്ലെങ്കിൽ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ആവശ്യമാണ് DocType: Integration Request,Integration Type,ഇന്റഗ്രേഷൻ ഇനം DocType: Newsletter,Send Attachements,അത്തഛെമെംത്സ് അയയ്ക്കുക @@ -2795,15 +2801,15 @@ DocType: DocField,Perm Level,പര്മ് ലെവൽ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,ഇന്നത്തെ കലണ്ടർ സംഭവങ്ങൾ DocType: Web Page,Web Page,വെബ് പേജ് DocType: Blog Category,Blogger,ബ്ലോഗർ -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ആഗോള തിരയൽ ൽ' തുടർച്ചയായി തരം {0} അനുവദനീയമല്ല {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,കാണുക പട്ടിക -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},തീയതി ഫോർമാറ്റിൽ ആയിരിക്കണം: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},തീയതി ഫോർമാറ്റിൽ ആയിരിക്കണം: {0} DocType: Workflow,Don't Override Status,സ്റ്റാറ്റസ് നിസ്തേജമാക്കരുത് apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ഒരു റേറ്റിംഗ് തരൂ. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} പ്രതികരണം അഭ്യർത്ഥന apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,തിരയൽ പദം -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,ആദ്യം ഉപയോക്താവ്: നിങ്ങൾ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,ആദ്യം ഉപയോക്താവ്: നിങ്ങൾ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,നിരകൾ തിരഞ്ഞെടുക്കുക DocType: Translation,Source Text,ഉറവിട ഉള്ളടക്കം apps/frappe/frappe/www/login.py +55,Missing parameters for login,ലോഗിന്നിനായി കാണുന്നില്ല പരാമീറ്ററുകൾ @@ -2825,7 +2831,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,ഇറക്കുമതി DocType: ToDo,Assigned By,നിശ്ചയിച്ച apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,നിങ്ങൾ നിലങ്ങൾ അളവ് സജ്ജീകരിക്കാൻ കസ്റ്റമൈസ് ഫോം ഉപയോഗിക്കാൻ കഴിയും. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,നിങ്ങളുടെ പ്രദേശം തിരഞ്ഞെടുക്കുക +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,നിങ്ങളുടെ പ്രദേശം തിരഞ്ഞെടുക്കുക DocType: Custom DocPerm,Level,ലെവൽ DocType: Custom DocPerm,Report,റിപ്പോർട്ട് apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,തുക 0 വലുതായിരിക്കണം. @@ -2845,7 +2851,7 @@ DocType: Website Theme,Background,പശ്ചാത്തലം DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","ഉപയോക്താവ് അനുമതികൾ പ്രയോഗിക്കുന്നതിന് ഉപയോഗിക്കുന്ന DocTypes എന്ന ജെഎസ്ഒഎൻ പട്ടിക. ഒഴിഞ്ഞ എങ്കിൽ, എല്ലാ ലിങ്ക്ഡ് DocTypes ഉപയോക്താവ് അനുമതികൾ പ്രയോഗിക്കുന്നതിന് ഉപയോഗിക്കും." DocType: Report,Ref DocType,റഫറൻസ് DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,ഒരു റേറ്റിംഗ് ചേർക്കുക -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: റദ്ദാക്കുക ഇല്ലാതെ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: റദ്ദാക്കുക ഇല്ലാതെ നന്നാക്കുവിൻ സജ്ജീകരിക്കാൻ കഴിയില്ല apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,പൂർണ്ണ പേജ് DocType: DocType,Is Child Table,ശിശു മേശ apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} ഒന്നാണ് ആയിരിക്കണം @@ -2860,7 +2866,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ഈ സ്ലൈഡ് apps/frappe/frappe/config/setup.py +260,Install Applications.,അപ്ലിക്കേഷനുകൾ ഇൻസ്റ്റാൾ. DocType: Contact,Last Name,പേരിന്റെ അവസാന ഭാഗം DocType: Event,Private,സ്വകാര്യ -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ഇന്ന് യ്ക്കുള്ള അലർട്ടുകൾ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ഇന്ന് യ്ക്കുള്ള അലർട്ടുകൾ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ആയി ഇമെയിൽ പ്രിന്റ് കൂടെയുള്ള അയയ്ക്കുക (ശുപാർശിതം) DocType: Web Page,Left,ഇടതുപക്ഷം DocType: Event,All Day,ദിവസം മുഴുവൻ @@ -2874,7 +2880,7 @@ DocType: Event,Send an email reminder in the morning,രാവിലെ ഒര DocType: Blog Post,Published On,ന് പ്രസിദ്ധീകരിച്ചു DocType: Contact,Gender,സ്ത്രീ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,നിർബന്ധിതം വിവരം കാണാനില്ല: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ഇതര അതുല്യമായ മൂല്യങ്ങൾ ഉണ്ട് പോലെ ഫീൽഡ് '{0}' യുണീക് ആയി സജ്ജമാക്കാൻ കഴിയില്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ഇതര അതുല്യമായ മൂല്യങ്ങൾ ഉണ്ട് പോലെ ഫീൽഡ് '{0}' യുണീക് ആയി സജ്ജമാക്കാൻ കഴിയില്ല apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,മാത്രം 200 ചേർക്കുന്നു ഒറ്റ അഭ്യർത്ഥന അനുവദനീയമായ DocType: Footer Item,URL,യുആർഎൽ DocType: ToDo,Reference Type,റഫറൻസ് തരം @@ -2887,7 +2893,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,മുന്നറിയിപ്പ്-അടയാളം DocType: Workflow State,User,ഉപയോക്താവ് DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- തലക്കെട്ടിന്റെ ഘടന" ബ്രൗസർ വിൻഡോയിൽ കാണിക്കുക ശീർഷകം -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ഡോക്യുമെന്റ് തരം വാചകം +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ഡോക്യുമെന്റ് തരം വാചകം apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,പരിശോധനകള്പ്രവര്ത്തിപ്പിയ്ക്കുക apps/frappe/frappe/handler.py +91,Logged Out,ലോഗ് ഔട്ട് apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,കൂടുതൽ... @@ -2913,13 +2919,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,നിലവിൽ കാണുന്നു DocType: DocField,Default,സ്ഥിരസ്ഥിതി apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ചേർത്തു -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}' തിരയുക +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}' തിരയുക apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,ആദ്യം റിപ്പോർട്ട് സംരക്ഷിക്കാൻ ദയവായി apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,ചേർത്തു {0} വരിക്കാരുടെ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,അകത്തു DocType: Workflow State,star,നക്ഷത്രം -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,കോമ ഉപയോഗിച്ച് വേർതിരിച്ച് മൂല്യങ്ങൾ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},തരം കറന്സി മാക്സ് വീതി നിരയിൽ 100px {0} ആണ് +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,കോമ ഉപയോഗിച്ച് വേർതിരിച്ച് മൂല്യങ്ങൾ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},തരം കറന്സി മാക്സ് വീതി നിരയിൽ 100px {0} ആണ് apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},{0} നിങ്ങളുടെ ഫീഡ്ബാക്ക് പങ്കിടാൻ ദയവായി apps/frappe/frappe/config/website.py +13,Content web page.,ഉള്ളടക്ക വെബ് പേജ്. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ഒരു പുതിയ റോൾ ചേർക്കുക @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,സാധുവായ ഒരു എൽഡാപ്പ് ഉപയോക്താവ് apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ഒരു സാധുവായ സംസ്ഥാനം apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',മറ്റൊരു പെയ്മെന്റ് രീതി തിരഞ്ഞെടുക്കുക. പേപാൽ കറൻസി ഇടപാടുകളും പിന്തുണയ്ക്കുന്നില്ല '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,തിരയൽ ഫീൽഡ് {0} സാധുവല്ല +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,തിരയൽ ഫീൽഡ് {0} സാധുവല്ല DocType: Workflow State,ok-circle,OK-സർക്കിൾ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',നിങ്ങൾ ആവശ്യപ്പെട്ട് 'ഉപഭോക്താക്കളിൽ ഓറഞ്ച് കണ്ടെത്താൻ' കാര്യങ്ങൾ കണ്ടെത്താനാകും apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,ക്ഷമിക്കണം! ഉപയോക്താവ് അവരുടെ സ്വന്തം റെക്കോർഡ് പൂർണ്ണ പ്രവേശനം ഉണ്ടായിരിക്കണം. @@ -2999,7 +3005,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,മെറ്റാ ഫിൽട്ടർ ചെയ്യുക DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ഉള്ളടക്കം ഈ ഫോം ഒരു വെബ് പേജ് ഉണ്ട് എങ്കിൽ വെബ് പേജ് ലേക്ക് ലിങ്ക് വേണ്ടി പ്രദർശിപ്പിക്കാൻ. ലിങ്ക് റൂട്ടിൽ സ്വയം `page_name` രൂപയായും parent_website_route` അടിസ്ഥാനമാക്കി നിർമ്മിക്കപ്പെടും DocType: Feedback Request,Feedback Trigger,പ്രതികരണം ട്രിഗർ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,ആദ്യം {0} സജ്ജീകരിക്കുക +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ആദ്യം {0} സജ്ജീകരിക്കുക DocType: Unhandled Email,Message-id,സന്ദേശ ഐഡിയിൽ DocType: Patch Log,Patch,തുണിത്തുണ്ട് DocType: Async Task,Failed,പരാജയപ്പെട്ടു diff --git a/frappe/translations/mr.csv b/frappe/translations/mr.csv index ceb25a408c..b8b751f937 100644 --- a/frappe/translations/mr.csv +++ b/frappe/translations/mr.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,फेसबुक वापरकर्ता DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,टीप: एकाधिक सत्र मोबाइल डिव्हाइस बाबतीत दिली जाईल apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},{वापरकर्ते} वापरकर्ता सक्षम ईमेल इनबॉक्स apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,या ई-मेल पाठवू शकत नाही. आपण या महिन्यात {0} ईमेल पाठवून मर्यादा पार केली आहे. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,कायमचे {0} सबमिट करायचे? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,कायमचे {0} सबमिट करायचे? DocType: Address,County,काउंटी DocType: Workflow,If Checked workflow status will not override status in list view,चेक-इन केले कार्यपद्धत स्थिती यादी मध्ये स्थिती पासून खोढून पुन्हा लिहीले नाहीत तर apps/frappe/frappe/client.py +280,Invalid file path: {0},अवैध फाइल पाथ : {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,कृ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} वृक्ष DocType: User,User Emails,वापरकर्ता ई-मेल DocType: User,Username,वापरकर्तानाव -apps/frappe/frappe/model/base_document.py +581,Value too big,मूल्य खूप मोठा +apps/frappe/frappe/model/base_document.py +580,Value too big,मूल्य खूप मोठा DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,चालवा स्क्रिप्ट कसोटी DocType: Contact,Department,विभाग @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,नोंदी DocType: Custom DocPerm,This role update User Permissions for a user,वापरकरर्त्या साठी हि भूमिका सुधारणा वापरकर्ता apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},पुनर्नामित करा {0} DocType: Workflow State,zoom-out,झूम कमी करा -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,त्याच्या घटना उघडा असताना {0} उघडू शकत नाही +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,त्याच्या घटना उघडा असताना {0} उघडू शकत नाही apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,टेबल {0} रिक्त असू शकत नाही apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Ledgers सह apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,प्रतिमा DocType: Communication,Reference Owner,संदर्भ मालक DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,लहान प्रसारित अपूर्णांक युनिट (नाणे). उदा 1 टक्के USDसाठी आणि तो 0.01 म्हणून enter केला पाहिजे DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, सलग {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, सलग {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,एक संपूर्णनाव द्या. apps/frappe/frappe/model/document.py +904,Beginning with,सह सुरू apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,डेटा आयात साचा @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,पालक DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","सक्षम केले असल्यास, संकेतशब्द सामर्थ्य किमान पासवर्ड धावसंख्या मूल्य आधारित अंमलबजावणी केली जाईल. 2 एक मूल्य मध्यम मजबूत असल्याने आणि 4 फार मजबूत आहे." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","सक्षम केले असल्यास, संकेतशब्द सामर्थ्य किमान पासवर्ड धावसंख्या मूल्य आधारित अंमलबजावणी केली जाईल. 2 एक मूल्य मध्यम मजबूत असल्याने आणि 4 फार मजबूत आहे." DocType: About Us Settings,"""Team Members"" or ""Management""","टीम सदस्य" किंवा "व्यवस्थापन" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',शेतातील 'तपासा' प्रकार करीता मुलभूत एकतर '0' किंवा '1' असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',शेतातील 'तपासा' प्रकार करीता मुलभूत एकतर '0' किंवा '1' असणे आवश्यक आहे apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,काल DocType: Contact,Designation,पदनाम DocType: Test Runner,Test Runner,कसोटी धावणारा @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,फील्ड प्रकाशित आ DocType: Email Group,Email Group,ई-मेल गट DocType: Note,Seen By,करून पाहिले apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,अनेक जोडा -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,आवडत नाही +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,आवडत नाही apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,field साठी प्रदर्शन लेबल सेट करा . apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},अयोग्य मूल्य: {0} असणे आवश्यक आहे {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","बदला क्षेत्रात गुणधर्म (कातडे, केवळ वाचनीय, परवानगी इ)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,आमच apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,प्रशासक लॉग-इन झाला मध्ये DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","""विक्री क्वेरी, समर्थन क्वेरी"" इत्यादी सारखे संपर्क पर्याय, प्रत्येक एका नवीन ओळीवर किंवा स्वल्पविरामाने विभक्त केले ." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. डाउनलोड -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,घाला +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,घाला apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},निवडा {0} DocType: Print Settings,Classic,क्लासिक DocType: Desktop Icon,Color,रंग @@ -122,7 +122,7 @@ DocType: Translation,Translation,भाषांतर apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,स्थापित करा apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,श्री DocType: Custom Script,Client,क्लायंट -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,आपण ते लोड केल्यानंतर हा फॉर्म संपादित केला गेला आहे +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,आपण ते लोड केल्यानंतर हा फॉर्म संपादित केला गेला आहे DocType: User Permission for Page and Report,User Permission for Page and Report,पेज आणि अहवाल वापरकर्त्यास परवानगी DocType: Address,Himachal Pradesh,हिमाचल प्रदेश DocType: System Settings,"If not set, the currency precision will depend on number format","सेट न केल्यास, चलन सुस्पष्टता क्रमांक स्वरूप अवलंबून असेल" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,कारण apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,कृपया वापरकर्ता निर्दिष्ट करा DocType: Email Unsubscribe,Email Unsubscribe,ईमेल सदस्यता रद्द करा DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,उत्तम परिणामासाठी एक पारदर्शक पार्श्वभूमी साधारण रुंदी 150 पिक्सेल असलेली एक प्रतिमा निवडा. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,प्रथम वापरकर्ता प्रणाली व्यवस्थापक होईल(आपण हे नंतर बदलू शकता). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,प्रथम वापरकर्ता प्रणाली व्यवस्थापक होईल(आपण हे नंतर बदलू शकता). ,App Installer,अनुप्रयोग इंस्टॉलर DocType: Workflow State,circle-arrow-up,मंडळ-बाण-अप apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,अपलोड करत आहे ... DocType: Email Domain,Email Domain,ईमेल डोमेन DocType: Workflow State,italic,तिर्यक apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,प्रत्येकजण -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: आयात तयार केल्याशिवाय सेट करू शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: आयात तयार केल्याशिवाय सेट करू शकत नाही apps/frappe/frappe/config/desk.py +26,Event and other calendars.,कार्यक्रम आणि इतर कॅलेंडर apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,सर्व फील्ड टिप्पणी सादर करणे आवश्यक आहे. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,स्तंभ क्रमवारी ड्रॅग करा @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,मानक साइडबा apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,घर आणि संलग्नक फोल्डर्स डिलीट करू शकत नाही apps/frappe/frappe/config/desk.py +19,Files,फायली apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,परवानग्या वापरकर्त्यांना ते काय भूमिका करत आहेत यावर आधारित लागू होतात . -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,आपल्याला या दस्तऐवजात संबंधित ईमेल पाठवण्याची परवानगी नाही -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,कृपया {0} वर्गीकरण करणे / गट किमान 1 स्तंभ निवडा +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,आपल्याला या दस्तऐवजात संबंधित ईमेल पाठवण्याची परवानगी नाही +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,कृपया {0} वर्गीकरण करणे / गट किमान 1 स्तंभ निवडा DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"आपण Sandbox API वापरून आपल्या भरणा चाचणी घेत आहोत, तर हे तपासा" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,आपल्याला मानक वेबसाइट थीम हटवण्यास परवानगी नाही DocType: Feedback Trigger,Example,उदाहरण @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,एकूण सदस्य apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","एक भूमिका लेव्हल 0 प्रवेश नाही, तर उच्च पातळी निरर्थक आहेत." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,म्हणून जतन करा DocType: Communication,Seen,पाहिले -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,अधिक तपशील दर्शवा +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,अधिक तपशील दर्शवा DocType: System Settings,Run scheduled jobs only if checked,तपासल्यास फक्त अनुसूचित रोजगार चालवा apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,विभाग शीर्षकाच्या सक्षम केले असल्यास फक्त दर्शविले जाईल apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,संग्रहण @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,लपवा शीर्षक DocType: Address,Current,चालू DocType: Address,Current,चालू -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,संबंधित दस्तऐवज apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes गट DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,काढा-मंडळ/remove-circle @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,फिल्टर apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} जसे विशेष वर्ण आहेत शकत नाही {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,एका वेळी अनेक मूल्ये अपडेट करा. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,त्रुटी: आपण ते उघडले केल्यानंतर दस्तऐवज संपादित केले गेले आहे -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट पत्ता साचा आढळले. सेटअप> मुद्रण आणि ब्रँडिंग> पत्ता साचा एक नवीन तयार करा. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} लॉग आउट: {1} DocType: Address,West Bengal,पश्चिम बंगाल -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर सबमिट करा +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर सबमिट करा DocType: Social Login Keys,Facebook,फेसबुक apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",फिल्टर "{0}" DocType: Salutation,Administrator,प्रशासक @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,ब्लॉग शीर्षक apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,मानक भूमिका अक्षम करणे शक्य नाही DocType: Address,Mizoram,मिझोराम DocType: Newsletter,Newsletter,वृत्तपत्र -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,आदेश उप-क्वेरी वापरू शकत नाही +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,आदेश उप-क्वेरी वापरू शकत नाही DocType: Web Form,Button Help,बटण मदत DocType: Kanban Board Column,purple,जांभळा DocType: About Us Settings,Team Members,टीम सदस्य @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",आपल्या सदस्यता {0} रोजी निधन झाले. नूतनीकरण करण्यासाठी {1}. DocType: Workflow State,plus-sign,अधिक-चिन्ह apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,सेटअप आधीच पूर्ण -apps/frappe/frappe/__init__.py +890,App {0} is not installed,अनुप्रयोग {0} स्थापित नाही +apps/frappe/frappe/__init__.py +889,App {0} is not installed,अनुप्रयोग {0} स्थापित नाही DocType: Workflow State,Refresh,रिफ्रेश DocType: Event,Public,सार्वजनिक apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,दर्शवण्यासाठी काही नाही @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,आवडले apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ई-मेल समर्थन DocType: DocField,Print Hide If No Value,जर मुल्य नसेल तर मुद्रण लपवा DocType: Event,yellow,पिवळा -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,फील्ड प्रकाशित आहे असणे आवश्यक आहे एक वैध FIELDNAME असेल +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,फील्ड प्रकाशित आहे असणे आवश्यक आहे एक वैध FIELDNAME असेल apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,संलग्नक अपलोड करा DocType: Block Module,Block Module,ब्लॉक विभाग apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,निर्यात साचा @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},आपण येथे नवीन खाते तयार केले गेले आहे {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,सूचना ईमेल apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,सूचना ईमेल -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ईमेल प्राप्तकर्ता (चे) प्रविष्ट करा +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ईमेल प्राप्तकर्ता (चे) प्रविष्ट करा DocType: Print Format,Verdana,व्हर्दाना DocType: Email Flag Queue,Email Flag Queue,ई-मेल ध्वजांकित करा रांग apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,खुल्या ओळखणे शक्य {0}. काहीतरी प्रयत्न करा. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,संदेश ID DocType: Property Setter,Field Name,फील्ड नाव apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite कॉन्फिगर केलेले नाही. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,किंवा -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,विभाग नाव ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,सुरू ठेवा +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,विभाग नाव ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,सुरू ठेवा DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,प्रमाणपत्र DocType: User,Tile,टाइल @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,सर्व दर्शवा DocType: Workflow State,Print,मुद्रण DocType: User,Restrict IP,आंतरजाल प्रतिबंधित +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,डॅशबोर्ड apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,या वेळी ई-मेल पाठवण्यास अक्षम apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,शोधा किंवा आदेश टाइप करा DocType: Communication,Timeline Name,टाइमलाइन नाव @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,विक्री मास्टर व apps/frappe/frappe/www/complete_signup.html +13,One Last Step,एक अंतिम चरण apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,दस्तऐवज प्रकाराचे नाव (DocType) आपण हे फील्ड दुवा साधला जाऊ इच्छित नाव. उदा ग्राहक DocType: User,Roles Assigned,भूमिका लागू -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,शोध मदत -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,शोध मदत +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,शोध मदत +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,शोध मदत DocType: Top Bar Item,Parent Label,पालक लेबल apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","आपले क्वेरी प्राप्त झाली आहे. आम्ही लवकरच परत प्रत्युत्तर दिले जाईल. आपण कोणत्याही अतिरिक्त माहिती असल्यास, ही मेल प्रत्युत्तर द्या." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,परवानगी मानक अहवाल आणि शोधात आपोआप अनुवादित आहेत. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,शीर्षक संपादित करा DocType: File,File URL,फाइल URL मध्ये DocType: Version,Table HTML,टेबल HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

परिणाम 'सापडला नाही

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,सदस्य जोडा apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,आज आगामी कार्यक्रम DocType: Email Alert Recipient,Email By Document Field,दस्तऐवज शेतात ईमेल @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,फील्ड आधारित र apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,सदस्य सामायिक करण्यासाठी अनिवार्य आहे DocType: DocField,Hidden,लपलेली DocType: Web Form,Allow Incomplete Forms,अपूर्ण फॉर्म परवानगी द्या -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} पहिल्या सेट करणे आवश्यक आहे +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} पहिल्या सेट करणे आवश्यक आहे apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",काही शब्दांचा वापर सामान्य वाक्ये टाळण्यासाठी. DocType: Workflow State,plane,विमान -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,अरेरे. आपले पेमेंट अयशस्वी झाले आहे. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","आपण नवीन रेकॉर्ड अपलोड करताना आढळल्यास, ""मालिका नामांकन"", अनिवार्य होते." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,आज Alerts प्राप्त +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,आज Alerts प्राप्त apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType फक्त प्रशासकाद्वारे नामकरण केले जाऊ शकते apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},या बदललेल्या मूल्य {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,कृपया सत्यापन आपला ईमेल तपासा -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,पट फॉर्म च्या शेवटी असू शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,पट फॉर्म च्या शेवटी असू शकत नाही DocType: Communication,Bounced,बाऊन्स DocType: Deleted Document,Deleted Name,हटविले नाव apps/frappe/frappe/config/setup.py +14,System and Website Users,प्रणाली आणि वेबसाइट वापरकर्ते @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,दस्तऐवज DocType: GSuite Templates,Destination ID,गंतव्य ID DocType: Desktop Icon,List,यादी DocType: Communication,Link Name,दुवा नाव -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,फील्ड {0} सलग {1} लपवले जाऊ शकत नाही आणि मुलभूत न अनिवार्य आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,फील्ड {0} सलग {1} लपवले जाऊ शकत नाही आणि मुलभूत न अनिवार्य आहे DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,अवैध पासवर्ड: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,अवैध पासवर्ड: DocType: Print Settings,Send document web view link in email,ई-मेल मध्ये दस्तऐवज वेब दृश्य लिंक पाठवा apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,दस्तऐवज आपला अभिप्राय {0} यशस्वीरित्या जतन केला आहे apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,मागील -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,पुन्हा: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,पुन्हा: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} साठी रांगा {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",उप-चलन. उदा "टक्के" साठी apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,अपलोड केलेली फाइल निवडा @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,दुवा apps/frappe/frappe/utils/file_manager.py +96,No file attached,कोणतीही फाइल संलग्न नाही DocType: Version,Version,आवृत्ती DocType: User,Fill Screen,स्क्रीन भरा -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","मुळे गहाळ डेटा हे tree अहवाल प्रदर्शित करण्यात अक्षम. बहुधा, झाल्यामुळे परवानगी बाहेर फिल्टर जात आहे." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,सेटअप> ईमेल> ईमेल खाते पासून कृपया मुलभूत ईमेल खाते +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","मुळे गहाळ डेटा हे tree अहवाल प्रदर्शित करण्यात अक्षम. बहुधा, झाल्यामुळे परवानगी बाहेर फिल्टर जात आहे." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. फाइल निवडा apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,अपलोड द्वारे संपादित करा -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","दस्तऐवज प्रकार ..., उदा ग्राहक" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","दस्तऐवज प्रकार ..., उदा ग्राहक" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,अट '{0}' अवैध आहे DocType: Workflow State,barcode,बारकोड apps/frappe/frappe/config/setup.py +232,Add your own translations,आपल्या स्वत: च्या भाषांतरे जोडा @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,बुधवारी apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","आमच्या भूमिका आधारित परवानगी नियम, आपण DocTypes आधारित वापरकर्ता परवानग्या अर्ज करू शकतात." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","या परवानग्या जेथे परवानगी रेकॉर्ड निगडीत आहे, त्या सर्व व्यवहाराना लागू होईल. कंपनी सी वापरकर्ता एक्स वापरकर्ताच्या परवानग्याना जोडले आहे उदाहरणार्थ, वापरकर्ता एक्स फक्त एक लिंक मूल्य म्हणून कंपनी सी आहे जे व्यवहार पाहण्यास सक्षम असेल." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,प्रतिमा फील्ड वैध FIELDNAME असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,प्रतिमा फील्ड वैध FIELDNAME असणे आवश्यक आहे DocType: OAuth Client,Token,टोकन DocType: Property Setter,ID (name) of the entity whose property is to be set,ज्या मालमत्ता घटकाचे आयडी (नाव) set करायचे आहे apps/frappe/frappe/limits.py +82,"To renew, {0}.",नूतनीकरण करण्यासाठी {0}. @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,साइडबार आयटम apps/frappe/frappe/installer.py +125,App {0} already installed,अनुप्रयोग {0} आधीपासूनच स्थापित DocType: Workflow State,exclamation-sign,उद्गार-चिन्ह apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,परवानग्या दर्शवा -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,टाइमलाइन क्षेत्रात दुवा किंवा डायनॅमिक लिंक असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,टाइमलाइन क्षेत्रात दुवा किंवा डायनॅमिक लिंक असणे आवश्यक आहे apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,तारीख श्रेणी apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},{1} चे पृष्ठ {0} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,वे apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","एनक्रिप्शन कळ अवैध आहे, कृपया site_config.json तपासा" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,करण्यासाठी DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},यशस्वी: {0} करण्यासाठी {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},यशस्वी: {0} करण्यासाठी {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,डेमो वापरकर्ता तपशील बदलू शकत नाही. https://erpnext.com एक नवीन खाते साठी साइन अप करा apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,बदल करण्यासाठी याला डुप्लिकेट करा apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,तुटलेल्या प्रतिमा links मुळे पीडीएफ पिढी/ generation अयशस्वी @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,संक्षिप्त apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,जतन apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,आपण मदत काय गरज आहे? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,निवडण्यासाठी पर्याय. नवीन ओळीवर प्रत्येक पर्याय. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,कायमचे रद्द {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,कायमचे रद्द {0}? DocType: Workflow State,music,संगीत DocType: Web Page,Settings,सेटिंग्ज apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,कृपया Doctype निर्दिष्ट करा DocType: Print Format,Style Settings,शैली सेटिंग्ज -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,शेत {0} क्रमवारी एक वैध FIELDNAME असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,शेत {0} क्रमवारी एक वैध FIELDNAME असणे आवश्यक आहे apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,आणखी DocType: Contact,Sales Manager,विक्री व्यवस्थापक apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,पुनर्नामित करा DocType: Print Format,Format Data,डेटा स्वरूप -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,प्रमाणे +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,प्रमाणे DocType: Customize Form Field,Customize Form Field,फॉर्म फील्ड सानुकूलित apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,सदस्य परवानगी द्या DocType: OAuth Client,Grant Type,अनुदान प्रकार apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,वापरकर्ता द्वारे वाचनीय आहेत ते दस्तऐवज तपासा apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,अनुप्रयोग सूची परवानगी नाही -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,वाइल्डकार्ड म्हणून% वापर -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",ईमेल डोमेन या खात्यात कॉन्फिगर एक तयार करा? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,वाइल्डकार्ड म्हणून% वापर +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",ईमेल डोमेन या खात्यात कॉन्फिगर एक तयार करा? DocType: User,Reset Password Key,पासवर्ड की रीसेट करा DocType: Email Account,Enable Auto Reply,ऑटो प्रत्युत्तर सक्षम करा. apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,पाहिले नाही @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,फक्त एकदा सेट DocType: Email Queue Recipient,Email Queue Recipient,ई-मेल रांग प्राप्तकर्ता DocType: Address,Nagaland,नागालँड apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,वापरकर्तानाव {0} आधिपासूनच अस्तित्वात आहे -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} आयात नाही म्हणून आयात सेट करू शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} आयात नाही म्हणून आयात सेट करू शकत नाही apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},तुमच्या पत्ता साचा {0} मधे त्रुटी आहे DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,पूर्ण नाव पासून apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},आपल्याला नोंद:{0} साठी प्रवेश नाही DocType: User,Send Welcome Email,स्वागत ईमेल पाठवा apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,डाउनलोड समान स्वरूपात सर्व वापरकर्ता परवानग्या असलेली CSV फाइल अपलोड करा. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,फिल्टर काढा +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,फिल्टर काढा DocType: Address,Daman and Diu,दमण आणि दीव DocType: Address,Personal,वैयक्तिक apps/frappe/frappe/config/setup.py +113,Bulk Rename,मोठ्या प्रमाणात नाव बदला @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","मानक DocType, मुलभूत प्रिंट स्वरूप असू शकत नाही सानुकूलित फॉर्म वापर" DocType: Report,Query,क्वेरी DocType: DocType,Sort Order,अनुक्रम -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'यादी पहा मध्ये' सलग प्रकार {0} परवानगी नाही {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'यादी पहा मध्ये' सलग प्रकार {0} परवानगी नाही {1} DocType: Custom Field,Select the label after which you want to insert new field.,ज्यानंतर नवीन क्षेत्रात समाविष्ट करायचे असेल ते लेबल निवडा. ,Document Share Report,दस्तऐवज अहवाल सामायिक करा DocType: User,Last Login,अखेरचे लॉगिन -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME सलग आवश्यक आहे {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME सलग आवश्यक आहे {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,स्तंभ DocType: Custom Field,Adds a custom field to a DocType,एक DocType एक सानुकूल फील्ड जोडते DocType: File,Is Home Folder,होम फोल्डर आहे @@ -594,7 +594,7 @@ DocType: File,Folder,फोल्डर DocType: DocField,Index,निर्देशांक DocType: Email Group,Newsletter Manager,वृत्तपत्र व्यवस्थापक apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,पर्याय 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,सर्व पोस्ट +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} करण्यासाठी {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,विनंत्या दरम्यान त्रुटिंचा लॉग apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} यशस्वीरित्या ईमेल गट जोडले गेले आहे. DocType: Address,Uttar Pradesh,उत्तर प्रदेश @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,दर्शक DocType: DocShare,Everyone,प्रत्येकजण DocType: Workflow State,backward,मागे -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: समान भूमिका, पातळी आणि {1} बरोबर फक्त एक नियमाची परवानगी आहे" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: समान भूमिका, पातळी आणि {1} बरोबर फक्त एक नियमाची परवानगी आहे" DocType: Email Queue,Add Unsubscribe Link,सदस्यता रद्द करणे दुवा जोडा apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,अद्याप कोणत्याही टिप्पण्या नाहीत. नवीन चर्चा सुरू. DocType: Workflow State,share,शेअर @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,पर apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,सदस्य पहा apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,श्रीमती DocType: Website Theme,Background Color,पार्श्वभूमी रंग -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ई-मेल पाठविताना त्रुटी होत्या. कृपया पुन्हा प्रयत्न करा. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ई-मेल पाठविताना त्रुटी होत्या. कृपया पुन्हा प्रयत्न करा. DocType: Portal Settings,Portal Settings,पोर्टल सेटिंग्ज DocType: Web Page,0 is highest,0 हा सर्वाधिक आहे apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,आपण {0} या संवाद पुन्हा दुवा करू इच्छित आहे का? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,आमच्याशी सं apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,शोध ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,शोध ... DocType: Workflow State,text-width,मजकूर-रुंदीचा -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,या रेकॉर्डसाठी कमाल संलग्न मर्यादा गाठली आहे. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,या रेकॉर्डसाठी कमाल संलग्न मर्यादा गाठली आहे. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,खालील अनिवार्य रकाने भरावे करणे आवश्यक आहे:
DocType: Email Alert,View Properties (via Customize Form),(सानुकूलित फॉर्म द्वारे) गुणधर्म पहा DocType: Note Seen By,Note Seen By,लक्षात ठेवा पाहिले @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,राजस्थान apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,अहवाल बिल्डर अहवाल अहवाल बांधकाम व्यावसायिकाने थेट व्यवस्थापित केले जातात. काही करायला नाही. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,आपला ई-मेल पत्ता सत्यापित करा apps/frappe/frappe/model/document.py +903,none of,एक पण नाही -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,मला एक कॉपी पाठवा +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,मला एक कॉपी पाठवा apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,वापरकर्ता परवानग्या अपलोड करा DocType: Dropbox Settings,App Secret Key,अनुप्रयोग गुप्त की apps/frappe/frappe/config/website.py +7,Web Site,वेब साईट apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,चेक-इन केले आयटम डेस्कटॉपवर दाखविले जाईल -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} सिंगल प्रकार करीता सेट केले जाऊ शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} सिंगल प्रकार करीता सेट केले जाऊ शकत नाही apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban मंडळ {0} अस्तित्वात नाही. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} सध्या या दस्तऐवज पहात आहेत DocType: ToDo,Assigned By Full Name,पूर्ण नाव नियुक्त apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} अद्ययावत -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,अहवाल सिंगल प्रकार करीता सेट केले जाऊ शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,अहवाल सिंगल प्रकार करीता सेट केले जाऊ शकत नाही apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} दिवसांपूर्वी DocType: Email Account,Awaiting Password,प्रतीक्षा करत आहे संकेतशब्द DocType: Address,Address Line 1,पत्ता ओळ 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","राज्यासाठी कार्यपद्धत (उदा ड्राफ्ट, मंजूर, रद्द)." DocType: Print Settings,Allow Print for Draft,मसुदा रताच ि ंट करा परवानगी द्या apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,सेट प्रमाण -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,पुष्टी करण्यासाठी या दस्तऐवज सादर +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,पुष्टी करण्यासाठी या दस्तऐवज सादर DocType: Contact,Unsubscribed,सदस्यता रद्द apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,पृष्ठ आणि अहवाल सानुकूल भूमिका सेट करा apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,रेटिंग: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,डेटा आयात साधन DocType: Address,Dadra and Nagar Haveli,दादरा आणि नगर हवेली apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,फाइल्स अपलोड काही सेकंद प्रतीक्षा करा. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,आपले चित्र संलग्न +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,आपले चित्र संलग्न apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,सलग मूल्ये बदलली DocType: Workflow State,Stop,थांबवा DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,आपण उघडू इच्छिता पृष्ठाचा दुवा. आपण ते एक गट पालक करायचा असेल तर रिक्त सोडा. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,डावीकडे करा DocType: Help Article,Expert,तज्ज्ञ DocType: Workflow State,circle-arrow-right,मंडळ-बाण-उजव्या DocType: LDAP Settings,LDAP Server Url,LDAP सर्व्हर URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,त्याच्या {0} उघडा असताना उदाहरणार्थ उघडू शकत नाही +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,त्याच्या {0} उघडा असताना उदाहरणार्थ उघडू शकत नाही apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,स्थापित रांगेत DocType: Custom DocPerm,Custom DocPerm,सानुकूल DocPerm DocType: Newsletter,Send Unsubscribe Link,सदस्यता रद्द करणे दुवा पाठवा @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,अनुप्रयोग {0} काढून DocType: Custom DocPerm,Apply User Permissions,वापरकर्ता परवानग्या लागू करा DocType: User,Modules HTML,HTML विभाग -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,सेटअप> वापरकर्ता परवानग्या व्यवस्थापक apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,गहाळ मूल्ये आवश्यक DocType: DocType,Other Settings,इतर सेटिंग्ज DocType: Social Login Keys,Frappe,Frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth बेअरर टोक apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,निवडलेला नाही दस्तऐवज apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,डॉ DocType: Event,Event,कार्यक्रम -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} वर, {1} ने लिहिले:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} वर, {1} ने लिहिले:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,मानक क्षेत्रात हटवू शकत नाही. आपण इच्छुक असल्यास आपण तो लपवू शकत नाही DocType: Top Bar Item,For top bar,Top बार साठी apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ओळखू शकत {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,डेस्क प्रवेश DocType: Workflow State,minus,उणे apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,सर्व्हर त्रुटी: आपल्या सर्व्हर लॉग तपासा किंवा तंत्रज्ञान समर्थनासाठी संपर्क साधा. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,स्वागत ईमेल पाठविले -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,प्रथम वापरासाठी प्रणाली तयार करू . +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,प्रथम वापरासाठी प्रणाली तयार करू . apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,वैशिष्ट्यीकृत apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,आधीच नोंदणीकृत DocType: System Settings,Float Precision,फ्लोट प्रिसिजन @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,प्रिंट परवानगी द्य apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,कोणतेही अॅप्स स्थापित नाहीत apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,फील्ड अनिवार्य म्हणून चिन्हांकित करा DocType: Communication,Clicked,क्लिक केले -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},'{0}' {1} ला परवानगी नाही +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},'{0}' {1} ला परवानगी नाही DocType: User,Google User ID,Google वापरकर्ता आयडी apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,पाठविण्यासाठी अनुसूचित DocType: DocType,Track Seen,ट्रॅक पाहिले @@ -838,7 +837,7 @@ DocType: Address,Kerala,केरळ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,एकाचवेळी सत्र DocType: OAuth Client,Client Credentials,क्लायंट ेय -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,एक विभाग किंवा साधन उघडा +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,एक विभाग किंवा साधन उघडा DocType: Communication,Delivery Status,वितरण स्थिती DocType: Module Def,App Name,अनुप्रयोग नाव apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,कमाल फाइल आकार परवानगी नाही {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,संदर्भ कम् DocType: Email Queue,Unsubscribe Method,सदस्यत्व रद्द करा पद्धत DocType: GSuite Templates,Related DocType,संबंधित DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,सामग्री जोडण्यासाठी संपादित करा -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,भाषा निवडा -apps/frappe/frappe/__init__.py +510,No permission for {0},{0} साठी परवानगी नाही +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,भाषा निवडा +apps/frappe/frappe/__init__.py +509,No permission for {0},{0} साठी परवानगी नाही DocType: DocType,Advanced,प्रगत apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API की दिसते किंवा API गुप्त चुकीचे आहे !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},संदर्भ: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,फॉर्म प्रकार प apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,कोणतीही रेकॉर्ड टॅग केले. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,फील्ड काढा DocType: User,Send Password Update Notification,संकेतशब्द अद्यतनित सूचना पाठवा -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DocType, DocType परवानगी. सावध रहा!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType परवानगी. सावध रहा!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","मुद्रण, ईमेल साठी सानुकूलित नमुने" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,नवीन आवृत्तीवर अद्यतनित DocType: Custom Field,Depends On,अवलंबून असते @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,एका पैकी apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,कृपया कॉपी करण्यासाठी फाइल निवडा apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,एक क्षण तपासणी apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,टॅग्ज दर्शवा +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","लागू करा कठोर वापरकर्त्यास परवानगी तपासली जाते आणि वापरकर्ता एक DocType वापरकर्ता परवानगी व्याख्या आहे, तर जेथे दुवा मूल्य रिक्त आहे सर्व दस्तऐवज, की वापरकर्ता दर्शविले जाणार नाही" DocType: Address,Billing,बिलिंग DocType: Email Queue,Not Sent,पाठविलेला नाही DocType: Web Form,Actions,क्रिया @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,स्पष apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,दररोजचे कार्यक्रम एकाच दिवशी पूर्ण केले पाहिजे. DocType: Communication,User Tags,सदस्य टॅग्ज apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,प्रतिमा आणत आहे .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,सेटअप> वापरकर्ता DocType: Workflow State,download-alt,डाउनलोड-Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},अॅप डाउनलोड {0} DocType: Communication,Feedback Request,अभिप्राय विनंती @@ -1013,7 +1014,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,बॅकअप apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,संपर्क जोडा DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,पर्यायी: नेहमी या आयडी वर पाठवा. नवीन पंक्ति प्रत्येक ई-मेल पत्ता -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,तपशील लपवा +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,तपशील लपवा DocType: Workflow State,Tasks,कार्ये DocType: Event,Tuesday,मंगळवारी DocType: Blog Settings,Blog Settings,ब्लॉग सेटिंग्ज @@ -1033,9 +1034,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,पायथाॅन फाइल ज्या फोल्डर मध्ये जतन केली आहे त्याच फोल्डर मधे लिहा आणि परिणाम म्हणून एक स्तंभ आणि परिणाम म्हणून परत करा . DocType: DocType,Sort Field,क्रमवारी लावा फील्ड DocType: Razorpay Settings,Razorpay Settings,Razorpay सेटिंग्ज -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,फिल्टर संपादित करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,{0} फील्ड {1} प्रकारच्या अनिवार्य असू शकत नाही -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","उदा. जर Apply User Permissions अहवाल DocType साठी तपासला असेल परंतु कोणताही वापरकर्ता परवानग्या वापरकर्ता अहवालासाठी लागू केलेल्या नाहीत , तर तुमचा सर्व अहवाल वापरकर्त्यांना दर्शविले आहेत" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,फिल्टर संपादित करा +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,{0} फील्ड {1} प्रकारच्या अनिवार्य असू शकत नाही apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,जोडा अधिक apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,चार्ट लपवा DocType: System Settings,Session Expiry Mobile,सत्र कालावधी समाप्ती मोबाइल @@ -1050,6 +1050,7 @@ DocType: Communication,Delayed,विलंब apps/frappe/frappe/config/setup.py +128,List of backups available for download,डाउनलोड करण्यासाठी उपलब्ध बॅकअप यादी apps/frappe/frappe/www/login.html +89,Sign up,साइन अप करा DocType: Test Runner,Output,उत्पादन +DocType: Email Alert,Set Property After Alert,अॅलर्ट केल्यानंतर मालमत्ता सेट करा apps/frappe/frappe/config/setup.py +226,Add fields to forms.,फॉर्म फील्ड जोडा. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,असे दिसते या साइटच्या पेपल संरचना चुकीचे आहे. DocType: File,rgt,rgt @@ -1057,6 +1058,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,पाने/leaf DocType: Portal Menu Item,Portal Menu Item,पोर्टल मेन्यू घटक DocType: User Email,Email ID,ई-मेल आयडी +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","अहवाल DocType तपासला आहे परंतु कोणताही वापरकर्ता परवानग्या एक वापरकर्ता साठी अहवाल व्याख्या आहेत वापरकर्ता परवानग्या लागू करा, तर सर्व अहवाल की वापरकर्ता दर्शविले आहेत" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,क्लायंट अनुप्रयोग वापरकर्ता परवानगी नंतर प्रवेश असेल संसाधने यादी.
उदा प्रकल्प DocType: Translation,Translated Text,अनुवादित मजकूर DocType: Contact Us Settings,Query Options,क्वेरी पर्याय @@ -1074,7 +1076,7 @@ DocType: Address,Contacts,संपर्क DocType: System Settings,Setup Complete,सेटअप पूर्ण apps/frappe/frappe/config/setup.py +66,Report of all document shares,सर्व दस्तऐवज शेअर अहवाल apps/frappe/frappe/www/update-password.html +18,New Password,नवीन पासवर्ड -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,फिल्टर {0} गहाळ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,फिल्टर {0} गहाळ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,क्षमस्व! आपण स्वयं-व्युत्पन्न टिप्पण्या हटवू शकत नाही DocType: Website Theme,Style using CSS,CSS वापरलेली शैली apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,संदर्भ DocType @@ -1128,7 +1130,7 @@ DocType: User,Block Modules,ब्लॉक मॉड्यूल apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,एकूण परत {0} साठी '{1}' मध्ये '{2}'; परत लांबी {3} सेट केल्यामुळे डेटा ट्रंकेशन होऊ होईल. DocType: Print Format,Custom CSS,सानुकूल CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,एक टिप्पणी जोडा -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},दुर्लक्ष: {0} करण्यासाठी {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},दुर्लक्ष: {0} करण्यासाठी {1} DocType: Address,Gujarat,गुजरात apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,स्वयंचलित घटनांवरील त्रुटी लॉग ( शेड्युलर ) apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),एक वैध स्वल्पविरामाने विभक्त केलेले मूल्य (CSV फाइल) @@ -1137,7 +1139,7 @@ DocType: Email Account,Default Incoming,मुलभूत येणार्य DocType: Workflow State,repeat,पुनरावृत्ती DocType: Website Settings,Banner,बॅनर DocType: Role,"If disabled, this role will be removed from all users.","अक्षम केले असल्यास, ही भूमिका सर्व वापरकर्त्यांकडून काढून टाकले जाईल." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,शोध मदत +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,शोध मदत apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,नोंदणीकृत परंतु अकार्यान्वीत DocType: DocType,Hide Copy,कॉपी लपवा apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,सर्व भूमिका साफ करा @@ -1169,7 +1171,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,देश apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,पत्ते DocType: Communication,Shared,सामायिक -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,दस्तऐवज प्रिंट संलग्न +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,दस्तऐवज प्रिंट संलग्न DocType: Bulk Update,Field,फील्ड DocType: Communication,Received,प्राप्त DocType: Social Login Keys,Google Client ID,Google ग्राहक ID @@ -1190,12 +1192,12 @@ DocType: Report,Query Report,क्वेरी अहवाल DocType: User,Set New Password,नवीन संकेतशब्द सेट करा DocType: User,Github User ID,Github वापरकर्ता आयडी apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,दस्तऐवज प्रकार असेल तर -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","हटवू किंवा {0} रद्द करू शकत नाही {1} दुवा साधला आहे {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","हटवू किंवा {0} रद्द करू शकत नाही {1} दुवा साधला आहे {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},अज्ञात अॅप {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S वैध अहवाल स्वरूपात नाही. अहवाल स्वरूप खालील% s च्या एक \ पाहिजे DocType: Communication,Chat,गप्पा -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} पंक्ती मध्ये अनेक वेळा आढळते {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} पंक्ती मध्ये अनेक वेळा आढळते {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} पासून {1} {2} मध्ये सलग # करण्यासाठी {3} DocType: Communication,Expired,कालबाह्य DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),एक ग्रिड क्षेत्र स्तंभ संख्या (ग्रिड मध्ये एकूण स्तंभ पेक्षा कमी 11 असले पाहिजे) @@ -1205,30 +1207,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,एक खाते apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},अज्ञात प्रिंट स्वरूप: {0} DocType: Workflow State,arrow-down,बाण-खाली apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,संकुचित करा -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},वापरकर्ता हटवण्यासाठी परवानगी नाही {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},वापरकर्ता हटवण्यासाठी परवानगी नाही {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,अखेरचे रोजी अद्यतनित DocType: Help Article,Likes,आवडी DocType: Website Settings,Top Bar,शीर्ष बार DocType: GSuite Settings,Script Code,स्क्रिप्ट कोड apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,वापरकर्ता ईमेल तयार करा apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,वापरकर्ता ईमेल तयार करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,कोणतीही परवानगी निर्दिष्ट +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,कोणतीही परवानगी निर्दिष्ट apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,वैश्विक सेटिंग्ज: वापरकर्ते केवळ चेक चिन्ह निवडण्याकरीता सक्षम असेल apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} आढळले नाही DocType: Custom Role,Custom Role,सानुकूल भूमिका apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,मुख्यपृष्ठ / कसोटी फोल्डर 2 DocType: System Settings,Ignore User Permissions If Missing,"गहाळ असल्यास, वापरकर्ता परवानग्या दुर्लक्ष करा" -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,अपलोड करण्यापूर्वी दस्तऐवज जतन करा. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,अपलोड करण्यापूर्वी दस्तऐवज जतन करा. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,आपला संकेतशब्द प्रविष्ट करा DocType: Dropbox Settings,Dropbox Access Secret,ड्रॉपबॉक्स प्रवेश गुपित apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,आणखी टिप्पणी जोडा apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DocType संपादित करा apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,वृत्तपत्रातून आपली सदस्यता रद्द -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,पट एक विभाग ब्रेक पूर्वी आला पाहिजे +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,पट एक विभाग ब्रेक पूर्वी आला पाहिजे apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,करून अंतिम सुधारित DocType: Workflow State,hand-down,हात-खाली DocType: Address,GST State,'जीएसटी' राज्य -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: रद्द करा सादर केल्याशियाय सेट करू शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: रद्द करा सादर केल्याशियाय सेट करू शकत नाही DocType: Website Theme,Theme,थीम apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,तेथे त्रुटी होत्या. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI प्रमाणिकरण कोड बांधील पुनर्निर्देशित @@ -1247,7 +1249,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,म DocType: Website Theme,Text Color,मजकूर रंग DocType: Desktop Icon,Force Show,शक्ती दाखवा apps/frappe/frappe/auth.py +78,Invalid Request,अवैध विनंती -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,या फॉर्मला कोणतेही इनपुट नाही +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,या फॉर्मला कोणतेही इनपुट नाही apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},सत्र कालावधी समाप्ती {0} स्वरूपात असणे आवश्यक आहे DocType: Website Sidebar Item,Group,गट DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","target = ""_blank"" एक नवीन पृष्ठ मध्ये उघडण्यासाठी निवडा." @@ -1256,7 +1258,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,त्रुटी एन्कोडिंग दुर्लक्ष करा. DocType: Workflow State,wrench,पाना apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,सेट नाही -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,सेटअप> वापरकर्ता DocType: Authentication Log,Date,तारीख DocType: Website Settings,Disable Signup,साइन अप अक्षम करा apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"तुमची प्रणाली सेटअप केले जात आहे, तर खिळून बसा,. या काही क्षण लागू शकतात." @@ -1267,7 +1268,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,टिप्पणी जोडा DocType: DocField,Mandatory,बंधनकारक apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,निर्यात करण्यासाठी विभाग -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: कोणतेही मूलभूत परवानगी संच +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: कोणतेही मूलभूत परवानगी संच apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,आपल्या सदस्यता रोजी कालबाह्य होत आहे {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},बॅकअप डाउनलोड लिंक खालील ईमेल पत्त्यावर ईमेल केली जाईल: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","रद्द करा, सबमिट , दुरुस्ती करण्याचा अर्थ" @@ -1280,11 +1281,11 @@ DocType: Desktop Icon,query-report,क्वेरी-अहवाल apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},नियुक्त {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,फिल्टर जतन DocType: DocField,Percent,टक्के -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,फिल्टर सेट करा +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,फिल्टर सेट करा apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,लिंक DocType: Workflow State,book,पुस्तक DocType: Website Settings,Landing Page,लँडिंग पृष्ठ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,सानुकूल स्क्रिप्ट त्रुटी +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,सानुकूल स्क्रिप्ट त्रुटी apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} नाव apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","आयात विनंती रांगेत. ही काही मिनिटे लागू शकतात, कृपया धीर धरा." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,या मापदंडासाठी परवानग्या सेट केलेल्या नाहीत . @@ -1296,7 +1297,7 @@ DocType: System Settings,Allow Login using Mobile Number,मोबाइल क apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,आपल्याला हे संसाधन प्रवेश करण्यासाठी पुरेशी परवानगी नाही. प्रवेश प्राप्त करण्यासाठी आपल्या व्यवस्थापकाशी संपर्क साधा. DocType: Custom Field,Custom,सानुकूल apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,विविध निकषांवर आधारित सेटअप ई-मेल अॅलर्ट. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},{0} अंतर्गत दाखल केली पोस्ट +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},{0} अंतर्गत दाखल केली पोस्ट DocType: Email Alert,Send alert if date matches this field's value,तारीख या क्षेत्रात चे मूल्य जुळत असल्याचे अॅलर्ट पाठवा DocType: Workflow,Transitions,संक्रमणे apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} काढा आणि सर्व डेटा देखील हटवायचा? @@ -1305,9 +1306,8 @@ DocType: User,Login After,लॉग-इन केल्यानंतर DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,मुद्रण DocType: Workflow State,thumbs-up,लघुप्रतिमांशी-अप -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते नाही सेटअप. एक नवीन ईमेल खाते सेटअप> ईमेल> ईमेल खाते तयार करा कृपया DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,सुस्पष्टता 1 आणि 6 च्या दरम्यान असावी +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,सुस्पष्टता 1 आणि 6 च्या दरम्यान असावी apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,आणि DocType: Error Snapshot,Frames,फ्रेम @@ -1316,7 +1316,7 @@ DocType: About Us Team Member,Image Link,प्रतिमा दुवा DocType: Auto Email Report,Report Filters,अहवाल फिल्टर्स apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,आता DocType: Workflow State,step-backward,चरण-मागे -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,आपली साइट संरचना मध्ये ड्रॉपबॉक्स प्रवेश कळा सेट करा apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,या ईमेल पत्त्यावर पाठवून परवानगी देण्यासाठी हे रेकॉर्ड हटवा apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,फक्त अनिवार्य शेतात नवीन रेकॉर्डसाठी आवश्यक आहेत. आपली इच्छा असेल तर आपण न-अनिवार्य स्तंभ हटवू शकता. @@ -1338,8 +1338,7 @@ DocType: File,Is Attachments Folder,संलग्नक फोल्डर आ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,सर्व विस्तृत करा apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,वैध लॉग-इन id आवश्यक. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,पुन्हा उघडा -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,आपण पेमेंट रद्द केली आहेत -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,कृपया वैध सी एस व्ही फाइल डेटासह निवडा +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,कृपया वैध सी एस व्ही फाइल डेटासह निवडा apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ने हे दस्तऐवज {1} बरोबर रद्द सामायिक केले आहे apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,दस्तऐवज स्थिती संक्रमणाला {0} पासून {1} पर्यंत परवानगी नाही DocType: DocType,"Make ""name"" searchable in Global Search","नाव" करा ग्लोबल शोध शोध @@ -1352,7 +1351,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,म DocType: Help Category,Help Category,मदत वर्ग apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,सदस्य {0} अक्षम आहे apps/frappe/frappe/www/404.html +8,Page missing or moved,पृष्ठ गहाळ किंवा हलविले -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,संपादित करा {0} गुणधर्म DocType: DocType,Route,मार्ग apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay पेमेंट गेटवे सेटिंग्ज DocType: DocField,Name,नाव @@ -1360,8 +1358,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,दस्तऐवज शोधा apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,दस्तऐवज शोधा DocType: OAuth Authorization Code,Valid,वैध -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,दुवा उघडा -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,तुमची भाषा +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,दुवा उघडा +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,तुमची भाषा apps/frappe/frappe/desk/form/load.py +46,Did not load,लोड होत नाही apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,रो जोडा DocType: Tag Category,Doctypes,Doctypes @@ -1376,7 +1374,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,अभिप DocType: Address,Lakshadweep Islands,लक्षद्वीप apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,लिहू शकता apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","काही दस्तऐवज, जसे एक चलन, एकदा अंतिम केल्यावर बदलली जाऊ नये. अशा दस्तऐवजांच्या अंतिम राज्यांना सबमिट म्हणतात. आपण कोणत्या भूमिका सादर करू शकता त्यांना प्रतिबंधित करू शकता." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,आपल्याला या अहवालात निर्यात करण्याची परवानगी नाही +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,आपल्याला या अहवालात निर्यात करण्याची परवानगी नाही apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 आयटम निवडले DocType: Newsletter,Test Email Address,कसोटी ई-मेल पत्ता DocType: ToDo,Sender,प्रेषक @@ -1411,7 +1409,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,.zip आयात apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,दस्तऐवज ID DocType: Print Settings,Letter,पत्र -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,प्रतिमा फील्ड प्रकार असणे आवश्यक आहे प्रतिमा संलग्न +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,प्रतिमा फील्ड प्रकार असणे आवश्यक आहे प्रतिमा संलग्न DocType: DocField,Columns,स्तंभ DocType: Async Task,Succeeded,यशस्वी झाले apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},आवश्यक फील्ड {0} मधे आवश्यक आहे @@ -1461,7 +1459,7 @@ DocType: DocField,Text Editor,पाठ्य संपादक apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,आमच्या बद्दल पृष्ठ सेटिंग्ज. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,संपादित करा सानुकूल HTML DocType: Error Snapshot,Error Snapshot,त्रुटी तपशील -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,मध्ये +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,मध्ये DocType: Email Alert,Value Change,मूल्य बदला DocType: Standard Reply,Standard Reply,मानक प्रत्युत्तर apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,इनपुट बॉक्स रूंदी @@ -1477,12 +1475,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,शीर्षक निर्माण करण्यासाठी हे FIELDNAME वापरा apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,ईमेल पासून आयात apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,वापरकर्ता म्हणून आमंत्रित करा -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,जोडणी निवडा +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,जोडणी निवडा apps/frappe/frappe/model/naming.py +94, for {0},साठी {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,त्रुटी होत्या. तक्रार करा. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,आपल्याला हा दस्तऐवज मुद्रण करण्यासाठी परवानगी नाही +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,आपल्याला हा दस्तऐवज मुद्रण करण्यासाठी परवानगी नाही apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,फिल्टर अहवाल टेबल फिल्टर मूल्य सेट करा. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,लोड करीत आहे अहवाल +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,लोड करीत आहे अहवाल apps/frappe/frappe/limits.py +72,Your subscription will expire today.,आपल्या सदस्यता आज कालबाह्य होईल. DocType: Page,Standard,मानक apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,फाइल संलग्न @@ -1512,7 +1510,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,प्रादेशिक विस्तार DocType: LDAP Settings,Base Distinguished Name (DN),बेस प्रतिष्ठीत नाव (एन) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,हे संभाषण सोडा -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},link field {0} साठी पर्याय सेट केलेले नाहीत +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},link field {0} साठी पर्याय सेट केलेले नाहीत DocType: Customize Form,"Must be of type ""Attach Image""",प्रकारच्या असणे आवश्यक आहे "प्रतिमा संलग्न" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,सर्वअचयनीतकरा apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},आपण field सेट केलेले नाही {0} साठी 'केवळ वाचनीय' करू शकता @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,टीप apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,त्रुटी अहवाल apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,अभिप्राय अटी जुळत नाही -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,टाइमलाइन फील्ड वैध FIELDNAME असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,टाइमलाइन फील्ड वैध FIELDNAME असणे आवश्यक आहे DocType: Currency,Symbol,प्रतीक -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,रो # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,रो # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,नवीन पासवर्ड ई-मेल apps/frappe/frappe/auth.py +245,Login not allowed at this time,या वेळी लॉगीन करण्याची परवानगी नाही DocType: Email Account,Email Sync Option,ईमेल समक्रमण पर्याय @@ -1579,7 +1577,7 @@ DocType: DocField,Text,मजकूर apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,मानक सामान्य क्वेरी उत्तर देतो. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,मुलभूत पाठवत आहे DocType: Workflow State,volume-off,खंड-बंद -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},द्वारा आवडलेले {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},द्वारा आवडलेले {0} DocType: Footer Item,Footer Item,तळटीप बाबींचा ,Download Backups,डाउनलोड Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,मुख्यपृष्ठ / कसोटी फोल्डर 1 @@ -1614,7 +1612,7 @@ DocType: Web Page,Text Align,मजकूर संरेखित apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},नावात {0} सारखे विशेष वर्ण असू शकत नाहीत DocType: Contact Us Settings,Forward To Email Address,फॉरवर्ड ईमेल पत्त्यावर apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,सर्व डेटा दर्शवा -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,शीर्षक फील्ड वैध FIELDNAME असणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,शीर्षक फील्ड वैध FIELDNAME असणे आवश्यक आहे apps/frappe/frappe/config/core.py +7,Documents,दस्तऐवज DocType: Email Flag Queue,Is Completed,पूर्ण apps/frappe/frappe/www/me.html +22,Edit Profile,प्रोफाईल संपादित करा @@ -1624,8 +1622,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",येथे परिभाषित FIELDNAMEला मूल्य आहे किंवा नियम खरे आहेत (उदाहरणे) तरच या क्षेत्रात दिसून येईल: myfield eval: doc.myfield == 'माझे मूल्य' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,आज -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,आज +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,आज +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,आज apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","आपण या सेट एकदा सेट केल्यावर , वापरकर्ते केवळ प्रवेश दस्तऐवज वापरू शकतात (उदा. ब्लॉग) जेथे लिंक अस्तित्वात असते (उदा. ब्लॉगर)." DocType: Error Log,Log of Scheduler Errors,अनुसूची त्रुटी लॉग DocType: User,Bio,जैव @@ -1649,6 +1647,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 स्टार जात सर्वात कमी आणि 5 तारे सर्वोच्च रेटिंग जात DocType: Event,Ref Name,संदर्भ नाव DocType: Web Page,Center,केंद्र +DocType: Email Alert,Value To Be Set,मूल्य सेट करणे apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,प्रथम स्तर DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,स्थिती बदलण्यात नियुक्त एक दस्तऐवज आणि भूमिका परवानगी राज्ये प्रतिनिधित्व करतो. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,रिफ्रेश फॉर्म @@ -1669,18 +1668,18 @@ DocType: DocType,Has Web View,वेब पहा आहे apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType नाव एक पत्र सुरू करावी आणि तो फक्त अक्षरे, अंक, मोकळी जागा आणि अडरस्कोअर असू शकतात" DocType: Communication,Spam,स्पॅम DocType: Integration Request,Integration Request,एकत्रीकरण विनंती -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,प्रिय +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,प्रिय DocType: Address,Maharashtra,महाराष्ट्र DocType: Address,Accounts User,वापरकर्ता खाती DocType: Web Page,HTML for header section. Optional,शीर्षलेख विभागासाठी HTML. पर्यायी apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,हे वैशिष्ट्य प्रायोगिक नवीन आणि अजूनही आहे -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,कमाल {0} पंक्तींची परवानगी आहे +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,कमाल {0} पंक्तींची परवानगी आहे DocType: Email Unsubscribe,Global Unsubscribe,जागतिक सदस्यत्व रद्द करा apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,हा एक अतिशय सामान्य पासवर्ड आहे. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,पहा DocType: Communication,Assigned,नियुक्त DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,प्रिंट स्वरूप निवडा +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,प्रिंट स्वरूप निवडा apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,लहान कीबोर्ड नमुन्यांची अंदाज लावणे सोपे आहे DocType: Portal Settings,Portal Menu,पोर्टल मेनू apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} लांबी 1 आणि 1000 दरम्यान असावे @@ -1719,7 +1718,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,वापरकर्त्याच्या शोध करू शकत नाही apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,अवैध आउटपुट स्वरूप DocType: Custom DocPerm,Apply this rule if the User is the Owner,सदस्य मालक असेल तर हा नियम लागू करा -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,आपले लॉगिन आयडी काय असेल +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,आपले लॉगिन आयडी काय असेल apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,अहवाल तयार करा DocType: Note,Notify users with a popup when they log in,ते मध्ये लॉग इन करताना एक पॉपअप वापरकर्ते सूचित करा apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} हे अस्तित्वात नाही, विलीन कारणयास एक नवीन लक्ष्य नीवडा" @@ -1738,17 +1737,18 @@ DocType: User Permission for Page and Report,Roles Permission,भूमिका apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,अद्यतन DocType: Error Snapshot,Snapshot View,स्नॅपशॉट पहा apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,पाठविण्यापूर्वी वृत्तपत्र जतन करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},पर्याय सलग क्षेत्रात {0} एक वैध DocType असणे आवश्यक आहे {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} वर्ष (s) ago +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},पर्याय सलग क्षेत्रात {0} एक वैध DocType असणे आवश्यक आहे {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,गुणधर्म संपादित करा DocType: Patch Log,List of patches executed,पॅच यादी अंमलात apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} आधीपासूनच सदस्यता रद्द -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,संवाद मध्यम +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,संवाद मध्यम DocType: Website Settings,Banner HTML,बॅनर HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',कृपया दुसरी देयक पद्धत निवडा. Razorpay चलन व्यवहार समर्थन देत नाही '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,बॅकअप साठी रांगेत. तो एक तास काही मिनिटे लागू शकतात. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,OAuth क्लायंट अनुप्रयोग नोंदणी -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} असू शकत नाही ""{2}"". हे एक असेच असावे ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} असू शकत नाही ""{2}"". हे एक असेच असावे ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} किंवा {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,डेस्कटॉप चिन्ह दर्शवा किंवा लपवा apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,संकेतशब्द अद्यतनित @@ -1775,7 +1775,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,लाइन शो विभाग नंतर तोडल्या DocType: Blogger,Short Name,लघु नाव apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},पृष्ठ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","आपण सर्व समक्रमण पर्याय निवडून जातात, तो सर्व्हरवर सर्व \ वाचा तसेच न वाचलेले संदेश पुन्हा समक्रमित करा होईल. हे देखील कम्युनिकेशन (ईमेल) च्या दुप्पट \ होऊ शकते." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,फायली आकार @@ -1787,6 +1787,7 @@ DocType: Contact,Purchase Manager,खरेदी व्यवस्थापक DocType: Custom Script,Sample,नमुना apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised टॅग्ज DocType: Event,Every Week,प्रत्येक आठवडा +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ईमेल खाते नाही सेटअप. एक नवीन ईमेल खाते सेटअप> ईमेल> ईमेल खाते तयार करा कृपया apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,आपला वापर तपासा किंवा उच्च योजना सुधारणा करण्यासाठी येथे क्लिक करा DocType: Custom Field,Is Mandatory Field,अनिवार्य फील्ड आहे DocType: User,Website User,वेबसाइट सदस्य @@ -1810,16 +1811,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,सानुकूल साइडबार मेनू DocType: Workflow State,pencil,पेन्सिल apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,गप्पा संदेश आणि इतर सूचना -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},नंतर समाविष्ट केल्यानंतर {0} म्हणून सेट केली जाऊ शकत नाही +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},नंतर समाविष्ट केल्यानंतर {0} म्हणून सेट केली जाऊ शकत नाही apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,सामायिक करा {0} सह apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ई-मेल खाते सेटअप आपला संकेतशब्द प्रविष्ट करा: DocType: Workflow State,hand-up,हात-अप DocType: Blog Settings,Writers Introduction,लेखक परिचय DocType: Address,Phone,फोन -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ई-मेल अॅलर्ट {0} करताना त्रुटी मूल्यांकन. आपले टेम्प्लेट निराकरण करा. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ई-मेल अॅलर्ट {0} करताना त्रुटी मूल्यांकन. आपले टेम्प्लेट निराकरण करा. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,दस्तऐवज टाइप निवडा किंवा भूमिका सुरू करण्यासाठी. DocType: Contact,Passive,निष्क्रीय DocType: Contact,Accounts Manager,खाते व्यवस्थापक +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,आपले देयक रद्द केले आहे. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,निवडा फाइल प्रकार DocType: Help Article,Knowledge Base Editor,नॉलेज बेस संपादक apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,पृष्ठ आढळले नाही @@ -1847,6 +1849,7 @@ DocType: Property Setter,Property Type,मालमत्ता प्रका DocType: Workflow State,screenshot,स्क्रीनशॉट apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,फक्त प्रशासक मानक अहवाल जतन करू शकता. नाव बदला आणि जतन करा. DocType: System Settings,Background Workers,पार्श्वभूमी कामगार +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} मेटा ऑब्जेक्ट संघर्ष DocType: Deleted Document,Data,डेटा apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,दस्तऐवज स्थिती apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},आपण केले आहे {0} च्या {1} @@ -1871,7 +1874,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,वापरकर्ता परवानग्या दर्शवा apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,तुम्ही लॉग-इन होणे आवश्यक आहे आणि बॅकअप प्रवेश करण्यात सक्षम होऊ प्रणाली व्यवस्थापक भूमिका असण्याची आवश्यकता आहे. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,उर्वरित -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,संलग्न करण्यापूर्वी जतन करा. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,संलग्न करण्यापूर्वी जतन करा. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),जोडले {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},मुलभूत थीम सेट आहे {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} पासून {1} पर्यंत बदलले जाऊ शकत नाही सलग {2} मधे @@ -1892,11 +1895,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,सत् apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,सत्र प्रारंभ अयशस्वी apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},हा ई-मेल {0} पाठविला आणि {1} ला कॉपी केला होता DocType: Workflow State,th,व्या -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,सेटअप> ईमेल> ईमेल खाते पासून कृपया मुलभूत ईमेल खाते -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},एक नवीन {0} तयार करा +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},एक नवीन {0} तयार करा DocType: Email Rule,Is Spam,स्पॅम आहे apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},अहवाल {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ओपन {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ओपन {0} DocType: OAuth Client,Default Redirect URI,मुलभूत पुनर्निर्देशन URI DocType: Email Alert,Recipients,प्राप्तकर्ता DocType: Workflow State,ok-sign,ठीक-चिन्ह @@ -1914,6 +1916,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,मदत लेख ,Modules Setup,विभाग सेटअप apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,प्रकार: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,आपले देयक अयशस्वी झाले आहे. DocType: Communication,Unshared,सामायिक DocType: Address,Karnataka,कर्नाटक apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,विभाग सापडले नाही @@ -1961,7 +1964,7 @@ DocType: Website Settings,Brand Image,उत्पादन चित्र DocType: Print Settings,A4,ए 4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","टॉप नेव्हिगेशन बार, तळटीप आणि लोगो सेटअप." DocType: Web Form Field,Max Value,कमाल मूल्य -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},कारण {0} मध्ये पातळी {1} येथे {2} सलग {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},कारण {0} मध्ये पातळी {1} येथे {2} सलग {3} DocType: Contact,All,सर्व DocType: Email Queue,Recipient,प्राप्तकर्ता DocType: Communication,Has Attachment,संलग्नक आहे @@ -1978,7 +1981,8 @@ DocType: Workflow State,align-right,संरेखित-योग्य DocType: Auto Email Report,Email To,ई-मेल apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,फोल्डर {0} रिक्त नाही DocType: Page,Roles,भूमिका -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,फील्ड {0} निवडजोगी नाही. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},त्रुटी: मूल्य गहाळ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,फील्ड {0} निवडजोगी नाही. DocType: System Settings,Session Expiry,सत्र कालावधी समाप्ती DocType: Workflow State,ban-circle,बंदी-मंडळ DocType: Email Flag Queue,Unread,न वाचलेले @@ -1993,7 +1997,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,सदस्य डीफॉल्ट apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,नवीन तयार करा DocType: Workflow State,chevron-down,शेवरॉन -खाली -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),पाठविले नाही ईमेल {0} (अक्षम / सदस्यत्व रद्द) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),पाठविले नाही ईमेल {0} (अक्षम / सदस्यत्व रद्द) DocType: Async Task,Traceback,ट्रेसबॅक DocType: Currency,Smallest Currency Fraction Value,लहान चलन अपूर्णांक मूल्य apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,नोंदवू @@ -2004,12 +2008,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,पासून DocType: Website Theme,Google Font (Heading),Google फॉन्ट (शीर्षक) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,प्रथम एक गट नोड निवडा. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{1} मधील {0} शोधा +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{1} मधील {0} शोधा DocType: OAuth Client,Implicit,पूर्ण DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(""स्थिती"", ""विषय"" हे फील्ड असणे आवश्यक आहे ) या DocType विरुद्ध संपर्क जोडा" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","वापरकर्ता प्रवेश संमत एकदा प्राधिकृत करणे कोड प्राप्त, तसेच अपयश प्रतिसाद URIs. विशेषत: एक विश्रांती अंत्यबिंदू ग्राहक अनुप्रयोग उघड.
उदा http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,सादर केल्यानंतर {0} बदलण्याची परवानगी नाही +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,सादर केल्यानंतर {0} बदलण्याची परवानगी नाही DocType: Communication,Comment Type,टिप्पणी प्रकार DocType: OAuth Client,OAuth Client,OAuth क्लायंट apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,वापरकर्ते @@ -2024,7 +2028,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,फिल्टर डेटा DocType: Auto Email Report,Filter Data,फिल्टर डेटा apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,एक टॅग जोडा -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,प्रथम एक फाइल संलग्न करा. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,प्रथम एक फाइल संलग्न करा. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","नाव सेटिंग करताना काही त्रुटी होत्या, कृपया प्रशासकाशी संपर्क करा" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,येणारे ईमेल खाते योग्य नाही apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2039,11 +2043,11 @@ DocType: Blog Post,Email Sent,ई-मेल पाठविले DocType: DocField,Ignore XSS Filter,XSS फिल्टर दुर्लक्ष apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,काढून apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ड्रॉपबॉक्स बॅक अप सेटिंग्ज -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ई-मेल पाठवा +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ई-मेल पाठवा DocType: Website Theme,Link Color,दुवा रंग apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,सदस्य {0} अक्षम करणे शक्य नाही apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","प्रिय प्रणाली व्यवस्थापक," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,आपला देश +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,आपला देश DocType: Event,Sunday,रविवारी apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ग्रिड दृश्य मध्ये DocType: Address Template,Template,साचा @@ -2051,7 +2055,7 @@ DocType: Address,Delhi,दिल्ली apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP सेटिंग्ज apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,दुरूस्ती apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,पोपल पेमेंट गेटवे सेटिंग्ज -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) परवानगी कमाल वर्ण आहे, काटले होईल {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) परवानगी कमाल वर्ण आहे, काटले होईल {2}" DocType: OAuth Client,Resource Owner Password Credentials,मालक पासवर्ड ेय स्रोत DocType: OAuth Client,Response Type,प्रतिसाद प्रकार apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,कमाल वापरकर्ते @@ -2068,7 +2072,7 @@ DocType: DocField,Table,टेबल DocType: File,File Size,फाइल आकार apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,आपण हा फॉर्म सबमिट करण्यासाठी लॉग इन करणे आवश्यक DocType: User,Background Image,पार्श्वभूमी प्रतिमा -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","आपला देश, टाइम झोन, आणि चलन निवडा" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","आपला देश, टाइम झोन, आणि चलन निवडा" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,दरम्यान DocType: Async Task,Queued,रांगेत आहे @@ -2077,6 +2081,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,तयार करा apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},अवैध फिल्टर: {0} DocType: Email Account,no failed attempts,नाही अयशस्वी प्रयत्न +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,डीफॉल्ट पत्ता साचा आढळले. सेटअप> मुद्रण आणि ब्रँडिंग> पत्ता साचा एक नवीन तयार करा. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,अनुप्रयोग प्रवेश की DocType: OAuth Bearer Token,Access Token,प्रवेश टोकन @@ -2094,8 +2099,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github वापरकर्तानाव DocType: DocType,Image View,प्रतिमा पहा apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","काहीतरी व्यवहार चूक झाली असे दिसते. आम्ही पैसे पुष्टी केलेली नाही आहे, पेपल आपोआप ही रक्कम परत करेल. जर ती करत नाही, कृपया आम्हाला ईमेल पाठवा आणि परस्परसंबंध आयडी उल्लेख: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","प्रतीक, संख्या आणि पासवर्ड राजधानी अक्षरे समाविष्ट करा" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","शेतात '{0}' सानुकूल फील्ड मध्ये नमूद केलेल्या केल्यानंतर समाविष्ट करा '{1}', लेबल असलेल्या '{2}' अस्तित्वात नाही" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","प्रतीक, संख्या आणि पासवर्ड राजधानी अक्षरे समाविष्ट करा" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","शेतात '{0}' सानुकूल फील्ड मध्ये नमूद केलेल्या केल्यानंतर समाविष्ट करा '{1}', लेबल असलेल्या '{2}' अस्तित्वात नाही" DocType: Workflow State,signal,सिग्नल DocType: DocType,Show Print First,दर्शवा प्रिंट प्रथम apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + पोस्ट प्रविष्ट करा @@ -2126,14 +2131,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,फाइल '{0}' आढळले नाही apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,कलम काढा DocType: User,Change Password,पासवर्ड बदला -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},अवैध ई-मेल: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,हॅलो! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},अवैध ई-मेल: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,हॅलो! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,कार्यक्रम समाप्त सुरुवातीनंतर असणे आवश्यक आहे apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},आपल्याला एक अहवाल {0} वर प्राप्त करण्याची परवानगी नाही: +DocType: System Settings,Apply Strict User Permissions,कठोर वापरकर्ता परवानग्या लागू करा DocType: DocField,Allow Bulk Edit,मोठ्या प्रमाणात संपादित करा परवानगी द्या DocType: DocField,Allow Bulk Edit,मोठ्या प्रमाणात संपादित करा परवानगी द्या DocType: Blog Post,Blog Post,ब्लॉग पोस्ट -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,प्रगत शोध +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,प्रगत शोध apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,पासवर्ड रीसेट सूचना ई-मेलद्वारे पाठविण्यात आले आहे apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","लेव्हल 0 दस्तऐवज स्तर परवानग्या, \ उच्च स्तर क्षेत्रीय स्तरावर परवानग्या आहे." @@ -2152,16 +2158,15 @@ DocType: Web Page,Sidebar and Comments,साइडबार आणि टिप apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","आपण एक दस्तऐवजामध्ये सुधारणा करतो आणि नंतर तो रद्द करतो आणि जतन करतो , तेव्हा एक नवीन नंबर मिळेल जो जुना नंबरची एक आवृत्ती आहे." DocType: Stripe Settings,Publishable Key,Publishable की DocType: Stripe Settings,Publishable Key,Publishable की -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} वर्ष (s) ago DocType: Workflow State,circle-arrow-left,मंडळ-बाण डावीकडे apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis कॅशे सर्व्हरचे चालत नाही. प्रशासक / तंत्रज्ञान समर्थनाशी संपर्क साधा apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,पार्टी नाव -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,नवीन रेकॉर्ड करा +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,नवीन रेकॉर्ड करा apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,शोध apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,शोध DocType: Currency,Fraction,अपूर्णांक DocType: LDAP Settings,LDAP First Name Field,LDAP नाव फील्ड -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,विद्यमान संलग्नक निवडा +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,विद्यमान संलग्नक निवडा DocType: Custom Field,Field Description,फील्ड वर्णन apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,प्रॉम्प्ट द्वारे नाव सेट होऊ शकत नाही apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ई-मेल इनबॉक्स @@ -2207,11 +2212,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,माहिती: DocType: Custom Field,Permission Level,परवानगी स्तर DocType: User,Send Notifications for Transactions I Follow,मी अनुसरण करत असलेल्या व्यवहार सूचना पाठवा -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: सबमिट करा, रद्द करा, न लिहिता दुरुस्ती केल्याशिवाय सेट करू शकत नाही" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: सबमिट करा, रद्द करा, न लिहिता दुरुस्ती केल्याशिवाय सेट करू शकत नाही" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,तुम्ही संलग्नक हटवू इच्छिता आपल्याला खात्री आहे? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","हटवू किंवा {0} रद्द करू शकत नाही {1} दुवा साधला आहे {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

परिणाम 'सापडला नाही

-apps/frappe/frappe/__init__.py +1063,Thank you,धन्यवाद +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","हटवू किंवा {0} रद्द करू शकत नाही {1} दुवा साधला आहे {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,धन्यवाद apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,जतन करीत आहे DocType: Print Settings,Print Style Preview,मुद्रण प्रिंट पूर्वावलोकन apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2223,10 +2227,10 @@ DocType: DocField,In List View,सूची पहा DocType: Email Account,Use TLS,TLS वापरा apps/frappe/frappe/email/smtp.py +24,Invalid login or password,अवैध लॉगिन किंवा पासवर्ड apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,फॉर्म सानुकूल JavaScript जोडा. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,सीनियर क्रमांक +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,सीनियर क्रमांक ,Role Permissions Manager,भूमिका परवानगी व्यवस्थापक apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,नवीन मुद्रण स्वरूप नाव -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,संलग्नक स्पष्ट +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,संलग्नक स्पष्ट apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,अनिवार्य: ,User Permissions Manager,वापरकर्ता परवानग्या व्यवस्थापक DocType: Property Setter,New value to be set,नवीन मूल्य सेट करणे @@ -2256,26 +2260,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 द apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ब्लॉग पोस्ट वर्गीकरण. DocType: Workflow State,Time,वेळ DocType: DocField,Attach,संलग्न करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} हा FIELDNAME चा नमुना बरोबर नाही . हा असाच असावा. {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} हा FIELDNAME चा नमुना बरोबर नाही . हा असाच असावा. {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,असेल तर किमान एक संवाद दस्तऐवज उपलब्ध आहे अभिप्राय विनंती पाठवा. DocType: Custom Role,Permission Rules,परवानगी नियम DocType: GSuite Settings,GSuite Settings,GSuite सेटिंग्ज DocType: Address,Links,दुवे -apps/frappe/frappe/model/base_document.py +428,Value missing for,मूल्य गहाळ +apps/frappe/frappe/model/base_document.py +427,Value missing for,मूल्य गहाळ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,child जोडा -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: सादर नोंद हटविले जाऊ शकत नाही. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: सादर नोंद हटविले जाऊ शकत नाही. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,बॅकअप आकार DocType: GSuite Templates,Template Name,साचा नाव -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,दस्तऐवजाचा नवीन प्रकार +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,दस्तऐवजाचा नवीन प्रकार DocType: Custom DocPerm,Read,वाचा DocType: Role Permission for Page and Report,Role Permission for Page and Report,पेज आणि अहवाल भूमिका परवानगी apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,मूल्य संरेखित करा apps/frappe/frappe/www/update-password.html +14,Old Password,जुना संकेतशब्द -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},द्वारा पोस्ट केलेले {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},द्वारा पोस्ट केलेले {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","स्वरूप स्तंभ करण्यासाठी, क्वेरी स्तंभ लेबल द्या." DocType: Has Domain,Has Domain,डोमेन आहे apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,खाते नाही? साइन अप करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर पद्धत बदला +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: सेट करू शकत नाही वाटप Submittable नाही तर पद्धत बदला DocType: Address,Bihar,बिहार apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,भूमिका परवानग्या संपादित करा DocType: Communication,Link DocType,दुवा DocType @@ -2374,7 +2378,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,आपल्या प्रोफाइलला ई-मेल पत्ता आहे याची खात्री करा apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,आपण हा फॉर्म जतन न केलेले बदल आहेत. आपण सुरू ठेवण्यापूर्वी जतन करा. DocType: Address,Telangana,तेलंगणा -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} एक पर्याय असणे आवश्यक आहे डीफॉल्ट +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} एक पर्याय असणे आवश्यक आहे डीफॉल्ट DocType: Tag Doc Category,Tag Doc Category,टॅग दस्तऐवज वर्ग DocType: User,User Image,वापरकर्ता प्रतिमा apps/frappe/frappe/email/queue.py +289,Emails are muted,ईमेल नि: शब्द आहेत @@ -2407,7 +2411,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,पुढ DocType: Workflow State,ok,ठीक DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ही मूल्ये आपोआप व्यवहार अद्ययावत केले जाईल आणि ही मूल्ये असलेले व्यवहार या वापरकर्त्यासाठी परवानग्या प्रतिबंधित करण्यासाठी उपयोगी होईल. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,प्रकाशक -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** अयशस्वी: {0} पासून {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** अयशस्वी: {0} पासून {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,अनिवार्य निवडा apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ब्राउझ करा apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ई-मेल पाठविले @@ -2419,7 +2423,7 @@ DocType: Async Task,Running,चालू apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,पासवर्ड रीसेट करा apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,अधिक {0} सदस्य जोडण्यासाठी श्रेणीसुधारित करा DocType: Workflow State,hand-left,हात-बाकी -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} साठी अनन्य असू शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} साठी अनन्य असू शकत नाही DocType: Email Account,Use SSL,SSL वापरा DocType: Workflow State,play-circle,प्ले-मंडळ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,संपादित करण्यासाठी मुद्रण स्वरूप निवडा @@ -2474,7 +2478,7 @@ DocType: DocField,No Copy,कॉपी नाही DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP लॉग इन करा DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,मालक असेल तर +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,मालक असेल तर DocType: OAuth Authorization Code,Expiration time,कालावधी समाप्ती वेळ DocType: Web Page,Website Sidebar,वेबसाईट साइडबार DocType: Web Form,Show Sidebar,साइडबार दर्शवा @@ -2494,7 +2498,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},शोधू श apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,नावे आणि स्वत: आडनाव अंदाज लावणे सोपे आहे. apps/frappe/frappe/config/website.py +93,Knowledge Base,पायाभूत माहिती DocType: Workflow State,briefcase,लहानश्या सुटकेस -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},मूल्य बदलले जाऊ शकत नाही {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},मूल्य बदलले जाऊ शकत नाही {0} DocType: Feedback Request,Is Manual,मॅन्युअल आहे DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","शैली बटण रंग प्रतिनिधित्व करते : यशस्वी - हिरवा, धोका - लाल, व्यस्त - काळा, प्राथमिक - गडद निळा, माहिती - प्रकाश निळा, सावधानता - संत्रा" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,अहवाल लोड केले नाहीत . कृपया एक अहवाल चालवण्यासाठी क्वेरी-अहवाल/[अहवाल नाव] वापरा. @@ -2572,7 +2576,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,प्रग apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,भूमिका apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,गहाळ फील्ड apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,अवैध FIELDNAME '{0}' autoname मध्ये -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,दस्तऐवज प्रकार मधे शोधा +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,दस्तऐवज प्रकार मधे शोधा apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,शेत अगदी सादर केल्यानंतर संपादन करता राहण्यासाठी परवानगी द्या DocType: Custom DocPerm,Role and Level,भूमिका आणि स्तर DocType: File,Thumbnail URL,लघुप्रतिमा URL @@ -2589,19 +2593,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(CTRL + G) DocType: Contact,More Information,अधिक माहिती DocType: Desktop Icon,Desktop Icon,डेस्कटॉप चिन्ह -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,आपले देयक यशस्वीपणे स्वीकारले होते +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,आपले देयक यशस्वीपणे स्वीकारले होते apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,क्षमस्व! आपल्याला हे पृष्ठ पाहण्यास परवानगी नाही. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,टीप: संपादित करण्यासाठी क्लिक करा सेल डबल DocType: Workflow State,bell,घंटा apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ई-मेल अॅलर्ट त्रुटी apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ई-मेल अॅलर्ट त्रुटी apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,हे दस्तऐवज सामायिक करा +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,सेटअप> वापरकर्ता परवानग्या व्यवस्थापक apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} हे एक पान नोड असू शकत नाही DocType: Communication,Info,माहिती -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,संलग्नक जोडा +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,संलग्नक जोडा DocType: Communication,Email,ईमेल apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,आपला संदेश धन्यवाद -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,पावती वाचा पाठवा +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,पावती वाचा पाठवा DocType: Stripe Settings,Stripe Settings,पट्टी सेटिंग्ज DocType: Stripe Settings,Stripe Settings,पट्टी सेटिंग्ज DocType: Dropbox Settings,Dropbox Setup via Site Config,साइट कॉन्फिगरेशन द्वारे ड्रॉपबॉक्स सेटअप @@ -2668,6 +2673,7 @@ DocType: DocType,Web View,वेब पहा apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,चेतावणी: हे मुद्रण स्वरूप जुन्या शैलीचे आहे आणि API द्वारे निर्माण होऊ शकत नाही. DocType: DocField,Print Width,मुद्रण रूंदी ,Setup Wizard,सेटअप सहाय्यक +DocType: Address,GST State Number,'जीएसटी' राज्य क्रमांक DocType: User,Allow user to login only before this hour (0-24),वापरकर्ता केवळ या तास आधी लॉग इन करण्यासाठी (0-24) अनुमती द्या apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,फोल्डर अनिवार्य आहे apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2696,7 +2702,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,लहान मजकूर apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,प्रशासक प्रवेश {0} वर {1} IP पत्ता द्वारे {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,बरोबर -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType','डायनॅमिक लिंक' प्रकार फील्ड 'DocType' पर्याय म्हणून दुसरीकडे दुवा फील्ड सूचित करणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType','डायनॅमिक लिंक' प्रकार फील्ड 'DocType' पर्याय म्हणून दुसरीकडे दुवा फील्ड सूचित करणे आवश्यक आहे DocType: About Us Settings,Team Members Heading,टीम सदस्य शीर्षक apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,अवैध सी स्वरूप apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,साठवत क्रमांक सेट करा @@ -2707,7 +2713,7 @@ DocType: Contact,Contact,संपर्क DocType: User,Third Party Authentication,थर्ड पार्टी प्रमाणीकरण DocType: Website Settings,Banner is above the Top Menu Bar.,बॅनर शीर्ष मेनू बार वर आहे. DocType: Razorpay Settings,API Secret,एपीआय गुपित -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,निर्यात अहवाल: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,निर्यात अहवाल: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} अस्तित्वात नाही DocType: Email Account,Port,पोर्ट DocType: Print Format,Arial,एरियल @@ -2730,7 +2736,7 @@ DocType: Kanban Board Column,Column Name,स्तंभ नाव DocType: Language,Based On,आधारित apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,डीफॉल्ट बनवा apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe सर्व्हर URL तपासा -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} साठी अनुक्रमित जाऊ शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} साठी अनुक्रमित जाऊ शकत नाही DocType: Communication,Email Account,ईमेल खाते DocType: Workflow State,Download,डाउनलोड DocType: Blog Post,Blog Intro,Intro ब्लॉग @@ -2741,7 +2747,7 @@ DocType: Web Page,Insert Code,घाला कोड DocType: ToDo,Low,कमी apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,आपण Jinja templating वापरून दस्तऐवज पासून डायनॅमिक गुणधर्म जोडू शकता. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},अवैध मर्यादा {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,दस्तऐवज प्रकार सूची +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,दस्तऐवज प्रकार सूची DocType: Event,Ref Type,संदर्भ प्रकार apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","आपण नवीन रेकॉर्ड अपलोड करीत असल्यास, "नाव" (आयडी) स्तंभ रिक्त सोडा." DocType: Address,Chattisgarh,छत्तीसगड @@ -2763,26 +2769,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDF म्हणून प्रिंट पाठवा DocType: Web Form,Amount,रक्कम DocType: Workflow Transition,Allowed,परवानगी -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,एक फॉर्म मध्ये फक्त एक Fold असू शकतो +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,एक फॉर्म मध्ये फक्त एक Fold असू शकतो apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},फाइल स्वरूप लिहिण्यास असमर्थ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,डीफॉल्ट सेटिंग्ज परत? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,अवैध मुख्यपृष्ठ पृष्ठ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,अवैध करा. पुन्हा प्रयत्न करा. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},सलग दुवा किंवा टेबल प्रकार फिल्ड {0} आवश्यक पर्याय {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},सलग दुवा किंवा टेबल प्रकार फिल्ड {0} आवश्यक पर्याय {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},सलग दुवा किंवा टेबल प्रकार फिल्ड {0} आवश्यक पर्याय {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},सलग दुवा किंवा टेबल प्रकार फिल्ड {0} आवश्यक पर्याय {1} DocType: Auto Email Report,Send only if there is any data,कोणताही डेटा आहे तर फक्त पाठवा apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,फिल्टर्स रीसेट करा -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: उच्च पातळी सेट करण्यापूर्वी लेव्हल 0 परवानगी सेट करणे आवश्यक आहे +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: उच्च पातळी सेट करण्यापूर्वी लेव्हल 0 परवानगी सेट करणे आवश्यक आहे apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},असाइनमेंट बंद {0} DocType: Integration Request,Remote,दूरस्थ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,गणना +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,गणना apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,कृपया पहिले DocType निवडा apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,आपला ई-मेल पुष्टी करा apps/frappe/frappe/www/login.html +42,Or login with,किंवा लॉगिन DocType: Error Snapshot,Locals,लोकल apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},संप्रेषित द्वारे {0} वर {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} एक टिप्पणी आपला उल्लेख केला आहे {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदा (55 + 434) / 4 किंवा = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,उदा (55 + 434) / 4 किंवा = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} आवश्यक आहे DocType: Integration Request,Integration Type,एकत्रीकरण प्रकार DocType: Newsletter,Send Attachements,Attachements पाठवा @@ -2792,15 +2798,15 @@ DocType: DocField,Perm Level,पर्म स्तर apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,आजच्या कॅलेंडर मध्ये आगामी कार्यक्रम DocType: Web Page,Web Page,वेब पृष्ठ DocType: Blog Category,Blogger,ब्लॉगर -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ग्लोबल शोध घ्या' प्रकार परवानगी नाही {0} सलग {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,सूची दृश्य -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},तारीख स्वरूपात असणे आवश्यक आहे: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},तारीख स्वरूपात असणे आवश्यक आहे: {0} DocType: Workflow,Don't Override Status,स्थिती अधिलिखित करू नका apps/frappe/frappe/www/feedback.html +90,Please give a rating.,रेटिंग द्या. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} अभिप्राय विनंती apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,शोध संज्ञा -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,प्रथम वापरकर्ता: आपण +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,प्रथम वापरकर्ता: आपण apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,स्तंभ निवडा DocType: Translation,Source Text,स्रोत मजकूर apps/frappe/frappe/www/login.py +55,Missing parameters for login,लॉग इन साठी गहाळ मापदंड @@ -2823,7 +2829,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,आयात DocType: ToDo,Assigned By,द्वारे नियुक्त apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,फील्ड वर पातळी सेट करण्यासाठी सानुकूलित फॉर्म वापरू शकता. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,आपला प्रदेश निवडा +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,आपला प्रदेश निवडा DocType: Custom DocPerm,Level,स्तर DocType: Custom DocPerm,Report,अहवाल apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,रक्कम 0 पेक्षा जास्त असणे आवश्यक आहे. @@ -2843,7 +2849,7 @@ DocType: Website Theme,Background,पार्श्वभूमी DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","वापरकर्ता परवानग्या लागू करण्यासाठी वापरलेल्या DocTypes च्या JSON यादी. रिक्त असल्यास, सर्व लिंक DocTypes वापरकर्ता परवानग्या लागू करण्यासाठी वापरले जाईल." DocType: Report,Ref DocType,संदर्भ DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,कृपया रेटिंग जोडा -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: सेट करू शकत नाही न बदलणे रद्द करा +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: सेट करू शकत नाही न बदलणे रद्द करा apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,पूर्ण पृष्ठ DocType: DocType,Is Child Table,Child टेबल आहे apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} हा {1} मधला एक असणे आवश्यक आहे @@ -2858,7 +2864,7 @@ DocType: Website Slideshow,This goes above the slideshow.,या स्लाई apps/frappe/frappe/config/setup.py +260,Install Applications.,अनुप्रयोग स्थापित. DocType: Contact,Last Name,गेल्या नाव DocType: Event,Private,खाजगी -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,आज अॅलर्ट +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,आज अॅलर्ट DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF म्हणून ईमेल प्रिंट जोडणी पाठवा (शिफारस केलेले) DocType: Web Page,Left,डावीकडे DocType: Event,All Day,सर्व दिवस @@ -2872,7 +2878,7 @@ DocType: Event,Send an email reminder in the morning,सकाळी एक ई DocType: Blog Post,Published On,रोजी प्रकाशित DocType: Contact,Gender,लिंग apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,अनिवार्य माहिती गहाळ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,फील्ड '{0}' तो न अद्वितीय मुल्य आहे म्हणून युनिक म्हणून सेट केली जाऊ शकत नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,फील्ड '{0}' तो न अद्वितीय मुल्य आहे म्हणून युनिक म्हणून सेट केली जाऊ शकत नाही apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,फक्त 200 दाखल एक विनंती परवानगी DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,संदर्भ प्रकार @@ -2885,7 +2891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,चेतावणी-चिन्ह DocType: Workflow State,User,सदस्य DocType: Website Settings,"Show title in browser window as ""Prefix - title""","""पूर्वपद - शीर्षक"" म्हणून शीर्षक ब्राउझर विंडोमध्ये दर्शवा" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,दस्तऐवज प्रकार मजकूर +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,दस्तऐवज प्रकार मजकूर apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,चालवा कसोटी apps/frappe/frappe/handler.py +91,Logged Out,लॉग आउट apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,अधिक ... @@ -2911,13 +2917,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,सध्या पहात DocType: DocField,Default,मुलभूत apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} जोडले -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',शोधा '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',शोधा '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,पहिल्या अहवाल जतन करा apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ग्राहक जोडले apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,नाही DocType: Workflow State,star,स्टार -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,मूल्ये स्वल्पविरामाने विभक्त केलेले -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},सलग {0} मधे चलन प्रकारा साठी मॅक्स रूंदी 100px आहे +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,मूल्ये स्वल्पविरामाने विभक्त केलेले +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},सलग {0} मधे चलन प्रकारा साठी मॅक्स रूंदी 100px आहे apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},साठी आपला अभिप्राय सामायिक करा {0} apps/frappe/frappe/config/website.py +13,Content web page.,सामग्री वेब पृष्ठ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,एक नवीन भूमिका जोडा @@ -2936,7 +2942,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,एक वैध LDAP वापरकर्ता नाही apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} हे वैध राज्य नाही apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',कृपया दुसरी देयक पद्धत निवडा. पोपल चलन व्यवहार समर्थन देत नाही '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,शोध क्षेत्रात {0} वैध नाही +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,शोध क्षेत्रात {0} वैध नाही DocType: Workflow State,ok-circle,ठीक-मंडळ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',आपण 'ग्राहक मध्ये संत्रा शोधण्यासाठी' विचारून गोष्टी शोधू शकता apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,क्षमस्व! सदस्य त्यांच्या स्वत: च्या रेकॉर्डला पूर्ण प्रवेश असणे आवश्यक आहे. @@ -2997,7 +3003,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,मेटा फिल्टर DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,हा फॉर्म वेब पृष्ठ आहे तर मजकूर वेब पृष्ठ लिंक प्रदर्शित करा . लिंक मार्ग आपोआप page_name` आणि `` parent_website_route` वर आधारित तयार होईल DocType: Feedback Request,Feedback Trigger,अभिप्राय कारक -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,प्रथम {0} सेट करा +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,प्रथम {0} सेट करा DocType: Unhandled Email,Message-id,संदेश आयडी DocType: Patch Log,Patch,ठिगळ DocType: Async Task,Failed,अयशस्वी diff --git a/frappe/translations/ms.csv b/frappe/translations/ms.csv index 42f3e890b6..9a2f75470f 100644 --- a/frappe/translations/ms.csv +++ b/frappe/translations/ms.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Nama pengguna Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Pelbagai sesi akan dibenarkan dalam kes peranti mudah alih apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Membolehkan peti masuk e-mel untuk pengguna {pengguna} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Tidak boleh menghantar e-mel ini. Anda telah melintasi had penghantaran {0} emel untuk bulan ini. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Secara kekal Hantar {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Secara kekal Hantar {0}? DocType: Address,County,Daerah DocType: Workflow,If Checked workflow status will not override status in list view,Jika status aliran kerja Diperiksa tidak akan mengatasi status dalam paparan senarai apps/frappe/frappe/client.py +280,Invalid file path: {0},Laluan fail tidak sah: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Sila pi apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,Pokok {0} DocType: User,User Emails,E-mel pengguna DocType: User,Username,Nama pengguna -apps/frappe/frappe/model/base_document.py +581,Value too big,Nilai terlalu besar +apps/frappe/frappe/model/base_document.py +580,Value too big,Nilai terlalu besar DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Jabatan @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Balak DocType: Custom DocPerm,This role update User Permissions for a user,Update peranan Kebenaran pengguna untuk pengguna apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Nama semula {0} DocType: Workflow State,zoom-out,zum keluar -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Tidak dapat membuka {0} apabila contoh yang dibuka +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Tidak dapat membuka {0} apabila contoh yang dibuka apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Jadual {0} tidak boleh kosong apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Dengan Lejar apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Images DocType: Communication,Reference Owner,rujukan Owner DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Kecil unit beredar pecahan (duit syiling). Contohnya 1 sen sebanyak US $ dan ia perlu dimasukkan sebagai 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Sila berikan nama penuh a. apps/frappe/frappe/model/document.py +904,Beginning with,Bermula dengan apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Data Import Template @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Ibu Bapa DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jika didayakan, kekuatan kata laluan akan dikuatkuasakan berdasarkan nilai Kata laluan Skor Minimum. A nilai 2 yang sederhana kuat dan 4 yang sangat kuat." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jika didayakan, kekuatan kata laluan akan dikuatkuasakan berdasarkan nilai Kata laluan Skor Minimum. A nilai 2 yang sederhana kuat dan 4 yang sangat kuat." DocType: About Us Settings,"""Team Members"" or ""Management""","Ahli-ahli Pasukan" atau "Pengurusan" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Default untuk jenis 'Semak' di padang mestilah sama ada '0' atau '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Default untuk jenis 'Semak' di padang mestilah sama ada '0' atau '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Semalam DocType: Contact,Designation,Jawatan DocType: Test Runner,Test Runner,Ujian Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Adalah Published Field DocType: Email Group,Email Group,e-mel Group DocType: Note,Seen By,Dilihat oleh apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,menambah Pelbagai -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Bukan seperti +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Bukan seperti apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Terletak label paparan untuk lapangan apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nilai yang tidak betul: {0} mesti {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Sifat perubahan lapangan (sembunyi, baca sahaja, kebenaran dan lain-lain)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Tetapan u apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Pentadbir Logged Dalam DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Pilihan kenalan, seperti "Jualan Pertanyaan, Sokongan Query" dan lain-lain setiap pada baris baru atau dipisahkan dengan tanda koma." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Memuat turun -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Pilih {0} DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,Warna @@ -122,7 +122,7 @@ DocType: Translation,Translation,terjemahan apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Memasang apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,Pelanggan -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Borang ini telah diubah suai selepas anda telah dimuatkan +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Borang ini telah diubah suai selepas anda telah dimuatkan DocType: User Permission for Page and Report,User Permission for Page and Report,Kebenaran pengguna untuk Page dan Laporan DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Jika tidak ditetapkan, ketepatan mata wang akan bergantung kepada format nombor" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Sebab apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Sila nyatakan pengguna DocType: Email Unsubscribe,Email Unsubscribe,E-mel Batal langganan DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Pilih imej lebar lebih kurang 150px dengan latar belakang telus untuk hasil yang terbaik. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Pengguna yang pertama akan menjadi Pengurus Sistem (anda boleh menukarnya kemudian). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Pengguna yang pertama akan menjadi Pengurus Sistem (anda boleh menukarnya kemudian). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,bulatan-anak panah-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Memuat naik ... DocType: Email Domain,Email Domain,e-mel Domain DocType: Workflow State,italic,italik apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Untuk semua orang -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Tidak boleh menetapkan Import tanpa Cipta +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Tidak boleh menetapkan Import tanpa Cipta apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Acara dan kalendar lain. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Semua medan yang perlu untuk hantar komen. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Seret untuk menyusun lajur @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Tidak dapat memadam Rumah dan Lampiran folder apps/frappe/frappe/config/desk.py +19,Files,Files apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Kebenaran mendapatkan digunakan pada Pengguna berdasarkan apa Peranan mereka ditugaskan. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Anda tidak dibenarkan untuk menghantar e-mel yang berkaitan dengan dokumen ini -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Sila pilih atleast 1 lajur dari {0} untuk menyusun / kumpulan +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Anda tidak dibenarkan untuk menghantar e-mel yang berkaitan dengan dokumen ini +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Sila pilih atleast 1 lajur dari {0} untuk menyusun / kumpulan DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Semak ini jika anda sedang menguji pembayaran menggunakan API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Anda tidak dibenarkan untuk memadam Laman Web Tema standard DocType: Feedback Trigger,Example,Contoh @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Jumlah Pelanggan apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jika Peranan yang tidak mempunyai akses di Tingkat 0, maka tahap yang lebih tinggi adalah tidak bermakna." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Simpan sebagai DocType: Communication,Seen,Dilihat -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Menunjukkan maklumat lanjut +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Menunjukkan maklumat lanjut DocType: System Settings,Run scheduled jobs only if checked,Main pekerjaan dijadualkan hanya jika diperiksa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Hanya akan dipaparkan jika tajuk bahagian didayakan apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkib @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Sembunyikan Tajuk DocType: Address,Current,Semasa DocType: Address,Current,Semasa -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Dokumen berkaitan apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Kumpulan DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,menghilangkan bulatan @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Penapis apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} tidak boleh mempunyai aksara khas seperti {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Kemas kini banyak nilai pada satu masa. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Ralat: Dokumen telah diubah suai setelah anda membukanya -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No Templat lalai Alamat found. Sila buat yang baru dari Persediaan> Printing and Branding> Alamat Template. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} log keluar: {1} DocType: Address,West Bengal,Bengal Barat -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak boleh menetapkan Berikan Hantar jika tidak Boleh Hantar +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Tidak boleh menetapkan Berikan Hantar jika tidak Boleh Hantar DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Ditapis oleh "{0}" DocType: Salutation,Administrator,Pentadbir @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog Title apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,peranan standard tidak boleh dimatikan DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Surat Berita -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Tidak boleh menggunakan sub-pertanyaan di perintah oleh +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Tidak boleh menggunakan sub-pertanyaan di perintah oleh DocType: Web Form,Button Help,butang Bantuan DocType: Kanban Board Column,purple,ungu DocType: About Us Settings,Team Members,Ahli-ahli pasukan @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Dapatkan ava apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Langganan anda telah tamat pada {0}. Untuk memperbaharui, {1}." DocType: Workflow State,plus-sign,campur-tanda apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Persediaan sudah lengkap -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} tidak dipasang +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} tidak dipasang DocType: Workflow State,Refresh,Muat semula DocType: Event,Public,Awam apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Tiada apa-apa untuk menunjukkan @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Disukai Oleh apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Sokongan e-mel DocType: DocField,Print Hide If No Value,Cetak Menyembunyikan Jika Tiada Nilai DocType: Event,yellow,kuning -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Adalah Published Field perlu menjadi FIELDNAME yang sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Adalah Published Field perlu menjadi FIELDNAME yang sah apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Naik Lampiran DocType: Block Module,Block Module,Sekat Modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Template Eksport @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Akaun baru telah dibuat untuk anda di {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,arahan yang dihantar ke email apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,arahan yang dihantar ke email -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Masukkan Penerima E-mel (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Masukkan Penerima E-mel (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mel Flag Giliran apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Tidak dapat mengenal pasti terbuka {0}. Cuba sesuatu yang lain. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,mesej ID DocType: Property Setter,Field Name,Nama Field apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite tidak dikonfigurasi. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,atau -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nama modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Teruskan +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nama modul ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Teruskan DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,sijil DocType: User,Tile,Tile @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Tunjukkan semua Versi DocType: Workflow State,Print,Cetak DocType: User,Restrict IP,Menyekat IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Tidak dapat menghantar e-mel pada masa ini apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Cari atau taip arahan DocType: Communication,Timeline Name,Nama Timeline @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Master Sales Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Selangkah lepas apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nama Jenis Dokumen (DOCTYPE) anda mahu bidang ini ada kaitan dengan. contohnya Pelanggan DocType: User,Roles Assigned,Peranan Ditugaskan -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,search Bantuan -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,search Bantuan +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,search Bantuan +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,search Bantuan DocType: Top Bar Item,Parent Label,Ibu Bapa Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Pertanyaan anda telah diterima. Kami akan menjawab balik tidak lama lagi. Jika anda mempunyai apa-apa maklumat tambahan, sila balas e-mel ini." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Kebenaran secara automatik diterjemahkan kepada Laporan Standard dan Carian. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Tajuk DocType: File,File URL,URL fail DocType: Version,Table HTML,Jadual HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Tiada hasil ditemui untuk '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Tambah Pelanggan apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Kegiatan mendatang untuk Hari DocType: Email Alert Recipient,Email By Document Field,E-mel Dengan Dokumen Field @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Jumlah Berasaskan Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Pengguna adalah mandatori bagi Share DocType: DocField,Hidden,Tersembunyi DocType: Web Form,Allow Incomplete Forms,Benarkan Borang yang tidak lengkap -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} mesti ditetapkan dahulu +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} mesti ditetapkan dahulu apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Menggunakan beberapa perkataan, mengelakkan frasa biasa." DocType: Workflow State,plane,kapal terbang -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Pembayaran anda telah gagal. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jika anda memuat naik rekod baru, "Penamaan Siri" menjadi wajib, jika ada." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Dapatkan Peringatan untuk Hari ini +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Dapatkan Peringatan untuk Hari ini apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE hanya boleh dinamakan semula oleh Pentadbir apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},nilai berubah {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Sila semak email anda untuk pengesahan -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Kali ganda tidak boleh berada di akhir bentuk +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Kali ganda tidak boleh berada di akhir bentuk DocType: Communication,Bounced,Melantun DocType: Deleted Document,Deleted Name,Nama dipadam apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistem dan Laman Web Pengguna @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumen dalam Baris G DocType: GSuite Templates,Destination ID,ID Destinasi DocType: Desktop Icon,List,Senarai DocType: Communication,Link Name,link Nama -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} berturut-turut {1} tidak boleh disembunyikan dan wajib tanpa lalai +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Field {0} berturut-turut {1} tidak boleh disembunyikan dan wajib tanpa lalai DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Kata laluan tidak sah: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Kata laluan tidak sah: DocType: Print Settings,Send document web view link in email,Menghantar dokumen lihat web link dalam e-mel apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Maklum Balas bagi dokumen {0} disimpan berjaya apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Sebelumnya -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} baris untuk {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-mata wang. Untuk contoh: "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Pilih fail yang dimuat naik @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Pautan apps/frappe/frappe/utils/file_manager.py +96,No file attached,Tiada fail yang dilampirkan DocType: Version,Version,Versi DocType: User,Fill Screen,Isi Screen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tidak dapat memaparkan laporan pokok ini, kerana data yang hilang. Kemungkinan besar, ia sedang ditapis kerana kebenaran." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Sila Akaun lalai setup E-mel daripada Persediaan> E-mel> Akaun E-mel +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Tidak dapat memaparkan laporan pokok ini, kerana data yang hilang. Kemungkinan besar, ia sedang ditapis kerana kebenaran." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Pilih Fail apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit melalui Muat Naik -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","jenis dokumen ..., contohnya pelanggan" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","jenis dokumen ..., contohnya pelanggan" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,The Keadaan '{0}' tidak sah DocType: Workflow State,barcode,kod bar apps/frappe/frappe/config/setup.py +232,Add your own translations,Menambah terjemahan anda sendiri @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Rabu apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Selain Peranan Peraturan Kebenaran berasaskan, anda boleh memohon Kebenaran pengguna berdasarkan DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ini kebenaran akan dikenakan untuk semua transaksi di mana rekod yang dibenarkan adalah berkaitan. Sebagai contoh, jika Syarikat C ditambah kepada Kebenaran pengguna pengguna X, pengguna X akan hanya dapat melihat transaksi yang mempunyai syarikat C sebagai nilai yang berkaitan." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,bidang imej harus FIELDNAME yang sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,bidang imej harus FIELDNAME yang sah DocType: OAuth Client,Token,Token DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nama) entiti yang harta adalah untuk ditetapkan apps/frappe/frappe/limits.py +82,"To renew, {0}.","Untuk memperbaharui, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Item Sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} telah dipasang DocType: Workflow State,exclamation-sign,seru-tanda apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Show Kebenaran -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,bidang Timeline perlu menjadi Link atau Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,bidang Timeline perlu menjadi Link atau Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Julat tarikh apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} daripada {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Memper apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","kekunci penyulitan tidak sah, Sila semak site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Untuk DocType: Kanban Board Column,darkgrey,kelabu gelap -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Berjaya: {0} kepada {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Berjaya: {0} kepada {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Tidak dapat mengubah maklumat pengguna dalam demo. Sila mendaftar untuk akaun baru di https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Sila buat salinan ini untuk membuat perubahan apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generasi PDF gagal kerana pautan imej rosak @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Lipat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Disimpan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Apa yang anda perlu membantu dengan? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Pilihan-pilihan untuk pilih. Setiap pilihan pada baris baru. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Secara kekal Batal {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Secara kekal Batal {0}? DocType: Workflow State,music,muzik DocType: Web Page,Settings,Tetapan apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Sila nyatakan DOCTYPE DocType: Print Format,Style Settings,Tetapan Style -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,bidang jenis {0} mesti FIELDNAME yang sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,bidang jenis {0} mesti FIELDNAME yang sah apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Lebih banyak DocType: Contact,Sales Manager,Pengurus Jualan apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Nama semula DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Seperti +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Seperti DocType: Customize Form Field,Customize Form Field,Menyesuaikan Borang Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Benarkan pengguna DocType: OAuth Client,Grant Type,Grant Jenis apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Semak Dokumen yang boleh dibaca oleh pengguna yang apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Penyenaraian app tidak dibenarkan -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,menggunakan% sebagai wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mel Domain tidak dikonfigurasikan untuk akaun ini, Buat satu?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,menggunakan% sebagai wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mel Domain tidak dikonfigurasikan untuk akaun ini, Buat satu?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Membolehkan Auto Balas apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Tidak Kelihatan @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Tetapkan Hanya Sekali DocType: Email Queue Recipient,Email Queue Recipient,E-mel Giliran Penerima DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nama pengguna {0} sudah wujud -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Tidak boleh menetapkan import, kerana {1} tidak boleh diimport" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Tidak boleh menetapkan import, kerana {1} tidak boleh diimport" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Terdapat ralat dalam Template Alamat anda {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Dari Nama Penuh apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Anda tidak mempunyai akses kepada Laporan: {0} DocType: User,Send Welcome Email,Selamat datang Hantar E-mel apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Muat naik fail CSV mengandungi semua kebenaran pengguna dalam format yang sama seperti turun. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Buang Penapis +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Buang Penapis DocType: Address,Daman and Diu,Daman dan Diu DocType: Address,Personal,Peribadi apps/frappe/frappe/config/setup.py +113,Bulk Rename,Rename Bulk @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE tidak boleh mempunyai bentuk percetakan lalai, menggunakan Borang Customize" DocType: Report,Query,Pertanyaan DocType: DocType,Sort Order,Sort Order -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Dalam Lihat Senarai' tidak dibenarkan jenis {0} di baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Dalam Lihat Senarai' tidak dibenarkan jenis {0} di baris {1} DocType: Custom Field,Select the label after which you want to insert new field.,Pilih label yang anda kehendaki untuk memasukkan bidang baru. ,Document Share Report,Dokumen Laporan Share DocType: User,Last Login,Log masuk lepas -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname diperlukan berturut-turut {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname diperlukan berturut-turut {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Ruangan DocType: Custom Field,Adds a custom field to a DocType,Menambah medan tersuai untuk DOCTYPE yang DocType: File,Is Home Folder,Adakah Rumah Folder @@ -594,7 +594,7 @@ DocType: File,Folder,Folder DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Pengurus apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Pilihan 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,semua Entri +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} kepada {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log kesilapan semasa permintaan. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} telah berjaya ditambah ke E-mel Kumpulan. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Petunjuk DocType: DocShare,Everyone,Semua orang DocType: Workflow State,backward,ke belakang -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu peraturan dibenarkan dengan yang sama Peranan, Aras dan {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Hanya satu peraturan dibenarkan dengan yang sama Peranan, Aras dan {1}" DocType: Email Queue,Add Unsubscribe Link,Menambah Unsubscribe Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Tiada komen lagi. Memulakan perbincangan baru. DocType: Workflow State,share,saham @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,tidak apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Lihat Pelanggan apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Warna Latar Belakang -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Terdapat ralat semasa menghantar e-mel. Sila cuba sekali lagi. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Terdapat ralat semasa menghantar e-mel. Sila cuba sekali lagi. DocType: Portal Settings,Portal Settings,Tetapan Portal DocType: Web Page,0 is highest,0 adalah paling tinggi apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Adakah anda pasti anda ingin memautkan semula komunikasi ini kepada {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Hubungi Kami Tetapan apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Mencari ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Mencari ... DocType: Workflow State,text-width,teks-lebar -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Had Lampiran maksimum bagi rekod ini dicapai. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Had Lampiran maksimum bagi rekod ini dicapai. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Bidang wajib yang berikut mesti dipenuhi:
DocType: Email Alert,View Properties (via Customize Form),Lihat Properties (melalui Borang Customize) DocType: Note Seen By,Note Seen By,Nota Seen By @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Laporan laporan Builder diuruskan secara langsung oleh pembina laporan itu. Tiada apa-apa yang perlu dilakukan. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Sila sahkan Alamat E-mel anda apps/frappe/frappe/model/document.py +903,none of,tiada -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Hantar Me Salinan A +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Hantar Me Salinan A apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Memuat naik Kebenaran pengguna DocType: Dropbox Settings,App Secret Key,App Rahsia Utama apps/frappe/frappe/config/website.py +7,Web Site,laman web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Item yang diperiksa akan ditunjukkan pada desktop -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} tidak boleh ditetapkan bagi jenis Bersendirian +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} tidak boleh ditetapkan bagi jenis Bersendirian apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Lembaga {0} tidak wujud. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} sedang melihat dokumen ini DocType: ToDo,Assigned By Full Name,Ditugaskan Dengan Nama Penuh apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} telah dikemaskini -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Laporan tidak boleh ditetapkan bagi jenis Single +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Laporan tidak boleh ditetapkan bagi jenis Single apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} hari lalu DocType: Email Account,Awaiting Password,menunggu Kata laluan DocType: Address,Address Line 1,Alamat Baris 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Negeri untuk aliran kerja (contohnya Draf, Diluluskan, Dibatalkan)." DocType: Print Settings,Allow Print for Draft,Benarkan Cetak untuk Draf apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Terletak Kuantiti -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Mengemukakan dokumen ini untuk mengesahkan +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Mengemukakan dokumen ini untuk mengesahkan DocType: Contact,Unsubscribed,Dilanggan apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,peranan adat ditetapkan untuk halaman dan laporan apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Rating: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data Tool Import DocType: Address,Dadra and Nagar Haveli,Dadra dan Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Memuat naik fail sila tunggu untuk beberapa saat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Sertakan Gambar Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Sertakan Gambar Anda apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Nilai Row Berubah DocType: Workflow State,Stop,Hentikan DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Pautan ke halaman yang anda mahu buka. Tinggalkan kosong jika anda ingin menjadikannya sebagai ibu bapa kumpulan. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Jajarkan Labels ke Kiri DocType: Help Article,Expert,pakar DocType: Workflow State,circle-arrow-right,bulatan-anak panah kanan DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Tidak dapat membuka contoh apabila mereka {0} dibuka +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Tidak dapat membuka contoh apabila mereka {0} dibuka apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Beratur untuk memasang DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Hantar Batal langganan Link @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} dikeluarkan DocType: Custom DocPerm,Apply User Permissions,Memohon Kebenaran pengguna DocType: User,Modules HTML,Modul HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Persediaan> Kebenaran Pengguna Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Nilai-nilai yang hilang yang diperlukan DocType: DocType,Other Settings,Tetapan lain DocType: Social Login Keys,Frappe,frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth pembawa Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Tiada dokumen yang dipilih apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Peristiwa -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Pada {0}, {1} menulis:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Tidak boleh memadam bidang standard. Anda boleh menyembunyikannya jika anda mahu DocType: Top Bar Item,For top bar,Untuk bar atas apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Tidak dapat mengenal pasti {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,meja Access DocType: Workflow State,minus,tolak apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Ralat pelayan: Sila log pelayan atau hubungi sokongan teknikal. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Selamat datang menghantar e-mel -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Mari kita menyediakan sistem untuk penggunaan pertama. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Mari kita menyediakan sistem untuk penggunaan pertama. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Kemudahan apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Sudah Berdaftar DocType: System Settings,Float Precision,Float Precision @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,Benarkan Cetak apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Tiada Apps Dipasang apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Tandakan bidang seperti Mandatori DocType: Communication,Clicked,Klik -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Tiada kebenaran untuk '{0}' {1} DocType: User,Google User ID,Google ID pengguna apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Dijadual menghantar DocType: DocType,Track Seen,Track Seen @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Sesyen serentak DocType: OAuth Client,Client Credentials,Bukti kelayakan pelanggan -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Buka modul atau alat +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Buka modul atau alat DocType: Communication,Delivery Status,Status Penghantaran DocType: Module Def,App Name,Nama App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max saiz fail yang dibenarkan ialah {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,Komunikasi rujukan DocType: Email Queue,Unsubscribe Method,unsubscribe Kaedah DocType: GSuite Templates,Related DocType,DOCTYPE yang berkaitan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edit untuk menambah kandungan -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Pilih Bahasa -apps/frappe/frappe/__init__.py +510,No permission for {0},Tiada kebenaran untuk {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Pilih Bahasa +apps/frappe/frappe/__init__.py +509,No permission for {0},Tiada kebenaran untuk {0} DocType: DocType,Advanced,Advanced apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Seolah-olah Kunci API atau API Secret adalah salah !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Rujukan: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Masukkan Borang Jenis apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Tiada rekod tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Buang Field DocType: User,Send Password Update Notification,Hantar Kata laluan Update Pemberitahuan -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Membenarkan DOCTYPE, DOCTYPE. Berhati-hati!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Membenarkan DOCTYPE, DOCTYPE. Berhati-hati!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Format disesuaikan untuk Percetakan, E-mel" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Dikemaskini Untuk Versi Baru DocType: Custom Field,Depends On,Bergantung Pada @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,salah satu apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Sila pilih fail untuk menyalin apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Semakan satu masa apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Show Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Jika Memohon ketat Kebenaran Pengguna diperiksa dan Kebenaran Pengguna ditakrifkan untuk satu DOCTYPE untuk pengguna, maka semua dokumen di mana nilai dari link kosong, tidak akan dipaparkan kepada pengguna yang" DocType: Address,Billing,Bil DocType: Email Queue,Not Sent,Tidak Dihantar DocType: Web Form,Actions,Tindakan-tindakan @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jelas apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Setiap peristiwa hari harus menyelesaikan pada hari yang sama. DocType: Communication,User Tags,Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Images Mengambil .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Persediaan> Pengguna DocType: Workflow State,download-alt,turun-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Memuat turun App {0} DocType: Communication,Feedback Request,Reaksi Permintaan @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,sandaran apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Tambah Kenalan DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Pilihan: Sentiasa hantar ke id ini. Setiap Alamat e-mel pada baris baru -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Sembunyikan Butiran +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Sembunyikan Butiran DocType: Workflow State,Tasks,Tugas DocType: Event,Tuesday,Selasa DocType: Blog Settings,Blog Settings,Blog Tetapan @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Tulis satu fail Python dalam folder yang sama di mana ini disimpan dan kembali ruang dan keputusan. DocType: DocType,Sort Field,Susun Field DocType: Razorpay Settings,Razorpay Settings,Tetapan Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Field {0} jenis {1} tidak boleh menjadi wajib -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","contohnya. Jika Memohon Kebenaran Pengguna diperiksa untuk Laporan DOCTYPE tetapi tiada Kebenaran Pengguna ditakrifkan bagi Laporan untuk pengguna, maka semua Laporan dipaparkan kepada pengguna yang" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Field {0} jenis {1} tidak boleh menjadi wajib apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Tambah Lagi apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Menyembunyikan Carta DocType: System Settings,Session Expiry Mobile,Sesi tamat Bergerak @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,Lambat apps/frappe/frappe/config/setup.py +128,List of backups available for download,Senarai sandaran boleh dimuat turun apps/frappe/frappe/www/login.html +89,Sign up,Daftar DocType: Test Runner,Output,Pengeluaran +DocType: Email Alert,Set Property After Alert,Menetapkan Hartanah Selepas Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Menambah medan untuk bentuk. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Kelihatan seperti sesuatu yang tidak kena dengan konfigurasi Paypal tapak ini. DocType: File,rgt,Rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,daun DocType: Portal Menu Item,Portal Menu Item,Menu Portal Item DocType: User Email,Email ID,ID e-mel +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Jika Memohon Kebenaran Pengguna diperiksa untuk Laporan DOCTYPE tetapi tiada Kebenaran Pengguna ditakrifkan untuk Laporan untuk pengguna, maka semua Laporan dipaparkan kepada pengguna yang" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Senarai sumber mana App Pelanggan akan mempunyai akses kepada selepas pengguna membenarkannya.
contohnya projek DocType: Translation,Translated Text,diterjemahkan Text DocType: Contact Us Settings,Query Options,Pertanyaan Pilihan @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Kenalan DocType: System Settings,Setup Complete,Persediaan Lengkap apps/frappe/frappe/config/setup.py +66,Report of all document shares,Laporan semua saham dokumen apps/frappe/frappe/www/update-password.html +18,New Password,Kata laluan baru -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Penapis {0} hilang +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Penapis {0} hilang apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Maaf! Anda tidak boleh memadam komen auto-dijana DocType: Website Theme,Style using CSS,Gaya menggunakan CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Rujukan DOCTYPE @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Sekat Modul apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Menyimpan semula panjang kepada {0} untuk '{1}' dalam '{2}'; Menetapkan panjang sebagai {3} akan menyebabkan pemangkasan data. DocType: Print Format,Custom CSS,CSS Custom apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Tambah komen -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Diabaikan: {0} kepada {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Diabaikan: {0} kepada {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log kesilapan pada acara automatik (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Tidak Nilai Dipisahkan Comma yang sah (Fail CSV) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,Default masuk DocType: Workflow State,repeat,berulang DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Jika tidak aktif, peranan ini akan dikeluarkan daripada semua pengguna." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Bantuan di Cari +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Bantuan di Cari apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Mendaftar tetapi kurang upaya DocType: DocType,Hide Copy,Menyembunyikan Salinan apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Kosongkan semua peranan @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Negara apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Alamat DocType: Communication,Shared,berkongsi -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Lampirkan Dokumen Cetak +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Lampirkan Dokumen Cetak DocType: Bulk Update,Field,Field DocType: Communication,Received,Diterima DocType: Social Login Keys,Google Client ID,Google ID Pelanggan @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,Laporan Pertanyaan DocType: User,Set New Password,Tetapkan Kata Laluan Baru DocType: User,Github User ID,Github ID Pengguna apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Jika Jenis Dokumen -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Tidak dapat memadam atau membatalkan kerana {0} {1} dikaitkan dengan {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Tidak dapat memadam atau membatalkan kerana {0} {1} dikaitkan dengan {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Aplikasi tidak diketahui {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S tidak format laporan yang sah. Laporan format perlu \ salah satu daripada% s berikut DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} muncul beberapa kali dalam baris {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} muncul beberapa kali dalam baris {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} dari {1} kepada {2} berturut # {3} DocType: Communication,Expired,Tamat DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Bilangan lajur untuk bidang di Grid yang (Jumlah Lajur dalam grid hendaklah tidak kurang daripada 11) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Akaun? Log masuk apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Format Cetak Tidak diketahui: {0} DocType: Workflow State,arrow-down,arrow ke bawah apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Tutup -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Pengguna tidak dibenarkan untuk memadamkan {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Pengguna tidak dibenarkan untuk memadamkan {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Terakhir Dikemaskini Pada DocType: Help Article,Likes,Suka DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Kod Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Buat Pengguna Email apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Buat Pengguna Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Tiada Kebenaran Ditentukan +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Tiada Kebenaran Ditentukan apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Tetapan Global: Pengguna hanya akan dapat untuk memilih ikon diperiksakan apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} tidak dijumpai DocType: Custom Role,Custom Role,Peranan adat apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Ujian Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Abaikan Kebenaran pengguna Jika Hilang -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Sila simpan dokumen itu sebelum memuat naik. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Sila simpan dokumen itu sebelum memuat naik. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Masukkan kata laluan anda DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Akses Rahsia apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Tambahkan lagi komen apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Dinyahlanggan dari Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Lipat mesti datang sebelum Seksyen Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Lipat mesti datang sebelum Seksyen Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Tarikh terakhir kemaskini: Oleh DocType: Workflow State,hand-down,tangan-down DocType: Address,GST State,GST Negeri -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Tidak boleh menetapkan Batal tanpa Hantar +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Tidak boleh menetapkan Batal tanpa Hantar DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Terdapat ralat. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound Untuk Kod Auth @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Tetap DocType: Website Theme,Text Color,Warna Teks DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Permintaan tidak sah -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Borang ini tidak mempunyai input +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Borang ini tidak mempunyai input apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesi tamat mestilah dalam format {0} DocType: Website Sidebar Item,Group,Kumpulan DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Sasaran pilih = "_blank" dibuka pada muka surat yang baru. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Abaikan pengekodan kesilapan. DocType: Workflow State,wrench,kunci apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Tidak diset -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Persediaan> Pengguna DocType: Authentication Log,Date,Tarikh DocType: Website Settings,Disable Signup,Melumpuhkan Signup apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Duduk ketat manakala sistem anda sedang persediaan. Ini mungkin mengambil sedikit masa. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Tambah komen DocType: DocField,Mandatory,Mandatori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul Eksport -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Tiada set kebenaran asas +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Tiada set kebenaran asas apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Langganan anda akan tamat pada {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Pautan muat turun untuk sandaran anda akan dihantar melalui email di alamat e-mel berikut: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Pengertian Hantar, Batal, Meminda" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,Pertanyaan-laporan apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Ditugaskan untuk {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,penapis yang disimpan DocType: DocField,Percent,Peratus -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Sila set penapis +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Sila set penapis apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Berkaitan Dengan DocType: Workflow State,book,buku DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Ralat dalam Skrip Custom +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Ralat dalam Skrip Custom apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nama apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Permintaan Baris Gilir. Ini mungkin mengambil sedikit masa, sila bersabar." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Tiada Kebenaran ditetapkan untuk kriteria ini. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,Benarkan Log masuk meng apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Anda tidak mempunyai keizinan yang cukup untuk mengakses halaman ini. Sila hubungi pengurus anda untuk mendapatkan akses. DocType: Custom Field,Custom,Custom apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert berdasarkan pelbagai kriteria. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Jawatan yang difailkan di bawah {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Jawatan yang difailkan di bawah {0} DocType: Email Alert,Send alert if date matches this field's value,Hantar amaran sekiranya tarikh perlawanan nilai ini bidang ini DocType: Workflow,Transitions,Peralihan apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Buang {0} dan memadam semua data? @@ -1307,9 +1308,8 @@ DocType: User,Login After,Log masuk Selepas DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Percetakan DocType: Workflow State,thumbs-up,pujian -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tidak Akaun e-mel persediaan. Sila buat Akaun E-mel baru daripada Persediaan> E-mel> Akaun E-mel DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision hendaklah antara 1 dan 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision hendaklah antara 1 dan 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,dan DocType: Error Snapshot,Frames,Frames @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,Pautan imej DocType: Auto Email Report,Report Filters,laporan Penapis apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,sekarang DocType: Workflow State,step-backward,langkah ke belakang -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{Tajuk_App} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{Tajuk_App} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Sila set kunci akses Dropbox dalam config laman anda apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Padam rekod ini untuk membenarkan menghantar ke alamat email ini apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Hanya medan mandatori yang perlu bagi rekod baru. Anda boleh memadam lajur bukan mandatori jika anda mahu. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,Adakah Lampiran Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Buka Semua apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Log masuk Sah id diperlukan. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Buka semula -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Anda telah membatalkan pembayaran -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Sila pilih fail csv yang sah dengan data +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Sila pilih fail csv yang sah dengan data apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} nyahkongsi dokumen ini dengan {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Peralihan dokumen Status dari {0} kepada {1} tidak dibenarkan DocType: DocType,"Make ""name"" searchable in Global Search",Make "Nama" boleh dicari Cari Global @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Nil DocType: Help Category,Help Category,bantuan Kategori apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Pengguna {0} adalah orang kurang upaya apps/frappe/frappe/www/404.html +8,Page missing or moved,Page hilang atau berpindah -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Edit {0} hartanah DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay tetapan gateway Pembayaran DocType: DocField,Name,Nama @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cari di docs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Cari di docs DocType: OAuth Authorization Code,Valid,sah -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Buka Pautan -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Bahasa awak +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Buka Pautan +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Bahasa awak apps/frappe/frappe/desk/form/load.py +46,Did not load,Tidak dapat dimuatkan apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Tambah Row DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Adalah permin DocType: Address,Lakshadweep Islands,Kepulauan Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Boleh Tulis apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Dokumen-dokumen tertentu, seperti invois, tidak boleh ditukar selepas akhir. Keadaan akhir bagi apa-apa dokumen dipanggil Dihantar. Anda boleh menyekat mana peranan boleh Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Anda tidak dibenarkan untuk mengeksport laporan ini +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Anda tidak dibenarkan untuk mengeksport laporan ini apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 item yang dipilih DocType: Newsletter,Test Email Address,Test Alamat E-mel DocType: ToDo,Sender,Penghantar @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID dokumen DocType: Print Settings,Letter,Surat -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,bidang Imej mestilah jenis Lampirkan imej +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,bidang Imej mestilah jenis Lampirkan imej DocType: DocField,Columns,Kolum DocType: Async Task,Succeeded,Diikuti apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Medan mandatori yang diperlukan dalam {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,Editor teks apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Tetapan untuk Mengenai Kami Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Ralat Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Dalam +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Dalam DocType: Email Alert,Value Change,Nilai Perubahan DocType: Standard Reply,Standard Reply,Balas Standard apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Lebar kotak input @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Gunakan fieldname ini untuk menjana tajuk apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Dari E-mel apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Jemput sebagai pengguna -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Pilih Lampiran +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Pilih Lampiran apps/frappe/frappe/model/naming.py +94, for {0},untuk {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Terdapat ralat. Sila laporkan ini. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Anda tidak dibenarkan untuk mencetak dokumen ini +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Anda tidak dibenarkan untuk mencetak dokumen ini apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Sila menetapkan nilai penapis dalam jadual Laporan Filter. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Loading Laporan +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading Laporan apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Langganan anda akan tamat hari ini. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Lampirkan Fail @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Sambungan Wilayah DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Nama (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Meninggalkan perbualan ini -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Pilihan tidak ditetapkan untuk bidang link {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Pilihan tidak ditetapkan untuk bidang link {0} DocType: Customize Form,"Must be of type ""Attach Image""",Mestilah jenis "Lampirkan Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,nyahpilih Semua apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Anda tidak boleh tanpa ditetapkan 'Baca Sahaja' untuk medan {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Nota apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Laporan ralat apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,keadaan maklum balas tidak sepadan -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,bidang Timeline mesti FIELDNAME yang sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,bidang Timeline mesti FIELDNAME yang sah DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Kata laluan baru melalui e-mel apps/frappe/frappe/auth.py +245,Login not allowed at this time,Log Masuk tidak dibenarkan pada masa ini DocType: Email Account,Email Sync Option,E-mel Pilihan Sync @@ -1581,7 +1579,7 @@ DocType: DocField,Text,Teks apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard jawapan kepada pertanyaan yang sama. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Default Menghantar DocType: Workflow State,volume-off,jumlah-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Disukai oleh {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Disukai oleh {0} DocType: Footer Item,Footer Item,Footer Perkara ,Download Backups,Muat turun Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Ujian Folder 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,Teks Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Nama tidak boleh mengandungi aksara khas seperti {0} DocType: Contact Us Settings,Forward To Email Address,Forward Untuk E Alamat apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Tunjukkan semua data -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Bidang tajuk mesti fieldname yang sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Bidang tajuk mesti fieldname yang sah apps/frappe/frappe/config/core.py +7,Documents,Dokumen DocType: Email Flag Queue,Is Completed,Sudah selesai apps/frappe/frappe/www/me.html +22,Edit Profile,Sunting profil @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Bidang ini akan dipaparkan hanya jika FIELDNAME yang ditakrifkan di sini mempunyai nilai OR kaedah-kaedah yang benar (contoh): myfield eval: doc.myfield == 'Value Saya' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,hari ini -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,hari ini +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,hari ini +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,hari ini apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Sebaik sahaja anda telah menetapkan ini, pengguna hanya akan dapat akses dokumen (. Contohnya Blog Post) mana pautan wujud (contohnya. Blogger)." DocType: Error Log,Log of Scheduler Errors,Log Kesilapan Berjadual DocType: User,Bio,Bio @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 bintang yang rendah & 5 bintang yang berada Kedudukan tertinggi DocType: Event,Ref Name,Nama Ref DocType: Web Page,Center,Pusat +DocType: Email Alert,Value To Be Set,Nilai Akan Tetapkan apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Tahap Pertama DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Mewakili negeri dibenarkan dalam satu dokumen dan peranan yang ditugaskan untuk mengubah negeri ini. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Borang Muat semula @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Mempunyai Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","nama DOCTYPE ini harus bermula dengan huruf dan ia hanya boleh mengandungi huruf, nombor, ruang dan garis bawah" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,Permintaan integrasi -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Dear +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Dear DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,pengguna Akaun-akaun DocType: Web Page,HTML for header section. Optional,HTML untuk bahagian kepala. Pilihan apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ciri ini adalah jenama baru dan masih eksperimen -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimum {0} baris dibenarkan +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimum {0} baris dibenarkan DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ini adalah kata yang sangat umum. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Lihat DocType: Communication,Assigned,ditugaskan DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Pilih Format Cetak +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Pilih Format Cetak apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,corak keyboard pendek adalah mudah untuk meneka DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Panjang {0} hendaklah antara 1 dan 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Pengguna tidak boleh Carian apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format Output sah DocType: Custom DocPerm,Apply this rule if the User is the Owner,Guna kaedah ini jika pengguna adalah Pemilik -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Akan menjadi ID log masuk anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Akan menjadi ID log masuk anda apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Membina Laporan DocType: Note,Notify users with a popup when they log in,Memberitahu pengguna dengan popup apabila mereka log masuk apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} tidak wujud, pilih sasaran baru untuk bergabung" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,peranan Kebenaran apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Update DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Sila simpan Newsletter sebelum menghantar -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Pilihan mestilah DOCTYPE sah untuk bidang {0} berturut-turut {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} tahun (s) ago +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Pilihan mestilah DOCTYPE sah untuk bidang {0} berturut-turut {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edit Hartanah DocType: Patch Log,List of patches executed,Senarai patch dilaksanakan apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} telah dilanggan -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikasi Sederhana +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikasi Sederhana DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Sila pilih kaedah pembayaran yang lain. Razorpay tidak menyokong urus niaga dalam mata wang '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Beratur untuk sandaran. Ia mungkin mengambil masa beberapa minit hingga satu jam. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Mendaftar OAuth Pelanggan App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak boleh ""{2}"". Ia harus menjadi salah satu daripada ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} tidak boleh ""{2}"". Ia harus menjadi salah satu daripada ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} atau {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Menunjukkan atau Sembunyi Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Kata laluan Update @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks selepas Seksyen DocType: Blogger,Short Name,Nama Pendek apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Anda memilih Pilihan Sync sebagai ALL, Ia akan menyegerakkan semua \ membaca serta mesej yang belum dibaca dari pelayan. Ini juga boleh menyebabkan duplikasi \ Komunikasi (e-mel)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,fail Saiz @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,Pembelian Pengurus DocType: Custom Script,Sample,Contoh apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,tiada kategori Tags DocType: Event,Every Week,Setiap Minggu +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tidak Akaun e-mel persediaan. Sila buat Akaun E-mel baru daripada Persediaan> E-mel> Akaun E-mel apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik di sini untuk menyemak penggunaan anda atau menaik taraf kepada pelan yang lebih tinggi DocType: Custom Field,Is Mandatory Field,Adalah Field Mandatori DocType: User,Website User,Laman Web Pengguna @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,pensil apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Dinding mesej dan pemberitahuan lain. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Masukkan Selepas tidak boleh ditetapkan sebagai {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Masukkan Selepas tidak boleh ditetapkan sebagai {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} dengan apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-mel Persediaan akaun sila masukkan kata laluan anda untuk: DocType: Workflow State,hand-up,tangan-up DocType: Blog Settings,Writers Introduction,Penulis Pengenalan DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Ralat semasa menilai Email Alert {0}. Sila betulkan template anda. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Ralat semasa menilai Email Alert {0}. Sila betulkan template anda. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Pilih Jenis Dokumen atau Peranan untuk memulakan. DocType: Contact,Passive,Pasif DocType: Contact,Accounts Manager,Pengurus Akaun-akaun +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Bayaran anda dibatalkan. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Pilih Jenis Fail DocType: Help Article,Knowledge Base Editor,Pangkalan Data Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Page tidak dijumpai @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,Jenis Harta DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Hanya Pentadbir boleh menyimpan laporan standard. Sila menamakan semula dan menyelamatkan. DocType: System Settings,Background Workers,Pekerja latar Belakang +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} bercanggah dengan objek meta DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumen Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Anda telah membuat {0} daripada {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Kebenaran Show pengguna apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Anda perlu log masuk dan mempunyai Pengurus Sistem Peranan untuk dapat mengakses backup. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,baki -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Sila simpan sebelum melampirkan. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Sila simpan sebelum melampirkan. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Ditambah {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},tema lalai ditetapkan dalam {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype tidak boleh diubah dari {0} kepada {1} berturut-turut {2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesi Mula G apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesi Mula Gagal apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},E-mel ini telah dihantar ke {0} dan disalin ke {1} DocType: Workflow State,th,ke- -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Sila Akaun lalai setup E-mel daripada Persediaan> E-mel> Akaun E-mel -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Buat baru {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Buat baru {0} DocType: Email Rule,Is Spam,adalah Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Laporan {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Buka {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Buka {0} DocType: OAuth Client,Default Redirect URI,Redirect URI lalai DocType: Email Alert,Recipients,Penerima DocType: Workflow State,ok-sign,ok-tanda @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,bantuan Artikel ,Modules Setup,Modul Persediaan apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Jenis: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Bayaran anda telah gagal. DocType: Communication,Unshared,dinyahkongsi DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul Not Found @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,Imej jenama DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Persediaan bar navigasi atas, footer dan logo." DocType: Web Form Field,Max Value,Max Nilai -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Untuk {0} di peringkat {1} dalam {2} berturut-turut {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Untuk {0} di peringkat {1} dalam {2} berturut-turut {3} DocType: Contact,All,Semua DocType: Email Queue,Recipient,Penerima DocType: Communication,Has Attachment,mempunyai Lampiran @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,menyelaraskan kanan DocType: Auto Email Report,Email To,E-mel Untuk apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} tidak kosong DocType: Page,Roles,Peranan -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Field {0} tidak boleh dipilih. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Ralat: Nilai hilang untuk {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Field {0} tidak boleh dipilih. DocType: System Settings,Session Expiry,Sesi tamat DocType: Workflow State,ban-circle,larangan-bulatan DocType: Email Flag Queue,Unread,belum dibaca @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Lalai pengguna apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Buat Baru DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mel tidak dihantar kepada {0} (berhenti melanggan / kurang upaya) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mel tidak dihantar kepada {0} (berhenti melanggan / kurang upaya) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Terkecil mata Pecahan Nilai apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Berikan Untuk @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Dari DocType: Website Theme,Google Font (Heading),Google Font (Tajuk) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Pilih nod kumpulan pertama. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Cari {0} dalam {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Cari {0} dalam {1} DocType: OAuth Client,Implicit,tersirat DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Menambah komunikasi terhadap DOCTYPE ini (mesti mempunyai bidang, "Status", "Subject")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI untuk menerima kod pengesahan sebaik sahaja pengguna yang membolehkan akses, serta maklum balas kegagalan. Biasanya titik akhir REST didedahkan oleh Pelanggan App.
contohnya http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Tidak dibenarkan untuk menukar {0} selepas penyerahan +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Tidak dibenarkan untuk menukar {0} selepas penyerahan DocType: Communication,Comment Type,Komen Jenis DocType: OAuth Client,OAuth Client,OAuth Pelanggan apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Pengguna @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,penapis Data DocType: Auto Email Report,Filter Data,penapis Data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Tambah tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Sila melampirkan fail pertama. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Sila melampirkan fail pertama. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Terdapat beberapa kesilapan menetapkan nama, sila hubungi pentadbir" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,akaun e-mel yang diterima tidak betul apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,E-mel dihantar DocType: DocField,Ignore XSS Filter,Abaikan XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,dikeluarkan apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,tetapan Dropbox sandaran -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Hantar Sebagai E-mel +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Hantar Sebagai E-mel DocType: Website Theme,Link Color,Link Warna apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Pengguna {0} tidak boleh dilumpuhkan apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Pengurus Sistem yang dihormati," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Negara awak +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Negara awak DocType: Event,Sunday,Ahad apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In Grid View DocType: Address Template,Template,Template @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Tetapan LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Yang meminda apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal tetapan gerbang pembayaran -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1} ({3}) dipangkas, kerana watak-watak max dibenarkan adalah {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1} ({3}) dipangkas, kerana watak-watak max dibenarkan adalah {2}" DocType: OAuth Client,Resource Owner Password Credentials,Sumber Owner Password Bukti kelayakan DocType: OAuth Client,Response Type,Jenis Response apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Pengguna Dagangan @@ -2070,7 +2074,7 @@ DocType: DocField,Table,Jadual DocType: File,File Size,Saiz fail apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Anda mesti log masuk untuk mengemukakan borang ini DocType: User,Background Image,Imej Latar Belakang -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Pilih Negara anda, Time Zone dan mata wang" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Pilih Negara anda, Time Zone dan mata wang" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,antara DocType: Async Task,Queued,Beratur @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Buat apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Penapis tidak sah: {0} DocType: Email Account,no failed attempts,percubaan tidak gagal +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No Templat lalai Alamat found. Sila buat yang baru dari Persediaan> Printing and Branding> Alamat Template. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Aplikasi Access Key DocType: OAuth Bearer Token,Access Token,Token Akses @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Nama pengguna DocType: DocType,Image View,Lihat imej apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Kelihatan seperti sesuatu yang tidak kena semasa transaksi. Oleh kerana kita telah tidak disahkan pembayaran, Paypal secara automatik akan membayar balik jumlah ini. Jika tidak, sila hantar e-mel dan menyebut ID Korelasi yang: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Termasuk simbol, nombor dan huruf besar dalam kata laluan" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Masukkan Selepas bidang '{0}' yang disebut dalam Custom Field '{1}', dengan label '{2}', tidak wujud" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Termasuk simbol, nombor dan huruf besar dalam kata laluan" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Masukkan Selepas bidang '{0}' yang disebut dalam Custom Field '{1}', dengan label '{2}', tidak wujud" DocType: Workflow State,signal,isyarat DocType: DocType,Show Print First,Show Cetak Pertama apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter untuk hantar @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Fail '{0}' tidak dijumpai apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Buang Seksyen DocType: User,Change Password,Tukar kata laluan -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},E-mel tidak sah: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hello! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},E-mel tidak sah: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hello! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Akhir acara mestilah selepas permulaan apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Anda tidak mempunyai kebenaran untuk mendapatkan laporan mengenai: {0} +DocType: System Settings,Apply Strict User Permissions,Memohon Kebenaran Pengguna ketat DocType: DocField,Allow Bulk Edit,Benarkan Edit Bulk DocType: DocField,Allow Bulk Edit,Benarkan Edit Bulk DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Carian Terperinci +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Carian Terperinci apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Arahan set semula kata laluan telah dihantar ke e-mel anda apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 adalah untuk kebenaran tahap dokumen, \ tahap yang lebih tinggi untuk kebenaran peringkat lapangan." @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,Sidebar dan Komen apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Apabila anda Meminda dokumen selepas Batal dan menyimpannya, ia akan mendapat nombor baru iaitu versi nombor lama." DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan DocType: Stripe Settings,Publishable Key,Key boleh diterbitkan -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} tahun (s) ago DocType: Workflow State,circle-arrow-left,bulatan-anak panah kiri apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis pelayan cache tidak berjalan. Sila hubungi Pentadbir / sokongan Tech apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nama pihak -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Membuat rekod baru +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Membuat rekod baru apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Mencari apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Mencari DocType: Currency,Fraction,Pecahan DocType: LDAP Settings,LDAP First Name Field,LDAP Pertama Nama Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Pilih daripada lampiran yang sedia ada +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Pilih daripada lampiran yang sedia ada DocType: Custom Field,Field Description,Bidang Penerangan apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nama tidak ditetapkan melalui Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-mel Peti Masuk @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Maklumat: DocType: Custom Field,Permission Level,Tahap Kebenaran DocType: User,Send Notifications for Transactions I Follow,Hantar Pemberitahuan bagi Urusniaga Saya Ikuti -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak boleh menetapkan Hantar, Batal, Meminda tanpa Tulis" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Tidak boleh menetapkan Hantar, Batal, Meminda tanpa Tulis" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Adakah anda pasti anda mahu memadam lampiran? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Tidak dapat memadam atau membatalkan kerana {0} {1} dikaitkan dengan {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Tiada hasil ditemui untuk '

-apps/frappe/frappe/__init__.py +1063,Thank you,Terima kasih +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Tidak dapat memadam atau membatalkan kerana {0} {1} dikaitkan dengan {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Terima kasih apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Menyimpan DocType: Print Settings,Print Style Preview,Cetak Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,Dalam Senarai Lihat DocType: Email Account,Use TLS,Penggunaan TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Log masuk atau kata laluan tidak sah apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Tambah adat javascript untuk bentuk. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Tiada +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Tiada ,Role Permissions Manager,Kebenaran Peranan Pengurus apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nama Format Cetak baru -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Lampiran +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Lampiran apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Wajib: ,User Permissions Manager,Kebenaran pengguna Pengurus DocType: Property Setter,New value to be set,Nilai baru yang akan ditetapkan @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 hari apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Mengkategorikan posting blog. DocType: Workflow State,Time,Masa DocType: DocField,Attach,Lampirkan -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} bukan corak fieldname yang sah. Ia harus menjadi {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} bukan corak fieldname yang sah. Ia harus menjadi {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Maklumbalas Permintaan hanya jika terdapat sekurang-kurangnya satu komunikasi disediakan untuk dokumen itu. DocType: Custom Role,Permission Rules,Peraturan Kebenaran DocType: GSuite Settings,GSuite Settings,Tetapan GSuite DocType: Address,Links,Pautan -apps/frappe/frappe/model/base_document.py +428,Value missing for,Nilai hilang +apps/frappe/frappe/model/base_document.py +427,Value missing for,Nilai hilang apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Tambah Anak -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekod Dihantar tidak boleh dihapuskan. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekod Dihantar tidak boleh dihapuskan. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Saiz Backup DocType: GSuite Templates,Template Name,Nama template -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Jenis baru dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Jenis baru dokumen DocType: Custom DocPerm,Read,Baca DocType: Role Permission for Page and Report,Role Permission for Page and Report,Kebenaran peranan untuk Page dan Laporan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Jajarkan Nilai apps/frappe/frappe/www/update-password.html +14,Old Password,Kata Laluan Lama -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Mesej oleh {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Mesej oleh {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Untuk ruangan format, memberikan label lajur dalam cari." DocType: Has Domain,Has Domain,mempunyai Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Tiada akaun? Daftar -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak boleh menetapkan Berikan Meminda jika tidak Boleh Serah +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Tidak boleh menetapkan Berikan Meminda jika tidak Boleh Serah DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Kebenaran Edit Peranan DocType: Communication,Link DocType,link DOCTYPE @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Sila pastikan profil anda mempunyai alamat e-mel apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Anda mempunyai perubahan yang tak disimpan dalam borang ini. Sila simpan sebelum anda meneruskan. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Lalai untuk {0} mesti menjadi pilihan +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Lalai untuk {0} mesti menjadi pilihan DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori DocType: User,User Image,Imej pengguna apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mel adalah disenyapkan @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Tindakan s DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Nilai-nilai ini akan dikemas kini secara automatik dalam urus niaga dan juga berguna untuk menyekat kebenaran untuk pengguna ini ke atas urus niaga yang mengandungi nilai-nilai ini. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Penerbit -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Gagal: {0} kepada {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Gagal: {0} kepada {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,pilih Mandatori apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Tinjau apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-mel dihantar @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Kata laluan set semula apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Sila Naik taraf untuk menambah lebih daripada {0} pelanggan DocType: Workflow State,hand-left,tangan kiri -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} untuk {1} tidak boleh menjadi unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} untuk {1} tidak boleh menjadi unik DocType: Email Account,Use SSL,Penggunaan SSL DocType: Workflow State,play-circle,bermain-bulatan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Pilih Format Cetak ke Sunting @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,Tiada Salinan DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Log masuk dengan LDAP DocType: Web Form,Breadcrumbs,Serbuk roti -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Jika Pemilik +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Jika Pemilik DocType: OAuth Authorization Code,Expiration time,masa tamat DocType: Web Page,Website Sidebar,laman web Sidebar DocType: Web Form,Show Sidebar,Show Sidebar @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Tidak dapat menca apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Nama dan nama keluarga sendiri adalah mudah untuk meneka. apps/frappe/frappe/config/website.py +93,Knowledge Base,Asas pengetahuan DocType: Workflow State,briefcase,beg bimbit -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Nilai tidak boleh diubah untuk {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Nilai tidak boleh diubah untuk {0} DocType: Feedback Request,Is Manual,Apakah Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Gaya mewakili warna butang: Kejayaan - Green, Bahaya - Merah, Songsang - Black, utama - Dark Blue, Info - Biru, Amaran - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Tiada Laporan muatan. Sila gunakan pertanyaan-laporan / [Laporan Nama] untuk menjalankan laporan. @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,kemajuan apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,mengikut Peranan apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Fields hilang apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,FIELDNAME tidak sah '{0}' dalam autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Cari dalam dokumen jenis +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cari dalam dokumen jenis apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Benarkan bidang kekal disunting walaupun selepas penyerahan DocType: Custom DocPerm,Role and Level,Peranan dan Tahap DocType: File,Thumbnail URL,URL thumbnail @@ -2592,19 +2596,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Maklumat lanjut DocType: Desktop Icon,Desktop Icon,Ikon desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Bayaran anda telah berjaya diterima +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Bayaran anda telah berjaya diterima apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Maaf! Anda tidak dibenarkan untuk melihat halaman ini. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: sel Klik dua kali untuk mengedit DocType: Workflow State,bell,loceng apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Ralat dalam Email Alert apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Ralat dalam Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Berkongsi dokumen ini dengan +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Persediaan> Kebenaran Pengguna Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} tidak boleh menjadi nodus daun kerana ia mempunyai anak-anak DocType: Communication,Info,Maklumat -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Tambah Lampiran +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Tambah Lampiran DocType: Communication,Email,E-mel apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Terima kasih kerana pesanan anda -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Menghantar Baca Resit +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Menghantar Baca Resit DocType: Stripe Settings,Stripe Settings,Tetapan jalur DocType: Stripe Settings,Stripe Settings,Tetapan jalur DocType: Dropbox Settings,Dropbox Setup via Site Config,Persediaan Dropbox melalui laman Config @@ -2671,6 +2676,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Amaran: Ini Format Cetak adalah dalam gaya lama dan tidak boleh dihasilkan melalui API. DocType: DocField,Print Width,Cetak Lebar ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST Nombor Negeri DocType: User,Allow user to login only before this hour (0-24),Membenarkan pengguna untuk log masuk sahaja sebelum jam ini (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder adalah wajib apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2699,7 +2705,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Teks Kecil apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Pentadbir diakses {0} pada {1} melalui IP Alamat {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Sama -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Jenis 'Dynamic Link' Pilihan medan mesti menunjukkan satu lagi Bidang Link dengan pilihan 'DOCTYPE' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Jenis 'Dynamic Link' Pilihan medan mesti menunjukkan satu lagi Bidang Link dengan pilihan 'DOCTYPE' DocType: About Us Settings,Team Members Heading,Ahli-ahli pasukan Tajuk apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Format CSV tidak sah apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Bilangan Sandaran @@ -2710,7 +2716,7 @@ DocType: Contact,Contact,Hubungi DocType: User,Third Party Authentication,Pihak Ketiga Pengesahan DocType: Website Settings,Banner is above the Top Menu Bar.,Banner di atas Menu Bar Top. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Laporan eksport: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Laporan eksport: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} tidak wujud DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2733,7 +2739,7 @@ DocType: Kanban Board Column,Column Name,Ruangan Nama DocType: Language,Based On,Berdasarkan apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Membuat Lalai apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Semak URL Frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} untuk {1} tidak boleh diindeks +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} untuk {1} tidak boleh diindeks DocType: Communication,Email Account,Akaun e-mel DocType: Workflow State,Download,Muat turun DocType: Blog Post,Blog Intro,Blog Pengenalan @@ -2744,7 +2750,7 @@ DocType: Web Page,Insert Code,Masukkan Kod DocType: ToDo,Low,Rendah apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Anda boleh menambah ciri-ciri dinamik daripada dokumen dengan menggunakan Jinja template. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},had tidak sah {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Senarai dokumen jenis +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Senarai dokumen jenis DocType: Event,Ref Type,Jenis Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jika anda memuat naik rekod baru, meninggalkan "nama" (ID) ruang kosong." DocType: Address,Chattisgarh,Chattisgarh @@ -2766,26 +2772,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Hantar Cetak PDF DocType: Web Form,Amount,Jumlah DocType: Workflow Transition,Allowed,Dibenarkan -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Hanya ada satu Lipat dalam bentuk yang +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Hanya ada satu Lipat dalam bentuk yang apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Tidak dapat menulis format fail untuk {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Simpan semula kepada tetapan lalai? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Laman Utama sah apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Log masuk Tidak sah. Cuba lagi. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Pilihan diperlukan untuk Link atau bidang jenis Jadual {0} berturut-turut {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Pilihan diperlukan untuk Link atau bidang jenis Jadual {0} berturut-turut {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Pilihan diperlukan untuk Link atau bidang jenis Jadual {0} berturut-turut {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Pilihan diperlukan untuk Link atau bidang jenis Jadual {0} berturut-turut {1} DocType: Auto Email Report,Send only if there is any data,Menghantar hanya jika terdapat apa-apa data apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Penapis Reset -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Kebenaran di peringkat 0 mesti ditetapkan sebelum menetapkan tahap yang lebih tinggi +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Kebenaran di peringkat 0 mesti ditetapkan sebelum menetapkan tahap yang lebih tinggi apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Tugasan ditutup oleh {0} DocType: Integration Request,Remote,Remote -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Kira +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Kira apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Sila pilih DOCTYPE pertama apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Sahkan E-mel anda apps/frappe/frappe/www/login.html +42,Or login with,Atau log masuk dengan DocType: Error Snapshot,Locals,Penduduk tempatan apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Disampaikan melalui {0} pada {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} menyebut anda dalam komen dalam {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,contohnya (55 + 434) / 4 = atau Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,contohnya (55 + 434) / 4 = atau Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} diperlukan DocType: Integration Request,Integration Type,Jenis integrasi DocType: Newsletter,Send Attachements,menghantar attachements @@ -2795,15 +2801,15 @@ DocType: DocField,Perm Level,Tahap Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Peristiwa Di Kalendar hari ini DocType: Web Page,Web Page,Web Page DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In Search Global' tidak dibenarkan untuk jenis {0} berturut-turut {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In Search Global' tidak dibenarkan untuk jenis {0} berturut-turut {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In Search Global' tidak dibenarkan untuk jenis {0} berturut-turut {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In Search Global' tidak dibenarkan untuk jenis {0} berturut-turut {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Senarai View -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Tarikh mestilah dalam format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Tarikh mestilah dalam format: {0} DocType: Workflow,Don't Override Status,Jangan Override Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Sila berikan penilaian. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Reaksi Permintaan apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,istilah carian -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Pengguna Pertama: Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Pengguna Pertama: Anda apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Pilih Kolum DocType: Translation,Source Text,Source Text apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parameter yang hilang untuk log masuk @@ -2825,7 +2831,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Mengimport DocType: ToDo,Assigned By,Ditugaskan oleh apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Anda boleh menggunakan Borang Customize untuk menetapkan tahap di bidang. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Pilih Rantau Anda +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Pilih Rantau Anda DocType: Custom DocPerm,Level,Tahap DocType: Custom DocPerm,Report,Laporan apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Jumlah mesti lebih besar daripada 0. @@ -2845,7 +2851,7 @@ DocType: Website Theme,Background,latar Belakang DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Senarai JSON daripada DocTypes digunakan untuk memohon Kebenaran pengguna. Jika kosong, semua DocTypes berkaitan akan digunakan untuk memohon Kebenaran pengguna." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Sila tambah pengadaran -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Tidak boleh menetapkan Pinda tanpa Batal +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Tidak boleh menetapkan Pinda tanpa Batal apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Halaman Penuh DocType: DocType,Is Child Table,Adakah Anak Jadual apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} mesti menjadi salah satu daripada {1} @@ -2860,7 +2866,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ini pergi atas tayanga apps/frappe/frappe/config/setup.py +260,Install Applications.,Pasang Aplikasi. DocType: Contact,Last Name,Nama Akhir DocType: Event,Private,Persendirian -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Tiada makluman untuk hari ini +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Tiada makluman untuk hari ini DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Hantar Lampiran E-mel Cetak PDF (lawatan) DocType: Web Page,Left,Kiri DocType: Event,All Day,All Day @@ -2874,7 +2880,7 @@ DocType: Event,Send an email reminder in the morning,Hantar e-mel peringatan pad DocType: Blog Post,Published On,Published On DocType: Contact,Gender,Jantina apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Maklumat Mandatori hilang: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Ruang '{0}' tidak boleh ditetapkan sebagai unik kerana ia mempunyai nilai-nilai bukan unik +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Ruang '{0}' tidak boleh ditetapkan sebagai unik kerana ia mempunyai nilai-nilai bukan unik apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Hanya 200 memasukkan dibenarkan dalam satu permintaan DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Jenis Rujukan @@ -2887,7 +2893,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,amaran-tanda DocType: Workflow State,User,Pengguna DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Show tajuk dalam tetingkap penyemak imbas sebagai "Awalan - tajuk" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,teks dalam jenis dokumen +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,teks dalam jenis dokumen apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Ujian dijalankan apps/frappe/frappe/handler.py +91,Logged Out,Logged Out apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,More ... @@ -2913,13 +2919,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Pada masa ini Melihat DocType: DocField,Default,Default apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} telah ditambah -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Cari '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Cari '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Sila simpan laporan pertama apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} pelanggan ditambah apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Tidak Dalam DocType: Workflow State,star,bintang -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,nilai-nilai yang dipisahkan oleh koma -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Lebar Max untuk jenis mata wang adalah 100px berturut-turut {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,nilai-nilai yang dipisahkan oleh koma +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Lebar Max untuk jenis mata wang adalah 100px berturut-turut {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Sila berkongsi maklum balas anda untuk {0} apps/frappe/frappe/config/website.py +13,Content web page.,Laman web kandungan. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Tambah Peranan Baru @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Tidak pengguna LDAP yang sah apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} bukan Negeri yang sah apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Sila pilih kaedah pembayaran yang lain. PayPal tidak menyokong urus niaga dalam mata wang '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,medan carian {0} tidak sah +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,medan carian {0} tidak sah DocType: Workflow State,ok-circle,ok bulatan apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Anda boleh mencari sesuatu dengan bertanya 'mencari jingga pelanggan apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Maaf! Pengguna perlu mempunyai akses yang lengkap untuk rekod mereka sendiri. @@ -2999,7 +3005,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,menapis Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Teks yang akan dipaparkan untuk Pautan ke Laman Web jika borang ini mempunyai laman web. Laluan Link akan dijana secara automatik berdasarkan `page_name` dan` parent_website_route` DocType: Feedback Request,Feedback Trigger,maklum balas Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Sila set {0} pertama +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Sila set {0} pertama DocType: Unhandled Email,Message-id,Id-mesej DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Gagal diff --git a/frappe/translations/my.csv b/frappe/translations/my.csv index a34cdd3333..ef8f1900ff 100644 --- a/frappe/translations/my.csv +++ b/frappe/translations/my.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook က Username DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,မှတ်ချက်: အကွိမျမြားစှာအစည်းအဝေးများမိုဘိုင်း device ကို၏အမှု၌ခွင့်ပြုလိမ့်မည် apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},အသုံးပြုသူများအတွက် Enabled ကိုအီးမေးလ်စာပုံး {အသုံးပြုသူများအ} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ဤအီးမေးလ်မပို့နိုင်ပါ။ သင်သည်ဤတစ်လ {0} အီးမေးလ်များပေးပို့န့်သတ်ချက်ကိုကူးကြပါပြီ။ -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,အမြဲတမ်း {0} Submit? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,အမြဲတမ်း {0} Submit? DocType: Address,County,ကောင်တီ DocType: Workflow,If Checked workflow status will not override status in list view,Checked လုပ်ငန်းအသွားအလာအဆင့်အတန်းစာရင်းမြင်ကွင်းထဲမှာ status ကို override မည်မဟုတ်ခဲ့လျှင် apps/frappe/frappe/client.py +280,Invalid file path: {0},မမှန်ကန်ခြင်းဖိုင်လမ်းကြောင်း: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ဖိ apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,အသုံးပြုသူအီးမေးလ်များ DocType: User,Username,username -apps/frappe/frappe/model/base_document.py +581,Value too big,သိပ်ကြီးမားတဲ့ Value တစ်ခု +apps/frappe/frappe/model/base_document.py +580,Value too big,သိပ်ကြီးမားတဲ့ Value တစ်ခု DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run ကို Script စမ်းသပ်ခြင်း DocType: Contact,Department,ဌါန @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,သစ်လုံး DocType: Custom DocPerm,This role update User Permissions for a user,အသုံးပြုသူတစ်ဘို့ဤအခန်းကဏ္ဍကို update ကိုအသုံးပြုသူခွင့်ပြုချက် apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},{0} Rename DocType: Workflow State,zoom-out,zoom ကို-ထုတ် -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,၎င်း၏ဥပမာအားဖြင့်ပွင့်လင်းသောအခါ {0} မဖွင့်နိုင်မလား +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,၎င်း၏ဥပမာအားဖြင့်ပွင့်လင်းသောအခါ {0} မဖွင့်နိုင်မလား apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,စားပွဲတင် {0} အချည်းနှီးမဖြစ်နိုင် apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,လယ်ဂျာနှင့်အတူ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,images ကို DocType: Communication,Reference Owner,ကိုးကားစရာပိုင်ရှင် DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,အသေးဆုံးပျံ့နှံ့နေတဲ့အစိတ်အပိုင်းယူနစ် (အကြွေစေ့) ။ အမေရိကန်ဒေါ်လာဘို့ဥပမာ 1 ရာခိုင်နှုန်းအဘို့နှင့်က 0.01 အဖြစ်သို့ ဝင်. ရပါမည် DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Row" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Row" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,တစ်ဦးအမည်အပြည့်အစုံပေးပါ။ apps/frappe/frappe/model/document.py +904,Beginning with,အစနှင့်အတူ apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ဒေတာသွင်းကုန် Template: @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,မိဘ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","enabled လျှင်, စကားဝှက်ကိုတန်ခိုးအစွမ်းသတ္တိဟာနိမ့်ဆုံး Password ကိုရမှတ်တန်ဖိုးကိုအပေါ်အခြေခံပြီးပြဌာန်းပါလိမ့်မည်။ 2 တစ်ဦးကတန်ဖိုးကိုအလတ်စားခိုင်မာတဲ့ဖြစ်ခြင်းနှင့် 4 အလွန်အားကောင်းတဲ့ဖြစ်ခြင်း။" DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","enabled လျှင်, စကားဝှက်ကိုတန်ခိုးအစွမ်းသတ္တိဟာနိမ့်ဆုံး Password ကိုရမှတ်တန်ဖိုးကိုအပေါ်အခြေခံပြီးပြဌာန်းပါလိမ့်မည်။ 2 တစ်ဦးကတန်ဖိုးကိုအလတ်စားခိုင်မာတဲ့ဖြစ်ခြင်းနှင့် 4 အလွန်အားကောင်းတဲ့ဖြစ်ခြင်း။" DocType: About Us Settings,"""Team Members"" or ""Management""","ရေးအဖွဲ့အဖွဲ့ဝင်များ" သို့မဟုတ် "စီမံခန့်ခွဲမှု" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',လယ်ပြင်၌ရှိသော '' Check '' type ကို '' 0 'သို့မဟုတ်' '1' 'တစ်ခုခုရှိရမည်သည် default +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',လယ်ပြင်၌ရှိသော '' Check '' type ကို '' 0 'သို့မဟုတ်' '1' 'တစ်ခုခုရှိရမည်သည် default apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,မနေ့က DocType: Contact,Designation,သတ်မှတ်ပေးထားခြင်း DocType: Test Runner,Test Runner,test Runner ကို @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ဖျော်ဖြေမှု Published DocType: Email Group,Email Group,အီးမေးလ်အုပ်စု DocType: Note,Seen By,အားဖြင့်မြင်ကြ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,အကွိမျမြားစှာ Add -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,မကြိုက်ဘူး +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,မကြိုက်ဘူး apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,လယ်ပြင်သည် display ကိုတံဆိပ် Set apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},မမှန်ကန်တန်ဖိုးကို: {0} {1} {2} ဖြစ်ရမည် apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","ပြောင်းလဲမှုကိုလယ်ဂုဏ်သတ္တိများ (ဝှက်, Readonly, ခွင့်ပြုချက်ဖြင့်)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Contact U apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,အုပ်ချုပ်ရေးမှူး Logged ခုနှစ်တွင် DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""အရောင်း Query, ပံ့ပိုးမှု Query" စသည်တို့ကဲ့သို့သောဆက်သွယ်ရန်ရွေးချယ်စရာအသစ်တစ်ခုလိုင်းပေါ်တွင်အသီးအသီးသို့မဟုတ်ကော်မာကွဲကွာ။" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,"2. Download," -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,ထည့်သွင်း +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,ထည့်သွင်း apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},{0} ကိုရွေးပါ DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,အရောင် @@ -122,7 +122,7 @@ DocType: Translation,Translation,ဘာသာပြန်ချက် apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Install လုပ် apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,ဦး DocType: Custom Script,Client,ဖောက်သည် -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,ဤပုံစံကိုသင်တင်ဆောင်ခဲ့ကြပြီးနောက်နောက်ဆုံးပြင်ဆင်ခဲ့သည်သိရသည် +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,ဤပုံစံကိုသင်တင်ဆောင်ခဲ့ကြပြီးနောက်နောက်ဆုံးပြင်ဆင်ခဲ့သည်သိရသည် DocType: User Permission for Page and Report,User Permission for Page and Report,စာမျက်နှာနှင့်အစီရင်ခံစာအတွက်အသုံးပြုသူ၏ခွင့်ပြုချက် DocType: Address,Himachal Pradesh,Himachal Pradesh ပြည်နယ် DocType: System Settings,"If not set, the currency precision will depend on number format","သတ်မှတ်မထားလျှင်, ငွေကြေးတိကျစွာအရေအတွက်ကိုပုံစံပေါ်တွင်မူတည်ပါလိမ့်မယ်" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,အကွောငျးရငျး apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,အသုံးပြုသူကိုသတ်မှတ်ပေးပါ DocType: Email Unsubscribe,Email Unsubscribe,အီးမေးလ် unsubscribe DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,အကောင်းဆုံးရလဒ်တစ်ခုပွင့်လင်းနောက်ခံနှင့်အတူခန့်အကျယ် 150px ၏ပုံရိပ်တစ်ခုရွေးပါ။ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,ပထမဦးဆုံးအသုံးပြုသူဟာ System Manager က (သင်နောက်ပိုင်းမှာဒီပြောင်းလဲနိုင်သည်) ဖြစ်လာပါလိမ့်မယ်။ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,ပထမဦးဆုံးအသုံးပြုသူဟာ System Manager က (သင်နောက်ပိုင်းမှာဒီပြောင်းလဲနိုင်သည်) ဖြစ်လာပါလိမ့်မယ်။ ,App Installer,App ကိုအောက်က Installer DocType: Workflow State,circle-arrow-up,စက်ဝိုင်း-မြှား-up က apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,တင် ... DocType: Email Domain,Email Domain,အီးမေးလ်ပို့ရန်ဒိုမိန်း DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,လူတိုင်းအဘို့ -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Create မပါဘဲသွင်းကုန်စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Create မပါဘဲသွင်းကုန်စွဲလမ်းခြင်းမနိုင်သလား apps/frappe/frappe/config/desk.py +26,Event and other calendars.,အဖြစ်အပျက်နှင့်အခြားပြက္ခဒိန်။ apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,အားလုံးလယ်ကွင်းမှတ်ချက်တင်ပြရန်လိုအပ်သောဖြစ်ကြသည်။ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,ကော်လံမျိုးရန်ဖိဆွဲပါ @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,စံ Sidebar Menu ကို apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Home နဲ့ပူးတွဲဖိုင်များဖိုလ်ဒါမဖျက်နိုင်ပါ apps/frappe/frappe/config/desk.py +19,Files,files တွေကို apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,ခွင့်ပြုချက်သူတို့တာဝန်ပေးအဘယ်သို့အခန်းကဏ္ဍအပေါ်အခြေခံပြီးအသုံးပြုသူများအပေါ်လျှောက်ထားရ။ -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,သင်သည်ဤစာရွက်စာတမ်းနှင့်ဆက်စပ်သောအီးမေးလ်များကိုပေးပို့ဖို့ခွင့်ပြုမထား -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,/ အုပ်စုတစ်စုစီမှ {0} ကနေ atleast 1 ကော်လံကို select ပေးပါ +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,သင်သည်ဤစာရွက်စာတမ်းနှင့်ဆက်စပ်သောအီးမေးလ်များကိုပေးပို့ဖို့ခွင့်ပြုမထား +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,/ အုပ်စုတစ်စုစီမှ {0} ကနေ atleast 1 ကော်လံကို select ပေးပါ DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ဒီ Check သင် Sandbox API ကိုအသုံးပြုပြီးသင့်ငွေပေးချေမှုစမ်းသပ်ခံရလျှင် apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,သင်ကစံဝက်ဘ်ဆိုက် Theme ကိုပယ်ဖျက်ဖို့ခွင့်ပြုမထား DocType: Feedback Trigger,Example,နမူနာ @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,စုစုပေါင်း Subscriber apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","တစ်ဦးအခန်းက္ပအဆင့် 0 မှာ access ကိုမရှိပါဘူးလျှင်, အဆင့်မြင့်အနတ္တဖြစ်ကြ၏။" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save အမျှ DocType: Communication,Seen,မြင်ဘူး -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,အသေးစိတ်ပြရန် +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,အသေးစိတ်ပြရန် DocType: System Settings,Run scheduled jobs only if checked,စီစဉ်ထားအလုပ်အကိုင်များကို run checked သာလျှင် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,အပိုင်းခေါင်းစဉ် enabled လျှင်သာပြသပါလိမ့်မည် apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,မော်ကွန်းတိုက် @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,ဖျောက် HEAD DocType: Address,Current,ယခု DocType: Address,Current,ယခု -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Related စာရွက်စာတမ်းများ apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DOCTYPE အုပ်စုများ DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,ဖယ်ရှားရန်-စက်ဝိုင်း @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,ရေစစ် apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} {1} တူအထူးအက္ခရာများရှိသည်မဟုတ်နိုင် apps/frappe/frappe/config/setup.py +121,Update many values at one time.,တစ်ကြိမ်မှာအများအပြားတန်ဖိုးများကိုအပ်ဒိတ်လုပ်။ apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,error: မှတ်တမ်းမှတ်ရာများကိုသင်ကဖွင့်လှစ်ပြီးနောက်နောက်ဆုံးပြင်ဆင်ခဲ့သည်ခဲ့ -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ထွက် logged: {1} DocType: Address,West Bengal,အနောက်ဘင်္ဂလား -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign Submit စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign Submit စွဲလမ်းခြင်းမနိုင်သလား DocType: Social Login Keys,Facebook,Facebook က apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","{0}" ဖြင့်စစ်ထုတ်သည် DocType: Salutation,Administrator,အုပ်ချုပ်သူ @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,ဘလော့ခေါင်းစဉ် apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,စံအခန်းကဏ္ဍကိုပိတ်ထားမရနိုငျ DocType: Address,Mizoram,မီဇိုရမ်ပြည်နယ် DocType: Newsletter,Newsletter,သတင်းလွှာ -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ဖွငျ့နိုင်ရန်အတွက် Sub-query ကိုအသုံးမပြုနိုင်သ +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ဖွငျ့နိုင်ရန်အတွက် Sub-query ကိုအသုံးမပြုနိုင်သ DocType: Web Form,Button Help,button ကိုအကူအညီ DocType: Kanban Board Column,purple,ခရမ်းရောင်နု DocType: About Us Settings,Team Members,ရေးအဖွဲ့င်များ @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",သင့်စာရင်းပေးသွင်း {0} အပေါ်သက်တမ်းကုန်။ {1} သက်တမ်းတိုးရန်။ DocType: Workflow State,plus-sign,အပေါင်း-နိမိတ်လက္ခဏာ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup ကိုပြီးသားပြည့်စုံ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App ကို {0} install လုပ်ပြီးသည်မ +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App ကို {0} install လုပ်ပြီးသည်မ DocType: Workflow State,Refresh,အားဖြည့် DocType: Event,Public,ပြည်သူ့ကျန်းမာရေး apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ပြသရန်ဘယ်အရာမှ @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,အားဖြ apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,အီးမေးလ်ပံ့ပိုးမှု DocType: DocField,Print Hide If No Value,အဘယ်သူမျှမ Value ကိုဆိုပါက print ကိုဖျောက် DocType: Event,yellow,ဝါသော -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Published ဖြစ်ပါတယ်ကွင်းဆင်းခိုင်လုံသော fieldname ဖြစ်ရမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Published ဖြစ်ပါတယ်ကွင်းဆင်းခိုင်လုံသော fieldname ဖြစ်ရမည် apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,upload နှောင်ကြိုး DocType: Block Module,Block Module,block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ပို့ကုန် Template: @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},တစ်ဦးကအကောင့်သစ် {0} မှာသင့်အဘို့ကိုဖန်တီးခဲ့ပြီ apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ညွှန်ကြားချက်များမေးလ်ပို့ပေး apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ညွှန်ကြားချက်များမေးလ်ပို့ပေး -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),အီးမေးလ်လက်ခံသူ (သို့) Enter +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),အီးမေးလ်လက်ခံသူ (သို့) Enter DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,အီးမေးလ်ပို့ရန်အလံတန်းစီ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,{0} ပွင့်လင်းခွဲခြားသတ်မှတ်လို့မရပါ။ အခြားအရာတစ်ခုခုကြိုးစားပါ။ @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ကို Message ID ကို DocType: Property Setter,Field Name,လယ်ပြင်၌အမည် apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google က GSuite configured မပေးပါ။ apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,သို့မဟုတ် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,module တစ်ခုနာမတော်ကိုမ ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continue +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,module တစ်ခုနာမတော်ကိုမ ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continue DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,လက်မှတ် DocType: User,Tile,tile @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,အားလုံးဗားရှင်းပြရန် DocType: Workflow State,Print,ပုံနှိပ် DocType: User,Restrict IP,အိုင်ပီကန့်သတ် +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,dashboard ကို apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ဒီအချိန်မှာအီးမေးလ်များကိုပေးပို့ဖို့မအောင်မြင်ဘူး apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,command တစ်ခုရှာရန်သို့မဟုတ်ရိုက်ထည့် DocType: Communication,Timeline Name,timeline ကိုအမည် @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,အရောင်းမဟာ Manager က apps/frappe/frappe/www/complete_signup.html +13,One Last Step,တဦးတည်းပြီးခဲ့သည့်အဆင့် apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,အဆိုပါ Document ဖိုင် Type ၏အမည် (DOCTYPE) သင်သည်ဤတောချိတ်ဆက်ချင်တယ်။ ဥပမာဖောက်သည် DocType: User,Roles Assigned,Assigned အခန်းကဏ္ဍ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ရှာရန်အကူအညီ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ရှာရန်အကူအညီ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ရှာရန်အကူအညီ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ရှာရန်အကူအညီ DocType: Top Bar Item,Parent Label,မိဘ Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",သင့်ရဲ့ query ကိုလက်ခံရရှိခဲ့ကြောင်းသိရသည်။ ကျနော်တို့မကြာမီနောက်ကျော reply လိမ့်မည်။ သင်မည်သည့်အပိုဆောင်းသတင်းအချက်အလက်များရှိပါကဒီမေးလ်မှ reply ကိုကျေးဇူးတင်ပါ။ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,ခွင့်ပြုချက်ကိုအလိုအလျောက် Standard အစီရင်ခံစာများနှင့်ရှာဖွေမှုမှဘာသာပြန်ထားသောနေကြပါတယ်။ @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit ကိုဦးခေါင်း DocType: File,File URL,file ကို URL ကို DocType: Version,Table HTML,စားပွဲတင်က HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ရလဒ်တွေကို '' အဘို့မျှမတွေ့

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Subscribers Add apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,ဒီနေ့သည်လာမည့်အဖွဲ့တွေ DocType: Email Alert Recipient,Email By Document Field,Document ဖိုင်ဖျော်ဖြေမှုအားဖြင့် email @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,ဖျော်ဖြေမှုတွ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,အသုံးပြုသူဝေမျှမယ်တွေအတွက်မဖြစ်မနေဖြစ်ပါသည် DocType: DocField,Hidden,Hidden DocType: Web Form,Allow Incomplete Forms,မပြည့်စုံပုံစံ Allow -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ပထမဦးဆုံးသတ်မှတ်ရမည် +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ပထမဦးဆုံးသတ်မှတ်ရမည် apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","ဘုံစာပိုဒ်တိုများကိုရှောင်ရှား, စကားအနည်းငယ်အသုံးပြုပါ။" DocType: Workflow State,plane,လေယာဉ် -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,သည်းခံပါ။ သင့်ရဲ့ငွေပေးချေမှုပျက်ကွက်ခဲ့သည်။ apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","သင်အသစ်မှတ်တမ်းများကို upload အကယ်. ပစ္စုပ္ပန်လျှင်, "အမည်စီးရီး" မဖြစ်မနေဖြစ်လာသည်။" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,ဒီနေ့အဘို့သတိပေးချက် Get +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,ဒီနေ့အဘို့သတိပေးချက် Get apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE သာအုပ်ချုပ်ရေးမှူးအားဖြင့်အမည်ပြောင်းနိုင်ပါတယ် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},{0} ၏ပြောင်းလဲသွားတယ်တန်ဖိုးကို DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,စိစစ်အတည်ပြုဘို့သင့်အီးမေးလ်စစ်ဆေးပါ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,သိုးခြံပုံစံ၏အဆုံးမှာမဖွစျနိုငျ +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,သိုးခြံပုံစံ၏အဆုံးမှာမဖွစျနိုငျ DocType: Communication,Bounced,ကစားနိုင်ခဲ့ပါတယ် DocType: Deleted Document,Deleted Name,Deleted အမည် apps/frappe/frappe/config/setup.py +14,System and Website Users,စနစ်နှင့်ဝက်ဘ်ဆိုက်အသုံးပြုသူများ @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,စာရွက်စ DocType: GSuite Templates,Destination ID,destination ID ကို DocType: Desktop Icon,List,စာရင်း DocType: Communication,Link Name,link ကိုအမည် -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,လယ်ပြင်၌ {0} အတန်းအတွက် {1} က default မပါဘဲဝှကျထားနှင့်မဖြစ်မနေမရနိုင်ပါ +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,လယ်ပြင်၌ {0} အတန်းအတွက် {1} က default မပါဘဲဝှကျထားနှင့်မဖြစ်မနေမရနိုင်ပါ DocType: System Settings,mm/dd/yyyy,မီလီမီတာ / dd / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,မှားနေသောစကားဝှက်: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,မှားနေသောစကားဝှက်: DocType: Print Settings,Send document web view link in email,အီးမေးလ်ထဲတွင်စာရွက်စာတမ်းကို web အမြင် link ကို Send apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,{0} အောင်မြင်စွာသိမ်းဆည်းစာရွက်စာတမ်းအဘို့သင့်တုံ့ပြန်ချက် apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,လွန်ခဲ့သော -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{1} များအတွက် {0} အတန်း DocType: Currency,"Sub-currency. For e.g. ""Cent""",sub-ငွေကြေး။ ဥပမာ "Cent က" အကြောင်းမူကား apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,တင်ထားသောဖိုင်ကို Select လုပ်ပါ @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Link ကို apps/frappe/frappe/utils/file_manager.py +96,No file attached,ဖိုင်ကိုပူးတွဲမရှိပါ DocType: Version,Version,version DocType: User,Fill Screen,Screen ကဖြည့်ပါ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","မှုကြောင့်ပျောက်ဆုံးနေအချက်အလက်များ, ဒီသစ်ပင်ကိုအစီရင်ခံစာဖော်ပြရန်နိုင်ဘူး။ အများစုကဖွယ်ရှိသောကြောင့်မှုကြောင့်ခွင့်ပြုချက်မှထွက် filtered လျက်ရှိသည်။" +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","မှုကြောင့်ပျောက်ဆုံးနေအချက်အလက်များ, ဒီသစ်ပင်ကိုအစီရင်ခံစာဖော်ပြရန်နိုင်ဘူး။ အများစုကဖွယ်ရှိသောကြောင့်မှုကြောင့်ခွင့်ပြုချက်မှထွက် filtered လျက်ရှိသည်။" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ကို Select လုပ်ပါဖိုင် apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,လွှတ်တင်ခြင်းကနေတဆင့် Edit ကို -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",Document အမျိုးအစားကို ... ဥပမာဖောက်သည် +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",Document အမျိုးအစားကို ... ဥပမာဖောက်သည် apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,အဆိုပါအခြေအနေ '' {0} '' မမှန်ကန် DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,သင့်ကိုယ်ပိုင်ဘာသာ Add @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,ဗုဒ္ဓဟူးနေ့ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","အပြင်အခန်းကဏ္ဍအခြေစိုက်ခွင့်ပြုချက်နည်းဥပဒေများကနေ, သင် DOCTYPE အပေါ် အခြေခံ. အသုံးပြုသူခွင့်ပြုချက်လျှောက်ထားနိုင်ပါသည်။" apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","ဤရွေ့ခွင့်ပြုချက်ကိုခွင့်ပြုစံချိန်ဆက်စပ်သည့်နေရာအားလုံးလုပ်ငန်းတွေအတွက်လျှောက်ထားကြလိမ့်မည်။ ကုမ္ပဏီကို C အသုံးပြုသူ X ၏အသုံးပြုသူတို့၏ခွင့်ပြုချက်ထည့်သွင်းလျှင်ဥပမာ, အသုံးပြုသူ X ကိုသာတစ်ဦးနှင့်ဆက်နွယ်တန်ဖိုးကိုအဖြစ်ကုမ္ပဏီတစ်ခုကို C ရှိတယ်လို့အရောင်းအကြည့်နိုင်ပါလိမ့်မည်။" -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Image ကိုလယ်တရားဝင် fieldname ဖြစ်ရပါမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Image ကိုလယ်တရားဝင် fieldname ဖြစ်ရပါမည် DocType: OAuth Client,Token,တိုကင် DocType: Property Setter,ID (name) of the entity whose property is to be set,အဘယ်သူ၏ပစ္စည်းဥစ္စာပိုင်ဆိုင်မှုသတ်မှတ်ခံရဖို့ဖြစ်ပါတယ် entity ၏ ID ကို (အမည်) apps/frappe/frappe/limits.py +82,"To renew, {0}.",{0} သက်တမ်းတိုးရန်။ @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,sidebar ပစ္စည်းများ apps/frappe/frappe/installer.py +125,App {0} already installed,App ကို {0} ပြီးသား installed DocType: Workflow State,exclamation-sign,"ကြီးတွေ,!-နိမိတ်လက္ခဏာ" apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,show ကိုခွင့်ပြုချက်များ -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline ကိုလယ် Link ကိုသို့မဟုတ် Dynamic Link ကိုရှိရမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline ကိုလယ် Link ကိုသို့မဟုတ် Dynamic Link ကိုရှိရမည် apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,နေ့စွဲ Range apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},{1} ၏စာမျက်နှာ {0} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,websit apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","encryption key ကိုမမှန်ကန်, site_config.json စစ်ဆေးပါ" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ရန် DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},အောင်မြင်သော: {0} {1} မှ +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},အောင်မြင်သော: {0} {1} မှ apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,သရုပ်ပြအတွက်အသုံးပြုသူအသေးစိတျမပြောင်းနိုင်ပါ။ https://erpnext.com မှာအသစ်တခုအကောင့်အတွက်ဆိုင်းအပ်ပေးပါ apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,အပြောင်းအလဲများကိုလုပ်ရန်ဤ Copy လုပ်လိုက်ပါ ကျေးဇူးပြု. apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF ဖိုင်ရယူရန်မျိုးဆက်ဘယ်ကြောင့်ဆိုသော်လည်းကျိုးပုံရိပ်ကိုလင့်များ၏မအောင်မြင်သော @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,ခေါက် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saved apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,သင်တို့နှင့်အတူကူညီအဘယျသို့လိုအပ်သလဲ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ကိုရွေးပါရွေးစရာ။ အသစ်တစ်ခုကိုလိုင်းပေါ်တွင်အသီးအသီး option ကို။ -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,အမြဲတမ်း {0} Cancel? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,အမြဲတမ်း {0} Cancel? DocType: Workflow State,music,ဂီတ DocType: Web Page,Settings,Settings ကို apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE ကိုသတ်မှတ်ပေးပါ DocType: Print Format,Style Settings,စတိုင်က Settings -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,စီလယ်ကွင်း {0} ခိုင်လုံသော fieldname ဖြစ်ရမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,စီလယ်ကွင်း {0} ခိုင်လုံသော fieldname ဖြစ်ရမည် apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,နောက်ထပ် DocType: Contact,Sales Manager,အရောင်းမန်နေဂျာ apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Rename DocType: Print Format,Format Data,format အချက်အလက် -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,ကဲ့သို့ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,ကဲ့သို့ DocType: Customize Form Field,Customize Form Field,Form တွင်ကွင်းဆင်း Customize apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,အသုံးပြုသူ Allow DocType: OAuth Client,Grant Type,Grant ကအမျိုးအစား apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,တစ်အသုံးပြုသူများကဖတ်လို့လွယ်သောစာရွက်စာတမ်းများစစ်ဆေး apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,အိမ်ခန်း app ကိုခွင့်မပြု -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,သံခိတ်အဖြစ်% ကိုသုံး -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","အီးမေးလ်ပို့ရန်ဒိုမိန်းသည်ဤအကောင့်မပြုပြင်, တဦးတည်း Create?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,သံခိတ်အဖြစ်% ကိုသုံး +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","အီးမေးလ်ပို့ရန်ဒိုမိန်းသည်ဤအကောင့်မပြုပြင်, တဦးတည်း Create?" DocType: User,Reset Password Key,Password ကို Reset Key ကို DocType: Email Account,Enable Auto Reply,မော်တော်ကားစာပြန်ရန် Enable apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,မမွငျရ @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ကသာနှင့်တပြိုင်န DocType: Email Queue Recipient,Email Queue Recipient,အီးမေးလ်တန်းစီလက်ခံသူ DocType: Address,Nagaland,နာဂ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,username {0} ရှိနှင့်ပြီးသား -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} အရေးကြီးသောမဟုတ်ပါအဖြစ်တင်သွင်းထားမရပါ +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} အရေးကြီးသောမဟုတ်ပါအဖြစ်တင်သွင်းထားမရပါ apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},သင့်ရဲ့လိပ်စာ Template {0} မှာအမှားရှိပါတယ် DocType: Footer Item,"target = ""_blank""",ပစ်မှတ် = "_blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,နာမည်အပြည့်အစု apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},သင်ကအစီရင်ခံစာမှဝင်ရောက်ခွင့်မရှိဘူး: {0} DocType: User,Send Welcome Email,ကြိုဆိုပါတယ်အီးမေးလ်ပို့ပါ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ဒေါင်းလုပ်ကဲ့သို့တူညီသောပုံစံအားလုံးအသုံးပြုသူခွင့်ပြုချက်င် CSV ဖိုင် upload ။ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Filter ကို Remove +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Filter ကို Remove DocType: Address,Daman and Diu,ဒါမန်နှင့် Diu DocType: Address,Personal,ပုဂ္ဂိုလ်ရေး apps/frappe/frappe/config/setup.py +113,Bulk Rename,ထုထည်ကြီး Rename @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",စံ DOCTYPE Customize Form ကိုအသုံးပြု default အနေနဲ့ပုံနှိပ်ပုံစံရှိသည်မဟုတ်နိုင်ပါတယ် DocType: Report,Query,မေးခွန်း DocType: DocType,Sort Order,Sort အမိန့် -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'' List ကိုကြည့်ရန်ခုနှစ်တွင် '' အတန်းအတွက်အမျိုးအစား {0} သည်အခွင့်မပေး {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'' List ကိုကြည့်ရန်ခုနှစ်တွင် '' အတန်းအတွက်အမျိုးအစား {0} သည်အခွင့်မပေး {1} DocType: Custom Field,Select the label after which you want to insert new field.,သင်အသစ်များသည်လယ်ပြင်၌ထည့်သွင်းရန်လိုသည့်နောက်ပိုင်းတံဆိပ်ကိုရွေးချယ်ပါ။ ,Document Share Report,စာရွက်စာတမ်းဝေမျှမယ်အစီရင်ခံစာ DocType: User,Last Login,နောက်ဆုံးဝင်မည် -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname အတန်း {0} အတွက်လိုအပ်သည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname အတန်း {0} အတွက်လိုအပ်သည် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,ကြောကျတိုငျ DocType: Custom Field,Adds a custom field to a DocType,တစ် DOCTYPE မှတစ်စိတ်ကြိုက်ထည့်သွင်း DocType: File,Is Home Folder,မူလစာမျက်နှာ Folder ကို Is @@ -594,7 +594,7 @@ DocType: File,Folder,Folder ကို DocType: DocField,Index,ညွှန်ပြသောအရာ DocType: Email Group,Newsletter Manager,သတင်းလွှာ Manager က apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,option 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,အားလုံးရေးသားချက်များ +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} {1} မှ apps/frappe/frappe/config/setup.py +89,Log of error during requests.,တောင်းဆိုမှုများစဉ်အတွင်းအမှားအယွင်းအထဲ။ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} အောင်မြင်စွာအီးမေးလ် Group မှထည့်သွင်းခဲ့တာဖြစ်ပါတယ်။ DocType: Address,Uttar Pradesh,Uttar Pradesh ပြည်နယ် @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indicator DocType: DocShare,Everyone,လူတိုင်းသည် DocType: Workflow State,backward,နောက်ပြန် -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: တစ်ယောက်သာတူညီအခန်းကဏ္ဍနှင့်အတူခွင့်ပြုအုပ်ချုပ်, အဆင့်နှင့် {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: တစ်ယောက်သာတူညီအခန်းကဏ္ဍနှင့်အတူခွင့်ပြုအုပ်ချုပ်, အဆင့်နှင့် {1}" DocType: Email Queue,Add Unsubscribe Link,စာရင်းဖျက်ရန် Link ကို Add apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,မှတ်ချက်မရှိသေးပါ။ သစ်တစ်ခုဆွေးနွေးမှုကိုစတင်ပါ။ DocType: Workflow State,share,ဝေစု @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ခွ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,view Subscribers apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,ဒေါ် DocType: Website Theme,Background Color,နောက်ခံသမိုင်းအရောင် -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,အီးမေးလ်ပို့သည့်အနေဖြင့်အမှားများရှိကြ၏။ ထပ်ကြိုးစားပါ။ +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,အီးမေးလ်ပို့သည့်အနေဖြင့်အမှားများရှိကြ၏။ ထပ်ကြိုးစားပါ။ DocType: Portal Settings,Portal Settings,Portal ကိုချိန်ညှိ DocType: Web Page,0 is highest,0 င်အမြင့်မားဆုံးဖြစ်ပါတယ် apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,သငျသညျ {0} အားဤဆက်သွယ်ရေးနှင့်ပြန်လည်ချိတ်ဆက်ရန်လိုခငျြတာသေချာလား? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,ကျွန်ုပ်တိ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ရှာဖွေခြင်း ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,ရှာဖွေခြင်း ... DocType: Workflow State,text-width,text-width ကို -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ဤမှတ်တမ်းသည်အမြင့်ဆုံးနှောင်ကြိုးများကိုကန့်သတ်ရောက်ရှိခဲ့သည်။ +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ဤမှတ်တမ်းသည်အမြင့်ဆုံးနှောင်ကြိုးများကိုကန့်သတ်ရောက်ရှိခဲ့သည်။ apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,အောက်ပါမဖြစ်မနေလယ်ကွင်းပြည့်စုံလိမ့်ရမယ်:
DocType: Email Alert,View Properties (via Customize Form),(Customize ကို Form တွင်ကနေတဆင့်) view Properties ကို DocType: Note Seen By,Note Seen By,မြင်မှတ်ချက် @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,အစီရင်ခံစာ Builder အစီရင်ခံစာများအစီရင်ခံစာအီတာလျှံကတိုက်ရိုက်စီမံခန့်ခွဲကြသည်။ ဘာမှ။ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,သင့်ရဲ့အီးမေးလ်လိပ်စာအတည်ပြုရန် ကျေးဇူးပြု. apps/frappe/frappe/model/document.py +903,none of,အဘယ်သူအားမျှ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ငါ့ကိုအဖြေကိုကူးယူပြီး Send +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ငါ့ကိုအဖြေကိုကူးယူပြီး Send apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,အသုံးပြုသူခွင့်ပြုချက် upload DocType: Dropbox Settings,App Secret Key,App ကိုလြှို့ဝှကျ Key ကို apps/frappe/frappe/config/website.py +7,Web Site,ကျဘျဆိုကျ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Checked ပစ္စည်းများကို Desktop ပေါ်မှာပြသပါလိမ့်မည် -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} လူပျိုအမျိုးအစားများဘို့ရာခန့်ထားသောမရနိုင်ပါ +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} လူပျိုအမျိုးအစားများဘို့ရာခန့်ထားသောမရနိုင်ပါ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban ဘုတ်အဖွဲ့ {0} မတည်ရှိပါဘူး။ apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} လောလောဆယ်တွင်ဤစာရွက်စာတမ်းကြည့်ရှုနေကြပါတယ် DocType: ToDo,Assigned By Full Name,အပြည့်အဝအမည်အားဖြင့်တာဝန်ပေးအပ် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} updated -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,အစီရင်ခံစာလူပျိုအမျိုးအစားများဘို့ရာခန့်ထားသောမရနိုင်ပါ +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,အစီရင်ခံစာလူပျိုအမျိုးအစားများဘို့ရာခန့်ထားသောမရနိုင်ပါ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,လွန်ခဲ့တဲ့ {0} ရက်ပတ်လုံး DocType: Email Account,Awaiting Password,Password ကိုစောင့်ဆိုင်း DocType: Address,Address Line 1,လိပ်စာစာကြောင်း 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","လုပ်ငန်းအသွားအလာသည်ပြည်နယ်များ (ဥပမာမူကြမ်း, Approved, ဖျက်သိမ်း) ။" DocType: Print Settings,Allow Print for Draft,မူကြမ်းများအတွက်ပုံနှိပ်ပါ Allow apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set ပမာဏ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,အတည်ပြုဖို့ဤစာရွက်စာတမ်း Submit +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,အတည်ပြုဖို့ဤစာရွက်စာတမ်း Submit DocType: Contact,Unsubscribed,unsubscribe apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,စာမျက်နှာနှင့်အစီရင်ခံစာအတွက် Set ထုံးစံအခန်းကဏ္ဍ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,rating: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ဒေတာသွင်းကုန် Tool ကို DocType: Address,Dadra and Nagar Haveli,Dadra နှင့်နဂါးပါပြီ apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ဖိုင်တွေစက္ကန့်အနည်းငယ်စောင့်ဆိုင်းကျေးဇူးပြုပြီးတင်ခြင်း။ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,သင်၏ရုပ်ပုံ Attach +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,သင်၏ရုပ်ပုံ Attach apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,အတန်းတန်ဖိုးများပြောင်းလဲ DocType: Workflow State,Stop,ရပ် DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,သင်ဖွင့်ချင်တဲ့စာမျက်နှာမှ link ။ သင်ကအုပ်စုတစုမိဘလုပ်လိုလျှင်အလွတ်ချန်ထားပါ။ @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,လက်ဝဲမှ Labels: ali DocType: Help Article,Expert,ကျွမ်းကျင်သူ DocType: Workflow State,circle-arrow-right,စက်ဝိုင်း-မြှားညာ DocType: LDAP Settings,LDAP Server Url,LDAP ဆာဗာ Url ကို -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,၎င်း၏ {0} ဖွင့်လှစ်သောအခါပွင့်လင်းဥပမာအားဖြင့်မနိုင် +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,၎င်း၏ {0} ဖွင့်လှစ်သောအခါပွင့်လင်းဥပမာအားဖြင့်မနိုင် apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,install လုပ်ဘို့တန်းစီထားသည် DocType: Custom DocPerm,Custom DocPerm,custom DocPerm DocType: Newsletter,Send Unsubscribe Link,စာရင်းဖျက်ရန် Link ကိုပို့ပါ @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App ကို {0} ဖယ်ရှား DocType: Custom DocPerm,Apply User Permissions,အသုံးပြုသူခွင့်ပြုချက် Apply DocType: User,Modules HTML,modules က HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ Manager ကို apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,လိုအပ်သောပျောက်ဆုံးတန်ဖိုးများ DocType: DocType,Other Settings,အခြားချိန်ညှိ DocType: Social Login Keys,Frappe,Frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ဆောင်လုလင apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,အဘယ်သူမျှမစာရွက်စာတမ်းကိုရှေးခယျြ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ဒေါက်တာ DocType: Event,Event,အဖြစ်အပျက် -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} တွင်, {1} wrote:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} တွင်, {1} wrote:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,စံနယ်ပယ်မဖျက်နိုင်ပါ။ သင်ချင်တယ်ဆိုရင်သင်ကဖုံးကွယ်ထားနိုင်ပါတယ် DocType: Top Bar Item,For top bar,ထိပ်ဆုံးဘားတန်းများအတွက် apps/frappe/frappe/utils/bot.py +148,Could not identify {0},{0} ခွဲခြားသတ်မှတ်လို့မရပါ @@ -754,7 +753,7 @@ DocType: Role,Desk Access,desk Access ကို DocType: Workflow State,minus,အနှုတ် apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server ကိုအမှား: သင့်ရဲ့ server ကိုသစ်လုံးစစ်ဆေးသို့မဟုတ်နည်းပညာပံ့ပိုးမှုဆက်သွယ်နိုင်ပါသည်။ apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ကြိုဆိုပါတယ်အီးမေးလ်ပို့ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,၏ပထမဦးဆုံးအသုံးပြုရန် system ကိုပြင်ကြကုန်အံ့။ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,၏ပထမဦးဆုံးအသုံးပြုရန် system ကိုပြင်ကြကုန်အံ့။ apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ဆောင်းပါး apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ယခုပင်လျှင်မှတ်ပုံတင် DocType: System Settings,Float Precision,float Precision @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,ပုံနှိပ်ပါ Allow apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,အဘယ်သူမျှမ Apps တွေကို Install လုပ်ရတဲ့ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,လယ်ပြင်အဖြစ်မသင်မနေရမာကု DocType: Communication,Clicked,နှိပ်လိုက် -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},မှ '' {0} {1} မရှိပါခွင့်ပြုချက် +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},မှ '' {0} {1} မရှိပါခွင့်ပြုချက် DocType: User,Google User ID,Google ကအသုံးပြုသူ ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ပေးပို့ဖို့စီစဉ်ထား DocType: DocType,Track Seen,Track မွငျ @@ -838,7 +837,7 @@ DocType: Address,Kerala,ကီရာလာ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,တစ်ပြိုင်နက်တည်း Sessions DocType: OAuth Client,Client Credentials,client သံတမန်ဆောင်ဧည် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,တစ်ဦးရဲ့ module တစ်ခုသို့မဟုတ် tool ကိုဖွင့်ပါ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,တစ်ဦးရဲ့ module တစ်ခုသို့မဟုတ် tool ကိုဖွင့်ပါ DocType: Communication,Delivery Status,Delivery နဲ့ Status DocType: Module Def,App Name,App ကိုအမည် apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,ခွင့်ပြု max ဖိုင်အရွယ်အစား {0} ကို MB ဖြစ်ပါတယ် @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,ကိုးကားစရာ DocType: Email Queue,Unsubscribe Method,စာရင်းဖျက်ရန် Method ကို DocType: GSuite Templates,Related DocType,Related DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,အကြောင်းအရာထည့်ရန်ပြင်ဆင်ရန် -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,ဘာသာစကားများကို Select လုပ်ပါ -apps/frappe/frappe/__init__.py +510,No permission for {0},{0} ဘို့အဘယ်သူမျှမခွင့်ပြုချက် +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,ဘာသာစကားများကို Select လုပ်ပါ +apps/frappe/frappe/__init__.py +509,No permission for {0},{0} ဘို့အဘယ်သူမျှမခွင့်ပြုချက် DocType: DocType,Advanced,advanced apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API သော့သို့မဟုတ် API ကိုလြှို့ဝှကျကမှားပုံရသည် !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ကိုးကားစရာ: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Form တွင် Type ကိုရိ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,အဘယ်သူမျှမမှတ်တမ်းများ tagged ။ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ဖျော်ဖြေမှု Remove DocType: User,Send Password Update Notification,Password ကို Update ကိုအသိပေးခြင်း Send -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DOCTYPE, DOCTYPE ခွင့်ပြုခြင်း။ သတိထားပါ!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ပုံနှိပ်, အီးမေးလ်များအတွက်စိတ်ကြိုက် Formats" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,နယူးဗားရှင်းနိုင်ရန် Updated DocType: Custom Field,Depends On,တွင်မူတည် @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,တယောက် apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,ကူးယူဖိုင်ကိုရွေးပေးပါ apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,တဦးတည်းယခုအချိန်တွင်ကိုစစ်ဆေးခြင်း apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,show Tags: +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Apply တင်းကျပ်အသုံးပြုသူခွင့်ပြုချက် check လုပ်ထားသည်နှင့်အသုံးပြုသူတို့၏ခွင့်ပြုချက်တစ်အသုံးပြုသူများအတွက် DOCTYPE များအတွက်သတ်မှတ်ထားသောလျှင်, ထိုလင့်ခ်၏တန်ဖိုးကိုအလွတ်ရှိရာအားလုံးစာရွက်စာတမ်းများ, ထိုအသုံးပြုသူပြလိမ့်မည်မဟုတ်" DocType: Address,Billing,ငွေတောင်းခံ DocType: Email Queue,Not Sent,Sent မဟုတ် DocType: Web Form,Actions,* Actions @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ရှင် apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,နေ့တိုင်းဖြစ်ရပ်များထိုနေ့ရက်တွင်အပြီးသတ်သင့်သည်။ DocType: Communication,User Tags,အသုံးပြုသူ Tags: apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ရယူပုံများ .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup ကို> အသုံးပြုသူ DocType: Workflow State,download-alt,"download, alt +" apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ဒေါင်းလုဒ်လုပ်ခြင်း App ကို {0} DocType: Communication,Feedback Request,တုံ့ပြန်ချက်တောင်းဆိုခြင်း @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backup တွေကို apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,ဆက်သွယ်ရန် Add DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,optional: အမြဲတမ်းသောဤအိုင်ဒီမှပေးပို့ပါ။ အသစ်တစ်ခုကိုတန်းပေါ်အသီးအသီးအီးမေးလ်လိပ်စာ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,အသေးစိတ်ဝှက် +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,အသေးစိတ်ဝှက် DocType: Workflow State,Tasks,Tasks ကို DocType: Event,Tuesday,အင်္ဂါနေ့ DocType: Blog Settings,Blog Settings,ဘလော့ Settings ကို @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ဒီကယ်တင်ခြင်းသို့ရောက်ကြသည်အဘယ်မှာရှိသနည်းအတူတူ folder ထဲမှာတစ်ဦးက Python file ကိုရေးပြီးကော်လံနှင့်ရလဒ်ကိုပြန်သွားပါ။ DocType: DocType,Sort Field,Sort ဖျော်ဖြေမှု DocType: Razorpay Settings,Razorpay Settings,Razorpay ချိန်ညှိ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit ကို Filter ကို -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,လယ်ပြင်၌ {0} အမျိုးအစား {1} မဖြစ်မနေမဖွစျနိုငျ -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ဥပမာ။ Apply အသုံးပြုသူခွင့်ပြုချက်အစီရင်ခံစာ DOCTYPE များအတွက်ဓြှုသျောလညျးမအသုံးပြုသူခွင့်ပြုချက်တစ်အသုံးပြုသူများအတွက်အစီရင်ခံစာအဘို့သတ်မှတ်ကြပါတယ်, ထို့နောက်အားလုံးအစီရင်ခံစာများကြောင့်အသုံးပြုသူပြနေတယ်ဆိုရင်" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit ကို Filter ကို +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,လယ်ပြင်၌ {0} အမျိုးအစား {1} မဖြစ်မနေမဖွစျနိုငျ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,နောက်ထပ် Add apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ဖျောက်ဇယား DocType: System Settings,Session Expiry Mobile,session သက်တမ်းကုန်ဆုံးမိုဘိုင်းလ် @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,နှောင့်နှေး apps/frappe/frappe/config/setup.py +128,List of backups available for download,download ပြုလုပ်ရရှိနိုင်သောထားရှိတဲ့ Backup များစာရင်း apps/frappe/frappe/www/login.html +89,Sign up,ဆိုင်းအပ် DocType: Test Runner,Output,output +DocType: Email Alert,Set Property After Alert,အချက်ပေးပြီးနောက်အိမ်ခြံမြေ Set apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ပုံစံများမှလယ်ကွင်းထည့်ပါ။ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,တစ်ခုခုကဒီ site ရဲ့ Paypal configuration နဲ့အတူမှားယွင်းနေသည်နဲ့တူလှပါတယ်။ DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,အရွက် DocType: Portal Menu Item,Portal Menu Item,portal Menu ကို Item DocType: User Email,Email ID,အီးမေးလ် ID ကို +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Apply အသုံးပြုသူခွင့်ပြုချက်များအစီရင်ခံစာ DOCTYPE များအတွက်ဓြှုဒါပေမယ့်ဘယ်သူမျှမအသုံးပြုသူခွင့်ပြုချက်များတစ်အသုံးပြုသူများအတွက်အစီရင်ခံစာအဘို့သတ်မှတ်ကြပါတယ်, ထို့နောက်အားလုံးအစီရင်ခံစာများကြောင့်အသုံးပြုသူပြနေတယ်ဆိုရင်" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,အသုံးပြုသူကခွင့်ပြုပြီးနောက်လိုင်း App ကိုမှဝင်ရောက်ခွင့်ရှိလိမ့်မည်သည့်အရင်းအမြစ်များကိုစာရင်းတစ်ခု။
ဥပမာစီမံကိန်းအတွက် DocType: Translation,Translated Text,ဘာသာပြန်ထားသောစာသား DocType: Contact Us Settings,Query Options,query က Options @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,ဆက်သွယ်ရန် DocType: System Settings,Setup Complete,Setup ကို Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,အားလုံးစာရွက်စာတမ်းရှယ်ယာအစီရင်ခံစာ apps/frappe/frappe/www/update-password.html +18,New Password,စကားဝှက်အသစ် -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,ပျောက်ဆုံး {0} Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,ပျောက်ဆုံး {0} Filter apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,ဆော်ရီး! သငျသညျ Auto-generated မှတ်ချက်များမဖျက်နိုင်ပါ DocType: Website Theme,Style using CSS,CSS ကို အသုံးပြု. style apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,ကိုးကားစရာ DOCTYPE @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,block ပါဝါ apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,'' {1} '' များအတွက် {0} မှအရှည် Reverting '' {2} '၌; {3} အချက်အလက်များ၏ truncation စေမည်ကဲ့သို့သောအရှည်ချိန်ညှိခြင်း။ DocType: Print Format,Custom CSS,custom CSS ကို apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,a comment Add -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},ကိုလျစ်လျူရှု: {0} {1} မှ +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ကိုလျစ်လျူရှု: {0} {1} မှ DocType: Address,Gujarat,ဂူ apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,automated ဖြစ်ရပ်များ (Scheduler) အပေါ်မိစ္ဆာအထဲ။ apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),မမှန်ကန်သောကော်မာ (CSV က File) Value ကိုခွားထား @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,default Incoming DocType: Workflow State,repeat,ပြန်ဆို DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.",မသန်စွမ်းလျှင်ဤအခန်းကဏ္ဍအားလုံးအသုံးပြုသူများအနေဖယ်ရှားပါလိမ့်မည်။ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ရှာဖွေရန်အပေါ်အကူအညီ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ရှာဖွေရန်အပေါ်အကူအညီ apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,မှတ်ပုံတင်ရှိသော်လည်းမသန်စွမ်း DocType: DocType,Hide Copy,Copy ကူးဝှက် apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,အားလုံးအခန်းကဏ္ဍရှင်းလင်း @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ပြည် apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,လိပ်စာများ DocType: Communication,Shared,shared -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Document ဖိုင်ပုံနှိပ် Attach +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Document ဖိုင်ပုံနှိပ် Attach DocType: Bulk Update,Field,လယ်ယာ DocType: Communication,Received,ရရှိထားသည့် DocType: Social Login Keys,Google Client ID,Google ကလိုင်း ID ကို @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,query အစီရင်ခံစာ DocType: User,Set New Password,နယူး Password ကို Set DocType: User,Github User ID,Github အသုံးပြုသူ ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Document ဖိုင် Type မယ်ဆိုရင် -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","{0} ဖြစ်သောကြောင့် delete သို့မဟုတ်မပယ်ဖျက်နိုင် {1} {2} နှင့်အတူဆက်စပ် {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","{0} ဖြစ်သောကြောင့် delete သို့မဟုတ်မပယ်ဖျက်နိုင် {1} {2} နှင့်အတူဆက်စပ် {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},အမည်မသိ app ကို {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",ကို% s ခိုင်လုံသောအစီရင်ခံစာပုံစံမဟုတ်ပါဘူး။ အစီရင်ခံစာပုံစံကိုအောက်ပါ% s ကိုများထဲမှ \ သင့်တယ် DocType: Communication,Chat,chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} တန်းစီ {1} အတွက်အကြိမ်ပေါင်းများစွာပုံပေါ် +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} တန်းစီ {1} အတွက်အကြိမ်ပေါင်းများစွာပုံပေါ် apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} ကနေ {2} မှအတန်း # အတွက် {3} DocType: Communication,Expired,Expired DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),တစ်ဦး Grid အတွက်လယ်များအတွက်ကော်လံအရေအတွက် (ကဇယားကွက်ထဲမှာစုစုပေါင်း Columns 11 ထက်လျော့နည်းဖြစ်သင့်) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,အကောင် apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},အမည်မသိပုံနှိပ်ဖွဲ့စည်းမှုပုံစံ: {0} DocType: Workflow State,arrow-down,မြှား-Down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ပြိုကဲ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},{1}: User {0} ကိုပယ်ဖျက်ဖို့ခွင့်မပြု +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},{1}: User {0} ကိုပယ်ဖျက်ဖို့ခွင့်မပြု apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,နောက်ဆုံးတွင် Updated DocType: Help Article,Likes,အကြိုက်များ DocType: Website Settings,Top Bar,ထိပ်ဆုံးဘား DocType: GSuite Settings,Script Code,script Code ကို apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,အသုံးပြုသူအီးမေးလ် Create apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,အသုံးပြုသူအီးမေးလ် Create -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,ဖော်ပြထားခြင်းမရှိပါခွင့်ပြုချက်များ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,ဖော်ပြထားခြင်းမရှိပါခွင့်ပြုချက်များ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ကမ္တာ့ချိန်ညှိ: အသုံးပြုသူများကိုသာအမှန်ခြစ် icon တွေကိုရှေးခယျြနိုငျမညျ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} မတွေ့ရှိ DocType: Custom Role,Custom Role,မိမိစိတ်ကြိုက်အခန်းက္ပ apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,နေအိမ် / မရှိစမ်းသပ်ခြင်း Folder ကို 2 DocType: System Settings,Ignore User Permissions If Missing,ပျောက်ဆုံးနေခဲ့လျှင်အသုံးပြုသူခွင့်ပြုချက် Ignore -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,upload မပြုလုပ်မီစာရွက်စာတမ်းကိုကယ်တင်ပေးပါ။ +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,upload မပြုလုပ်မီစာရွက်စာတမ်းကိုကယ်တင်ပေးပါ။ apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,သင့်ရဲ့စကားဝှက်ကိုရိုက်ထည့် DocType: Dropbox Settings,Dropbox Access Secret,Dropbox ကို Access ကလျှို့ဝှက်ချက် apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,နောက်ထပ်မှတ်ချက်လေး apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit ကို DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,သတင်းလွှာမှပယ်ဖျက် -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,သိုးခြံတစ်ပုဒ်မ Break လာ. ရှေ့တော်၌ရမယ် +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,သိုးခြံတစ်ပုဒ်မ Break လာ. ရှေ့တော်၌ရမယ် apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,နောက်ဆုံးအားဖြင့်ပြင်ဆင်ထားသော DocType: Workflow State,hand-down,လက်-Down DocType: Address,GST State,GST ပြည်နယ် -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Submit မပါဘဲ Cancel စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Submit မပါဘဲ Cancel စွဲလမ်းခြင်းမနိုင်သလား DocType: Website Theme,Theme,အကွောငျး apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,အမှားများရှိကြ၏။ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Auth Code ကိုမလွဲမသွေ URI Redirect @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,My Se DocType: Website Theme,Text Color,စာသားအရောင် DocType: Desktop Icon,Force Show,အင်အားစု Show ကို apps/frappe/frappe/auth.py +78,Invalid Request,မမှန်ကန်ခြင်းတောင်းဆိုခြင်း -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ဤပုံစံမဆို input ကိုမရှိပါဘူး +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ဤပုံစံမဆို input ကိုမရှိပါဘူး apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},session သက်တမ်းကုန်ဆုံး format နဲ့ {0} အတွက်ဖြစ်ရပါမည် DocType: Website Sidebar Item,Group,အစု DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",သစ်တစ်ခုစာမျက်နှာဖွင့်လှစ်ဖို့ကို Select လုပ်ပါပစ်မှတ် = "_blank" ။ @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,encoding အမှားများလျစ်လျူရှုပါ။ DocType: Workflow State,wrench,လိမ်ဖဲ့ခြင်း apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Set မဟုတ် -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup ကို> အသုံးပြုသူ DocType: Authentication Log,Date,နေ့စှဲ DocType: Website Settings,Disable Signup,signup လုပ်နိုင်ပါသည်ကို disable apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,သင့် system ဖြစ်ရခြင်း setup ကိုနေစဉ်တင်းကြပ်ထိုင်နေ။ ဤသည်အချိန်အနည်းငယ်ကြာနိုင်ပါသည်။ @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,မှတ်ချက်လေး DocType: DocField,Mandatory,အတင်းအကျပ်ဖြစ်သော apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ပို့ကုန်မှ module -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: No အခြေခံခွင့်ပြုချက်ထား +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: No အခြေခံခွင့်ပြုချက်ထား apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,သင့်စာရင်းပေးသွင်း {0} အပေါ်သက်တမ်းကုန်ဆုံးမည်ဖြစ်သည်။ apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},{0}: backup လုပ် download link ကိုအောက်ပါအီးမေးလ်လိပ်စာပေါ်မေးလ်ပို့ပေးပါလိမ့်မည် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","၏ Submit, Cancel, ပြင်ဆင်ချက်အဓိပ္ပာယ်" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,query ကို-အစီရင်ခံစ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},{1}: {0} မှတာဝန်ပေး apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ကယ်တင်ခြင်းသို့ရောက်သောစိစစ်မှုများ DocType: DocField,Percent,ရာခိုင်နှုန်း -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,filter များထားပေးပါ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,filter များထားပေးပါ apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,အတူ Linked DocType: Workflow State,book,စာအုပ် DocType: Website Settings,Landing Page,ဆင်းသက်စာမျက်နှာ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,စိတ်တိုင်းကျ Script ထဲမှာမှားယွင်းနေသည် +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,စိတ်တိုင်းကျ Script ထဲမှာမှားယွင်းနေသည် apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} အမည် apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","သွင်းကုန်တောင်းခံခြင်း Queued ။ ဤသည်အနည်းငယ်အချိန်လေးယူစေခြင်းငှါ, လူနာကဖြစ်ကိုကျေးဇူးတင်ပါ။" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,အဘယ်သူမျှမခွင့်ပြုချက်ဒီသတ်မှတ်ချက်များသည်ထားကြ၏။ @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,ဝင်မည်မ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,သင်ဤသယံဇာတဝင်ရောက်ဖို့လုံလောက်တဲ့ခွင့်ပြုချက်ရှိသည်မဟုတ်ကြဘူး။ access ကိုရရန်သင့်မန်နေဂျာကိုဆက်သွယ်ပါ။ DocType: Custom Field,Custom,ထုံးစံဓလေ့ apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,အမျိုးမျိုးသောသတ်မှတ်ချက်များအပေါ်အခြေခံပြီး Setup ကိုအီးမေးလ်သတိပေးချက်။ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},{0} အောက်မှာတင်သွင်းပို့စ်များ +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},{0} အောက်မှာတင်သွင်းပို့စ်များ DocType: Email Alert,Send alert if date matches this field's value,နေ့စွဲဤနယ်ပယ်တွင်ရဲ့တန်ဖိုးကိုကိုက်ညီလျှင်တပ်လှန် Send DocType: Workflow,Transitions,အသွင်ကူးပြောင်းမှု apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} Remove အပေါင်းတို့နှင့်တကွဒေတာဖျက်လိုက်ရမလား? @@ -1307,9 +1308,8 @@ DocType: User,Login After,ပြီးနောက် Login DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ပုံနှိပ်ခြင်း DocType: Workflow State,thumbs-up,လက်မထောင်ပြခြင်း -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision 1 နှင့် 6 အကြားဖြစ်သင့်တယ် +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision 1 နှင့် 6 အကြားဖြစ်သင့်တယ် apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},အက်ဖ်ဒဗလျူ: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,နှင့် DocType: Error Snapshot,Frames,frames @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,image ကို Link ကို DocType: Auto Email Report,Report Filters,အစီရင်ခံစာစိစစ်မှုများ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ယခု DocType: Workflow State,step-backward,ခြေလှမ်း-နောက်ပြန် -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,သင့်ရဲ့ site ကို config ကိုအတွက် Dropbox ကို access ကိုသော့ထားပေးပါ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,အဲဒီအီးမေးလ်လိပ်စာပေးပို့ခြင်းခွင့်ပြုပါရန်ဤမှတ်တမ်း Delete apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,သာမဖြစ်မနေလယ်ကွက်အသစ်မှတ်တမ်းများသည်လိုအပ်သောဖြစ်ကြ၏။ အကယ်လို့ဆန္ဒရှိတယ်ဆိုရင် Non-မဖြစ်မနေကော်လံဖျက်ပစ်နိုင်ပါတယ်။ @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,ပူးတွဲဖိုင်မျာ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,အားလုံး Expand apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,သက်တမ်းရှိဝင်မည်က id လိုအပ်သည်။ apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-ပွင့်လင်း -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,သင့်အနေဖြင့်ငွေပေးချေဖျက်သိမ်းပြီ -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ဒေတာနဲ့တရားဝင် CSV ဖိုင်ကိုရွေးပေးပါ +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ဒေတာနဲ့တရားဝင် CSV ဖိုင်ကိုရွေးပေးပါ apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} {1} နှင့်အတူဤစာရွက်စာတမ်း un-shared apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} ကနေ {1} ခွင့်မပြုမှစာရွက်စာတမ်းနဲ့ Status အကူးအပြောင်း DocType: DocType,"Make ""name"" searchable in Global Search",ကမ္တာ့ရှာရန်အတွက် "အမည်" ရှာဖွေ Make @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,မ DocType: Help Category,Help Category,အကူအညီ Category: apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,အသုံးပြုသူ {0} ပိတ်ထားတယ် apps/frappe/frappe/www/404.html +8,Page missing or moved,ပျောက်ဆုံးသို့မဟုတ်ပြောင်းရွှေ့စာမျက်နှာ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Edit ကို {0} ဂုဏ်သတ္တိများ DocType: DocType,Route,ခရီးစဉ် apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ငွေပေးချေမှုရမည့်တံခါးပေါက် settings ကို DocType: DocField,Name,နာမကို @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,အဆိုပါစာရွက်စာတမ်းများကိုရှာရန် apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,အဆိုပါစာရွက်စာတမ်းများကိုရှာရန် DocType: OAuth Authorization Code,Valid,တရားဝင်သော -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,ပွင့်လင်း Link ကို -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,သင့်ရဲ့ဘာသာစကားများ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ပွင့်လင်း Link ကို +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,သင့်ရဲ့ဘာသာစကားများ apps/frappe/frappe/desk/form/load.py +46,Did not load,load မဟုတ် apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Row Add DocType: Tag Category,Doctypes,DOCTYPE @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,တုံ့ DocType: Address,Lakshadweep Islands,Lakshadweep ကျွန်းများ apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,ရေးထားနိုင်သလား apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","အချို့သောစာရွက်စာတမ်းများ, တစ်ပြေစာကဲ့သို့တစ်ကြိမ်နောက်ဆုံးပြောင်းလဲမဖြစ်သင့်ပါ။ ထိုကဲ့သို့သောစာရွက်စာတမ်းများသည်နောက်ဆုံးပြည်နယ် Submitted ဟုခေါ်သည်။ သင်ဟာအခန်းကဏ္ဍ Submit နိုင်သည့်ကန့်သတ်နိုင်ပါတယ်။" -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,သင်သည်ဤအစီရင်ခံစာတင်ပို့ဖို့ခွင့်ပြုမထား +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,သင်သည်ဤအစီရင်ခံစာတင်ပို့ဖို့ခွင့်ပြုမထား apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ကို item ကိုရွေးချယ် DocType: Newsletter,Test Email Address,စမ်းသပ်ခြင်းအီးမေးလ်လိပ်စာ DocType: ToDo,Sender,ပေးပို့သူ @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,သွင်းကုန် .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,စာရွက်စာတမ်း ID ကို DocType: Print Settings,Letter,စာ -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Image ကိုလယ်ပြင် Image ကိုပူးတွဲအမျိုးအစားဖြစ်ရပါမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Image ကိုလယ်ပြင် Image ကိုပူးတွဲအမျိုးအစားဖြစ်ရပါမည် DocType: DocField,Columns,ကော်လံ DocType: Async Task,Succeeded,အရာ၌နန်းထိုင် apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},{0} အတွက်လိုအပ်သည့်မသင်မနေရလယ်ကွက် @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,text Editor ကို apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,အကြောင်း Us စာမျက်နှာဖြစ်သည် Settings ကို။ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit ကို Custom HTML ကို DocType: Error Snapshot,Error Snapshot,error snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,တွင် +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,တွင် DocType: Email Alert,Value Change,Value တစ်ခုပြောင်းရန် DocType: Standard Reply,Standard Reply,စံစာပြန်ရန် apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ထို input ကို box ရဲ့ width ကို @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ခေါင်းစဉ်ကို generate ရန်ဤ fieldname ကိုသုံးပါ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,မှစ. သွင်းကုန်အီးမေးလ် apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,အသုံးပြုသူအဖြစ် Invite -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Attachments ကိုရွေးပါ +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Attachments ကိုရွေးပါ apps/frappe/frappe/model/naming.py +94, for {0},{0} သည် apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,အမှားအယွင်းများရှိခဲ့သည်။ ဒီအစီရင်ခံတင်ပြပေးပါ။ -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,သင်သည်ဤစာရွက်စာတမ်း print ထုတ်ခွင့်မပြုခဲ့ကြသည် +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,သင်သည်ဤစာရွက်စာတမ်း print ထုတ်ခွင့်မပြုခဲ့ကြသည် apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,အစီရင်ခံစာ Filter ကို table ထဲမှာ filter များတန်ဖိုးကိုသတ်မှတ်ပါ။ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,loading အစီရင်ခံစာ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,loading အစီရင်ခံစာ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,သင့်စာရင်းပေးသွင်းယနေ့သက်တမ်းကုန်ဆုံးမည်ဖြစ်သည်။ DocType: Page,Standard,စံ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ဖိုင်မှတ်တမ်း Attach @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ဒေသဆိုင်ရာ Extensions DocType: LDAP Settings,Base Distinguished Name (DN),base ကိုခွဲခြမ်းစိတ်ဖြာအမည် (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ဒီစကားပြောဆို Leave -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},link ကိုလယ်၌ {0} သည်စွဲလမ်းခြင်းမ Options ကို +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},link ကိုလယ်၌ {0} သည်စွဲလမ်းခြင်းမ Options ကို DocType: Customize Form,"Must be of type ""Attach Image""",အမျိုးအစားဖြစ်ရမည် "Image ကိုပူးတွဲ" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,အားလုံးရွေးထားမှုဖျက် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},သငျသညျထားပါကပြန်လည် ပြင်ဆင်. မတတျနိုငျ {0} လယ်ပြင်၌အဘို့ '' သာလျှင် Read '' @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,မှတ်ချက် apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,error အစီရင်ခံစာ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,တုံ့ပြန်ချက်အခြေအနေများမကိုက်ညီပါဘူး -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline ကိုလယ်တရားဝင် fieldname ဖြစ်ရပါမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline ကိုလယ်တရားဝင် fieldname ဖြစ်ရပါမည် DocType: Currency,Symbol,အထိမ်းအမှတ် -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,စကားဝှက်အသစ်မေးလ်ပို့ပေး apps/frappe/frappe/auth.py +245,Login not allowed at this time,login ဒီအချိန်မှာခွင့်မပြု DocType: Email Account,Email Sync Option,အီးမေးလ်ပို့ရန် Sync ကို Option ကို @@ -1581,7 +1579,7 @@ DocType: DocField,Text,စာသား apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,စံဘုံမေးမြန်းချက်မှပြန်ဖြေတယ်။ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,default ပေးပို့ခြင်း DocType: Workflow State,volume-off,volume အ-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},{0} ဖွငျ့ကြိုက်တယ် +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},{0} ဖွငျ့ကြိုက်တယ် DocType: Footer Item,Footer Item,footer Item ,Download Backups,ဒေါင်းလုပ်ရန်များ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,နေအိမ် / မရှိစမ်းသပ်ခြင်း Folder ကို 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,text align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Name ကို {0} တူအထူးအက္ခရာများဆံ့မခံနိုင်သည် DocType: Contact Us Settings,Forward To Email Address,Forward Email လိပ်စာရန် apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ဒေတာအားလုံးပြရန် -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,ခေါင်းစဉ်လယ်တရားဝင် fieldname ဖြစ်ရမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,ခေါင်းစဉ်လယ်တရားဝင် fieldname ဖြစ်ရမည် apps/frappe/frappe/config/core.py +7,Documents,စာရွက်စာတမ်းများ DocType: Email Flag Queue,Is Completed,Completed ဖြစ်ပါတယ် apps/frappe/frappe/www/me.html +22,Edit Profile,Edit Profile @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: doc.myfield == '' ငါ့အ Value ကို '' eval:> 18 doc.age ဒီနေရာမှာသတ်မှတ်ထားတဲ့ fieldname တန်ဖိုးကိုရှိပါတယ် OR စည်းမျဉ်းစည်းကမ်းတွေကို (ဥပမာ) မှန်သာမှန်လျှင်ဤနယ်ပယ်ပေါ်လာပါလိမ့်မယ် -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ယနေ့တွင် -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ယနေ့တွင် +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ယနေ့တွင် +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ယနေ့တွင် apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",သင်သည်ဤခန့်ထားပြီသည်နှင့်တပြိုင်နက်အသုံးပြုသူသာတတ်နိုင် access ကိုစာရွက်စာတမ်းများ (ဥပမာ။ Post ကို Blog) link ကိုတည်ရှိသည့်နေရာဖြစ်လိမ့်မည် (ဥပမာ။ ဘလော့ဂါ) ။ DocType: Error Log,Log of Scheduler Errors,Scheduler ကို Errors ၏ log DocType: User,Bio,ဇီဝ @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ကြယ်ပွင့်ကြယ်ပွအမြင့်မားဆုံးအဆင့်သတ်မှတ်ချက်ဖြစ်ခြင်းနိမ့်ဆုံး & 5 ဖြစ်ခြင်း DocType: Event,Ref Name,Ref အမည် DocType: Web Page,Center,အလယ်ဗဟို +DocType: Email Alert,Value To Be Set,Value ကို Set ခံရရန် apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,ပထမဦးစွာအဆင့် DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ပြည်နယ်ကိုပြောင်းလဲတာဝန်ပေးတယောက်စာရွက်စာတမ်းနှင့်အခန်းကဏ္ဍအတွက်ခွင့်ပြုပြည်နယ်များကိုကိုယ်စားပြုပါတယ်။ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Form တွင် refresh @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Web ကိုကြည့်ရန်ရှိပ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE ရဲ့နာမညျကိုစာတစ်စောင်နှင့်အတူစတင်သင့်တယ်ကြောင့်သာစာလုံး, ဂဏန်းနေရာများနှင့် underscores ထားရှိရေးနိုင်" DocType: Communication,Spam,Spam များကို DocType: Integration Request,Integration Request,ပေါင်းစည်းရေးတောင်းဆိုခြင်း -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,ချစ်ခင်လေးစားရပါသော +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,ချစ်ခင်လေးစားရပါသော DocType: Address,Maharashtra,မဟာရပ်ရှ DocType: Address,Accounts User,အသုံးပြုသူအကောင့် DocType: Web Page,HTML for header section. Optional,header အပိုင်းသည် HTML ကို။ optional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ဒီ feature အမှတ်တံဆိပ်အသစ်နှင့်နေဆဲစမ်းသပ်ဖြစ်ပါသည် -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,ခွင့်ပြုအများဆုံး {0} တန်း +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,ခွင့်ပြုအများဆုံး {0} တန်း DocType: Email Unsubscribe,Global Unsubscribe,ကမ္တာ့ unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ဤအရာသည်အလွန်ဘုံစကားဝှက်ဖြစ်ပါတယ်။ apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,ကြည့်ရန် DocType: Communication,Assigned,Assigned DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံကိုရွေးပါ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,ပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံကိုရွေးပါ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,က Short ကီးဘုတ်ပုံစံများကိုခန့်မှန်းရန်မလွယ်ကူများမှာ DocType: Portal Settings,Portal Menu,portal Menu ကို apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} ၏အရှည် 1 နှင့် 1000 အကြားဖြစ်သင့်တယ် @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,အသုံးပြုသူရှာရန်မရပါ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,မှားနေသော Output Format ကို DocType: Custom DocPerm,Apply this rule if the User is the Owner,အသုံးပြုသူကိုပိုင်ရှင်ဖြစ်လျှင်ဤနည်းဥပဒေ Apply -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,သင်၏ login ID ကိုဖွစျလိမျ့မညျ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,သင်၏ login ID ကိုဖွစျလိမျ့မညျ apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,အစီရင်ခံစာ Build DocType: Note,Notify users with a popup when they log in,"သူတို့အတွက် log အခါ, တစ်ဦးပေါ့ပ်အပ်နှင့်အတူအသုံးပြုသူများအားအသိပေး" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} နှစ်မျိုးကိုပေါင်းစပ်ဖို့, တည်ရှိနေသစ်တစ်ခုပစ်မှတ်ကို select ပါဘူး" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,အခန်းက apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Update ကို DocType: Error Snapshot,Snapshot View,snapshot ကြည့်ရန် apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,ပို့သည့်ရှေ့တော်၌ထိုသတင်းလွှာကိုကယ်တင် ကျေးဇူးပြု. -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Options ကိုလယ်၌ {0} အတန်းအတွက် {1} သည်မှန်ကန်သော DOCTYPE ဖြစ်ရမည် +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Options ကိုလယ်၌ {0} အတန်းအတွက် {1} သည်မှန်ကန်သော DOCTYPE ဖြစ်ရမည် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edit ကို Properties ကို DocType: Patch Log,List of patches executed,ကွပ်မျက်ခံရပြင်ဆင်ဖာထေးစာရင်း apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ပြီးသား unsubscribe -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,ဆက်သွယ်ရေးအလတ်စား +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,ဆက်သွယ်ရေးအလတ်စား DocType: Website Settings,Banner HTML,Banner က HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',အခြားပေးချေမှုနည်းလမ်းကိုရွေးချယ်ပါ။ Razorpay '' {0} '' ငွေကြေးအရောင်းအထောကျပံ့ပေးမထားဘူး apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,backup လုပ်ဘို့တန်းစီထားသည်။ ဒါဟာတစ်နာရီမှမိနစ်အနည်းငယ်ကြာနိုင်ပါသည်။ DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,မှတ်ပုံတင်မည် OAuth လိုင်း App ကို -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" မဖြစ်နိုင်။ ဒါဟာ "{3}" တယောက်ဖြစ်သင့် +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" မဖြစ်နိုင်။ ဒါဟာ "{3}" တယောက်ဖြစ်သင့် apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} သို့မဟုတ် {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Desktop ပေါ်မှာ Icon များပြရန်သို့မဟုတ်ဝှက်ရန် apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Password ကို Update ကို @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,ကဏ္ဍများပြီးနောက် Show ကိုလိုင်း Break များ DocType: Blogger,Short Name,တိုတောင်းသောအမည် apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},စာမျက်နှာ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","သင်တို့ရှိသမျှသည်အဖြစ် Sync ကို Option ကိုရွေးချယ်ခြင်းဖြစ်ကြောင်း, ဒါဟာအားလုံးကိုဖတ်အဖြစ် server မှမဖတ်ရသေးသောသတင်းစကား \ ပြန်ဆင့်ခ်လုပ်နေသည်ပါလိမ့်မယ်။ ဤသည်ကိုလည်းဆက်သွယ်ရေး (အီးမေးလ်များ) ၏ပုံတူ \ ဖြစ်ပေါ်စေနိုင်ပါတယ်။" apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ဖိုင်အရွယ်အစား @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,ဝယ်ယူခြင်း Manager က DocType: Custom Script,Sample,နမူနာ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,UnCategorised Tags: DocType: Event,Every Week,အပတ်တိုင်း +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,အီးမေးလ်အကောင့်မပေး setup ကို။ Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေအသစ်တခုအီးမေးလ်အကောင့်ကိုဖန်တီးပေးပါ apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,သင့်ရဲ့အသုံးပြုမှုစစ်ဆေးတစ်ခုသို့မဟုတ်မြင့်မားအစီအစဉ်အဆင့်မြှင့်တင်ရန်ဒီနေရာကိုနှိပ်ပါ DocType: Custom Field,Is Mandatory Field,မသင်မနေရဖျော်ဖြေမှုဖြစ်ပါတယ် DocType: User,Website User,website အသုံးပြုသူတို့၏ @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,စိတ်တိုင်းကျ Sidebar Menu ကို DocType: Workflow State,pencil,ခဲတံ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,မက်ဆေ့ခ်ျများနှင့်အခြားသတိပေးချက်များကို Chat ။ -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},{0} အဖြစ်သတ်မှတ်မရနိုငျပြီးနောက်ထည့်ပါ +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},{0} အဖြစ်သတ်မှတ်မရနိုငျပြီးနောက်ထည့်ပါ apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,ဝေမျှမယ် {0} နှင့်အတူ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,အီးမေးလ်အကောင့် setup ကိုအဘို့သင့်စကားဝှက်ကိုရိုက်ထည့်ပါ: DocType: Workflow State,hand-up,လက်-up က DocType: Blog Settings,Writers Introduction,စာရေးဆရာများနိဒါန်း DocType: Address,Phone,Phone များ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,အီးမေးလ်သတိပေးချက် {0} အကဲဖြတ်နေစဉ်အမှား။ သင့်ရဲ့ template ကို fix ပေးပါ။ +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,အီးမေးလ်သတိပေးချက် {0} အကဲဖြတ်နေစဉ်အမှား။ သင့်ရဲ့ template ကို fix ပေးပါ။ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,စတင် Document ဖိုင် Type သို့မဟုတ်အခန်းကဏ္ဍကိုရွေးချယ်ပါ။ DocType: Contact,Passive,မလှုပ်မရှားနေသော DocType: Contact,Accounts Manager,အကောင့်အသစ်များ၏ Manager က +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,သင့်အတွက်ငွေပေးချေမှုဖျက်သိမ်းသည်။ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ဖိုင်မှတ်တမ်းအမျိုးအစားကိုရွေးချယ်ပါ DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor ကို apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,စာမျက်နှာမတွေ့ရှိ @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,ပစ္စည်းအမျိုး DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,သာအုပ်ချုပ်ရေးမှူးတစ်ဦးစံအစီရင်ခံစာကိုကယ်တင်နိုင်ပါတယ်။ အမည်ပြောင်း and save ပေးပါ။ DocType: System Settings,Background Workers,နောက်ခံသမိုင်းကြောင်းအလုပ်သမားများ +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} meta အရာဝတ္ထုတွေနဲ့ကွဲလွဲ DocType: Deleted Document,Data,ဒေတာ apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,စာရွက်စာတမ်းနဲ့ Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},သငျသညျ {0} {1} ၏ရာ၌ခန့်ထားပြီ @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Show ကိုအသုံးပြုသူခွင့်ပြုချက် apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,သင်တို့အထဲ၌ logged ရန်လိုခြင်းနှင့်စနစ် Manager ကအခန်းက္ပရန်သင့်သိမ်းဆည်းချက်တွေကိုဝင်ရောက်ကြည့်ရှုနိုင်မှရှိသည်။ apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ကျန်ရှိနေသေးသော -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,တွဲထားခင်ကိုကယ်တင်ပေးပါ။ +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,တွဲထားခင်ကိုကယ်တင်ပေးပါ။ apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Added {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},default ဆောင်ပုဒ် {0} အတွက်သတ်မှတ် apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} အတန်းအတွက် {1} မှကနေပြောင်းလဲမပြနိုင် @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,session Sta apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,session Start ကို Failed apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ဤအီးမေးလ် {0} မှစေလွှတ် {1} မှကူးယူခဲ့ပါတယ် DocType: Workflow State,th,ကြိမ်မြောက် -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Setup ကို> အီးမေးလ်> အီးမေးလ်အကောင့်ကနေ ကျေးဇူးပြု. setup ကို default အနေနဲ့အီးမေးလ်အကောင့်ကို -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},သစ်တစ်ခု {0} Create +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},သစ်တစ်ခု {0} Create DocType: Email Rule,Is Spam,ပမ် Is apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},အစီရင်ခံစာ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ပွင့်လင်း {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ပွင့်လင်း {0} DocType: OAuth Client,Default Redirect URI,default ပြန်ညွှန်း URI DocType: Email Alert,Recipients,လက်ခံသူများ DocType: Workflow State,ok-sign,ok-နိမိတ်လက္ခဏာ @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,အကူအညီဆောင်းပါးများ ,Modules Setup,modules ကို Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,အမျိုးအစား: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,သင့်အတွက်ငွေပေးချေမှုပျက်ကွက်ခဲ့သည်။ DocType: Communication,Unshared,မျှဝေမ DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,module တွေ့သည်မ @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,ကုန်အမှတ်တံဆိပ DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ထိပ်တန်း navigation bar, footer နှင့်လိုဂိုကို Setup ။" DocType: Web Form Field,Max Value,မက်စ် Value တစ်ခု -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{2} အတန်းအတွက် {3} အတွက် {1} အဆင့်မှာ {0} များအတွက် +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{2} အတန်းအတွက် {3} အတွက် {1} အဆင့်မှာ {0} များအတွက် DocType: Contact,All,အားလုံး DocType: Email Queue,Recipient,လက်လံသူ DocType: Communication,Has Attachment,နှောင်ကြိုးများကိုရှိပါတယ် @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,တေ့ညာ DocType: Auto Email Report,Email To,အီးမေးလ်ကရန် apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder ကို {0} အချည်းနှီးမဖြစ် DocType: Page,Roles,အခန်းကဏ္ဍ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,လယ်ပြင်၌ {0} ရွေးချယ်မဟုတ်ပါဘူး။ +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},အမှား: {1}: Value ကို {0} အဘို့အဦးပျောက်ဆုံးနေ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,လယ်ပြင်၌ {0} ရွေးချယ်မဟုတ်ပါဘူး။ DocType: System Settings,Session Expiry,session သက်တမ်းကုန်ဆုံး DocType: Workflow State,ban-circle,ပိတ်ပင်ထားမှု-စက်ဝိုင်း DocType: Email Flag Queue,Unread,မဖတ်ရသေးသော @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,အသုံးပြုသူ Defaults ကို apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,နယူး Create DocType: Workflow State,chevron-down,Chevron-Down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),အီးမေးလ်က {0} (မသန်စွမ်းသူများအတွက် / unsubscribe) မှစေလွှတ်တော်မ +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),အီးမေးလ်က {0} (မသန်စွမ်းသူများအတွက် / unsubscribe) မှစေလွှတ်တော်မ DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,အသေးဆုံးငွေကြေးစနစ်အပိုင်းအစများ Value ကို apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,ရန် assign @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,မှ DocType: Website Theme,Google Font (Heading),Google ကဖောင့် (ဦးတည်) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,ပထမဦးဆုံးအဖွဲ့တစ်ဖွဲ့ node ကိုရွေးချယ်ပါ။ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} {1} အတွက်ရှာမည် +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} {1} အတွက်ရှာမည် DocType: OAuth Client,Implicit,သွယ်ဝိုက် DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","ဒီ DOCTYPE ဆန့်ကျင်ဆက်သွယ်ရေးအဖြစ် append (လယ်ကွက်ရှိရမယ်, "နဲ့ Status", "Subject")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",အသုံးပြုသူတခါခွင့်ပြုချက် code ကိုလက်ခံခြင်းအတွက်သော URIs access ကိုခွင့်ပြုအဖြစ်ပျက်ကွက်တုံ့ပြန်မှု။ အလိုင်းယင့် App ကိုအားဖြင့်ထိတွေ့ပုံမှန်အားဖြင့်တစ်ဦး REST အဆုံးမှတ်။
ဥပမာ http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,တင်သွင်းခဲ့တဲ့ပြီးနောက် {0} ကိုပြောင်းလဲခွင့်မပြု +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,တင်သွင်းခဲ့တဲ့ပြီးနောက် {0} ကိုပြောင်းလဲခွင့်မပြု DocType: Communication,Comment Type,မှတ်ချက်ကအမျိုးအစား DocType: OAuth Client,OAuth Client,OAuth လိုင်း apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,အသုံးပြုသူများက @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,filter မှာ Data DocType: Auto Email Report,Filter Data,filter မှာ Data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,တစ် tag ကို Add -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,ပထမဦးဆုံးဖိုင်တစ်ဖိုင်ပူးတွဲတင်ပြပေးပါ။ +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,ပထမဦးဆုံးဖိုင်တစ်ဖိုင်ပူးတွဲတင်ပြပေးပါ။ apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","နာမတျောအ setting အချို့သောအမှားများရှိကြ၏, ထိုစီမံခန့်ခွဲသူကိုဆက်သွယ်ပါ" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,incoming အီးမေးလ်အကောင့်မှန်ကန်သောမဟုတ် apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,အီးမေးလ် Sent DocType: DocField,Ignore XSS Filter,XSS Filter ကိုလျစ်လျူရှုပါ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ဖယ်ရှားခံရ apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox ကို backup လုပ်ထား settings ကို -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,အီးမေးလ်နှင့်အမျှ Send +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,အီးမေးလ်နှင့်အမျှ Send DocType: Website Theme,Link Color,Link ကိုအရောင် apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,အသုံးပြုသူ {0} ကိုပိတ်ထားမရနိုင်ပါ apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","ချစ်ခင်လေးစားရပါသောစနစ်မန်နေဂျာ," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,မင်းရဲ့တိုင်းပြည် +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,မင်းရဲ့တိုင်းပြည် DocType: Event,Sunday,တနင်္ဂနွေ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Grid ကြည့်ရန်အတွက် DocType: Address Template,Template,template @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,ဒေလီ apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP ချိန်ညှိ apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,ပြင်ဆင်ချက် apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal ကငွေပေးချေမှုတံခါးပေါက် settings ကို -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: max ကိုဇာတ်ကောင်ခွင့်ပြုအဖြစ် '' {1} '({3}), လျှော့ချခြင်းကိုရလိမ့်မည်ဖြစ်ပါသည် {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: max ကိုဇာတ်ကောင်ခွင့်ပြုအဖြစ် '' {1} '({3}), လျှော့ချခြင်းကိုရလိမ့်မည်ဖြစ်ပါသည် {2}" DocType: OAuth Client,Resource Owner Password Credentials,အရင်းအမြစ်ပိုင်ရှင် Password ကိုသံတမန်ဆောင်ဧည် DocType: OAuth Client,Response Type,တုန့်ပြန်အမျိုးအစား apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,မက်စ်အသုံးပြုသူများ @@ -2070,7 +2074,7 @@ DocType: DocField,Table,စားပှဲ DocType: File,File Size,ဖိုင်အရွယ်အစား apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,သင်သည်ဤပုံစံကိုတင်ပြရန် login ရမယ် DocType: User,Background Image,"နောက်ခံသမိုင်းသင်ခန်းစာများ," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","သင့်ရဲ့နိုင်ငံ, အချိန်ဇုန်နှင့်ငွေကြေးစနစ်ကိုရွေးပါ" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","သင့်ရဲ့နိုင်ငံ, အချိန်ဇုန်နှင့်ငွေကြေးစနစ်ကိုရွေးပါ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,အကြား DocType: Async Task,Queued,Queued @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,ဖန်တီး apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},မမှန်ကန်ခြင်း Filter: {0} DocType: Email Account,no failed attempts,ကြိုးစားမှုမအောင်မြင်ခဲ့ခြင်းမရှိ +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,မျှမတွေ့ default အနေနဲ့လိပ်စာ Template ။ Setup ကို> ပုံနှိပ်ခြင်းနှင့်တံဆိပ်တပ်> လိပ်စာ Template ကနေအသစ်တခုဖန်တီးပေးပါ။ DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App ကို Access ကို Key ကို DocType: OAuth Bearer Token,Access Token,Access Token @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Username DocType: DocType,Image View,image ကိုကြည့်ရန် apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","တစ်ခုခုအရောင်းအဝယ်စဉ်အတွင်းမှားသွားဟန်တူပါသည်။ ကျနော်တို့ငွေပေးချေမှုကိုအတည်ပြုကြပြီမဟုတ်ကတည်းက Paypal ကိုအလိုအလျောက်သင်ဤငွေပမာဏကိုပြန်အမ်းမည်ဖြစ်သည်။ ဒါကြောင့်မလျှင်, ညမညသဘောတရား ID ကိုကျွန်တော်တို့ကိုအီးမေးလ်တစ်စောင်ပေးပို့နှင့်ဖော်ပြထားခြင်းကျေးဇူးပြုပြီး: {0} ။" -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","စကားဝှက်အတွက်သင်္ကေတများ, နံပါတ်နှင့်အရင်းအနှီးအက္ခရာများ Include" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","'' {2} '' တံဆိပ်နှင့်အတူ '' {1} '' စိတ်တိုင်းကျဖျော်ဖြေမှုတွင်ဖော်ပြထားသော '' {0} '' လယ်ပြင်ပြီးနောက်ကိုထည့်, မတည်ရှိပါဘူး" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","စကားဝှက်အတွက်သင်္ကေတများ, နံပါတ်နှင့်အရင်းအနှီးအက္ခရာများ Include" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","'' {2} '' တံဆိပ်နှင့်အတူ '' {1} '' စိတ်တိုင်းကျဖျော်ဖြေမှုတွင်ဖော်ပြထားသော '' {0} '' လယ်ပြင်ပြီးနောက်ကိုထည့်, မတည်ရှိပါဘူး" DocType: Workflow State,signal,အလံပြချက် DocType: DocType,Show Print First,ပထမဦးစွာပုံနှိပ်ပြရန် apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,ကို Ctrl + post မှ Enter @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,file '{0}' 'မတွေ့ရှိ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,ပုဒ်မ Remove DocType: User,Change Password,စကားဝှက်ကိုပြောင်းရန် -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},မမှန်ကန်ခြင်း Email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ဟလို! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},မမှန်ကန်ခြင်း Email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ဟလို! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ပွဲအဆုံးစတင်ပြီးနောက်ဖြစ်ရမည် apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},သင်တို့အပေါ်မှာအစီရင်ခံစာအရခွင့်ပြုချက်မရှိဘူး: {0} +DocType: System Settings,Apply Strict User Permissions,တင်းကျပ်အသုံးပြုသူခွင့်ပြုချက်များ Apply DocType: DocField,Allow Bulk Edit,အစုလိုက် Edit ကို Allow DocType: DocField,Allow Bulk Edit,အစုလိုက် Edit ကို Allow DocType: Blog Post,Blog Post,ဘလော့ Post က -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ပါ Advanced Search +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ပါ Advanced Search apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Password ကိုကို reset ညွှန်ကြားချက်သင့်အီးမေးလ်ကိုစလှေတျခဲ့ကြ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","level 0 င်သောလယ်အဆင့်ကိုခွင့်ပြုချက်များအတွက်အဆင့်မြင့် \, စာရွက်စာတမ်းအဆင့်အထိခွင့်ပြုချက်အဘို့ဖြစ်၏။" @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,sidebar နှင့်ထင်မြင apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","သင်ပြီးနောက်က Cancel and save document တစ်ခုပြင်ဆင်ချက်သောအခါ, အဟောင်းအရေအတွက်၏တစ်ဦးဗားရှင်းကြောင်းအသစ်တခုနံပါတ်ရလာကြလိမ့်မည်။" DocType: Stripe Settings,Publishable Key,Publish Key ကို DocType: Stripe Settings,Publishable Key,Publish Key ကို -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} တစ်နှစ် (s) ကိုလွန်ခဲ့သည့် DocType: Workflow State,circle-arrow-left,စက်ဝိုင်း-မြှား-လက်ဝဲ apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,run မ Redis cache ကို server ကို။ အုပ်ချုပ်ရေးမှူး / Tech မှထောက်ခံမှုကိုဆက်သွယ်ပါ apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,ပါတီအမည် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,မှတ်တမ်းအသစ်တစ်ခုလုပ်ပါ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,မှတ်တမ်းအသစ်တစ်ခုလုပ်ပါ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ရှာဖွေခြင်း apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ရှာဖွေခြင်း DocType: Currency,Fraction,အစိတ်အပိုင်း DocType: LDAP Settings,LDAP First Name Field,LDAP ပထမအမည်ဖျော်ဖြေမှု -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,လက်ရှိ attachment များကိုနေကို Select လုပ်လိုက်ပါ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,လက်ရှိ attachment များကိုနေကို Select လုပ်လိုက်ပါ DocType: Custom Field,Field Description,လယ်ပြင်၌ဖော်ပြချက်များ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,နာမတော်ကိုမ Prompt ကိုကနေတဆင့်စွဲလမ်းခြင်းမ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,အီးမေးလ်ပို့ရန် Inbox ထဲမှာ @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,အချက်အလက်များ: DocType: Custom Field,Permission Level,ခွင့်ပြုချက်အဆင့် DocType: User,Send Notifications for Transactions I Follow,ကိုယ့် Follow လုပ်ငန်းတွေအတွက်အသိပေးချက်များ Send -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Submit သတ်မှတ် Cancel, Write မပါဘဲပြင်ဆင်ချက်မရပါ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Submit သတ်မှတ် Cancel, Write မပါဘဲပြင်ဆင်ချက်မရပါ" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,သင်ပူးတွဲဖိုင်ပယ်ဖျက်ချင်တာသေချာမှန်သလော -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","{0} ဖြစ်သောကြောင့် delete သို့မဟုတ်မပယ်ဖျက်နိုင် {1} {2} နှင့်အတူဆက်စပ် {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ရလဒ်တွေကို '' အဘို့မျှမတွေ့

-apps/frappe/frappe/__init__.py +1063,Thank you,ကျေးဇူးတင်ပါသည် +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","{0} ဖြစ်သောကြောင့် delete သို့မဟုတ်မပယ်ဖျက်နိုင် {1} {2} နှင့်အတူဆက်စပ် {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ကျေးဇူးတင်ပါသည် apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,သိမ်းဆည်းခြင်း DocType: Print Settings,Print Style Preview,ပုံနှိပ်ပုံစံကို Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,List ကိုကြည့်ရန်အတွ DocType: Email Account,Use TLS,TLS ကိုသုံးပါ apps/frappe/frappe/email/smtp.py +24,Invalid login or password,မမှန်ကန်ခြင်း login လုပ်လို့ရပါတယ်သို့မဟုတ်စကားဝှက် apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ပုံစံများမှထုံးစံ javascript ထည့်ပါ။ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,မရှိမူလ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,မရှိမူလ ,Role Permissions Manager,အခန်းက္ပခွင့်ပြုချက် Manager က apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,အသစ်ကပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံအမည် -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear ကိုတွယ်တာ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear ကိုတွယ်တာ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,မသင်မနေရ: ,User Permissions Manager,အသုံးပြုသူခွင့်ပြုချက် Manager က DocType: Property Setter,New value to be set,နယူးတန်ဖိုးကိုသတ်မှတ်ခံရဖို့ @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 days apps/frappe/frappe/config/website.py +47,Categorize blog posts.,ဘလော့ဂ်ပို့စ်များခွဲခြား။ DocType: Workflow State,Time,အချိန် DocType: DocField,Attach,ကပ် -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} တရားဝင် fieldname ပုံစံကိုမဟုတ်ပါဘူး။ ဒါဟာ {{field_name}} ဖြစ်သင့်သည်။ +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} တရားဝင် fieldname ပုံစံကိုမဟုတ်ပါဘူး။ ဒါဟာ {{field_name}} ဖြစ်သင့်သည်။ DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,အနည်းဆုံးဆက်သွယ်ရေးလည်းမရှိသာလြှငျတုံ့ပြန်ချက်တောင်းဆိုခြင်း Send စာရွက်စာတမ်းများအတွက်ရရှိနိုင်ပါသည်။ DocType: Custom Role,Permission Rules,ခွင့်ပြုချက်နည်းဥပဒေများ DocType: GSuite Settings,GSuite Settings,GSuite Settings များ DocType: Address,Links,Links များ -apps/frappe/frappe/model/base_document.py +428,Value missing for,သည်ပျောက်ဆုံး Value တစ်ခု +apps/frappe/frappe/model/base_document.py +427,Value missing for,သည်ပျောက်ဆုံး Value တစ်ခု apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,ကလေး Add -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Submitted Record ဖျက်ပစ်မရနိုင်ပါ။ +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Submitted Record ဖျက်ပစ်မရနိုင်ပါ။ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup ကို Size ကို DocType: GSuite Templates,Template Name,template အမည် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,စာရွက်စာတမ်းသစ်အမျိုးအစား +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,စာရွက်စာတမ်းသစ်အမျိုးအစား DocType: Custom DocPerm,Read,ဖတ် DocType: Role Permission for Page and Report,Role Permission for Page and Report,စာမျက်နှာနှင့်အစီရင်ခံစာများအတွက်အခန်းက္ပခွင့်ပြုချက် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Value ကို align apps/frappe/frappe/www/update-password.html +14,Old Password,စကားဝှက်အဟောင်း -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},{0} ရေးသားချက်များ +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},{0} ရေးသားချက်များ apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","format နဲ့ကော်လံလုပ်ဖို့, query ကိုအတွက်ကော်လံတံဆိပ်များပေးပါ။" DocType: Has Domain,Has Domain,ဒိုမိန်းရှိပါတယ် apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,အကောင့်တစ်ခုရှိသည်မဟုတ်လော ဆိုင်းအပ် -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign ပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable မဆိုနိုင်ပါ Assign ပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edit ကိုအခန်းကဏ္ဍခွင့်ပြုချက် DocType: Communication,Link DocType,link ကို DOCTYPE @@ -2376,7 +2380,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,သင့်ရဲ့ profile ကိုအီးမေးလ်လိပ်စာရှိကြောင်းသေချာစေရန် ကျေးဇူးပြု. apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,သင်သည်ဤပုံစံဖြင့်ကယ်တင်ခြင်းမအပြောင်းအလဲများရှိသည်။ ရှေ့ဆက်မသွားခင်ကိုကယ်တင်ပေးပါ။ DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} သည် default option တစ်ခုဖြစ်ရပါမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} သည် default option တစ်ခုဖြစ်ရပါမည် DocType: Tag Doc Category,Tag Doc Category,Tag ကို Doc Category: DocType: User,User Image,"အသုံးပြုသူသင်ခန်းစာများ," apps/frappe/frappe/email/queue.py +289,Emails are muted,အီးမေးလ်များကိုအသံတိတ်များမှာ @@ -2409,7 +2413,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Next က DocType: Workflow State,ok,အိုကေ DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ဤရွေ့ကားတန်ဖိုးများကိုအလိုအလျှောက်ငွေကြေးလွှဲပြောင်းမှုမှာ updated လိမ့်မည်စသည်ဤတန်ဖိုးများကိုင်အရောင်းအပေါ်မှာဤအသုံးပြုသူသည်ခွင့်ပြုချက်ကန့်သတ်ဖို့အသုံးဝင်ပါလိမ့်မည်။ apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ပုံနှိပ်ထုတ်ဝေသူ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Failed: {2}: {0} {1} မှ +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Failed: {2}: {0} {1} မှ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,မသင်မနေရကို Select လုပ်ပါ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Browse ကို apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Sent အီးမေးလ်များ @@ -2421,7 +2425,7 @@ DocType: Async Task,Running,ပွေး apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Password ကို Reset apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,{0} subscribers ထက်ပိုမိုပေါင်းထည့်ရန် Upgrade ကျေးဇူးပြု. DocType: Workflow State,hand-left,လက်-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ထူးခြားသောမဖြစ်နိုင် +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ထူးခြားသောမဖြစ်နိုင် DocType: Email Account,Use SSL,SSL ကိုအသုံးပြုပါ DocType: Workflow State,play-circle,ကစား-စက်ဝိုင်း apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Edit ကိုမှပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံကိုရွေးပါ @@ -2476,7 +2480,7 @@ DocType: DocField,No Copy,အဘယ်သူမျှမမိတ္တူ DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP နှင့်အတူ Login DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,ပိုင်ရှင်မယ်ဆိုရင် +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,ပိုင်ရှင်မယ်ဆိုရင် DocType: OAuth Authorization Code,Expiration time,သက်တမ်းကုန်ဆုံးအချိန် DocType: Web Page,Website Sidebar,ဝက်ဘ်ဆိုက် Sidebar DocType: Web Form,Show Sidebar,show ကို Sidebar @@ -2496,7 +2500,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{1} အတွက apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,မိမိတို့ကိုယ်အားဖြင့်အမည်များနှင့်မျိုးရိုးအမည်ခန့်မှန်းရန်မလွယ်ကူဖြစ်ကြသည်။ apps/frappe/frappe/config/website.py +93,Knowledge Base,Knowledge Base DocType: Workflow State,briefcase,လကျဆှဲအိတျ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Value တစ်ခု {0} သည်ပြောင်းလဲမပြနိုင် +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Value တစ်ခု {0} သည်ပြောင်းလဲမပြနိုင် DocType: Feedback Request,Is Manual,လက်စွဲစာအုပ်ဖြစ်ပါသည် DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","စတိုင်ခလုတ်ကိုအရောင်ကိုကိုယ်စားပြု: အောင်မြင်မှုဆိုတာ - အစိမ်းရောင်, အန္တရာယ် - နီ, Inverse - အနက်ရောင်, မူလတန်း - Dark Blue, Info - အလင်းအပြာရောင်, သတိပေးခြင်း - လိမ္မော်ရောင်" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,အဘယ်သူမျှမအစီရင်ခံစာတင်ဆောင်။ တစ်ဦးအစီရင်ခံစာကို run ဖို့ query ကို-အစီရင်ခံစာ / [အစီရင်ခံစာအမည်] ကိုသုံးပေးပါ။ @@ -2575,7 +2579,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,တိုး apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,အခန်းက္ပအားဖြင့် apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ပျောက်ဆုံးနေ Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname အတွက်မှားနေသော fieldname '' {0} ' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,တစ်ဦးစာရွက်စာတမ်းအမျိုးအစားထဲမှာရှာမယ် +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,တစ်ဦးစာရွက်စာတမ်းအမျိုးအစားထဲမှာရှာမယ် apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,လယ်ပြင်၌ပင်တင်သွင်းခဲ့တဲ့ပြီးနောက်ဒီမှာ BusinessSite ဆက်လက် Allow DocType: Custom DocPerm,Role and Level,အခန်းကဏ္ဍနှင့်အဆင့် DocType: File,Thumbnail URL,thumbnail URL ကို @@ -2592,19 +2596,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,More Information ကို DocType: Desktop Icon,Desktop Icon,desktop ပေါ်မှာ Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,သင့်ရဲ့ငွေပေးချေမှုကိုအောင်မြင်စွာလက်ခံခဲ့သည်ခဲ့သည် +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,သင့်ရဲ့ငွေပေးချေမှုကိုအောင်မြင်စွာလက်ခံခဲ့သည်ခဲ့သည် apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,စိတ်မကောင်း! သင်သည်ဤစာမျက်နှာကိုကြည့်ရှုဖို့ခွင့်ပြုမထားပေ။ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ထိပ်ဖျား: နှစ်ချက်နှိပ်ပါဆဲလ်တည်းဖြတ်ရန် DocType: Workflow State,bell,ခေါင်းလောင်း apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,အီးမေးလ်သတိပေးချက်အတွက်မှားယွင်းနေသည် apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,အီးမေးလ်သတိပေးချက်အတွက်မှားယွင်းနေသည် apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,အတူဤစာရွက်စာတမ်း Share +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup ကို> အသုံးပြုသူခွင့်ပြုချက်များ Manager ကို apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,ဒါကြောင့်သားသမီးရှိပါတယ်အဖြစ် {0} {1} တဲ့အရွက် node ကိုမဖွစျနိုငျ DocType: Communication,Info,info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Attachment Add +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Attachment Add DocType: Communication,Email,အီးမေးလ် apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,သင့်ရဲ့မက်ဆေ့ခ်ျကိုကျေးဇူးတင်ပါသည် -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ဖတ်ငွေလက်ခံပြေစာကိုပို့ပါ +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ဖတ်ငွေလက်ခံပြေစာကိုပို့ပါ DocType: Stripe Settings,Stripe Settings,အစင်း Settings များ DocType: Stripe Settings,Stripe Settings,အစင်း Settings များ DocType: Dropbox Settings,Dropbox Setup via Site Config,ဆိုက်ကို Config မှတဆင့် Dropbox ကို Setup ကို @@ -2671,6 +2676,7 @@ DocType: DocType,Web View,Web ကိုကြည့်ရန် apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,သတိပေးချက်: ဒီပုံနှိပ်စီစဉ်ဖွဲ့စည်းမှုပုံစံအဟောင်းစတိုင်နှင့် API ကိုကနေတဆင့် generated မရနိုင်ပါ။ DocType: DocField,Print Width,ပုံနှိပ်အကျယ် ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST ပြည်နယ်အရေအတွက် DocType: User,Allow user to login only before this hour (0-24),(0-24) အသုံးပြုသူကိုသာထိုအခြိနျမီ login မှ Allow apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder ကိုမဖြစ်မနေဖြစ်ပါသည် apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2699,7 +2705,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,အသေးစားစာသား apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,အုပ်ချုပ်ရေးမှူး IP Address ကို {2} ကနေတဆင့် {1} အပေါ် {0} ဝင်ရောက်။ apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,တူညီသော -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',လယ်ပြင်၌ရှိသော Options ကို '' Dynamic Link ကို '' type ကို '' DOCTYPE 'အဖြစ်ရွေးချယ်စရာနှင့်အတူအခြား Link ကိုကွင်းဆင်းဖို့ထောက်ပြရမယ် +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',လယ်ပြင်၌ရှိသော Options ကို '' Dynamic Link ကို '' type ကို '' DOCTYPE 'အဖြစ်ရွေးချယ်စရာနှင့်အတူအခြား Link ကိုကွင်းဆင်းဖို့ထောက်ပြရမယ် DocType: About Us Settings,Team Members Heading,ရေးအဖွဲ့အဖွဲ့ဝင်များဦးတည် apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,မှားနေသော CSV ဖိုင် Format ကို apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,အရံသိမ်းဆည်းခြင်း၏ Set အရေအတွက် @@ -2710,7 +2716,7 @@ DocType: Contact,Contact,ထိတှေ့ DocType: User,Third Party Authentication,တတိယပါတီ Authentication DocType: Website Settings,Banner is above the Top Menu Bar.,Banner ကိုထိပ်တန်း Menu ကိုဘားအထက်ဖြစ်ပါတယ်။ DocType: Razorpay Settings,API Secret,API ကိုလြှို့ဝှကျ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ပို့ကုန်အစီရင်ခံစာ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ပို့ကုန်အစီရင်ခံစာ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} မတည်ရှိပါဘူး DocType: Email Account,Port,ဆိပ်ကမ်း DocType: Print Format,Arial,Arial @@ -2733,7 +2739,7 @@ DocType: Kanban Board Column,Column Name,ကော်လံအမည် DocType: Language,Based On,ပေါ်အခြေခံကာ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ပုံမှန် Make apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe Server ကို URL ကို Check -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ရည်ညွှန်းမရနိုင်ပါသည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} ရည်ညွှန်းမရနိုင်ပါသည် DocType: Communication,Email Account,အီးမေးလ်အကောင့်ကို DocType: Workflow State,Download,ဒေါင်းလုပ် DocType: Blog Post,Blog Intro,ဘလော့ Intro @@ -2744,7 +2750,7 @@ DocType: Web Page,Insert Code,INSERT Code ကို DocType: ToDo,Low,အနိမျ့ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,သင်ဟာ Jinja Template ကိုသုံးခြင်းအားဖြင့် document မှ dynamic ဂုဏ်သတ္တိများထည့်နိုင်သည်။ apps/frappe/frappe/commands/site.py +451,Invalid limit {0},မှားနေသောန့်သတ်ချက် {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,တစ်ဦးစာရွက်စာတမ်းအမျိုးအစားစာရင်း +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,တစ်ဦးစာရွက်စာတမ်းအမျိုးအစားစာရင်း DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","သင်အသစ်မှတ်တမ်းများကို upload ကြသည်လျှင်, "နာမ" (ID) ကော်လံကွက်လပ်ထားခဲ့။" DocType: Address,Chattisgarh,Chattisgarh @@ -2766,26 +2772,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDF ဖိုင်ရယူရန်အဖြစ်ပုံနှိပ် Send DocType: Web Form,Amount,ငွေပမာဏ DocType: Workflow Transition,Allowed,Allowed -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,တစ်ပုံစံတည်းသာခြံများကိုလည်းလုပ်မရှိနိုငျ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,တစ်ပုံစံတည်းသာခြံများကိုလည်းလုပ်မရှိနိုငျ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0} များအတွက်ဖိုင် format နဲ့ရေးသားဖို့မအောင်မြင်ဘူး apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,default settings ကိုမှ Restore? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,မမှန်ကန်ခြင်း Home Page apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,မှားနေသောဝင်မည်။ ထပ်ကြိုးစားပါ။ -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Link ကိုသို့မဟုတ်စားပွဲတင် type field ကို {0} အတန်းအတွက် {1} များအတွက်လိုအပ်သော Options ကို -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Link ကိုသို့မဟုတ်စားပွဲတင် type field ကို {0} အတန်းအတွက် {1} များအတွက်လိုအပ်သော Options ကို +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Link ကိုသို့မဟုတ်စားပွဲတင် type field ကို {0} အတန်းအတွက် {1} များအတွက်လိုအပ်သော Options ကို +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Link ကိုသို့မဟုတ်စားပွဲတင် type field ကို {0} အတန်းအတွက် {1} များအတွက်လိုအပ်သော Options ကို DocType: Auto Email Report,Send only if there is any data,မည်သည့်ဒေတာများရှိလျှင်သာပို့ပါ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,စိစစ်မှုများ Reset -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: အဆင့်မြင့်သတ်မှတ်ကြသည်မီအဆင့် 0 မှာခွင့်ပြုချက်တင်ထားရမည် +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: အဆင့်မြင့်သတ်မှတ်ကြသည်မီအဆင့် 0 မှာခွင့်ပြုချက်တင်ထားရမည် apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},{0} ကြောင့်ပိတ်ထားတာဝန်ကို DocType: Integration Request,Remote,ဝေးလံသော -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,ရေတွက် +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ရေတွက် apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,DOCTYPE ပထမဦးဆုံးကိုရွေးပါ ကျေးဇူးပြု. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,အီးမေးလ်အတည်ပြုပါ apps/frappe/frappe/www/login.html +42,Or login with,ဒါမှမဟုတ်နှင့်အတူ login DocType: Error Snapshot,Locals,ဒေသခံတွေ apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},{1} အပေါ် {0} ကနေတဆင့်ဆက်သွယ်: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} {1} အတွက်မှတ်ချက်၌သင်တို့ကိုဖော်ပြခဲ့တဲ့ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ဥပမာ (55 + 434) / 4 သို့မဟုတ် = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ဥပမာ (55 + 434) / 4 သို့မဟုတ် = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} လိုအပ်သည် DocType: Integration Request,Integration Type,ပေါင်းစည်းရေးအမျိုးအစား DocType: Newsletter,Send Attachements,attachment Send @@ -2795,15 +2801,15 @@ DocType: DocField,Perm Level,Perm အဆင့် apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,ဒီနေ့ရဲ့ပြက္ခဒိန်မှာအဖွဲ့တွေ DocType: Web Page,Web Page,ဝက်ဘ်စာမျက်နှာ DocType: Blog Category,Blogger,ဘလော့ဂါ -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'' ဂလိုဘယ်ရှာရန်ခုနှစ်တွင် '' အတန်းများတွင်အမျိုးအစား {0} အဘို့အခွင့်မပြုထား {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,ကြည့်ရန်စာရင်း -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},နေ့စွဲ format ထဲမှာဖြစ်ရမည်: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},နေ့စွဲ format ထဲမှာဖြစ်ရမည်: {0} DocType: Workflow,Don't Override Status,Status ကိုဖျက်ရေးရန်မနေပါနဲ့ apps/frappe/frappe/www/feedback.html +90,Please give a rating.,တစ်ဦး rating ပေးပါ။ apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} တုံ့ပြန်ချက်တောင်းဆိုခြင်း apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,ရှာရန်သက်တမ်း -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,The First အသုံးပြုသူ: သင့် +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,The First အသုံးပြုသူ: သင့် apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,-Columns ကိုရွေးပါ DocType: Translation,Source Text,source စာသား apps/frappe/frappe/www/login.py +55,Missing parameters for login,လော့ဂ်အင်အဘို့အဦးပျောက်ဆုံးနေ parameters တွေကို @@ -2825,7 +2831,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,အရေးကြီးပုံကို DocType: ToDo,Assigned By,အားဖြင့်တာဝန်ပေး apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,သင်ကလယ်ကွက်ပေါ်တွင်အဆင့်ဆင့်တင်ထားရန် Customize ကို Form တွင်သုံးနိုင်သည်။ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,သင့်ဒေသကြီးကို Select လုပ်ပါ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,သင့်ဒေသကြီးကို Select လုပ်ပါ DocType: Custom DocPerm,Level,level DocType: Custom DocPerm,Report,အစီရင်ခံစာ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,ပမာဏ 0 င်ထက် သာ. ကြီးမြတ်ဖြစ်ရပါမည်။ @@ -2845,7 +2851,7 @@ DocType: Website Theme,Background,နောက်ခံသမိုင်း DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","အသုံးပြုသူခွင့်ပြုချက်လျှောက်ထားဖို့အသုံးပြု DOCTYPE ၏ JSON စာရင်းဖြစ်သည်။ အချည်းနှီးလျှင်, အားလုံးနှင့်ဆက်စပ် DOCTYPE အသုံးပြုသူခွင့်ပြုချက်လျှောက်ထားရန်အသုံးပြုလိမ့်မည်။" DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,တစ်ဦး rating add ပေးပါ -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Cancel မပါဘဲပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Cancel မပါဘဲပြင်ဆင်ချက်စွဲလမ်းခြင်းမနိုင်သလား apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,အပြည့်အဝစာမျက်နှာ DocType: DocType,Is Child Table,ကလေးဇယားသည် apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} တယောက်ဖြစ်ရပါမည် @@ -2860,7 +2866,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ဤအဆလိုက apps/frappe/frappe/config/setup.py +260,Install Applications.,Applications ကို Install လုပ်ပါ။ DocType: Contact,Last Name,မျိုးနွယ်အမည် DocType: Event,Private,ကိုယ်ပိုင် -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ယနေ့အဘို့အဘယ်သူမျှမကသတိပေးချက် +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ယနေ့အဘို့အဘယ်သူမျှမကသတိပေးချက် DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ဖိုင်ရယူရန်အဖြစ်အီးမေးလ်ပုံနှိပ်ခဲ့သည် Attachments Send (အကြံပြုထားသည့်) DocType: Web Page,Left,လက်ဝဲဘက် DocType: Event,All Day,အားလုံးသည်နေ့ @@ -2874,7 +2880,7 @@ DocType: Event,Send an email reminder in the morning,နံနက်ယံ၌အ DocType: Blog Post,Published On,တွင် Published DocType: Contact,Gender,"ကျား, မ" apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,မသင်မနေရပြန်ကြားရေးပျောက်ဆုံး: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ဒါကြောင့် Non-မူထူးခြားတဲ့တန်ဖိုးများရှိပါတယ်အဖြစ် field '' {0} '' ထူးခြားသောအဖြစ်သတ်မှတ်မရနိုငျ +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ဒါကြောင့် Non-မူထူးခြားတဲ့တန်ဖိုးများရှိပါတယ်အဖြစ် field '' {0} '' ထူးခြားသောအဖြစ်သတ်မှတ်မရနိုငျ apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,တဦးတည်းတောင်းဆိုမှုအတွက်ခွင့်ပြုမှသာလျှင် 200 INSERT DocType: Footer Item,URL,URL ကို DocType: ToDo,Reference Type,ကိုးကားစရာ Type @@ -2887,7 +2893,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,သတိပေးချက်ကို-နိမိတ်လက္ခဏာ DocType: Workflow State,User,အသုံးပြုသူ DocType: Website Settings,"Show title in browser window as ""Prefix - title""","- ခေါင်းစဉ်ကို prefix" အဖြစ် browser ကိုပြတင်းပေါက်၌ Show ကိုခေါင်းစဉ် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,စာရွက်စာတမ်းအမျိုးအစားထဲမှာစာသား +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,စာရွက်စာတမ်းအမျိုးအစားထဲမှာစာသား apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,run စမ်းသပ်မှု apps/frappe/frappe/handler.py +91,Logged Out,အထဲက Logged apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,နောက်ထပ်... @@ -2913,13 +2919,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,လောလောဆယ်ကြည့်ရှုခြင်း DocType: DocField,Default,ပျက်ကွက် apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} ကဆက်ပြောသည် -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','' {0} 'ရှာရန် +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','' {0} 'ရှာရန် apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,ပထမဦးဆုံးအစီရင်ခံစာကိုကိုကယ်တင်ပေးပါ apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,ကဆက်ပြောသည် {0} လစဉ်ကြေး ပေး. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,မခုနှစ်တွင် DocType: Workflow State,star,ကြယ် -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ကော်မာ separated တန်ဖိုးများ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},အမျိုးအစားငွေကြေးစနစ်များအတွက် max ကို width ကိုအတန်းအတွက် 100px {0} သည် +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ကော်မာ separated တန်ဖိုးများ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},အမျိုးအစားငွေကြေးစနစ်များအတွက် max ကို width ကိုအတန်းအတွက် 100px {0} သည် apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},{0} အဘို့သင့်တုံ့ပြန်ချက်ဝေမျှပေးပါ apps/frappe/frappe/config/website.py +13,Content web page.,content ဝဘ်စာမျက်နှာ။ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,တစ်ဦးက New အခန်းကဏ္ဍ Add @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,မခိုင်လုံသော LDAP အသုံးပြုသူ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} မမှန်ကန်သောပြည်နယ် apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',အခြားပေးချေမှုနည်းလမ်းကိုရွေးချယ်ပါ။ PayPal က '' {0} '' ငွေကြေးအရောင်းအထောကျပံ့ပေးမထားဘူး -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,ရှာရန်လယ်ကွင်း {0} တရားဝင်မဟုတ်ပါဘူး +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,ရှာရန်လယ်ကွင်း {0} တရားဝင်မဟုတ်ပါဘူး DocType: Workflow State,ok-circle,ok-စက်ဝိုင်း apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',သငျသညျ '' ဖောက်သည်အတွက်လိမ္မော်ရောင်ကိုရှာဖွေ '' ကိုတောင်းမှုအရာကိုရှာတွေ့နိုင်ပါသည် apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,စိတ်မကောင်း! အသုံးပြုသူမိမိတို့ကိုယ်ပိုင်စံချိန်မှပြီးပြည့်စုံ access ကိုရှိသင့်သည်။ @@ -2998,7 +3004,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Meta Filter DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,စာသားဤပုံစံဝဘ်စာမျက်နှာရှိလျှင်က်ဘ်စာမျက်နှာ၏ Link များအတွက်ပြသခံရဖို့။ Link ကိုလမ်းကြောင်းကိုအလိုအလျောက် `page_name` နှင့်` parent_website_route` အပေါ်အခြေခံပြီး generated လိမ့်မည် DocType: Feedback Request,Feedback Trigger,တုံ့ပြန်ချက်အစပျိုး -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,ပထမဦးဆုံး {0} set ကျေးဇူးပြု. +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ပထမဦးဆုံး {0} set ကျေးဇူးပြု. DocType: Unhandled Email,Message-id,မက်ဆေ့ခ်ျကို-id သည် DocType: Patch Log,Patch,ဖါ DocType: Async Task,Failed,Failed diff --git a/frappe/translations/nl.csv b/frappe/translations/nl.csv index 996a93a246..8c9dbf4ea8 100644 --- a/frappe/translations/nl.csv +++ b/frappe/translations/nl.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Gebruikersnaam DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Opmerking: meerdere sessies zullen in het geval van mobiele apparatuur worden toegestaan apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Ingeschakeld email inbox voor de gebruiker {gebruikers} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan deze e-mail niet verzenden. U hebt de verzendlimiet van {0} e-mails overschreden voor deze maand. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Definitief {0} invoeren? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Definitief {0} invoeren? DocType: Address,County,Provincie DocType: Workflow,If Checked workflow status will not override status in list view,Als Gecontroleerd workflow-status niet status lijstweergave overschrijft apps/frappe/frappe/client.py +280,Invalid file path: {0},Ongeldig pad: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Selecte apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Boom DocType: User,User Emails,gebruiker Emails DocType: User,Username,Gebruikersnaam -apps/frappe/frappe/model/base_document.py +581,Value too big,Waarde te groot +apps/frappe/frappe/model/base_document.py +580,Value too big,Waarde te groot DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Afdeling @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Logs DocType: Custom DocPerm,This role update User Permissions for a user,Deze rol werkt Gebruikersmachtigingen voor een gebruiker bij apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Hernoemen {0} DocType: Workflow State,zoom-out,uitzoomen -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Kan {0} niet openen wanneer er een instantie van is geopend +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan {0} niet openen wanneer er een instantie van is geopend apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabel {0} mag niet leeg zijn apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,met Grootboeken apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Afbeeldingen DocType: Communication,Reference Owner,eigenaar ref DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Kleinste circulerende fractie eenheid (munt). Voor bijvoorbeeld 1 cent voor USD en het moet worden ingevoerd als 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Rij {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Rij {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Geef een volledige naam. apps/frappe/frappe/model/document.py +904,Beginning with,beginnend met apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Data Import Sjabloon @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Bovenliggend DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Indien ingeschakeld, wordt de wachtwoordsterkte afgedwongen op basis van de minimum wachtwoordcijferwaarde. Een waarde van 2 is medium sterk en 4 is zeer sterk." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Indien ingeschakeld, wordt de wachtwoordsterkte afgedwongen op basis van de minimum wachtwoordcijferwaarde. Een waarde van 2 is medium sterk en 4 is zeer sterk." DocType: About Us Settings,"""Team Members"" or ""Management""","""Teamleden"" of ""Management""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Standaard voor 'Check' type veld moet ofwel '0' of '1' zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Standaard voor 'Check' type veld moet ofwel '0' of '1' zijn apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Gisteren DocType: Contact,Designation,Benaming DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Wordt gepubliceerd Field DocType: Email Group,Email Group,E-mail Group DocType: Note,Seen By,Gezien door apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Meerdere toevoegen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Niet zoals +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Niet zoals apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Stel het display label voor het veld apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Onjuiste waarde: {0} moet zijn {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Wijzig veldeigenschappen (verberg, alleen-lezen, toestemming, etc. )" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Instellin apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator Gelogd In DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Contact opties, zoals ""Sales Query, Support Query"" etc. Elk op een nieuwe regel of gescheiden door komma's." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Plaats +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Plaats apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Selecteer {0} DocType: Print Settings,Classic,Klassiek DocType: Desktop Icon,Color,Kleur @@ -122,7 +122,7 @@ DocType: Translation,Translation,Vertaling apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installeren apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,De heer DocType: Custom Script,Client,Klant -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Dit formulier is gewijzigd nadat u het hebt geladen +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Dit formulier is gewijzigd nadat u het hebt geladen DocType: User Permission for Page and Report,User Permission for Page and Report,Toestemming van de gebruiker voor de pagina en het verslag DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Indien niet ingesteld, zal de valutaprecisie afhangen van het nummerformaat" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Reden apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Specificeer gebruiker DocType: Email Unsubscribe,Email Unsubscribe,E-mail Afmelden DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Voor het beste resultaat; selecteer een afbeelding van ca. 150px breedte met een transparante achtergrond -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,De eerste gebruiker zal de System Manager te worden (u kunt deze later wijzigen). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,De eerste gebruiker zal de System Manager te worden (u kunt deze later wijzigen). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cirkel-pijl-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Uploaden ... DocType: Email Domain,Email Domain,email Domain DocType: Workflow State,italic,cursief apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Voor iedereen -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Kan niet importeren zonder aan te maken +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Kan niet importeren zonder aan te maken apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event en andere kalenders. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle velden zijn verplicht in te vullen om de comment in te dienen. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Sleep om kolommen te sorteren @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Kan home en bijlagenmappen niet verwijderen apps/frappe/frappe/config/desk.py +19,Files,bestanden apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Machtigingen worden toegepast op Gebruikers, gebaseerd op de toegewezen rollen." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,U bent niet bevoegd om e-mails met betrekking tot dit document te versturen -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Selecteer tenminste 1 kolom {0} sorteren / groeperen +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,U bent niet bevoegd om e-mails met betrekking tot dit document te versturen +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Selecteer tenminste 1 kolom {0} sorteren / groeperen DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Controleer dit als u het testen van uw betaling via de Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Het is niet toegestaan om een standaard website thema verwijderen DocType: Feedback Trigger,Example,Voorbeeld @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Totaal Abonnees apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Als een Rol geen toegang heeft op niveau 0, dan zijn de hogere niveaus zinloos." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Opslaan als DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Toon meer details +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Toon meer details DocType: System Settings,Run scheduled jobs only if checked,Run geplande taken alleen als aangevinkt. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Wordt alleen weergegeven als koppen zijn ingeschakeld apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archief @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Verberg rubriek DocType: Address,Current,Actueel DocType: Address,Current,Actueel -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Gerelateerde documenten apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Groepen DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-cirkel @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Veldnaam {0} kan geen speciale tekens, zoals hebben {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Meerdere waarden tegelijkertijd aanpassen. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Fout: Document is gewijzigd nadat u het hebt geopend -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevonden. Maak een nieuwe aan van Setup> Afdrukken en Branding> Adressjabloon. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} afgemeld: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0} : Kan niet op ""In te dienen"" gezet worden indien niet indienbaar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0} : Kan niet op ""In te dienen"" gezet worden indien niet indienbaar" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Gefilterd op "{0}" DocType: Salutation,Administrator,Beheerder @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog Titel apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard rollen kan niet worden uitgeschakeld DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nieuwsbrief -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Kan geen gebruik maken van sub-query in bestelling door +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Kan geen gebruik maken van sub-query in bestelling door DocType: Web Form,Button Help,knop Help DocType: Kanban Board Column,purple,Purper DocType: About Us Settings,Team Members,Teamleden @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Maak uw were apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Uw abonnement op {0} is verlopen. Te vernieuwen, {1}." DocType: Workflow State,plus-sign,plus-teken apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup al compleet -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} is niet geïnstalleerd +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} is niet geïnstalleerd DocType: Workflow State,Refresh,Verversen DocType: Event,Public,Publiek apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Niets te tonen @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Vond Door apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail ondersteuning DocType: DocField,Print Hide If No Value,Print verbergen Als Nee Waarde DocType: Event,yellow,geel -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Wordt gepubliceerd Het gebied moet een geldige veldnaam +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Wordt gepubliceerd Het gebied moet een geldige veldnaam apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Bijlage uploaden DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Export Sjabloon @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Een nieuw account is aangemaakt voor u op {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instructies geüpload apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instructies geüpload -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Voer E-mail ontvanger (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Voer E-mail ontvanger (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan open {0} niet identificeren. Probeer iets anders. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,Message ID DocType: Property Setter,Field Name,Veldnaam apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite is niet geconfigureerd. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,of -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,module naam ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Voortzetten +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,module naam ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Voortzetten DocType: Custom Field,Fieldname,Veldnaam DocType: Workflow State,certificate,certificaat DocType: User,Tile,Tegel @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Alle versies DocType: Workflow State,Print,afdruk DocType: User,Restrict IP,Beperken IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Dashboard apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Niet in staat om e-mails te verzenden op dit moment apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Zoek of typ een opdracht DocType: Communication,Timeline Name,Timeline Naam @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Sales Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Naam van het type document (DocType) u wilt dit gebied moeten worden gekoppeld. bijvoorbeeld Customer DocType: User,Roles Assigned,Toegewezen Rollen -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Zoek hulp -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Zoek hulp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Zoek hulp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Zoek hulp DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Uw vraag is ontvangen. We zullen binnenkort antwoord terug. Als u aanvullende informatie, dan kunt u reageren op dit e-mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Machtigingen worden automatisch vertaald naar Standard Rapporten en zoekopdrachten . @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Bewerken Koptekst DocType: File,File URL,File-URL DocType: Version,Table HTML,Tabel HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Geen resultaten gevonden voor '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Abonnees toevoegen apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Geplande evenementen voor vandaag DocType: Email Alert Recipient,Email By Document Field,E-mail Door Document Field @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Bedrag op basis van Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Gebruiker is verplicht voor Share DocType: DocField,Hidden,verborgen DocType: Web Form,Allow Incomplete Forms,Laat Onvolledig ingevulde formulieren -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} moet eerst worden ingesteld +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} moet eerst worden ingesteld apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Gebruik een paar woorden, vermijd voorkomende zinnen." DocType: Workflow State,plane,vliegtuig -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oeps. Uw betaling is mislukt. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Als u het uploaden van nieuwe records, ""Naming Series"" verplicht wordt, indien aanwezig." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Ontvang een alert voor vandaag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Ontvang een alert voor vandaag apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType kan alleen worden hernoemd door Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},veranderde waarde van {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Controleer uw e-mail voor verificatie -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold kan niet aan het einde van de vorm +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold kan niet aan het einde van de vorm DocType: Communication,Bounced,Gebouncet DocType: Deleted Document,Deleted Name,verwijderde Naam apps/frappe/frappe/config/setup.py +14,System and Website Users,Systeem en gebruikers van de website @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,document wachtrij DocType: GSuite Templates,Destination ID,Bestemming ID DocType: Desktop Icon,List,lijst DocType: Communication,Link Name,Link Naam -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in rij {1} kan niet worden verborgen en verplicht zijn zonder standaard +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Veld {0} in rij {1} kan niet worden verborgen en verplicht zijn zonder standaard DocType: System Settings,mm/dd/yyyy,mm/dd/jjjj apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ongeldig wachtwoord: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ongeldig wachtwoord: DocType: Print Settings,Send document web view link in email,Stuur document web view koppeling in de email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Uw feedback voor document {0} is succesvol opgeslagen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,vorig -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rijen voor {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Voor bijvoorbeeld "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Selecteer geüploade bestand @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Geen bestand bijgevoegd DocType: Version,Version,Versie DocType: User,Fill Screen,Scherm vullen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Niet in staat om dit boomrapport weer te geven omdat er gegevens ontbreken. Waarschijnlijk wordt ze uitgefilterd vanwege permissies. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Stel alsjeblieft standaard e-mailaccount in van Setup> Email> Email Account +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Niet in staat om dit boomrapport weer te geven omdat er gegevens ontbreken. Waarschijnlijk wordt ze uitgefilterd vanwege permissies. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Selecteer Bestand apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Bewerken via uploaden -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","documenttype ..., bijvoorbeeld klant" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","documenttype ..., bijvoorbeeld klant" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,De voorwaarde '{0}' is ongeldig DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Voeg je eigen vertalingen @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Woensdag apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Naast rollen gebaseerde Permission Regels , kunt u Gebruikersmachtigingen toepassen op basis van DocTypes ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Deze machtigingen zijn van toepassing op alle transacties waaraan de gemachtigde record is gekoppeld. Bijvoorbeeld, als Bedrijf C toegevoegd is aan de Gebruikersmachtigingen van gebruiker X, dan kan gebruiker X alleen de transacties zien die Bedrijf C als gekoppelde waarde heeft." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Afbeelding veld moet een geldige veldnaam te zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Afbeelding veld moet een geldige veldnaam te zijn DocType: OAuth Client,Token,blijk DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (naam) van de entiteit waarvan de eigenschap moet worden ingesteld apps/frappe/frappe/limits.py +82,"To renew, {0}.","Te vernieuwen, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,sidebar items apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} reeds geïnstalleerd DocType: Workflow State,exclamation-sign,uitroepteken apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Show Machtigingen -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline veld moet een link of Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline veld moet een link of Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumbereik apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Pagina {0} van {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Introd apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Encryptiesleutel is ongeldig, controleer site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,naar DocType: Kanban Board Column,darkgrey,donker grijs -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Succesvolle: {0} tot {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Succesvolle: {0} tot {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Kan de gebruikersgegevens niet wijzigen in demo. Meld u alstublieft in voor een nieuw account op https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Gelieve een tweede om wijzigingen aan te brengen apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF generatie mislukt vanwege gebroken image koppelingen @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Inklapbaar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Opgeslagen apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Waarmee heb je hulp nodig? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opties voor het selecteren. Elke optie op een nieuwe regel. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Definitief {0} annuleren? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Definitief {0} annuleren? DocType: Workflow State,music,muziek DocType: Web Page,Settings,Instellingen apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Specificeer doctype DocType: Print Format,Style Settings,Stijlinstellingen -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet een geldige veldnaam te zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sorteer veld {0} moet een geldige veldnaam te zijn apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Meer DocType: Contact,Sales Manager,Verkoopsmanager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Hernoemen DocType: Print Format,Format Data,Formaat Gegevens -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,zoals +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,zoals DocType: Customize Form Field,Customize Form Field,Aanpassen formulierveld apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Door gebruiker toestaan DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Aanvinken welke documenten leesbaar zijn voor een gebruiker apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Lijst app niet toegestaan -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Gebruik % als wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail Domein niet geconfigureerd voor deze account, Maak er een?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Gebruik % als wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail Domein niet geconfigureerd voor deze account, Maak er een?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Inschakelen Automatisch Antwoord apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Niet Gezien @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Stel slechts eenmaal in DocType: Email Queue Recipient,Email Queue Recipient,E-mail wachtrij Ontvanger DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Gebruikersnaam {0} bestaat al -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Kan niet Importeren omdat {1} niet importeerbaar is +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Kan niet Importeren omdat {1} niet importeerbaar is apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Er is een fout in uw Address Template {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Van volledige naam apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},U heeft geen toegang tot Rapport: {0} DocType: User,Send Welcome Email,Stuur Welkom Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Upload CSV bestand met alle gebruikersrechten in hetzelfde formaat als Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Verwijder filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Verwijder filter DocType: Address,Daman and Diu,Daman en Diu DocType: Address,Personal,Persoonlijk apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Hernoemen @@ -563,11 +563,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standaard DocType kan niet standaard afdrukformaat hebben, gebruik maken van formulier aanpassen" DocType: Report,Query,Query DocType: DocType,Sort Order,Sorteervolgorde -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'In lijst weergave' niet toegestaan voor type {0} in rij {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'In lijst weergave' niet toegestaan voor type {0} in rij {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Selecteer het label, waarachter u nieuwe veld wilt invoegen." ,Document Share Report,Document Delen Report DocType: User,Last Login,Laatst ingelogd -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Veldnaam is vereist in rij {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Veldnaam is vereist in rij {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolom DocType: Custom Field,Adds a custom field to a DocType,Voegt een aangepast veld toe aan een DocType DocType: File,Is Home Folder,Is Thuis Folder @@ -593,7 +593,7 @@ DocType: File,Folder,Map DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Nieuwsbrief Manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Optie 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,alle berichten +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} tot {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log van fout tijdens verzoeken. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} is succesvol toegevoegd aan de e-mail Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -603,7 +603,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicator DocType: DocShare,Everyone,Iedereen DocType: Workflow State,backward,achterwaarts -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slechts één regel toegestaan met dezelfde rol, niveau en {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Slechts één regel toegestaan met dezelfde rol, niveau en {1}" DocType: Email Queue,Add Unsubscribe Link,Voeg afmeldlink apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nog geen reacties. Start een nieuwe discussie. DocType: Workflow State,share,aandeel @@ -622,7 +622,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,is nie apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Bekijk Abonnees apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Mevrouw DocType: Website Theme,Background Color,Achtergrondkleur -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Er zijn fouten opgetreden tijdens het versturen van e-mail. Probeer het opnieuw . +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Er zijn fouten opgetreden tijdens het versturen van e-mail. Probeer het opnieuw . DocType: Portal Settings,Portal Settings,portal Instellingen DocType: Web Page,0 is highest,0 is hoogst apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Weet u zeker dat u deze mededeling aan {0} opnieuw koppelen? @@ -650,7 +650,7 @@ DocType: Contact Us Settings,Contact Us Settings,Neem contact met ons op Instell apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Zoeken ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Zoeken ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maximale Attachment Limiet voor dit record bereikt. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maximale Attachment Limiet voor dit record bereikt. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,De volgende verplichte velden moeten worden ingevuld:
DocType: Email Alert,View Properties (via Customize Form),Bekijk Properties (via Customize Form) DocType: Note Seen By,Note Seen By,Opmerking gezien door @@ -660,17 +660,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapport Bouwer rapporten worden rechtstreeks beheerd door de Rapport Bouwer. Niets te doen. Domtidomtidom. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Verifieer uw email adres alstublieft apps/frappe/frappe/model/document.py +903,none of,geen van -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Stuur mij een kopie +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Stuur mij een kopie apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload Gebruikersmachtigingen DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Website apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Aangevinkte items zullen op het bureaublad worden weergegeven -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} kan niet worden ingesteld voor Enkele types +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} kan niet worden ingesteld voor Enkele types apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} bestaat niet. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} bekijkt momenteel dit document DocType: ToDo,Assigned By Full Name,In opdracht van volledige naam apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} bijgewerkt -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapport kan niet worden ingesteld voor Single types +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapport kan niet worden ingesteld voor Single types apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dagen geleden DocType: Email Account,Awaiting Password,In afwachting van Password DocType: Address,Address Line 1,Adres Lijn 1 @@ -680,7 +680,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Statussen voor workflow ( bijv. Draft , Goedgekeurd , Cancelled) ." DocType: Print Settings,Allow Print for Draft,Laat Print voor Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Stel Hoeveelheid -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Verzend dit document om te bevestigen +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Verzend dit document om te bevestigen DocType: Contact,Unsubscribed,Uitgeschreven apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Stel aangepaste rollen voor pagina en verslag apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Beoordeling: @@ -688,7 +688,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data import Tool DocType: Address,Dadra and Nagar Haveli,Dadra en Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Bestanden uploaden wacht een paar seconden. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Voeg uw foto toe +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Voeg uw foto toe apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Rijwaarden Changed DocType: Workflow State,Stop,stoppen DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link naar de pagina die u wilt openen. Laat leeg als u wilt dat een groep ouders te maken. @@ -703,7 +703,7 @@ DocType: Print Format,Align Labels to the Left,Lijn Labels naar links DocType: Help Article,Expert,Deskundige DocType: Workflow State,circle-arrow-right,cirkel-pijl-rechts DocType: LDAP Settings,LDAP Server Url,LDAP-server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Kan geen instantie openen als zijn {0} open is +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Kan geen instantie openen als zijn {0} open is apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,In de wachtrij voor de installatie DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Stuur afmeldlink @@ -720,7 +720,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} verwijderd DocType: Custom DocPerm,Apply User Permissions,Solliciteer Gebruikersmachtigingen DocType: User,Modules HTML,Modules HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Gebruikersvergunningbeheerder apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Ontbrekende waarden vereist DocType: DocType,Other Settings,Andere instellingen DocType: Social Login Keys,Frappe,Frappe @@ -739,7 +738,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Geen document geselecteerd apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Evenement -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Op {0}, {1} schreef:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Op {0}, {1} schreef:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Kan standaardveld niet verwijderen. U kunt het verbergen als u dit wilt DocType: Top Bar Item,For top bar,Voor bovenste balk apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Kon {0} niet identificeren @@ -753,7 +752,7 @@ DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Fout : Controleer uw server logs of neem contact op met technische ondersteuning . apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Welkomst e-mail verzonden -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Laten we het voorbereiden van het systeem voor het eerste gebruik. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Laten we het voorbereiden van het systeem voor het eerste gebruik. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Uitgelicht apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Reeds geregistreerd DocType: System Settings,Float Precision,Decimale precisie @@ -766,7 +765,7 @@ DocType: Web Form,Allow Print,laat Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Geen apps geïnstalleerd apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Markeer het veld als verplicht DocType: Communication,Clicked,Geklikt -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Geen toestemming om '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Geen toestemming om '{0}' {1} DocType: User,Google User ID,Google gebruikers-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Gepland voor sturen DocType: DocType,Track Seen,Track Seen @@ -836,7 +835,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,lft DocType: User,Simultaneous Sessions,Gelijktijdig Sessions DocType: OAuth Client,Client Credentials,client geloofsbrieven -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Open een module of gereedschap +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Open een module of gereedschap DocType: Communication,Delivery Status,Verzendstatus DocType: Module Def,App Name,App Naam apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max toegestane bestandsgrootte is {0} MB @@ -848,8 +847,8 @@ DocType: Feedback Request,Reference Communication,Referentie Communicatie DocType: Email Queue,Unsubscribe Method,Afmelden Methode DocType: GSuite Templates,Related DocType,Gerelateerd DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Bewerken om inhoud toe te voegen -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Selecteer talen -apps/frappe/frappe/__init__.py +510,No permission for {0},Geen toestemming voor {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Selecteer talen +apps/frappe/frappe/__init__.py +509,No permission for {0},Geen toestemming voor {0} DocType: DocType,Advanced,Geavanceerd apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Lijkt API Key of API Secret is verkeerd !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referentie: {0} {1} @@ -871,7 +870,7 @@ DocType: Customize Form,Enter Form Type,Voer Form Type in apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Geen records gelabeld. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Veld verwijderen DocType: User,Send Password Update Notification,Stuur wachtwoord-update -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Het toestaan DocType , DocType . Wees voorzichtig !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Het toestaan DocType , DocType . Wees voorzichtig !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Aangepaste Formaten voor afdrukken, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Geupdate naar nieuwe versie DocType: Custom Field,Depends On,Hangt af van @@ -965,6 +964,7 @@ apps/frappe/frappe/model/document.py +902,one of,Een van de apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Selecteer een bestand om te kopiëren apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Het controleren van het ene moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Show-tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Als Strikt Gebruiker Toestemming is aangevinkt en Gebruikers Toestemming is gedefinieerd voor een DocType voor een gebruiker, worden alle documenten waar de waarde van de link leeg is, niet getoond aan die gebruiker" DocType: Address,Billing,Facturering DocType: Email Queue,Not Sent,Niet verzonden DocType: Web Form,Actions,Acties @@ -994,6 +994,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,wissen apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Dagelijkse Gebeurtenissen moeten eindigen op dezelfde dag. DocType: Communication,User Tags,Gebruiker-tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Ophalen beelden... +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Downloaden App {0} DocType: Communication,Feedback Request,Terugkoppeling Request @@ -1011,7 +1012,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Contact toevoegen DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optioneel: Stuur altijd naar deze ids. Elke e-mail adres op een nieuwe rij -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Verbergen Details +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Verbergen Details DocType: Workflow State,Tasks,taken DocType: Event,Tuesday,Dinsdag DocType: Blog Settings,Blog Settings,Blog Instellingen @@ -1031,9 +1032,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Schrijf een Python bestand in dezelfde map waarin deze is opgeslagen en geef kolom en resultaat. DocType: DocType,Sort Field,Sorteren Veld DocType: Razorpay Settings,Razorpay Settings,Razorpay Instellingen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Filter bewerken -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Veld {0} van type {1} kan niet verplicht zijn -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","bijv. Als Breng Gebruikersmachtigingen wordt gecontroleerd rapport DocType maar geen gebruiker machtigingen worden gedefinieerd voor Rapport voor een gebruiker, dan worden alle rapporten worden aangetoond dat de Gebruiker" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Filter bewerken +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Veld {0} van type {1} kan niet verplicht zijn apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Voeg meer toe apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,verbergen Grafiek DocType: System Settings,Session Expiry Mobile,Session Vervaldatum Mobile @@ -1048,6 +1048,7 @@ DocType: Communication,Delayed,Vertraagd apps/frappe/frappe/config/setup.py +128,List of backups available for download,Lijst van back-ups te downloaden apps/frappe/frappe/www/login.html +89,Sign up,Aanmelden DocType: Test Runner,Output,uitgang +DocType: Email Alert,Set Property After Alert,Eigenschap instellen na alarmering apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Voeg velden toe aan formulieren apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Het lijkt erop dat er iets mis is met de Paypal-configuratie van deze site. DocType: File,rgt,RGT @@ -1055,6 +1056,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,E-mail-ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Als gebruikersrechten toewijzen zijn aangevinkt voor Report DocType, maar geen gebruikersvergunningen zijn gedefinieerd voor Rapport voor een gebruiker, worden alle rapporten aan die gebruiker getoond" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Een lijst van de middelen die de Client App toegang zal moeten nadat de gebruiker toelaat.
bijv project DocType: Translation,Translated Text,vertaalde tekst DocType: Contact Us Settings,Query Options,Query-opties @@ -1072,7 +1074,7 @@ DocType: Address,Contacts,Contacten DocType: System Settings,Setup Complete,Installatie voltooid apps/frappe/frappe/config/setup.py +66,Report of all document shares,Verslag van alle documenten aandelen apps/frappe/frappe/www/update-password.html +18,New Password,Nieuw wachtwoord -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} ontbrekende +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} ontbrekende apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Sorry! Je kunt niet automatisch gegenereerde opmerkingen verwijderen DocType: Website Theme,Style using CSS,Style met behulp van CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referentie DocType @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,Block Modules apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Terugdraaien lengte {0} voor '{1}' in '{2}'; Het instellen van de lengte als {3} zal afkappen van gegevens veroorzaken. DocType: Print Format,Custom CSS,Aangepaste CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Voeg een reactie toe -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Genegeerd: {0} tot {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Genegeerd: {0} tot {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log van fout op geautomatiseerde evenementen ( scheduler ) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Geen geldige waarde ( CSV-file ) @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,Standaard Inkomende DocType: Workflow State,repeat,herhalen DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Indien uitgeschakeld, zal deze rol van alle gebruikers worden verwijderd." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hulp bij zoeken +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hulp bij zoeken apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Geregistreerd maar uitgeschakeld DocType: DocType,Hide Copy,Verberg Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Wis alle rollen @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adressen DocType: Communication,Shared,gedeelde -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Bevestig Document Print +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Bevestig Document Print DocType: Bulk Update,Field,Veld DocType: Communication,Received,ontvangen DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,Query Rapport DocType: User,Set New Password,Set Nieuw wachtwoord DocType: User,Github User ID,GitHub gebruikers ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Als Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan niet verwijderen of te annuleren, omdat {0} {1} is gekoppeld aan {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan niet verwijderen of te annuleren, omdat {0} {1} is gekoppeld aan {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Onbekende app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s is geen geldig rapport formaat. Rapport formaat moet \ een van de volgende %s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Veldnaam {0} verschijnt meerdere keren in rijen {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Veldnaam {0} verschijnt meerdere keren in rijen {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} van {1} tot {2} in rij # {3} DocType: Communication,Expired,Verlopen DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Aantal kolommen voor een veld in een raster (Total kolommen in een raster moet minder dan 11 zijn) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Bestaande account? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Onbekend afdrukformaat: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ineenstorting -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Gebruiker niet toegestaan om {0} te verwijderen: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Gebruiker niet toegestaan om {0} te verwijderen: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Laatst aangepast op DocType: Help Article,Likes,Sympathieën DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script Code apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Maak gebruikers-e-mail aan apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Maak gebruikers-e-mail aan -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Geen toelatingen opgegeven +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Geen toelatingen opgegeven apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globale instellingen: Gebruikers zullen alleen in staat zijn om gecontroleerd iconen kiezen apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} niet gevonden DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Negeer Gebruikersmachtigingen Als Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Sla het document voor het uploaden. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Sla het document voor het uploaden. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Voer uw wachtwoord in DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Toegang Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Nog een reactie toevoegen apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,bewerken DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Afgemeld Nieuwsbrief -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Vouw moet voor een sectie Break komen +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Vouw moet voor een sectie Break komen apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Laatst gewijzigd door DocType: Workflow State,hand-down,hand-neer DocType: Address,GST State,GST-staat -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Kan niet Annuleren zonder in te dienen +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Kan niet Annuleren zonder in te dienen DocType: Website Theme,Theme,Thema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Er zijn fouten opgetreden. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI Bound To Auth Code @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mijn DocType: Website Theme,Text Color,Tekst Kleur DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Ongeldig Verzoek -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Deze vorm heeft geen inbreng hebben +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Deze vorm heeft geen inbreng hebben apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sessie Verval moet in dit formaat {0} DocType: Website Sidebar Item,Group,Groep DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Selecteer target = "" _blank "" om in een nieuwe pagina te openen." @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Negeren coderen fouten. DocType: Workflow State,wrench,moersleutel apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,niet ingesteld -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> Gebruiker DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Uitschakelen Inschrijven apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Het systeem wordt nu ingericht. Dit kan even duren. @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Reactie toevoegen DocType: DocField,Mandatory,Verplicht apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module exporteren -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : Geen basis machtigingen ingesteld +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : Geen basis machtigingen ingesteld apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Uw abonnement verloopt op {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link voor uw back-up zal worden gemaild op het volgende e-mailadres: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Betekenis van Indienen, Annuleren, Wijzigen" @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,vraag-rapport apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Toegewezen aan {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filters gered DocType: DocField,Percent,Percentage -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Stel filters +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Stel filters apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Linked Met DocType: Workflow State,book,boek DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Fout in Aangepaste Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fout in Aangepaste Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Naam apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Request wachtrij. Dit kan even duren, wees geduldig." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Geen Machtigingen ingesteld voor deze criteria. @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,Log in met Mobielnummer apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Je hoeft niet voldoende rechten om deze bron te hebben. Neem contact op met uw manager om toegang te krijgen. DocType: Custom Field,Custom,Aangepast apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup via e-mail op basis van verschillende criteria. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Berichten opgeslagen onder {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Berichten opgeslagen onder {0} DocType: Email Alert,Send alert if date matches this field's value,Stuur Alert als datum overeenkomt met waarde in dit veld. DocType: Workflow,Transitions,Overgangen apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Verwijder {0} en alle gegevens verwijderen? @@ -1304,9 +1305,8 @@ DocType: User,Login After,Login Na DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Afdrukken DocType: Workflow State,thumbs-up,duim-omhoog -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak alstublieft een nieuw e-mailaccount van Setup> Email> E-mailaccount DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision moet tussen 1 en 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision moet tussen 1 en 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,en DocType: Error Snapshot,Frames,Frames @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,Afbeelding Link DocType: Auto Email Report,Report Filters,rapport Filters apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nu DocType: Workflow State,step-backward,step-achteruit -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Stel Dropbox access keys in in uw site configuratie apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Verwijder dit record om mailverkeer naar dit e-mailadres toe te staan. apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Enige verplichte velden zijn nodig voor nieuwe records. U kunt niet-verplichte kolommen te verwijderen indien u dat wenst. @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,Is Attachments Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Alles uitvouwen apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Geldige login vereist. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Heropenen -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,U heeft de betaling geannuleerd -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Selecteer een geldig CSV-bestand met gegevens +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Selecteer een geldig CSV-bestand met gegevens apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} maakte de deling van dit document met {1} ongedaan apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Document Status overgang van {0} naar {1} is niet toegestaan DocType: DocType,"Make ""name"" searchable in Global Search",Maak "naam" doorzoekbaar in Global Search @@ -1351,7 +1350,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Help Categorie apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Gebruiker {0} is uitgeschakeld apps/frappe/frappe/www/404.html +8,Page missing or moved,Pagina ontbreekt of verplaatst -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Bewerken {0} eigenschappen DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Betaling gateway-instellingen DocType: DocField,Name,Naam @@ -1359,8 +1357,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Zoek de documenten apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Zoek de documenten DocType: OAuth Authorization Code,Valid,Geldig -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Open Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Je taal +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Open Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Je taal apps/frappe/frappe/desk/form/load.py +46,Did not load,Niet geladen apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Voeg een rij toe DocType: Tag Category,Doctypes,doctypes @@ -1375,7 +1373,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Is Terugkoppe DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kan schrijven apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bepaalde documenten, zoals een factuur, dienen niet te worden aangepast als ze een eindstadium hebben bereikt. Het eindstadium van deze documenten heet ingediend. U kunt beperken welke rollen kunnen indienen." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,U bent niet bevoegd om dit rapport te exporteren +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,U bent niet bevoegd om dit rapport te exporteren apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 item geselecteerd DocType: Newsletter,Test Email Address,Test e-mailadres DocType: ToDo,Sender,Afzender @@ -1410,7 +1408,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,document ID DocType: Print Settings,Letter,Brief -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Afbeelding veld moet van het type zijn Attach Image +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Afbeelding veld moet van het type zijn Attach Image DocType: DocField,Columns,columns DocType: Async Task,Succeeded,Geslaagd apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Verplichte velden zijn verplicht in {0} @@ -1461,7 +1459,7 @@ DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Instellingen voor Over Ons pagina. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Bewerken maatwerk HTML DocType: Error Snapshot,Error Snapshot,Fout Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,in +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,in DocType: Email Alert,Value Change,Waarde Veranderen DocType: Standard Reply,Standard Reply,Standaard reactie apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Breedte van het invoerveld @@ -1477,12 +1475,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Gebruik deze veldnaam om de titel te genereren apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import e-mail van apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Uitnodigen als gebruiker -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Selecteer Bijlagen +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Selecteer Bijlagen apps/frappe/frappe/model/naming.py +94, for {0},voor {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Er zijn fouten opgetreden. Meld dit. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,U bent niet gemachtigd om dit document af te drukken +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,U bent niet gemachtigd om dit document af te drukken apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Stel filters waarde in Report Filter tabel. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Laden Rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Laden Rapport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Uw abonnement wordt vandaag vervallen. DocType: Page,Standard,Standaard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Bijlage @@ -1512,7 +1510,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionale Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Laat dit gesprek -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opties niet ingesteld voor link veld {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opties niet ingesteld voor link veld {0} DocType: Customize Form,"Must be of type ""Attach Image""",Moet van het type zijn "Attach Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Selectie ongedaan maken apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Je kan 'Alleen lezen' niet uitschakelen voor het veld {0} @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Opmerking apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Fout rapport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedbackvoorwaarden komen niet overeen -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Timeline veld moet een geldige veldnaam te zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Timeline veld moet een geldige veldnaam te zijn DocType: Currency,Symbol,Symbool -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Rij # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Rij # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nieuw wachtwoord verstuurd apps/frappe/frappe/auth.py +245,Login not allowed at this time,Inloggen niet toegestaan op dit moment DocType: Email Account,Email Sync Option,E-mail Sync Option @@ -1579,7 +1577,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standaard antwoorden op veelgestelde vragen. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standaard verzenden DocType: Workflow State,volume-off,volume-uit -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Geliefd bij {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Geliefd bij {0} DocType: Footer Item,Footer Item,footer Item ,Download Backups,Download Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1613,7 +1611,7 @@ DocType: Web Page,Text Align,Tekst uitlijnen apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Naam kan geen speciale tekens zoals bevatten {0} DocType: Contact Us Settings,Forward To Email Address,Doorsturen naar e-mailadres apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Toon alle data -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Titelveld moet een geldige veldnaam zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titelveld moet een geldige veldnaam zijn apps/frappe/frappe/config/core.py +7,Documents,Documenten DocType: Email Flag Queue,Is Completed,Is voltooid apps/frappe/frappe/www/me.html +22,Edit Profile,Bewerk profiel @@ -1623,7 +1621,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Dit veld verschijnt alleen als de veldnaam hier gedefinieerde waarde heeft, of de regels waar zijn (voorbeelden): myfield Eval: doc.myfield == 'My Value' eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Vandaag +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Vandaag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Zodra je dit hebt ingesteld, hebben de gebruikers uitsluitend toegang tot documenten ( bijv. blog post ) waarvan de link bestaat ( bijv. Blogger ) ." DocType: Error Log,Log of Scheduler Errors,Log van Scheduler Fouten DocType: User,Bio,Bio @@ -1647,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ster het laagst en 5 sterren zijn hoogste waardering DocType: Event,Ref Name,Ref Naam DocType: Web Page,Center,Centreren +DocType: Email Alert,Value To Be Set,Waarde om te worden ingesteld apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Eerste Niveau DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Vertegenwoordigt de staten toegestaan in één document en de rol toegewezen aan de staat te veranderen. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Vernieuwen Form @@ -1667,18 +1666,18 @@ DocType: DocType,Has Web View,Heeft Webweergave apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","naam DocType zou moeten beginnen met een letter en het kan alleen bestaan uit letters, cijfers, spaties en underscores" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,integratie Request -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Geachte +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Geachte DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Gebruikersaccounts DocType: Web Page,HTML for header section. Optional,HTML voor header sectie . facultatief apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Deze functie is nieuw en nog steeds experimenteel -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximum {0} rijen toegestaan +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximum {0} rijen toegestaan DocType: Email Unsubscribe,Global Unsubscribe,Global Afmelden apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Dit is een veel voorkomende wachtwoord. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Uitzicht DocType: Communication,Assigned,toegewezen DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Selecteer Print Formaat +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selecteer Print Formaat apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kort toetsenbord patronen zijn makkelijk te raden DocType: Portal Settings,Portal Menu,portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lengte van {0} moet tussen 1 en 1000 @@ -1717,7 +1716,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Gebruiker kan niet zoeken apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ongeldige Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,Pas deze regel als de gebruiker met de eigenaar -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Wordt uw login ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Wordt uw login ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Maak Rapport DocType: Note,Notify users with a popup when they log in,Houd gebruikers met een pop-up wanneer deze zich aanmeldt apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} bestaat niet, kies een nieuw doel om samen te voegen" @@ -1736,17 +1735,18 @@ DocType: User Permission for Page and Report,Roles Permission,Rollen Toestemming apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Bijwerken DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Sla de nieuwsbrief op voor het verzenden -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opties zijn een geldig DocType voor in het veld {0} in rij {1} zijn +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} jaar geleden +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opties zijn een geldig DocType voor in het veld {0} in rij {1} zijn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Eigenschappen bewerken DocType: Patch Log,List of patches executed,Lijst van pleisters uitgevoerd apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} al afgemeld -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Communicatie Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Communicatie Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Selecteer een andere betaalmethode. Razorpay ondersteunt geen transacties in valuta '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,De wachtrij voor back-up. Het kan een paar minuten tot een uur. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registreer OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan niet ""{2}"" worden. Het moet één zijn van ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} kan niet ""{2}"" worden. Het moet één zijn van ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} of {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Tonen of te verbergen Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Wachtwoord bijwerken @@ -1773,7 +1773,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Show Line Breaks na Secties DocType: Blogger,Short Name,Korte Naam apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Pagina {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","U selecteert Sync Option als ALL, zal het allemaal \ gelezen evenals ongelezen bericht opnieuw synchroniseren van de server. Dit kan ook leiden tot de verdubbeling \ van Communicatie (e-mails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,bestanden Grootte @@ -1785,6 +1785,7 @@ DocType: Contact,Purchase Manager,Purchase Manager DocType: Custom Script,Sample,Monster apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,uncategorised Tags DocType: Event,Every Week,Elke Week +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailaccount niet ingesteld. Maak alstublieft een nieuw e-mailaccount van Setup> Email> E-mailaccount apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klik hier om uw verbruik te controleren of een upgrade naar een hoger plan van DocType: Custom Field,Is Mandatory Field,Is Verplicht veld DocType: User,Website User,Website Gebruiker @@ -1808,16 +1809,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,potlood apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chatberichten en andere meldingen. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Steek Na kan niet worden ingesteld als {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Steek Na kan niet worden ingesteld als {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Delen {0} met apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email Account setup geef je je wachtwoord in te voeren: DocType: Workflow State,hand-up,hand-op DocType: Blog Settings,Writers Introduction,Schrijvers Introductie DocType: Address,Phone,Telefoon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Fout bij het evalueren van e-mail {0}. Corrigeer je template. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Fout bij het evalueren van e-mail {0}. Corrigeer je template. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Selecteer Document Type of Rol om te beginnen. DocType: Contact,Passive,Passief DocType: Contact,Accounts Manager,Rekeningen Beheerder +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Uw betaling is geannuleerd. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Select File Type DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pagina niet gevonden @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,Eigendom Type DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Alleen Beheerder kan een standaard rapport opslaan. Wijzig de naam en sla op. DocType: System Settings,Background Workers,Achtergrond werknemers +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Veldnaam {0} strijdig met meta-object DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Document Status apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Je hebt gemaakt {0} van {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Toon Gebruikersmachtigingen apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,U moet ingelogd zijn en de System Manager Rol hebben om toegang te krijgen tot back-ups. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,resterende -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Gelieve opslaan voordat het bevestigen. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Gelieve opslaan voordat het bevestigen. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Toegevoegd {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standaardthema bevindt zich in {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType kan niet worden veranderd van {0} tot {1} in rij {2} @@ -1889,11 +1892,10 @@ DocType: System Settings,System Settings,Systeeminstellingen apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sessie Start mislukt apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Deze e-mail is verzonden naar {0} en gekopieerd naar {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Stel alsjeblieft standaard e-mailaccount in van Setup> Email> Email Account -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Maak een nieuwe {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Maak een nieuwe {0} DocType: Email Rule,Is Spam,is Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Report {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Standaard Redirect URI DocType: Email Alert,Recipients,Ontvangers DocType: Workflow State,ok-sign,ok-teken @@ -1911,6 +1913,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Help Artikelen ,Modules Setup,modules Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Uw betaling is mislukt. DocType: Communication,Unshared,ongedeelde DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module niet gevonden @@ -1958,7 +1961,7 @@ DocType: Website Settings,Brand Image,merk Afbeelding DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",Instellen van bovenste navigatiebalk voettekst en logo. DocType: Web Form Field,Max Value,Max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Voor {0} op niveau {1} in {2} in rij {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Voor {0} op niveau {1} in {2} in rij {3} DocType: Contact,All,Alle DocType: Email Queue,Recipient,Ontvanger DocType: Communication,Has Attachment,Heeft bijlage @@ -1975,7 +1978,8 @@ DocType: Workflow State,align-right,align-right DocType: Auto Email Report,Email To,Email naar apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} is niet leeg DocType: Page,Roles,Rollen -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Veld {0} kan niet worden geselecteerd . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Fout: Waarde ontbreekt voor {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Veld {0} kan niet worden geselecteerd . DocType: System Settings,Session Expiry,Sessie Verval DocType: Workflow State,ban-circle,ban-cirkel DocType: Email Flag Queue,Unread,Ongelezen @@ -1990,7 +1994,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Gebruiker Standaardwaarden apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Maak nieuw DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Geen e-mail verstuurd naar {0} (uitgeschreven / uitgeschakeld) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Geen e-mail verstuurd naar {0} (uitgeschreven / uitgeschakeld) DocType: Async Task,Traceback,Herleiden DocType: Currency,Smallest Currency Fraction Value,Kleinste Valuta fractiewaarde apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Toewijzen aan @@ -2001,12 +2005,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Van DocType: Website Theme,Google Font (Heading),Google Font (Hoofding) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Selecteer eerst een groep knooppunt. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Zoek {0} van {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Zoek {0} van {1} DocType: OAuth Client,Implicit,stilzwijgend DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Voegen als communicatie tegen deze DocType (moet velden, ""Status"" hebben, ""Onderwerp"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI voor het opnemen autorisatiecode nadat de gebruiker toegang verleent, en falen reacties. Typisch een REST eindpunt blootgesteld door de Cliënt App.
bijvoorbeeld http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Niet toegestaan om {0} te veranderen na indienen +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Niet toegestaan om {0} te veranderen na indienen DocType: Communication,Comment Type,Reactie Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Gebruikers @@ -2021,7 +2025,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filter data DocType: Auto Email Report,Filter Data,Filter data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Voeg een tag toe -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Eerst een bestand toevoegen. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Eerst een bestand toevoegen. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Er zijn fouten opgetreden bij het instellen van de naam, neemt u aub contact op met de beheerder" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Inkomende e-mailaccount niet correct apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2036,11 +2040,11 @@ DocType: Blog Post,Email Sent,E-mail verzonden DocType: DocField,Ignore XSS Filter,Negeer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,verwijderd apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox back-instellingen -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Verstuur als e-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Verstuur als e-mail DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Gebruiker {0} kan niet worden uitgeschakeld apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Geachte Systeemmanager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Jouw land +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Jouw land DocType: Event,Sunday,Zondag apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In Grid View DocType: Address Template,Template,Sjabloon @@ -2048,7 +2052,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-instellingen apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Wijziging apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal betaling gateway-instellingen -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) zal afgekapt krijgen, als maximum toegestane tekens is {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) zal afgekapt krijgen, als maximum toegestane tekens is {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resource Eigenaar Password Geloofsbrieven DocType: OAuth Client,Response Type,response Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Gebruikers @@ -2065,7 +2069,7 @@ DocType: DocField,Table,Tabel DocType: File,File Size,Bestandsgrootte apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,U moet inloggen om dit formulier in te dienen DocType: User,Background Image,Achtergrondafbeelding -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Selecteer uw land, tijdzone en valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Selecteer uw land, tijdzone en valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Tussen DocType: Async Task,Queued,Wachtrij @@ -2074,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Creëren apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ongeldige Filter : {0} DocType: Email Account,no failed attempts,geen mislukte pogingen +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Geen standaard adres sjabloon gevonden. Maak een nieuwe aan van Setup> Afdrukken en Branding> Adressjabloon. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Toegang Token @@ -2091,8 +2096,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub Gebruikersnaam DocType: DocType,Image View,Afbeelding Bekijken apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Het lijkt erop dat er iets mis tijdens de transactie ging. Omdat we niet de betaling bevestigd, zal Paypal automatisch betalen u dit bedrag. Als dit niet gebeurt, stuur ons dan een e-mail met vermelding van Correlation ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Plaats Na veld '{0}' genoemd in Aangepast veld '{1}', met label '{2}', bestaat niet" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inclusief symbolen, cijfers en hoofdletters in het wachtwoord" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Plaats Na veld '{0}' genoemd in Aangepast veld '{1}', met label '{2}', bestaat niet" DocType: Workflow State,signal,signaal DocType: DocType,Show Print First,Eerst afdrukvoorbeeld tonen apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter om te posten @@ -2123,14 +2128,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Bestand '{0}' niet gevonden apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Verwijder Sectie DocType: User,Change Password,Verander wachtwoord -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ongeldig E-mail : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hallo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ongeldig E-mail : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hallo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Gebeurtenis einde moet na start apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Je hebt geen machtiging om een rapport over: {0} op te vragen. +DocType: System Settings,Apply Strict User Permissions,Strikte Gebruikersvergunningen toepassen DocType: DocField,Allow Bulk Edit,Laat Bulk Bewerken toe DocType: DocField,Allow Bulk Edit,Laat Bulk Bewerken toe DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Geavanceerd Zoeken +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Geavanceerd Zoeken apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,"Instructies om uw wachtwoord opnieuw in te stellen, zijn naar uw e-mail verzonden" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveau 0 is voor documentniveau machtigingen, \ hogere niveaus voor veldniveau machtigingen." @@ -2149,16 +2155,15 @@ DocType: Web Page,Sidebar and Comments,Sidebar en Reacties apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Wanneer u een document na Annuleren wijzigt en opslaat, zal het een nieuw nummer krijgen, welke een versie is van het oude nummer." DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel DocType: Stripe Settings,Publishable Key,Publiceerbare sleutel -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} jaar geleden DocType: Workflow State,circle-arrow-left,cirkel-pijl-links apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache server niet actief. Neem contact op met Administrator / Technische ondersteuning apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Naam Party -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Maak een nieuw record +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Maak een nieuw record apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Zoeken apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Zoeken DocType: Currency,Fraction,Fractie DocType: LDAP Settings,LDAP First Name Field,LDAP Voornaam Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Kies uit bestaande bijlagen +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Kies uit bestaande bijlagen DocType: Custom Field,Field Description,Veld Omschrijving apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Naam niet ingesteld via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-mail Postvak IN @@ -2204,11 +2209,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Machtigingsniveau DocType: User,Send Notifications for Transactions I Follow,Stuur Meldingen voor Transactions I Follow -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Kan niet Indienen, Annuleren, Wijzigen zonder te Schrijven" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Kan niet Indienen, Annuleren, Wijzigen zonder te Schrijven" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Weet u zeker dat u de bijlage wilt verwijderen? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan niet verwijderen of te annuleren, omdat {0} {1} is gekoppeld aan {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Geen resultaten gevonden voor '

-apps/frappe/frappe/__init__.py +1063,Thank you,Dankjewel +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan niet verwijderen of te annuleren, omdat {0} {1} is gekoppeld aan {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Dankjewel apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Opslaan DocType: Print Settings,Print Style Preview,Print Stijl Voorbeeld apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2220,10 +2224,10 @@ DocType: DocField,In List View,In lijstweergave DocType: Email Account,Use TLS,gebruik TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ongeldige login of wachtwoord apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Voeg aangepaste javascript toe aan formulieren. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Geen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Geen ,Role Permissions Manager,Rol Machtigingen Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Naam van de nieuwe Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Verplicht: ,User Permissions Manager,Gebruikersmachtigingen Manager DocType: Property Setter,New value to be set,Nieuwe waarde in te stellen @@ -2253,26 +2257,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dage apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Categoriseren blogposts. DocType: Workflow State,Time,Tijd DocType: DocField,Attach,Hechten -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is een ongeldig veldnaampatroon. Gebruik {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} is een ongeldig veldnaampatroon. Gebruik {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Stuur Feedback Vraag alleen als er ten minste één communicatie beschikbaar is voor het document. DocType: Custom Role,Permission Rules,Machtigingsregels DocType: GSuite Settings,GSuite Settings,GSuite Instellingen DocType: Address,Links,Links -apps/frappe/frappe/model/base_document.py +428,Value missing for,Waarde ontbreekt voor +apps/frappe/frappe/model/base_document.py +427,Value missing for,Waarde ontbreekt voor apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Onderliggende toevoegen -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Ingediend record kan niet worden verwijderd. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Ingediend record kan niet worden verwijderd. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Backup grootte DocType: GSuite Templates,Template Name,Sjabloonnaam -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nieuw type document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nieuw type document DocType: Custom DocPerm,Read,Lezen DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rol Toestemming voor pagina en het verslag apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Lijn Waarde apps/frappe/frappe/www/update-password.html +14,Old Password,Oud Wachtwoord -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Berichten van {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Berichten van {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Om kolommen op te maken, geef de kolom labels in de query." DocType: Has Domain,Has Domain,Heeft domein apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Heb je nog geen account? Aanmelden -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan wijziging niet doorvoeren indien niet indienbaar +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan wijziging niet doorvoeren indien niet indienbaar DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Bewerken Rol Machtigingen DocType: Communication,Link DocType,Link DocType @@ -2372,7 +2376,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Zorg ervoor dat uw profiel heeft een e-mailadres apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,U hebt niet-opgeslagen wijzigingen in dit scherm. Sla eerst op. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Standaard voor {0} moet een optie zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standaard voor {0} moet een optie zijn DocType: Tag Doc Category,Tag Doc Category,Tag Doc Categorie DocType: User,User Image,Gebruiker Afbeelding apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mails zijn gedempt @@ -2405,7 +2409,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Volgende a DocType: Workflow State,ok,OK DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Uitgever -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Mislukt: {0} tot {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Mislukt: {0} tot {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Selecteer Verplicht apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Bladeren apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Verzonden e-mails @@ -2417,7 +2421,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Upgrade naar meer dan {0} abonnees toe te voegen DocType: Workflow State,hand-left,hand-links -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Veldtype {0} voor {1} kan niet uniek zijn +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Veldtype {0} voor {1} kan niet uniek zijn DocType: Email Account,Use SSL,Gebruik SSL DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Selecteer Print Format naar Bewerken @@ -2472,7 +2476,7 @@ DocType: DocField,No Copy,Geen kopie DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Login met LDAP DocType: Web Form,Breadcrumbs,Broodkruimels -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Als de eigenaar +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Als de eigenaar DocType: OAuth Authorization Code,Expiration time,vervaltijd DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Show Sidebar @@ -2492,7 +2496,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kon {0} niet in { apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Voor- en achternamen door zelf zijn makkelijk te raden. apps/frappe/frappe/config/website.py +93,Knowledge Base,Kennis basis DocType: Workflow State,briefcase,koffer -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Waarde kan niet worden gewijzigd voor {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Waarde kan niet worden gewijzigd voor {0} DocType: Feedback Request,Is Manual,is Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stijl staat voor de kleur van de knoppen: Succes - Groen, Gevaar - Rood, Inverse - Zwart, Lager - Dark Blue, Info - Light Blue, Waarschuwing - Oranje" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Geen rapport geladen. Gebruik query-report/ [Rapportnaam] om een rapport uit te voeren. @@ -2571,7 +2575,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Vooruitgang apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,per rol apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ontbrekende velden apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ongeldige veldnaam '{0}' in autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Zoek in een documenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Zoek in een documenttype apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,"Laat veld naar bewerkbare blijven, zelfs na het indienen" DocType: Custom DocPerm,Role and Level,Rol en Niveau DocType: File,Thumbnail URL,Miniatuur URL @@ -2588,19 +2592,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Meer informatie DocType: Desktop Icon,Desktop Icon,Bureaubladicoon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Uw betaling werd succesvol aanvaard +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Uw betaling werd succesvol aanvaard apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Sorry! U bent niet toegestaan om deze pagina te bekijken. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: Dubbelklik cel te bewerken DocType: Workflow State,bell,bel apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fout bij e-mailwaarschuwing apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fout bij e-mailwaarschuwing apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Deel dit document met +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> Gebruikersvergunningbeheerder apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} kan geen leaf node zijn, want hij is vertakt" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Voeg bijlage toe +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Voeg bijlage toe DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Dank u voor uw bericht -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Leesbevestiging verzenden +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Leesbevestiging verzenden DocType: Stripe Settings,Stripe Settings,Streep instellingen DocType: Stripe Settings,Stripe Settings,Streep instellingen DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup via Site Config @@ -2678,6 +2683,7 @@ DocType: DocType,Web View,Webweergave apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Waarschuwing: Dit Afdrukformaat is in oude stijl en niet kan worden gegenereerd via de API. DocType: DocField,Print Width,Afdrukbreedte ,Setup Wizard,Instellingen Wizard +DocType: Address,GST State Number,GST-nummer DocType: User,Allow user to login only before this hour (0-24),Gebruiker mag alleen inloggen voor dit uur (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder is verplicht apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2706,7 +2712,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Kleine tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator benaderd {0} op {1} via IP-adres {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Is gelijk aan -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opties 'Dynamic Link' type veld moet verwijzen naar een andere Linkeveld met opties als 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Opties 'Dynamic Link' type veld moet verwijzen naar een andere Linkeveld met opties als 'DocType' DocType: About Us Settings,Team Members Heading,Teamleden Koptekst apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ongeldige CSV-formaat apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set aantal back-ups @@ -2717,7 +2723,7 @@ DocType: Contact,Contact,Contact DocType: User,Third Party Authentication,Third Party Authentication DocType: Website Settings,Banner is above the Top Menu Bar.,Banner is boven de top menubalk. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Rapport exporteren: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Rapport exporteren: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} bestaat niet DocType: Email Account,Port,haven DocType: Print Format,Arial,Arial @@ -2740,7 +2746,7 @@ DocType: Kanban Board Column,Column Name,Kolomnaam DocType: Language,Based On,Gebaseerd op apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Maak Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Controleer Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Veldtype {0} van {1} niet geïndexeerd +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Veldtype {0} van {1} niet geïndexeerd DocType: Communication,Email Account,E-mail account DocType: Workflow State,Download,Download DocType: Blog Post,Blog Intro,Blog Intro @@ -2751,7 +2757,7 @@ DocType: Web Page,Insert Code,Code invoegen DocType: ToDo,Low,Laag apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,U kunt de dynamische eigenschappen van het document toevoegen met behulp van Jinja template. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ongeldige limiet {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lijst een documenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lijst een documenttype DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Als u het uploaden van nieuwe records, laat de ""naam"" (ID) kolom leeg." DocType: Address,Chattisgarh,Chattisgarh @@ -2773,26 +2779,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Verzend Afdruk als PDF DocType: Web Form,Amount,Bedrag DocType: Workflow Transition,Allowed,Toegestaan -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Er kan slechts één Fold in een vorm +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Er kan slechts één Fold in een vorm apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Kan geen bestandsformaat schrijven voor {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Herstellen naar standaardinstellingen? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ongeldige Startpagina apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ongeldige login. Probeer het nog eens. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opties die nodig zijn voor Link of Tabel type veld {0} in rij {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opties die nodig zijn voor Link of Tabel type veld {0} in rij {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opties die nodig zijn voor Link of Tabel type veld {0} in rij {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opties die nodig zijn voor Link of Tabel type veld {0} in rij {1} DocType: Auto Email Report,Send only if there is any data,Stuur alleen als er geen gegevens apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset Filters -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op niveau 0 moet worden ingesteld voordat hogere niveaus worden ingesteld +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Toestemming op niveau 0 moet worden ingesteld voordat hogere niveaus worden ingesteld apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Opdracht gesloten door {0} DocType: Integration Request,Remote,afgelegen -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Bereken +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Bereken apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Selecteer DocType eerste apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Bevestig uw e-mail apps/frappe/frappe/www/login.html +42,Or login with,Of log in met DocType: Error Snapshot,Locals,Locals apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Gecommuniceerd via {0} on {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} heeft je genoemd in een commentaar in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bijv (55 + 434) / 4 = of Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,bijv (55 + 434) / 4 = of Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} is verplicht DocType: Integration Request,Integration Type,integratie Type DocType: Newsletter,Send Attachements,Stuur Attachements @@ -2802,15 +2808,15 @@ DocType: DocField,Perm Level,Perm Level apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Gebeurtenissen Vandaag DocType: Web Page,Web Page,Webpagina DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In Global Search' niet toegestaan voor type {0} in rij {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'In Global Search' niet toegestaan voor type {0} in rij {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In Global Search' niet toegestaan voor type {0} in rij {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'In Global Search' niet toegestaan voor type {0} in rij {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Lijst weergeven -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum moet in formaat: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum moet in formaat: {0} DocType: Workflow,Don't Override Status,Niet overschrijven Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Geef een beoordeling. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Verzoek apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Zoekterm -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,De eerste gebruiker: U +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,De eerste gebruiker: U apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Kolommen selecteren DocType: Translation,Source Text,bron tekst apps/frappe/frappe/www/login.py +55,Missing parameters for login,Ontbrekende parameters om in te loggen @@ -2832,7 +2838,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importeren DocType: ToDo,Assigned By,Toegewezen door apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"U kunt ""Aanpassen Scherm"" gebruiken om niveaus op velden in te stellen." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Selecteer uw regio +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Selecteer uw regio DocType: Custom DocPerm,Level,Niveau DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Het bedrag moet groter zijn dan 0. @@ -2852,7 +2858,7 @@ DocType: Website Theme,Background,Achtergrond DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lijst van DocTypes gebruikt om Gebruikersmachtigingen passen. Indien leeg, zullen alle gekoppelde DocTypes worden gebruikt om Gebruikersmachtigingen passen." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Voeg een beoordeling toe -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Kan niet Wijzigen zonder te Annuleren +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Kan niet Wijzigen zonder te Annuleren apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Volledige Pagina DocType: DocType,Is Child Table,Is onderliggende tabel apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} moet een van {1} zijn @@ -2867,7 +2873,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Dit staat boven de dia apps/frappe/frappe/config/setup.py +260,Install Applications.,Installeer Toepassingen . DocType: Contact,Last Name,Achternaam DocType: Event,Private,Prive- -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Geen waarschuwingen voor vandaag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Geen waarschuwingen voor vandaag DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Stuur E-mail Afdrukken Bijlagen als PDF (aanbevolen) DocType: Web Page,Left,Links DocType: Event,All Day,Gehele dag @@ -2881,7 +2887,7 @@ DocType: Event,Send an email reminder in the morning,Stuur een e-mail herinnerin DocType: Blog Post,Published On,Gepubliceerd op DocType: Contact,Gender,Geslacht apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Verplichte informatie ontbreekt: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' niet kan worden ingesteld als Uniek omdat het niet-unieke waarden +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Veld '{0}' niet kan worden ingesteld als Uniek omdat het niet-unieke waarden apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Slechts 200 inserts toegestaan in één verzoek DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referentie Type @@ -2894,7 +2900,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,waarschuwing-teken DocType: Workflow State,User,Gebruiker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Toon titel in browservenster als "Prefix - titel" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,tekst in het documenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,tekst in het documenttype apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Tests uitvoeren apps/frappe/frappe/handler.py +91,Logged Out,Uitgelogd apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Meer... @@ -2920,13 +2926,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Momenteel wordt bekeken DocType: DocField,Default,Standaard apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} toegevoegd -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Zoek naar '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Zoek naar '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Sla het rapport eerst apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnees toegevoegd apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Niet In DocType: Workflow State,star,ster -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,waarden gescheiden door komma's -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max. breedte voor het type Valuta is 100px in rij {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,waarden gescheiden door komma's +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max. breedte voor het type Valuta is 100px in rij {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Deel uw feedback voor {0} apps/frappe/frappe/config/website.py +13,Content web page.,Inhoud webpagina. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Voeg een nieuwe rol toe @@ -2945,7 +2951,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Geen geldige LDAP-gebruiker apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} geen geldig Status apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Selecteer een andere betaalmethode. PayPal biedt geen ondersteuning voor transacties in valuta '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Search veld {0} is niet geldig +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Search veld {0} is niet geldig DocType: Workflow State,ok-circle,ok-cirkel apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Je kunt dingen vinden door te vragen 'vinden oranje in de klanten' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Sorry! Gebruiker dient volledige toegang tot eigen record te hebben. @@ -3007,7 +3013,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst die moet worden weergegeven Link naar webpagina wanneer dit formulier heeft een webpagina. Link route wordt automatisch gegenereerd worden op basis van `page_name` en` parent_website_route` DocType: Feedback Request,Feedback Trigger,Terugkoppeling Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Stel {0} eerst in +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Stel {0} eerst in DocType: Unhandled Email,Message-id,Bericht-id DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Gefaald diff --git a/frappe/translations/no.csv b/frappe/translations/no.csv index 6c8ae8327c..8a9f9f3560 100644 --- a/frappe/translations/no.csv +++ b/frappe/translations/no.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Brukernavn DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Merk: Flere økter vil være tillatt i tilfelle av mobil enhet apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktivert om e-post for brukeren {users} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Kan ikke sende denne e-posten. Du har krysset sende grensen på {0} meldinger for denne måneden. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Permanent Send {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Permanent Send {0}? DocType: Address,County,fylke DocType: Workflow,If Checked workflow status will not override status in list view,Hvis Sjekket arbeidsflyt status ikke vil overstyre status i listevisning apps/frappe/frappe/client.py +280,Invalid file path: {0},Ugyldig filbanen: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Velg en apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} treet DocType: User,User Emails,bruker~~POS=TRUNC e-post DocType: User,Username,Brukernavn -apps/frappe/frappe/model/base_document.py +581,Value too big,Verdi for stor +apps/frappe/frappe/model/base_document.py +580,Value too big,Verdi for stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kjør Script Test DocType: Contact,Department,Avdeling @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Logger DocType: Custom DocPerm,This role update User Permissions for a user,Denne rollen oppdatere brukertillatelser for en bruker apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Gi nytt navn til {0} DocType: Workflow State,zoom-out,zoome ut -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Kan ikke åpne {0} når sitt eksempel er åpen +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Kan ikke åpne {0} når sitt eksempel er åpen apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabell {0} kan ikke være tomt apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Med Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Bilder DocType: Communication,Reference Owner,Referanse Eier DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Minste sirkulerende brøkdel enhet (mynt). For eksempel en øre for USD og det bør legges inn som 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Rad {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Rad {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Vennligst gi en fullt navn. apps/frappe/frappe/model/document.py +904,Beginning with,Begynner med apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Dataimport Mal @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Hvis aktivert, vil passordstyrken bli håndhevet basert på verdien Minimumskodepoeng. En verdi på 2 er middels sterk og 4 er veldig sterk." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Hvis aktivert, vil passordstyrken bli håndhevet basert på verdien Minimumskodepoeng. En verdi på 2 er middels sterk og 4 er veldig sterk." DocType: About Us Settings,"""Team Members"" or ""Management""","Team medlemmer" eller "Management" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Standard for 'Sjekk' type felt må være enten '0' eller '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Standard for 'Sjekk' type felt må være enten '0' eller '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,I går DocType: Contact,Designation,Betegnelse DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Er Publisert Feltet DocType: Email Group,Email Group,E-post-konsernet DocType: Note,Seen By,Sett av apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Legg til flere -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Ikke like +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Ikke like apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Angi visnings etiketten for feltet apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Feil verdi: {0} må være {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Endre feltegenskaper (hjem, skrivebeskyttet, tillatelse etc.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Innstilli apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator logget inn DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt alternativer, som "Sales Query, Support Query" etc hver på en ny linje eller atskilt med komma." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Last ned -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Sett +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Sett apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Velg {0} DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,Farge @@ -122,7 +122,7 @@ DocType: Translation,Translation,Oversettelse apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installer apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Denne formen har blitt endret etter at du har lastet det +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Denne formen har blitt endret etter at du har lastet det DocType: User Permission for Page and Report,User Permission for Page and Report,Bruker Tillatelse til side og Rapporter DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Hvis ikke innstilt, vil valutaens presisjon avhenge av tallformat" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Reason apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Vennligst oppgi bruker DocType: Email Unsubscribe,Email Unsubscribe,E-post Meld av DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Velg et bilde fra ca bredde 150 piksler med en gjennomsiktig bakgrunn for best resultat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Den første brukeren vil bli System Manager (du kan endre dette senere). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Den første brukeren vil bli System Manager (du kan endre dette senere). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,sirkel-pil opp apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Laster opp ... DocType: Email Domain,Email Domain,e-post Domain DocType: Workflow State,italic,kursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,For alle -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Kan ikke sette Import uten Lag +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Kan ikke sette Import uten Lag apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event og andre kalendere. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alle felt er nødvendige for å sende inn kommentaren. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Dra for å sortere kolonner @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Meny apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Kan ikke slette Hjem og vedlegg mapper apps/frappe/frappe/config/desk.py +19,Files,filer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Tillatelser blir brukt på Brukere basert på hvilke roller de er tildelt. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Du har ikke lov til å sende e-poster knyttet til dette dokumentet -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Velg minst en kolonne fra {0} til å sortere / gruppe +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Du har ikke lov til å sende e-poster knyttet til dette dokumentet +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Velg minst en kolonne fra {0} til å sortere / gruppe DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sjekk dette hvis du tester din betaling med Sandbox API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Du har ikke lov til å slette en standard nettside Theme DocType: Feedback Trigger,Example,Eksempel @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Totalt Abonnenter apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Hvis en rolle ikke har tilgang på nivå 0, da høyere nivåer er meningsløse." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Lagre som DocType: Communication,Seen,Sett -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Vis mer informasjon +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Vis mer informasjon DocType: System Settings,Run scheduled jobs only if checked,Kjøre planlagte jobber bare dersom sjekket apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Vises bare hvis avsnittsoverskrifter er aktivert apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkiv @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Skjul Overskrift DocType: Address,Current,Nåværende DocType: Address,Current,Nåværende -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Relaterte dokumenter apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupper av Doctyper DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,fjern-sirkel @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Feltnavn {0} kan ikke ha spesialtegn som {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Oppdater mange verdier på en gang. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Feil: Dokumentet har blitt endret etter at du har åpnet den -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemal funnet. Vennligst opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemaler. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} logges ut: {1} DocType: Address,West Bengal,Vest-Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke sette Assign Send inn hvis ikke Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan ikke sette Assign Send inn hvis ikke Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrert etter "{0}" DocType: Salutation,Administrator,Administrator @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Bloggtittel apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard roller kan ikke deaktiveres DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhetsbrev -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Kan ikke bruke sub-spørring i rekkefølge etter +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Kan ikke bruke sub-spørring i rekkefølge etter DocType: Web Form,Button Help,Button Hjelp DocType: Kanban Board Column,purple,lilla DocType: About Us Settings,Team Members,Lagmedlemmer @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Få en globa apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Abonnementet utløp {0}. For å fornye, {1}." DocType: Workflow State,plus-sign,pluss-tegn apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Oppsett allerede ferdig -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} er ikke installert +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} er ikke installert DocType: Workflow State,Refresh,Refresh DocType: Event,Public,Offentlig apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ingenting å vise @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Likt av apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-poststøtte DocType: DocField,Print Hide If No Value,Skriv ut Hide Hvis ingen verdi DocType: Event,yellow,gul -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Er Publisert Feltet må være et gyldig feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Er Publisert Feltet må være et gyldig feltnavn apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Last opp vedlegg DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Eksport Mal @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},En ny konto er opprettet for deg på {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruksjoner sendt apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruksjoner sendt -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Skriv inn e-post Mottaker (e) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Skriv inn e-post Mottaker (e) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-post Flag Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Kan ikke identifisere åpen {0}. Prøv noe annet. @@ -308,8 +306,8 @@ DocType: Communication,Message ID,Message-ID DocType: Property Setter,Field Name,Feltnavn apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite er ikke konfigurert. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,eller -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modul navn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Fortsette +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modul navn ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsette DocType: Custom Field,Fieldname,Feltnavn DocType: Workflow State,certificate,sertifikat DocType: User,Tile,Tile @@ -318,6 +316,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Vis alle versjoner DocType: Workflow State,Print,Skriv ut DocType: User,Restrict IP,Begrense IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,dashbord apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Kan ikke sende e-post på denne tiden apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Søk eller skriv en kommando DocType: Communication,Timeline Name,Tidslinje Name @@ -328,8 +327,8 @@ DocType: Contact,Sales Master Manager,Sales Master manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Navn på Document Type (doctype) du ønsker dette feltet skal knyttes til. f.eks Kunde DocType: User,Roles Assigned,Roller Assigned -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Søk Hjelp -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Søk Hjelp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Søk Hjelp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Søk Hjelp DocType: Top Bar Item,Parent Label,Parent Etikett apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Søket er mottatt. Vi vil svare tilbake om kort tid. Hvis du har ytterligere informasjon, kan du svare på denne posten." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Tillatelser blir automatisk oversatt til Standard Rapporter og søk. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edit Overskrift DocType: File,File URL,Filen URL DocType: Version,Table HTML,Tabell HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ingen resultater funnet for '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Legg Abonnenter apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Kommende arrangementer for dag DocType: Email Alert Recipient,Email By Document Field,E-post Ved Document Feltet @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,Beløp basert på feltet apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Brukeren er obligatorisk for Share DocType: DocField,Hidden,Skjult DocType: Web Form,Allow Incomplete Forms,Tillat Ufullstendige skjemaer -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} må angis først +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} må angis først apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Bruk noen få ord, unngå vanlige fraser." DocType: Workflow State,plane,fly -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Betalingen mislyktes. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Hvis du laster opp nye rekorder, "Naming Series" blir obligatorisk, hvis det finnes." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Få Varsler for dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Få Varsler for dag apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE kan bare omdøpt av Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},endrede verdien av {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Vennligst sjekk e-posten din for verifisering -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold kan ikke være på slutten av skjemaet +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold kan ikke være på slutten av skjemaet DocType: Communication,Bounced,Returnerte DocType: Deleted Document,Deleted Name,slettet Name apps/frappe/frappe/config/setup.py +14,System and Website Users,System og Website Brukere @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Dokument kø DocType: GSuite Templates,Destination ID,Destinasjons-ID DocType: Desktop Icon,List,List DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Feltet {0} i rad {1} kan ikke skjules og obligatorisk uten standard +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Feltet {0} i rad {1} kan ikke skjules og obligatorisk uten standard DocType: System Settings,mm/dd/yyyy,mm / dd / åååå apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ugyldig passord: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Ugyldig passord: DocType: Print Settings,Send document web view link in email,Send dokumentet web visning linken i e-post apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Fyll ut for dokument {0} er lagret apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Forrige -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rader for {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. For eksempel "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Velg opplastede fil @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ingen fil vedlagt DocType: Version,Version,Versjon DocType: User,Fill Screen,Fyll Screen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette treet rapporten, på grunn av manglende data. Mest sannsynlig er det å bli filtrert ut på grunn av tillatelser." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vennligst sett opp standard e-postkonto fra oppsett> e-post> e-postkonto +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Kan ikke vise dette treet rapporten, på grunn av manglende data. Mest sannsynlig er det å bli filtrert ut på grunn av tillatelser." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Velg Fil apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit via opp -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","dokumenttype ..., f.eks kunde" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumenttype ..., f.eks kunde" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tilstanden {0} er ugyldig DocType: Workflow State,barcode,strekkode apps/frappe/frappe/config/setup.py +232,Add your own translations,Legg til dine egne oversettelser @@ -425,7 +425,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Onsdag apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Bortsett fra Rollebaserte Tillatelse reglene, kan du søke brukertillatelser basert på Doctyper." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Disse tillatelsene vil gjelde for alle transaksjoner der den tillatte posten er knyttet. For eksempel, hvis selskapet C legges til brukertillatelser av bruker X, bruker X vil bare være i stand til å se transaksjoner som har selskap C som en koblet verdi." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Bildefeltet må være et gyldig feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Bildefeltet må være et gyldig feltnavn DocType: OAuth Client,Token,pollett DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (navn) av foretaket hvis eiendom skal settes apps/frappe/frappe/limits.py +82,"To renew, {0}.","For å fornye, {0}." @@ -434,7 +434,7 @@ DocType: Web Form,Sidebar Items,Sidebar Items apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} allerede installert DocType: Workflow State,exclamation-sign,utrops-skilt apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Vis Tillatelser -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Tidslinje feltet må være en link eller Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Tidslinje feltet må være en link eller Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datointervall apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} av {1} @@ -442,7 +442,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Presen apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Krypteringsnøkkel er ugyldig, vennligst sjekk site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Til DocType: Kanban Board Column,darkgrey,mørk grå -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Vellykket: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Vellykket: {0} til {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Kan ikke endre brukerdetaljer i demo. Vennligst registrer deg for en ny konto på https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Vennligst kopiere denne til å gjøre endringer apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF generasjon mislyktes på grunn av ødelagte bilde lenker @@ -459,24 +459,24 @@ DocType: DocField,Collapsible,Sammenleggbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Lagret apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Hva trenger du hjelp med? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Alternativer for å velge. Hvert alternativ på en ny linje. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Permanent Avbryt {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Permanent Avbryt {0}? DocType: Workflow State,music,musikk DocType: Web Page,Settings,Innstillinger apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Vennligst oppgi doctype DocType: Print Format,Style Settings,stilinnstillinger -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sorteringsfelt {0} må være en gyldig feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sorteringsfelt {0} må være en gyldig feltnavn apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mer DocType: Contact,Sales Manager,Salgssjef apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Gi nytt navn DocType: Print Format,Format Data,Formater data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Som +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Som DocType: Customize Form Field,Customize Form Field,Tilpass skjemafelt apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Tillat User DocType: OAuth Client,Grant Type,Grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Sjekk hvilke dokumenter som kan leses av en bruker apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Oppføringsprogram ikke tillatt -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,bruke% som joker -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-post Domain ikke konfigurert for denne kontoen, opprette en?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,bruke% som joker +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-post Domain ikke konfigurert for denne kontoen, opprette en?" DocType: User,Reset Password Key,Reset Password Key DocType: Email Account,Enable Auto Reply,Aktiver automatisk svar apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ikke sett @@ -520,7 +520,7 @@ DocType: DocField,Set Only Once,Satt bare en gang DocType: Email Queue Recipient,Email Queue Recipient,E-post Queue Mottaker DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Brukernavn {0} finnes allerede -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sette import som {1} er ikke import +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Kan ikke sette import som {1} er ikke import apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Det er en feil i adresse Mal {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -532,7 +532,7 @@ DocType: Communication,From Full Name,Fra Fullt navn apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Du har ikke tilgang til Rapport: {0} DocType: User,Send Welcome Email,Send Velkommen Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Last opp CSV-fil som inneholder alle brukertillatelser i samme format som nedlasting. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Fjern Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Fjern Filter DocType: Address,Daman and Diu,Daman og Diu DocType: Address,Personal,Personlig apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -563,11 +563,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan ikke ha standard utskriftsformat, bruk Tilpass skjema" DocType: Report,Query,Spørring DocType: DocType,Sort Order,Sorteringsrekkefølge -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'I List View' ikke tillatt for typen {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'I List View' ikke tillatt for typen {0} i rad {1} DocType: Custom Field,Select the label after which you want to insert new field.,Velg etiketten etter som du vil sette inn nytt felt. ,Document Share Report,Dokument Del Rapporter DocType: User,Last Login,Siste innlogging -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Feltnavn er nødvendig i rad {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Feltnavn er nødvendig i rad {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonne DocType: Custom Field,Adds a custom field to a DocType,Legger til et egendefinert felt til en DOCTYPE DocType: File,Is Home Folder,Er Home Folder @@ -592,7 +592,7 @@ DocType: File,Folder,Mappe DocType: DocField,Index,Hovedsiden DocType: Email Group,Newsletter Manager,Nyhetsbrev manager apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Alternativ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,alle innlegg +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} til {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Logg av feil under forespørsler. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} har blitt lagt til den e-gruppen. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -602,7 +602,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indikator DocType: DocShare,Everyone,Alle DocType: Workflow State,backward,bakover -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Bare én regel lov med samme rolle, nivå og {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Bare én regel lov med samme rolle, nivå og {1}" DocType: Email Queue,Add Unsubscribe Link,Legg avmeldingslinken apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ingen kommentarer ennå. Start en ny diskusjon. DocType: Workflow State,share,del @@ -621,7 +621,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,er ikk apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Se Abonnenter apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Bakgrunnsfarge -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Det oppstod feil under sending epost. Vær så snill, prøv på nytt." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Det oppstod feil under sending epost. Vær så snill, prøv på nytt." DocType: Portal Settings,Portal Settings,portal Innstillinger DocType: Web Page,0 is highest,0 er høyest apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Er du sikker på at du vil koble til dette kommunikasjon til {0}? @@ -649,7 +649,7 @@ DocType: Contact Us Settings,Contact Us Settings,Kontakt oss Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Søker ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Søker ... DocType: Workflow State,text-width,text-bredde -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksimal Vedlegg Grensen for denne posten nådd. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksimal Vedlegg Grensen for denne posten nådd. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Følgende obligatoriske felt må fylles ut:
DocType: Email Alert,View Properties (via Customize Form),Vis egenskaper (via Tilpass Form) DocType: Note Seen By,Note Seen By,Merk sett av @@ -659,17 +659,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder rapporter styres direkte av rapporten byggmester. Ingenting å gjøre. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Bekreft e-postadresse apps/frappe/frappe/model/document.py +903,none of,ingen av -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Send meg en kopi +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Send meg en kopi apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Last opp brukertillatelser DocType: Dropbox Settings,App Secret Key,App hemmelig nøkkel apps/frappe/frappe/config/website.py +7,Web Site,web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Merkede elementer vil bli vist på skrivebordet -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} kan ikke angis for Enkelttyper +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} kan ikke angis for Enkelttyper apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} finnes ikke. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} øyeblikket ser dette dokumentet DocType: ToDo,Assigned By Full Name,Tildelt av Fullt navn apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} oppdatert -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapporten kan ikke stilles for Enkelttyper +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporten kan ikke stilles for Enkelttyper apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dager siden DocType: Email Account,Awaiting Password,Venter passord DocType: Address,Address Line 1,Adresselinje 1 @@ -679,7 +679,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Statene for arbeidsflyt (f.eks Draft, Godkjent, Avbrutt)." DocType: Print Settings,Allow Print for Draft,Lar utskrifts for Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Still Antall -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Send dette dokumentet for å bekrefte +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Send dette dokumentet for å bekrefte DocType: Contact,Unsubscribed,Utmeldings apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Angi egendefinerte roller for siden og rapport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Vurdering: @@ -687,7 +687,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Dataimport Tool DocType: Address,Dadra and Nagar Haveli,Dadra og Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Laste opp filer vennligst vent noen sekunder. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Fest Your Picture +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Fest Your Picture apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Radverdier Endret DocType: Workflow State,Stop,Stoppe DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link til siden du ønsker å åpne. La feltet stå tomt hvis du ønsker å gjøre det til en gruppe foreldre. @@ -702,7 +702,7 @@ DocType: Print Format,Align Labels to the Left,Juster Etiketter til Venstre DocType: Help Article,Expert,Ekspert DocType: Workflow State,circle-arrow-right,sirkel-pil høyre DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Kan ikke åpne eksempel når sin {0} er åpen +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Kan ikke åpne eksempel når sin {0} er åpen apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,I kø for å installere DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Send avmeldingslinken @@ -719,7 +719,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} fjernet DocType: Custom DocPerm,Apply User Permissions,Påfør brukertillatelser DocType: User,Modules HTML,Moduler HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Manglende verdier Påkrevd DocType: DocType,Other Settings,andre innstillinger DocType: Social Login Keys,Frappe,frappe @@ -738,7 +737,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bærer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Ingen dokument som er valgt apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Hendelses -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",På {0} {1} skrev: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",På {0} {1} skrev: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Kan ikke slette standard feltet. Du kan skjule det hvis du vil DocType: Top Bar Item,For top bar,For top bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Kunne ikke identifisere {0} @@ -752,7 +751,7 @@ DocType: Role,Desk Access,Desk tilgang DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Error: Vennligst sjekk serverlogger eller ta kontakt med teknisk støtte. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Velkommen e-post sendt -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,La oss klargjøre systemet for første gangs bruk. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,La oss klargjøre systemet for første gangs bruk. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Utvalgt apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Allerede Registrert DocType: System Settings,Float Precision,Float Precision @@ -765,7 +764,7 @@ DocType: Web Form,Allow Print,lar utskrifts apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ingen Apps Installert apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Markere feltet som obligatorisk DocType: Communication,Clicked,Klikket -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Ingen tillatelse til {0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ingen tillatelse til {0} {1} DocType: User,Google User ID,Google bruker-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planlagt å sende DocType: DocType,Track Seen,Track Seen @@ -835,7 +834,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,samtidige sesjoner DocType: OAuth Client,Client Credentials,klientlegitimasjon -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Åpne en modul eller verktøy +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Åpne en modul eller verktøy DocType: Communication,Delivery Status,Levering Status DocType: Module Def,App Name,App Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maks filstørrelse som er tillatt er {0} MB @@ -847,8 +846,8 @@ DocType: Feedback Request,Reference Communication,Reference Kommunikasjon DocType: Email Queue,Unsubscribe Method,Avmelding Method DocType: GSuite Templates,Related DocType,Beslektet DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Redigere å legge til innhold -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Velg språk -apps/frappe/frappe/__init__.py +510,No permission for {0},Ingen tillatelse for {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Velg språk +apps/frappe/frappe/__init__.py +509,No permission for {0},Ingen tillatelse for {0} DocType: DocType,Advanced,Avansert apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Synes API-nøkkel eller API Secret er galt !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referanse: {0} {1} @@ -870,7 +869,7 @@ DocType: Customize Form,Enter Form Type,Skriv inn skjematype apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ingen poster merket. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Fjern Feltet DocType: User,Send Password Update Notification,Send passord Update Notification -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Tillate DOCTYPE, DOCTYPE. Vær forsiktig!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Tillate DOCTYPE, DOCTYPE. Vær forsiktig!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Tilpassede formater for utskrift, e-post" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Oppdatert til ny versjon DocType: Custom Field,Depends On,Kommer An På @@ -964,6 +963,7 @@ apps/frappe/frappe/model/document.py +902,one of,en av apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Vennligst velg fil for å kopiere apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrollere en stund apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Vis Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Hvis Bruk Strøm Bruker Tillatelse er merket og Bruker Tillatelse er definert for en DocType for en bruker, vil alle dokumentene der verdien av koblingen er tom, ikke bli vist til den brukeren" DocType: Address,Billing,Billing DocType: Email Queue,Not Sent,Ikke sendt DocType: Web Form,Actions,Handlinger @@ -994,6 +994,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,klart apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Hver dag hendelser bør fullføre på samme dag. DocType: Communication,User Tags,Bruker Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Henter bilder .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Oppsett> Bruker DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Nedlasting App {0} DocType: Communication,Feedback Request,Tilbakemelding Etterspør @@ -1011,7 +1012,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,sikkerhetskopier apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Legg til kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Valgfritt: Send alltid til disse IDer. Hver e-postadresse på en ny rad -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Skjul Detaljer +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Skjul Detaljer DocType: Workflow State,Tasks,Oppgaver DocType: Event,Tuesday,Tirsdag DocType: Blog Settings,Blog Settings,Blogginnstillinger @@ -1031,9 +1032,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skriv en Python-fil i samme mappe hvor dette lagres og returnere kolonne og resultat. DocType: DocType,Sort Field,Sorter Feltet DocType: Razorpay Settings,Razorpay Settings,Razorpay Innstillinger -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Rediger filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Feltet {0} av typen {1} kan ikke være obligatorisk -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","f.eks. Hvis Påfør brukertillatelser er sjekket for Rapporter DOCTYPE men ingen brukertillatelser er definert for rapporten for en bruker, da alle rapporter er vist til at bruker" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Rediger filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Feltet {0} av typen {1} kan ikke være obligatorisk apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Legg til mer apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Skjul Chart DocType: System Settings,Session Expiry Mobile,Session Utløps Mobile @@ -1048,6 +1048,7 @@ DocType: Communication,Delayed,Forsinket apps/frappe/frappe/config/setup.py +128,List of backups available for download,Liste over sikkerhetskopier tilgjengelig for nedlasting apps/frappe/frappe/www/login.html +89,Sign up,Registrer deg DocType: Test Runner,Output,Produksjon +DocType: Email Alert,Set Property After Alert,Angi egenskap etter advarsel apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Legge til felt i skjemaer. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Ser ut som noe er galt med dette nettstedet er Paypal-konfigurasjonen. DocType: File,rgt,RGT @@ -1055,6 +1056,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal menypunkt DocType: User Email,Email ID,E-ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Hvis Bruk brukerautorisasjoner er merket for Report DocType, men ingen brukerrettigheter er definert for Rapport for en bruker, blir alle rapporter vist til den brukeren" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,En liste over ressurser som klient app vil ha tilgang til etter at brukeren tillater det.
f.eks prosjekt DocType: Translation,Translated Text,oversatt tekst DocType: Contact Us Settings,Query Options,Query Options @@ -1072,7 +1074,7 @@ DocType: Address,Contacts,Kontakt DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapport fra alle dokument aksjer apps/frappe/frappe/www/update-password.html +18,New Password,Nytt Passord -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} mangler +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} mangler apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Beklager! Du kan ikke slette automatisk generert kommentarer DocType: Website Theme,Style using CSS,Stil ved hjelp av CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referanse DOCTYPE @@ -1125,7 +1127,7 @@ DocType: User,Block Modules,Block Modules apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Skifter lengde til {0} for {1} i {2} '; Stille lengde som {3} vil føre til avkorting av data. DocType: Print Format,Custom CSS,Custom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Legg til en kommentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorert: {0} til {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorert: {0} til {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Logge av feil på automatiserte hendelser (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Ikke en gyldig kommadelte (CSV-fil) @@ -1134,7 +1136,7 @@ DocType: Email Account,Default Incoming,Standard Innkommende DocType: Workflow State,repeat,gjenta DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Hvis deaktivert, vil denne rollen bli fjernet fra alle brukere." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hjelp til søk +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hjelp til søk apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrert men deaktivert DocType: DocType,Hide Copy,Skjule Kopier apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Fjerne alle roller @@ -1166,7 +1168,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresser DocType: Communication,Shared,delt -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Fest Document Print +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Fest Document Print DocType: Bulk Update,Field,feltet DocType: Communication,Received,Mottatt DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1187,12 +1189,12 @@ DocType: Report,Query Report,Query Rapporter DocType: User,Set New Password,Set New Password DocType: User,Github User ID,Github bruker-ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Hvis dokumenttype -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan ikke slette eller avbryte fordi {0} {1} er knyttet til {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Kan ikke slette eller avbryte fordi {0} {1} er knyttet til {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Ukjent app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S er ikke en gyldig rapportformat. Rapporter format skal \ ett av følgende% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere ganger i rader {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Feltnavn {0} forekommer flere ganger i rader {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} fra {1} til {2} i rad # {3} DocType: Communication,Expired,Utløpt DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antall kolonner for et felt i et rutenett (Totalt kolonner i et rutenett må være mindre enn 11) @@ -1202,30 +1204,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Har du en konto? Lo apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Ukjent Print Format: {0} DocType: Workflow State,arrow-down,pil-ned apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Kollaps -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Bruker ikke lov til å slette {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Bruker ikke lov til å slette {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Sist oppdatert DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Skriptkode apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Opprett bruker e-post apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Opprett bruker e-post -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Ingen tillatelser oppgitt +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Ingen tillatelser oppgitt apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globale innstillinger: Brukerne vil bare kunne velge sjekket ikoner apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ikke funnet DocType: Custom Role,Custom Role,Custom rolle apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Hjem / Test mappe 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorer brukertillatelser Hvis Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Vennligst lagre dokumentet før du laster opp. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vennligst lagre dokumentet før du laster opp. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Skriv inn passordet ditt DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tilgang Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Legg til en kommentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Rediger DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Avsluttet abonnementet Nyhetsbrev -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Brett må komme før en Section Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Brett må komme før en Section Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Sist endret av DocType: Workflow State,hand-down,hånden ned DocType: Address,GST State,GST-stat -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Kan ikke angi Avbryt uten Send +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Kan ikke angi Avbryt uten Send DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Det var feil. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigerings URI nødt til å Auth kode @@ -1244,7 +1246,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mine DocType: Website Theme,Text Color,Tekstfarge DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Ugyldig Request -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Denne formen har ikke noen innspill +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Denne formen har ikke noen innspill apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session Utløps må være i formatet {0} DocType: Website Sidebar Item,Group,Gruppe DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Velg target = "_blank" for å åpne en ny side i. @@ -1253,7 +1255,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorer koding feil. DocType: Workflow State,wrench,skiftenøkkel apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Ikke sett -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Oppsett> Bruker DocType: Authentication Log,Date,Dato DocType: Website Settings,Disable Signup,Deaktiver registrering apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Sitte mens systemet blir oppsettet. Dette kan ta en liten stund. @@ -1264,7 +1265,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Legg til en kommentar DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module å eksportere -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Ingen grunnleggende rettigheter sett +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Ingen grunnleggende rettigheter sett apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Abonnementet utløper {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Nedlastingslink for sikkerhetskopien vil bli sendt på følgende e-postadresse: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",Betydning av Submit Avbryt: Bedre @@ -1277,11 +1278,11 @@ DocType: Desktop Icon,query-report,spørring-rapport apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Tildelt {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtre lagret DocType: DocField,Percent,Prosent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Vennligst angi filtre +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Vennligst angi filtre apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Knyttet til DocType: Workflow State,book,bok DocType: Website Settings,Landing Page,Destinasjonsside -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Feil på Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Feil på Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Request kø. Dette kan ta litt tid, vær tålmodig." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Ingen tillatelser satt for disse kriteriene. @@ -1293,7 +1294,7 @@ DocType: System Settings,Allow Login using Mobile Number,Tillat innlogging ved h apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Du har ikke nok rettigheter til å få tilgang til denne ressursen. Ta kontakt med sjefen for å få tilgang. DocType: Custom Field,Custom,Custom apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Oppsett overvåking basert på ulike kriterier. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Innlegg arkivert under {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Innlegg arkivert under {0} DocType: Email Alert,Send alert if date matches this field's value,Send varsel om dato kamper denne feltets verdi DocType: Workflow,Transitions,Overganger apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Fjern {0} og slette alle data? @@ -1302,9 +1303,8 @@ DocType: User,Login After,Login Etter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Utskrift DocType: Workflow State,thumbs-up,tommel opp -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto ikke oppsett. Vennligst opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision bør være mellom 1 og 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision bør være mellom 1 og 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,og DocType: Error Snapshot,Frames,Rammer @@ -1313,7 +1313,7 @@ DocType: About Us Team Member,Image Link,Bilde Link DocType: Auto Email Report,Report Filters,rapportfiltre apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nå DocType: Workflow State,step-backward,trinn bakover -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Vennligst sett Dropbox hurtigtaster på din config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Slett denne posten for å tillate sende til denne e-postadressen apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Bare obligatoriske feltene er nødvendige for nye rekorder. Du kan slette ikke-obligatoriske kolonner hvis du ønsker det. @@ -1335,8 +1335,7 @@ DocType: File,Is Attachments Folder,Er Vedlegg Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Utvid alle apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Gyldig Login id nødvendig. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-open -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Du har avbrutt betalings -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Velg en gyldig csv-fil med data +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Velg en gyldig csv-fil med data apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-delte dette dokumentet med {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumentstatus overgang fra {0} til {1} er ikke tillatt DocType: DocType,"Make ""name"" searchable in Global Search",Gjør "navn" søkbar i Global Søk @@ -1349,7 +1348,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Category apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Bruker {0} er deaktivert apps/frappe/frappe/www/404.html +8,Page missing or moved,Page mangler eller flyttet -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Rediger {0} egenskaper DocType: DocType,Route,Rute apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay betaling gateway-innstillinger DocType: DocField,Name,Navn @@ -1357,8 +1355,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Søk i dokumentene apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Søk i dokumentene DocType: OAuth Authorization Code,Valid,Gyldig -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Åpne kobling -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Ditt språk +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Åpne kobling +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ditt språk apps/frappe/frappe/desk/form/load.py +46,Did not load,Ikke lastes apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Legg til rad DocType: Tag Category,Doctypes,Doctyper @@ -1373,7 +1371,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Er Tilbakemel DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kan Skriv apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Visse dokumenter, som en faktura, bør ikke endres etter finalen. Den endelige tilstand for slike dokumenter kalles Sendt inn. Du kan begrense hvilke roller kan sende inn." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Du har ikke lov til å eksportere denne rapporten +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Du har ikke lov til å eksportere denne rapporten apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element valgt DocType: Newsletter,Test Email Address,Test e-postadresse DocType: ToDo,Sender,Avsender @@ -1408,7 +1406,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument-ID DocType: Print Settings,Letter,Brev -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Bilde feltet må være av typen Fest bilde +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Bilde feltet må være av typen Fest bilde DocType: DocField,Columns,kolonner DocType: Async Task,Succeeded,Lyktes apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Obligatoriske felt kreves i {0} @@ -1458,7 +1456,7 @@ DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Innstillinger for oss siden. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Feil Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,I +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,I DocType: Email Alert,Value Change,Verdiendring DocType: Standard Reply,Standard Reply,Standard Svar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Bredde på input-boksen @@ -1474,12 +1472,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Bruk denne feltnavn å generere tittel apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import E-post fra apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Inviter som User -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Velg Vedlegg +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Velg Vedlegg apps/frappe/frappe/model/naming.py +94, for {0},for {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Det var feil. Vennligst rapporter dette. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Du har ikke lov til å skrive ut dette dokumentet +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Du har ikke lov til å skrive ut dette dokumentet apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Vennligst angi filtre verdi i St.meld Filter tabellen. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Laster Rapporter +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Laster Rapporter apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Abonnementet utløper i dag. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Legg Ved Fil @@ -1509,7 +1507,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionale Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Base Unikt navn (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,La denne samtalen -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Alternativer ikke satt for link feltet {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Alternativer ikke satt for link feltet {0} DocType: Customize Form,"Must be of type ""Attach Image""",Må være av typen "Fest Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Avmarker alt apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Du kan ikke usatt "Read Only" for feltet {0} @@ -1552,9 +1550,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Notat apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Feilrapport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Tilbakemeldingsbetingelsene stemmer ikke overens -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Tidslinje feltet må være en gyldig feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Tidslinje feltet må være en gyldig feltnavn DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nytt passord mailet apps/frappe/frappe/auth.py +245,Login not allowed at this time,Logg ikke tillatt på dette tidspunktet DocType: Email Account,Email Sync Option,E-post Sync Option @@ -1576,7 +1574,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard svar på vanlige spørsmål. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard Sende DocType: Workflow State,volume-off,volum-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Likt av {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Likt av {0} DocType: Footer Item,Footer Item,Fotnote Element ,Download Backups,Last ned sikkerhetskopier apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Hjem / Test mappe 1 @@ -1611,7 +1609,7 @@ DocType: Web Page,Text Align,Tekst Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Navn kan ikke inneholde spesialtegn som {0} DocType: Contact Us Settings,Forward To Email Address,Frem til e-postadresse apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Vis alle data -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Tittel-feltet må være en gyldig feltnavn +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Tittel-feltet må være en gyldig feltnavn apps/frappe/frappe/config/core.py +7,Documents,Dokumenter DocType: Email Flag Queue,Is Completed,Det er ferdig apps/frappe/frappe/www/me.html +22,Edit Profile,Endre profil @@ -1621,7 +1619,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Dette feltet vises bare hvis feltnavn er definert her har verdi eller reglene er sanne (eksempler): myfield eval: doc.myfield == 'Min Value' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,I dag +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Når du har satt dette, vil brukerne bare kunne åpne dokumenter (f.eks. Blogginnlegg) der koblingen finnes (f.eks. Blogger)." DocType: Error Log,Log of Scheduler Errors,Logg av Scheduler feil DocType: User,Bio,Bio @@ -1645,6 +1643,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stjerne er lavest og 5 stjerner er høyeste rating DocType: Event,Ref Name,Ref Navn DocType: Web Page,Center,Sentrum +DocType: Email Alert,Value To Be Set,Verdi som skal settes apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Første nivå DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representerer statene tillatt i ett dokument og rolle tildelt endre staten. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Refresh Form @@ -1665,18 +1664,18 @@ DocType: DocType,Has Web View,Har webvisning apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE navn bør starte med en bokstav, og det kan bare bestå av bokstaver, tall, mellomrom og understrek" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,integrasjon Request -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Kjære +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Kjære DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Regnskap User DocType: Web Page,HTML for header section. Optional,HTML for header delen. Valgfritt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Denne funksjonen er helt ny og fortsatt eksperimentell -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimum {0} rader tillatt +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimum {0} rader tillatt DocType: Email Unsubscribe,Global Unsubscribe,Global Avmelding apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Dette er en svært vanlig passord. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Utsikt DocType: Communication,Assigned,Assigned DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Velg utskriftsformat +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Velg utskriftsformat apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Korte tastatur mønstre er lett å gjette DocType: Portal Settings,Portal Menu,Portal Meny apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lengde på {0} må være mellom 1 og 1000 @@ -1715,7 +1714,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Bruker kan ikke søke apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ugyldig Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,Gjelder denne regelen dersom Bruker er eier -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Vil være innloggings-IDen din +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Vil være innloggings-IDen din apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Bygg Rapporter DocType: Note,Notify users with a popup when they log in,Varsle brukere med en popup når de logger inn apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} finnes ikke, velg et nytt mål å fusjonere" @@ -1734,17 +1733,18 @@ DocType: User Permission for Page and Report,Roles Permission,roller Tillatelse apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Oppdater DocType: Error Snapshot,Snapshot View,Snapshot Vis apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Ta vare på Nyhetsbrev før sending -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opsjonene må være en gyldig DOCTYPE for feltet {0} i rad {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år siden +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opsjonene må være en gyldig DOCTYPE for feltet {0} i rad {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Rediger Egenskaper DocType: Patch Log,List of patches executed,Liste over patcher henrettet apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} allerede meldt -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikasjon Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikasjon Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Vennligst velg en annen betalingsmåte. Razorpay støtter ikke transaksjoner i valuta '{0} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,I kø for sikkerhetskopiering. Det kan ta noen minutter til en time. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrer OAuth-klient app -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan ikke være "{2}". Det bør være en av "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan ikke være "{2}". Det bør være en av "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} eller {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Vis eller Skjul skrivebordsikoner apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Passord Update @@ -1771,7 +1771,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Vis linjeskift etter §§ DocType: Blogger,Short Name,Kort Navn apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Du velger Sync alternativ som alt, vil det synkronisert all \ lese så vel som ulest melding fra serveren. Dette kan også føre til duplisering \ of Communication (e-post)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,filer Størrelse @@ -1783,6 +1783,7 @@ DocType: Contact,Purchase Manager,Innkjøpssjef DocType: Custom Script,Sample,Prøve apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Ukategorisert Tags DocType: Event,Every Week,Hver Uke +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto ikke oppsett. Vennligst opprett en ny e-postkonto fra Oppsett> E-post> E-postkonto apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klikk her for å sjekke din bruk eller oppgradere til et høyere plan DocType: Custom Field,Is Mandatory Field,Er Obligatoriske felt DocType: User,Website User,Website User @@ -1806,16 +1807,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Meny DocType: Workflow State,pencil,blyant apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat meldinger og andre meldinger. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Sett Etter kan ikke settes som {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Sett Etter kan ikke settes som {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Del {0} med apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-postkonto oppsett må oppgi passord for: DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Writers Introduksjon DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Feil ved evaluering av overvåking {0}. Fiks malen. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Feil ved evaluering av overvåking {0}. Fiks malen. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Velg dokumenttypen eller en rolle for å starte. DocType: Contact,Passive,Passiv DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Din betaling er kansellert. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Velg filtype DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Side ikke funnet @@ -1843,6 +1845,7 @@ DocType: Property Setter,Property Type,Eiendomstype DocType: Workflow State,screenshot,skjermbilde apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Bare Administrator kan lagre en standard rapport. Vennligst endre navn og lagre. DocType: System Settings,Background Workers,bakgrunns~~POS=TRUNC Workers +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Feltnavn {0} i konflikt med metaobjekt DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentstatus apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Du har gjort {0} av {1} @@ -1867,7 +1870,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Vis brukertillatelser apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Du må være logget inn og ha System Manager Rolle å kunne få tilgang til backup. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Gjenværende værende~~POS=HEADCOMP -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Vennligst spare før du fester. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Vennligst spare før du fester. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Lagt {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standard utseende er satt i {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype kan ikke endres fra {0} til {1} i rad {2} @@ -1888,11 +1891,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Sta apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start mislyktes apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Denne e-posten ble sendt til {0} og kopieres til {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vennligst sett opp standard e-postkonto fra oppsett> e-post> e-postkonto -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Opprett en ny {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Opprett en ny {0} DocType: Email Rule,Is Spam,er Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapporter {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Åpen {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Åpen {0} DocType: OAuth Client,Default Redirect URI,Standard Omadresser URI DocType: Email Alert,Recipients,Mottakere DocType: Workflow State,ok-sign,ok-tegn @@ -1910,6 +1912,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Hjelp artikler ,Modules Setup,Moduler Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Type: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Din betaling har mislyktes. DocType: Communication,Unshared,udelte DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Module Not Found @@ -1957,7 +1960,7 @@ DocType: Website Settings,Brand Image,Varemerke DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Oppsett av menylinjen, bunntekst og logo." DocType: Web Form Field,Max Value,Max Value -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},For {0} på nivå {1} i {2} i rad {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},For {0} på nivå {1} i {2} i rad {3} DocType: Contact,All,Alt DocType: Email Queue,Recipient,Mottaker DocType: Communication,Has Attachment,har Vedlegg @@ -1974,7 +1977,8 @@ DocType: Workflow State,align-right,justere høyre DocType: Auto Email Report,Email To,E-post til apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Mappen {0} er ikke tom DocType: Page,Roles,Roller -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Feltet {0} kan ikke velges. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Feil: Verdi mangler for {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Feltet {0} kan ikke velges. DocType: System Settings,Session Expiry,Session Utløps DocType: Workflow State,ban-circle,ban-sirkel DocType: Email Flag Queue,Unread,ulest @@ -1989,7 +1993,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Bruker Defaults apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Opprett ny DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-post ble ikke sendt til {0} (utmeldings / deaktivert) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-post ble ikke sendt til {0} (utmeldings / deaktivert) DocType: Async Task,Traceback,Spore tilbake DocType: Currency,Smallest Currency Fraction Value,Minste Valuta Fraksjon Verdi apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Tildele Å @@ -2000,12 +2004,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Fra DocType: Website Theme,Google Font (Heading),Google Font (Overskrift) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Velg en gruppe node først. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Finn {0} i {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Finn {0} i {1} DocType: OAuth Client,Implicit,Implisitt DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Tilføy som kommunikasjon mot denne DOCTYPE (må ha felt, "Status", "Emne")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI-er for å motta autorisasjonskode når brukeren gir tilgang, samt feilsvar. Vanligvis en REST endepunkt avslørt av Client App.
f.eks http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ikke lov til å endre {0} etter innlevering +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ikke lov til å endre {0} etter innlevering DocType: Communication,Comment Type,Kommentar Type DocType: OAuth Client,OAuth Client,OAuth-klient apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Brukere @@ -2020,7 +2024,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtreringsdata DocType: Auto Email Report,Filter Data,Filtreringsdata apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Legg til et merke -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Legg ved en fil først. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Legg ved en fil først. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Det var noen feil innstilling navnet, vennligst kontakt administrator" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Innkommende e-postkonto er ikke riktig apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2035,11 +2039,11 @@ DocType: Blog Post,Email Sent,E-post sendt DocType: DocField,Ignore XSS Filter,Ignorer XSS-filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,fjernet apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox backup innstillinger -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Send som e-post +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Send som e-post DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Bruker {0} kan ikke deaktiveres apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kjære System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Ditt land +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Ditt land DocType: Event,Sunday,Søndag apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,I Grid View DocType: Address Template,Template,Mal @@ -2047,7 +2051,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-innstillinger apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Om endring apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal betaling gateway-innstillinger -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} ({3}) vil få avkortet, som maks tillatte tegn er {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} ({3}) vil få avkortet, som maks tillatte tegn er {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ressurseier Passord Legitimasjons DocType: OAuth Client,Response Type,Response Type apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maks brukere @@ -2064,7 +2068,7 @@ DocType: DocField,Table,Bord DocType: File,File Size,Filstørrelse apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Du må logge inn for å sende inn dette skjemaet DocType: User,Background Image,Bakgrunnsbilde -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Velg land, tidssone og valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Velg land, tidssone og valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mellom DocType: Async Task,Queued,I kø @@ -2073,6 +2077,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Skape apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ugyldig Filter: {0} DocType: Email Account,no failed attempts,ingen mislykkede forsøk +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressemal funnet. Vennligst opprett en ny fra Oppsett> Utskrift og merkevarebygging> Adressemaler. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App tilgangsnøkkel DocType: OAuth Bearer Token,Access Token,Tilgang Token @@ -2090,8 +2095,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Brukernavn DocType: DocType,Image View,Bilde Vis apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Ser ut som noe gikk galt under transaksjonen. Siden vi ikke har bekreftet betalingen, vil Paypal automatisk refundere deg dette beløpet. Hvis den ikke gjør det, kan du sende oss en e-post og nevner Korrelasjon ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tall og hovedbokstaver i passordet" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sett Etter feltet {0} nevnt i Custom Feltet '{1}', med etiketten {2}, eksisterer ikke" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inkluder symboler, tall og hovedbokstaver i passordet" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sett Etter feltet {0} nevnt i Custom Feltet '{1}', med etiketten {2}, eksisterer ikke" DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Show Print Første apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter for å starte @@ -2122,14 +2127,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Filen '{0}' ikke funnet apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Fjern Seksjon DocType: User,Change Password,Bytt passord -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ugyldig E-postadresse: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hallo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ugyldig E-postadresse: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hallo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Hendelses slutten må være etter start apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Du har ikke tillatelse til å få en rapport om {0} +DocType: System Settings,Apply Strict User Permissions,Bruk Strenge Bruker Tillatelser DocType: DocField,Allow Bulk Edit,Tillat Bulk Edit DocType: DocField,Allow Bulk Edit,Tillat Bulk Edit DocType: Blog Post,Blog Post,Blogginnlegg -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Avansert Søk +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Avansert Søk apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Instruksjoner Password Reset har blitt sendt til din e-post apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivå 0 er for dokumentnivåtillatelser, \ høyere nivåer for feltnivåtillatelser." @@ -2148,15 +2154,14 @@ DocType: Web Page,Sidebar and Comments,Sidepanel og kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Når du Endre et dokument etter Avbryt og lagre det, vil det bli et nytt nummer som er en versjon av det gamle nummeret." DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel DocType: Stripe Settings,Publishable Key,Publiserbar nøkkel -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år siden DocType: Workflow State,circle-arrow-left,sirkel-pil-venstre apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache server ikke kjører. Ta kontakt Administrator / Teknisk support apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,partiet~~POS=HEADCOMP Name -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Lag en ny rekord +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Lag en ny rekord apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Søker DocType: Currency,Fraction,Fraksjon DocType: LDAP Settings,LDAP First Name Field,LDAP fornavn Feltet -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Velg fra eksisterende vedlegg +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Velg fra eksisterende vedlegg DocType: Custom Field,Field Description,Felt Beskrivelse apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Navn ikke satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-post innboksen @@ -2202,11 +2207,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Tillatelse nivå DocType: User,Send Notifications for Transactions I Follow,Send Påminnelser for Transaksjoner jeg Følg -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sette Send, Avbryt: Bedre uten Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan ikke sette Send, Avbryt: Bedre uten Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Er du sikker på at du vil slette vedlegget? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan ikke slette eller avbryte fordi {0} {1} er knyttet til {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Ingen resultater funnet for '

-apps/frappe/frappe/__init__.py +1063,Thank you,Takk +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Kan ikke slette eller avbryte fordi {0} {1} er knyttet til {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Takk apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Besparende DocType: Print Settings,Print Style Preview,Print Stil Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2218,10 +2222,10 @@ DocType: DocField,In List View,I listevisning DocType: Email Account,Use TLS,Bruk TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ugyldig brukernavn eller passord apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Legg tilpassede script for å former. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Ingen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Ingen ,Role Permissions Manager,Rolle Tillatelser manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Navnet på den nye utskriftsformat -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Clear Vedlegg +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Clear Vedlegg apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorisk: ,User Permissions Manager,Brukertillatelser manager DocType: Property Setter,New value to be set,Ny verdi som skal stilles @@ -2251,26 +2255,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dage apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisere blogginnlegg. DocType: Workflow State,Time,Tid DocType: DocField,Attach,Fest -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldig feltnavn mønster. Det bør være {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} er ikke et gyldig feltnavn mønster. Det bør være {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Send tilbakemelding Request bare hvis det er minst én kommunikasjons er tilgjengelig for dokumentet. DocType: Custom Role,Permission Rules,Tillatelse Regler DocType: GSuite Settings,GSuite Settings,GSuite Innstillinger DocType: Address,Links,Lenker -apps/frappe/frappe/model/base_document.py +428,Value missing for,Verdi mangler for +apps/frappe/frappe/model/base_document.py +427,Value missing for,Verdi mangler for apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Legg Child -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Skrevet Record kan ikke slettes. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Skrevet Record kan ikke slettes. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Size DocType: GSuite Templates,Template Name,Malnavn -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ny type dokument +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ny type dokument DocType: Custom DocPerm,Read,Les DocType: Role Permission for Page and Report,Role Permission for Page and Report,Rolle Tillatelse til side og Rapporter apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Juster Verdi apps/frappe/frappe/www/update-password.html +14,Old Password,Gammelt Passord -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Innlegg {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Innlegg {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","For å formatere kolonner, gi kolonneetiketter i søket." DocType: Has Domain,Has Domain,Har Domene apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Har du ikke en konto? Melde deg på -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sette Assign Endre hvis ikke Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan ikke sette Assign Endre hvis ikke Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edit Rolle Tillatelser DocType: Communication,Link DocType,Link DOCTYPE @@ -2369,7 +2373,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Sørg for at profilen din har en e-postadresse apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Du har ulagrede endringer i dette skjemaet. Vennligst lagre før du fortsetter. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Standard for {0} må være et alternativ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard for {0} må være et alternativ DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategori DocType: User,User Image,Brukerbilde apps/frappe/frappe/email/queue.py +289,Emails are muted,E-post er dempet @@ -2402,7 +2406,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Neste hand DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Disse verdiene vil bli automatisk oppdatert i transaksjoner og vil også være nyttig å begrense tillatelser for denne brukeren på transaksjoner som inneholder disse verdiene. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Utgiver -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Mislyktes: {0} til {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Mislyktes: {0} til {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Velg Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Bla apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-poster sendt @@ -2414,7 +2418,7 @@ DocType: Async Task,Running,Kjører apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Tilbakestill passord apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Vennligst oppgrader å legge til flere enn {0} abonnenter DocType: Workflow State,hand-left,hand-venstre -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} for {1} kan ikke være unikt +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} for {1} kan ikke være unikt DocType: Email Account,Use SSL,Bruk SSL DocType: Workflow State,play-circle,play-sirkel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Velg utskriftsformat til Rediger @@ -2469,7 +2473,7 @@ DocType: DocField,No Copy,Ingen Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Logg inn med LDAP DocType: Web Form,Breadcrumbs,Brødsmuler -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Hvis eier +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Hvis eier DocType: OAuth Authorization Code,Expiration time,utløps~~POS=TRUNC tid DocType: Web Page,Website Sidebar,nettstedet Sidebar DocType: Web Form,Show Sidebar,Show Sidebar @@ -2489,7 +2493,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kunne ikke finne apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Navn og etternavn av seg selv er lett å gjette. apps/frappe/frappe/config/website.py +93,Knowledge Base,Kunnskapsbase DocType: Workflow State,briefcase,stresskoffert -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Verdien kan ikke endres for {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Verdien kan ikke endres for {0} DocType: Feedback Request,Is Manual,er Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Type representerer knappen farge: Suksess - Green, Danger - Rød, Inverse - Svart, Primary - Dark Blue, Info - Lyseblå, Advarsel - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ingen Rapporter Loaded. Vennligst bruk spørre-rapport / [Rapportnavn] for å kjøre en rapport. @@ -2566,7 +2570,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Framgang apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,av Rolle apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Manglende felt apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ugyldig feltnavn '{0}' i autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Søk i en dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Søk i en dokumenttype apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,La feltet for å forbli redigeres selv etter innlevering DocType: Custom DocPerm,Role and Level,Rolle og nivå DocType: File,Thumbnail URL,Thumbnail URL @@ -2583,18 +2587,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mer informasjon DocType: Desktop Icon,Desktop Icon,Desktop Ikon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Betalingen ble vellykket akseptert +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Betalingen ble vellykket akseptert apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Sorry! Du har ikke tillatelse til å se denne siden. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tips: Dobbeltklikk celle for å redigere DocType: Workflow State,bell,bell apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Feil i e-postvarsel apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Del dette dokumentet med +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} kan ikke være en bladnode som den har barn DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Legg til vedlegg +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Legg til vedlegg DocType: Communication,Email,E-post apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Takk for din melding -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Send lesebekreftelse +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Send lesebekreftelse DocType: Stripe Settings,Stripe Settings,Stripe Innstillinger DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox oppsett via nettstedet Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Ugyldig Pålogging Token @@ -2660,6 +2665,7 @@ DocType: DocType,Web View,web-visning apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Advarsel: Denne Print Format er i gammel stil og kan ikke genereres via API. DocType: DocField,Print Width,Print Bredde ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST-nummer DocType: User,Allow user to login only before this hour (0-24),Tillater brukeren å logge bare før denne timen (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder er obligatorisk apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2686,7 +2692,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Liten tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator nås {0} på {1} via IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Lik -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alternativer "Dynamic Link 'type felt må peke til en annen Link Feltet med alternativer som DOCTYPE +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alternativer "Dynamic Link 'type felt må peke til en annen Link Feltet med alternativer som DOCTYPE DocType: About Us Settings,Team Members Heading,Teammedlemmer Overskrift apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ugyldig CSV-format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Sett Antall sikkerhetskopier @@ -2697,7 +2703,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Tredjeparts Autentisering DocType: Website Settings,Banner is above the Top Menu Bar.,Banner er over den øverste menylinjen. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Eksport Rapport: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Eksport Rapport: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} finnes ikke DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2720,7 +2726,7 @@ DocType: Kanban Board Column,Column Name,Kolonnenavn DocType: Language,Based On,Basert På apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Gjøre standard apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Sjekk Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} for {1} kan ikke indekseres +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} for {1} kan ikke indekseres DocType: Communication,Email Account,E-postkonto DocType: Workflow State,Download,Last ned DocType: Blog Post,Blog Intro,Blogg Intro @@ -2731,7 +2737,7 @@ DocType: Web Page,Insert Code,Sett inn kode DocType: ToDo,Low,Lav apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Du kan legge til dynamiske egenskaper fra dokumentet ved hjelp Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ugyldig grense {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,List en dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,List en dokumenttype DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Hvis du laster opp nye rekorder, la "navn" (ID) kolonne blank." DocType: Address,Chattisgarh,Chattisgarh @@ -2753,26 +2759,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Send Skriv ut som PDF DocType: Web Form,Amount,Beløp DocType: Workflow Transition,Allowed,Tillatt -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Det kan bare være én Fold i en form +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Det kan bare være én Fold i en form apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Kan ikke skrive filformat for {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Gjenopprett til standardinnstillinger? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ugyldig Hjemmeside apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ugyldig innlogging. Prøv igjen. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Valg som kreves for lenke- eller tabelltypefelt {0} i rad {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Valg som kreves for lenke- eller tabelltypefelt {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Valg som kreves for lenke- eller tabelltypefelt {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Valg som kreves for lenke- eller tabelltypefelt {0} i rad {1} DocType: Auto Email Report,Send only if there is any data,Send bare hvis det er noen data apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Tilbakestill filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Tillatelse på nivå 0 må angis før høyere nivåer er satt +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Tillatelse på nivå 0 må angis før høyere nivåer er satt apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Oppdraget stengt av {0} DocType: Integration Request,Remote,Remote -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Beregn +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beregn apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vennligst velg DOCTYPE først apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Bekreft Din e-post apps/frappe/frappe/www/login.html +42,Or login with,Eller logg inn med DocType: Error Snapshot,Locals,Lokalbefolkningen apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommunisert via {0} på {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} nevnte deg i en kommentar i {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 eller = tak i Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,eg (55 + 434) / 4 eller = tak i Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} er nødvendig DocType: Integration Request,Integration Type,integrasjon Type DocType: Newsletter,Send Attachements,Send vedlegg @@ -2782,15 +2788,15 @@ DocType: DocField,Perm Level,Perm nivå apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Begivenheter i dagens kalender DocType: Web Page,Web Page,Nettside DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'I global søk' ikke tillatt for type {0} i rad {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'I global søk' ikke tillatt for type {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'I global søk' ikke tillatt for type {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'I global søk' ikke tillatt for type {0} i rad {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Vis liste -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datoen må være i format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datoen må være i format: {0} DocType: Workflow,Don't Override Status,Ikke overstyr Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Vennligst gi en karakter. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Request apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Søkeord -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Den første brukeren: Du +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Den første brukeren: Du apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Velg kolonner DocType: Translation,Source Text,kilde Tekst apps/frappe/frappe/www/login.py +55,Missing parameters for login,Manglende parametere for pålogging @@ -2812,7 +2818,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importerer DocType: ToDo,Assigned By,Tildelt av apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Du kan bruke Tilpass Form å sette nivåer på felt. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Velg ditt område +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Velg ditt område DocType: Custom DocPerm,Level,Nivå DocType: Custom DocPerm,Report,Rapporter apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Beløpet må være større enn 0. @@ -2832,7 +2838,7 @@ DocType: Website Theme,Background,Bakgrunn DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON liste over Doctyper brukes til å søke brukertillatelser. Dersom tomt, vil alle koblede Doctyper brukes til å søke brukertillatelser." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Vennligst legg til en vurdering -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Kan ikke satt endre uten Avbryt +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Kan ikke satt endre uten Avbryt apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Er barnet tabellen apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} må være en av {1} @@ -2847,7 +2853,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Dette går over fremvi apps/frappe/frappe/config/setup.py +260,Install Applications.,Installer applikasjoner. DocType: Contact,Last Name,Etternavn DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Ingen varsler for i dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Ingen varsler for i dag DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Send Email Print Vedlegg som PDF (anbefales) DocType: Web Page,Left,Venstre DocType: Event,All Day,Hele Dagen @@ -2861,7 +2867,7 @@ DocType: Event,Send an email reminder in the morning,Send en e-post påminnelse DocType: Blog Post,Published On,Publisert på DocType: Contact,Gender,Kjønn apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obligatorisk informasjon mangler: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Feltet '{0} kan ikke stilles like unik som den har ikke-unike verdier +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Feltet '{0} kan ikke stilles like unik som den har ikke-unike verdier apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Bare 200 inserts tillatt i en forespørsel DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referanse Type @@ -2874,7 +2880,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,varselskilt DocType: Workflow State,User,Bruker DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Vis tittel i nettleservinduet som "Prefix - title" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,tekst i dokumenttype +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,tekst i dokumenttype apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Kjør test apps/frappe/frappe/handler.py +91,Logged Out,Logget ut apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mer... @@ -2900,13 +2906,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visar DocType: DocField,Default,Standard apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} lagt -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Søk etter '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Søk etter '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Vennligst lagre rapporten først apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnenter lagt apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ikke I DocType: Workflow State,star,stjerne -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,verdier atskilt med komma -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Maks bredde for type Valuta er 100px i rad {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,verdier atskilt med komma +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Maks bredde for type Valuta er 100px i rad {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Vennligst dele dine tilbakemeldinger for {0} apps/frappe/frappe/config/website.py +13,Content web page.,Innholds nettside. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Legg til en ny rolle @@ -2925,7 +2931,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ikke en gyldig LDAP-bruker apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} er ikke en gyldig State apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Vennligst velg en annen betalingsmåte. PayPal støtter ikke transaksjoner i valuta '{0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Søkefelt {0} er ikke gyldig +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Søkefelt {0} er ikke gyldig DocType: Workflow State,ok-circle,ok-sirkel apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Du kan finne ting ved å spørre «finne appelsin i kundenes apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Sorry! Brukeren skal ha full tilgang til sin egen rekord. @@ -2986,7 +2992,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Tekst som skal vises for Link til webside om denne formen har en nettside. Link rute blir automatisk generert basert på `page_name` og` parent_website_route` DocType: Feedback Request,Feedback Trigger,Tilbakemelding Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Vennligst sett {0} først +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Vennligst sett {0} først DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Lapp DocType: Async Task,Failed,Mislyktes diff --git a/frappe/translations/pl.csv b/frappe/translations/pl.csv index 9159b8d156..685147e8d4 100644 --- a/frappe/translations/pl.csv +++ b/frappe/translations/pl.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Nazwa Użytkownika Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Uwaga: Wielokrotne sesje będą dozwolone w przypadku urządzeń mobilnych apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Włączone skrzynki e-mail do użytkownika {} użytkowników apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nie można wysłać wiadomości e-mail. Przekroczył pan limit wysyłania o {0} wiadomości e-mail na ten miesiąc. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Bezpowrotnie Wysłać {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Bezpowrotnie Wysłać {0}? DocType: Address,County,Hrabstwo DocType: Workflow,If Checked workflow status will not override status in list view,Jeśli Sprawdzone stan przepływu pracy nie zastąpi status w widoku listy apps/frappe/frappe/client.py +280,Invalid file path: {0},Nieprawidłowa ścieżka pliku: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Proszę apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Drzewo DocType: User,User Emails,E-maile użytkowników DocType: User,Username,Nazwa użytkownika -apps/frappe/frappe/model/base_document.py +581,Value too big,Wartość zbyt duża +apps/frappe/frappe/model/base_document.py +580,Value too big,Wartość zbyt duża DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Uruchom test skryptowy DocType: Contact,Department,Departament @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Dzienniki DocType: Custom DocPerm,This role update User Permissions for a user,"Ta rola uaktualni sekcję ""Uprawnienia Użytkownika"" dla użytkownika" apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Zmień nazwę {0} DocType: Workflow State,zoom-out,pomniejsz -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Nie można otworzyć {0} kiedy jest już otwarty +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Nie można otworzyć {0} kiedy jest już otwarty apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} nie może być pusta apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Z rejestrem apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Obrazy DocType: Communication,Reference Owner,Odniesienie Właściciel DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmniejsza jednostka frakcji krążących (monety). Na przykład 1 centa do USD i powinien zostać wprowadzony w 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, wiersz {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, wiersz {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Proszę podać FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,Poczynając apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Szablon Importu Danych @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Nadrzędny DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jeśli jest włączona, siła hasła zostanie wymuszona na podstawie minimalnej wartości hasła. Wartość 2 jest średnio silna, a 4 jest bardzo silna." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Jeśli jest włączona, siła hasła zostanie wymuszona na podstawie minimalnej wartości hasła. Wartość 2 jest średnio silna, a 4 jest bardzo silna." DocType: About Us Settings,"""Team Members"" or ""Management""",Członkowie zespołu lub Zarząd -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Domyślnie dla 'Sprawdź' typu pola muszą być '0' lub '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Domyślnie dla 'Sprawdź' typu pola muszą być '0' lub '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Wczoraj DocType: Contact,Designation,Nominacja DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Pole jest publikowany DocType: Email Group,Email Group,Grupa email DocType: Note,Seen By,Widziany przez apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Dodaj wiele -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nie jak +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nie jak apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Ustawia nazwę wyświetlaną w polu apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nieprawidłowa wartość: {0} musi być {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Zmień właściwość pola (ukryj, tylko-do-odczytu, pozwolenia etc.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Ustawieni apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator Zalogowani DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.", apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Pobierz -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Wstaw +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Wstaw apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Wybierz {0} DocType: Print Settings,Classic,Klasyczny DocType: Desktop Icon,Color,Kolor @@ -122,7 +122,7 @@ DocType: Translation,Translation,Tłumaczenie apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instaluj apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Pan DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Formularz ten został zmodyfikowany po załadowaniu go +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Formularz ten został zmodyfikowany po załadowaniu go DocType: User Permission for Page and Report,User Permission for Page and Report,Uprawnienia użytkownika na stronie oraz sprawozdania DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Jeśli nie zostanie ustawiona, dokładność waluty zależy od formatu liczb" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Powód apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Proszę podać użytkownika DocType: Email Unsubscribe,Email Unsubscribe,E-mail Wypisz się DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Wybierz zdjęcie szerokości ok 150px z przezroczystym tłem aby otrzymać najlepszy rezultat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Pierwszy użytkownik będzie Administratorem Systemu (można to później zmienić). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Pierwszy użytkownik będzie Administratorem Systemu (można to później zmienić). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up, apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Przesyłanie... DocType: Email Domain,Email Domain,email Domain DocType: Workflow State,italic,Italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Dla wszystkich -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Nie możesz ustawić importu bez jego tworzenia +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Nie możesz ustawić importu bez jego tworzenia apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Wydarzenie i inne kalendarze. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,"Wszystkie pola są konieczne, aby przesłać komentarz." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Przeciągnij aby posortować kolumny @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standardowe Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nie możesz usuwać Dom i Załączniki foldery apps/frappe/frappe/config/desk.py +19,Files,Akta apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Uprawnienia użytkowników bazują na rolach do których zostali przypisani. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nie masz uprawnień aby wysłyłać maile powiązane z tym dokumentem -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Proszę wybrać conajmniej 1 kolumnę z {0} do sortowania / grupy +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nie masz uprawnień aby wysłyłać maile powiązane z tym dokumentem +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Proszę wybrać conajmniej 1 kolumnę z {0} do sortowania / grupy DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sprawdź to jeśli testujesz płatności przy użyciu API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,"Nie masz uprawnień, aby usunąć standardowy motyw strony WWW" DocType: Feedback Trigger,Example,Przykład @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Wszystkich zapisani apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Jeśli Twoje uprawnienia nie dają Ci dostępu na poziomie 0, to wyższe poziomy są bez znaczenia." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Zapisz jako DocType: Communication,Seen,Widziany -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Pokaż więcej szczegółów +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Pokaż więcej szczegółów DocType: System Settings,Run scheduled jobs only if checked,"Uruchamiane tylko zaplanowane zadania, jeśli zaznaczone" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Będą wyświetlane tylko wtedy, gdy są włączone Nagłówki sekcji" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archiwum @@ -221,7 +221,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Pokaż Wykres apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Wymagany poprawny adres e-mail i imię DocType: DocType,Hide Heading,Ukryj Nagłówek DocType: Address,Current,obecny -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Powiązane dokumenty apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupa DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,usuń-koło @@ -237,10 +236,9 @@ DocType: Workflow State,Filter,filtr apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Nazwa pola {0} nie może mieć znaków specjalnych, takich jak {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualizacja wiele wartości w jednym czasie. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Błąd: Dokument został zmodyfikowany po otwarciu -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego Szablonu adresu. Proszę utworzyć nową stronę z menu Setup> Printing and Branding> Address Template. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} wylogowanie: {1} DocType: Address,West Bengal,Bengal Zachodni -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable, +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable, DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrowane przez "{0}" DocType: Salutation,Administrator,Administrator @@ -250,7 +248,7 @@ DocType: Blog Settings,Blog Title,Nazwa Bloga apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standardowe role nie można wyłączyć DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Nie można używać sub-zapytanie w kolejności +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Nie można używać sub-zapytanie w kolejności DocType: Web Form,Button Help,przycisk Pomoc DocType: Kanban Board Column,purple,fioletowy DocType: About Us Settings,Team Members,Członkowie zespołu @@ -264,7 +262,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Pobierz rozp apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",Twój abonament wygasł {0}. Aby odnowić {1}. DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Konfiguracja już pełna -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nie jest zainstalowany +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nie jest zainstalowany DocType: Workflow State,Refresh,Odśwież DocType: Event,Public,Publiczny apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Brak pozycji @@ -272,7 +270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Pomóż apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Wsparcie Email DocType: DocField,Print Hide If No Value,"Wydrukuj ""Ukryte"" jeżeli nie została podana wartość" DocType: Event,yellow,żółty -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Pole jest publikacja musi być poprawnym nazwa_pola +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Pole jest publikacja musi być poprawnym nazwa_pola apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Prześlij załącznik DocType: Block Module,Block Module,Moduł bloku apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Szablon Eksportu @@ -293,7 +291,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Nowe konto zostało stworzone dla Ciebie na {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrukcje wysyłane pocztą elektroniczną apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrukcje wysyłane pocztą elektroniczną -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Wprowadź Odbiorca (y) e-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Wprowadź Odbiorca (y) e-mail DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Oznacz Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nie można zidentyfikować otwarte {0}. Spróbuj czegoś innego. @@ -308,8 +306,8 @@ DocType: Communication,Message ID,Identyfikator wiadomości DocType: Property Setter,Field Name,Nazwa pola apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nie jest skonfigurowany. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,albo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Nazwa Modułu... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Kontynuuj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Nazwa Modułu... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Kontynuuj DocType: Custom Field,Fieldname,Nazwa pola DocType: Workflow State,certificate,certyfikat DocType: User,Tile,Kafel @@ -318,6 +316,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Pokaż wszystkie wersje DocType: Workflow State,Print,Drukuj DocType: User,Restrict IP,Ogranicz IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Deska rozdzielcza apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nie można w tym momencie wysłać e-maili. apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Wyszukaj lub wpisz polecenie DocType: Communication,Timeline Name,Timeline Nazwa @@ -328,8 +327,8 @@ DocType: Contact,Sales Master Manager,Główny Menadżer Sprzedaży apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Ostatni krok apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Nazwa typu dokumentu (DocType) chcesz to pole, aby być powiązane. np klienta" DocType: User,Roles Assigned,Przypisane Role -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,szukać pomocy -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,szukać pomocy +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,szukać pomocy +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,szukać pomocy DocType: Top Bar Item,Parent Label,Nadrzędna etykieta apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Twoje zapytanie zostało odebrane. Postaramy się odpowiedzieć powrotem wkrótce. Jeśli masz jakieś dodatkowe informacje, prosimy o odpowiedź na tego maila." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Uprawnienia są automatycznie tłumaczone na Standardowe Raporty i Szukanie @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Edytuj nagłówek DocType: File,File URL,URL Pliku DocType: Version,Table HTML,Tabela HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Brak wyników wyszukiwania dla '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj abonentów apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Nadchodzące Wydarzenia na Dziś DocType: Email Alert Recipient,Email By Document Field,E-mail Przez Pole dokumentu @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,Kwota wg Polu apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Konieczny jest Użytkownik by Udostępniać DocType: DocField,Hidden,ukryty DocType: Web Form,Allow Incomplete Forms,Pozwól Niekompletne wnioski -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,Najpierw należy ustawić {0} +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,Najpierw należy ustawić {0} apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Za pomocą kilku słów, uniknąć typowych zwrotów." DocType: Workflow State,plane,pusty -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ups. Płatność nie powiodła się. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Jeśli wysyłasz nowe rekordy, ""Naming Series"" staje się obowiązkowe, jeśli jest obecny." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Wirtualny na dzisiaj +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Wirtualny na dzisiaj apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType może być zmieniona jedynie przez Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Zmieniona wartość {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Proszę sprawdzić pocztę do weryfikacji -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fałd nie mogą być na końcu formy +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fałd nie mogą być na końcu formy DocType: Communication,Bounced,Odbił DocType: Deleted Document,Deleted Name,Nazwa usunięte apps/frappe/frappe/config/setup.py +14,System and Website Users,Użytkownicy systemu i strony @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumentu zapisanego DocType: GSuite Templates,Destination ID,Identyfikator miejsca docelowego DocType: Desktop Icon,List,lista DocType: Communication,Link Name,Łącze Nazwa -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} w rzędzie {1} nie może być ukryte i obowiązkowe bez wartości domyślnej +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} w rzędzie {1} nie może być ukryte i obowiązkowe bez wartości domyślnej DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nieprawidłowe hasło: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nieprawidłowe hasło: DocType: Print Settings,Send document web view link in email,Wyślij Document Link zobaczyć web maila apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Twoja opinia o dokumencie {0} jest zapisany pomyślnie apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Wstecz -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} wiersze {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Waluta zdawkowa. Np. ""grosz""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Wybierz dodany plik @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,Łącze apps/frappe/frappe/utils/file_manager.py +96,No file attached,Brak załączonych plików DocType: Version,Version,Wersja DocType: User,Fill Screen,Wypełnij ekran -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nie można wyświetlić tego raportu w postaci drzewa, z powodu brakujących danych. Najprawdopodobniej jest przefiltrowany ze względu na uprawnienia." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Proszę skonfigurować domyślne konto e-mail z ustawień> poczta elektroniczna> konto e-mail +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nie można wyświetlić tego raportu w postaci drzewa, z powodu brakujących danych. Najprawdopodobniej jest przefiltrowany ze względu na uprawnienia." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Wybierz File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edycja poprzez Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Typ dokumentu ..., np klienta" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Typ dokumentu ..., np klienta" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Warunek '{0}' jest nieprawidłowa DocType: Workflow State,barcode,kod kreskowy apps/frappe/frappe/config/setup.py +232,Add your own translations,Dodaj własne tłumaczenia @@ -426,7 +426,7 @@ DocType: Event,Wednesday,Środa apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Oprócz ról bazujących na podstawie Zasad Uprawnień, możesz zastosować uprawnienia użytkownika na podstawie DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Te zezwolenia zostaną nadane dla wszystkich transakcji do których powiązany jest rekord. Np. jeżeli firma C jest dodana do Uprawnień Użytkowników użytkownika X, to tylko użytkownik X będzie mógł zobaczyć transakcje firmy C jako połączone wartości." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Pole Obraz musi być poprawnym nazwa_pola +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Pole Obraz musi być poprawnym nazwa_pola DocType: OAuth Client,Token,Znak DocType: Property Setter,ID (name) of the entity whose property is to be set,"Identyfikator (nazwa) podmiotu, którego właściwość zostaną ustawione" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Aby odnowić, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Elementy paska bocznego apps/frappe/frappe/installer.py +125,App {0} already installed,Aplikacja {0} już została zainstalowana DocType: Workflow State,exclamation-sign,wykrzyknik apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Pokaż Uprawnienia -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Pole Timeline musi być Link lub Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Pole Timeline musi być Link lub Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Zakres dat apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantta apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Strona {0} z {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,"Przed apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Klucz szyfrowania jest nieprawidłowy, sprawdź site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Do DocType: Kanban Board Column,darkgrey,ciemno szary -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Udane: {0} {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Udane: {0} {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nie można zmienić danych użytkownika w demo. Załóż nowe konto na https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Proszę powielić tego dokonać zmian apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generowanie PDF powiodło się z powodu niedziałających linków graficznych @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Składany apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Zapisane apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Z czym potrzebujesz pomocy? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opcje do wyboru. Każda opcja w nowej linii. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Odwołaj {0} bezpowrotnie? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Odwołaj {0} bezpowrotnie? DocType: Workflow State,music,muzyka DocType: Web Page,Settings,Ustawienia apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Proszę podać doctype DocType: Print Format,Style Settings, -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sortowanie pola {0} musi być poprawnym nazwa_pola +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sortowanie pola {0} musi być poprawnym nazwa_pola apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Więcej DocType: Contact,Sales Manager,Menadżer Sprzedaży apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Zmień nazwę DocType: Print Format,Format Data,Formatuj dane -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Lubić +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Lubić DocType: Customize Form Field,Customize Form Field,Dostosuj Pole Formularza apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Zezwól Użytkownikowi DocType: OAuth Client,Grant Type,Grant Rodzaj apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Sprawdź, które dokumenty są czytelne przez Użytkownika" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Niedozwolona aplikacja na listy -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,użyj % jako symbolu wieloznacznego -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email Domena nie została skonfigurowana dla tego konta, utwórz je?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,użyj % jako symbolu wieloznacznego +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email Domena nie została skonfigurowana dla tego konta, utwórz je?" DocType: User,Reset Password Key,Zresetuj Klucz Hasła DocType: Email Account,Enable Auto Reply,Włącz automatyczną odpowiedź apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nie Widziany @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Ustawiane tylko raz DocType: Email Queue Recipient,Email Queue Recipient,E-mail odbiorcy kolejki DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nazwa użytkownika {0} już istnieje -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable, +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable, apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Wystąpił błąd w szablonie Adres {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd, @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Od pełna nazwa apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nie masz dostępu do sprawozdania: {0} DocType: User,Send Welcome Email,Wyślij e-mail powitalny apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Prześlij plik CSV zawierający wszystkie uprawnienia użytkowników w tym samym formacie co Ściągniecie. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Usuń filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Usuń filtr DocType: Address,Daman and Diu,Daman i Diu DocType: Address,Personal,Osobiste apps/frappe/frappe/config/setup.py +113,Bulk Rename,Zbiorcza zmiana nazwy @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standardowy format DocType nie może mieć domyślnego formatu wydruku, użyj Dostosuj formularz" DocType: Report,Query,Zapytanie DocType: DocType,Sort Order,Kolejność -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},Pole 'W widoku listy' nie jest dozwolone dla typu {0} w lini {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},Pole 'W widoku listy' nie jest dozwolone dla typu {0} w lini {1} DocType: Custom Field,Select the label after which you want to insert new field.,Wybierz etykietę po której chcesz dodać nowe pole. ,Document Share Report,Raport Udostępniania Dokumentu DocType: User,Last Login,Ostatnie Logowanie -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nazwa pola jest wymagana w rzędzie {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nazwa pola jest wymagana w rzędzie {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolumna DocType: Custom Field,Adds a custom field to a DocType,Dodaje pola niestandardowego do DocType DocType: File,Is Home Folder,Czy Home Folder @@ -594,7 +594,7 @@ DocType: File,Folder,Falcówka DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Biuletyn Kierownik apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opcja 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Wszystkie Posty +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} do {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Zaloguj błędu podczas wniosków. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} została dodana do grupy e-mail. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Wskaźnik DocType: DocShare,Everyone,Wszyscy DocType: Workflow State,backward, -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tylko jedna zasada dozwolone w tej samej roli, poziom i {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Tylko jedna zasada dozwolone w tej samej roli, poziom i {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj link Wyrejestrowanie apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Brak komentarzy. Rozpocznij nową dyskusję. DocType: Workflow State,share,udział @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,jest n apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Zobacz subskrybentów apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Pani DocType: Website Theme,Background Color,Kolor tła -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Wystąpiły błędy podczas wysyłki e-mail. Proszę spróbuj ponownie. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Wystąpiły błędy podczas wysyłki e-mail. Proszę spróbuj ponownie. DocType: Portal Settings,Portal Settings,Ustawienia portalowe DocType: Web Page,0 is highest,0 jest nawyższe apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Czy na pewno chcesz ponownie połączyć ten komunikat do {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,"Ustawinia ""Skontaktuj się z apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Szukanie ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Szukanie ... DocType: Workflow State,text-width,szerokość tekstu -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maksymalny limit Załącznik do tego rekordu osiągnięty. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maksymalny limit Załącznik do tego rekordu osiągnięty. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Następujące pola obowiązkowe muszą być wypełnione:
DocType: Email Alert,View Properties (via Customize Form),Właściwości widoku (przez Customize Form) DocType: Note Seen By,Note Seen By,Uwaga postrzegane przez @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Radżastanie apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Report Builder raporty są zarządzane bezpośrednio przez tworzącego raporty. Nic na to nie poradzimy. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Zweryfikuj swój adres e-mail apps/frappe/frappe/model/document.py +903,none of,żadne z -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Wyślij kopię do mnie +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Wyślij kopię do mnie apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Wyślij Uprawnienia Użytkownika DocType: Dropbox Settings,App Secret Key,App klucz tajny apps/frappe/frappe/config/website.py +7,Web Site,Stronie internetowej apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Zaznaczone elementy zostaną pokazane na pulpicie -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nie można ustawić dla pojedynczych typów lub rekordów +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nie można ustawić dla pojedynczych typów lub rekordów apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} nie istnieje. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} są aktualnie przegląda ten dokument DocType: ToDo,Assigned By Full Name,Nadany przez Pełna nazwa apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} zaktualizowano -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Raport nie może być ustawiony dla pojedynczych typów +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Raport nie może być ustawiony dla pojedynczych typów apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dni temu DocType: Email Account,Awaiting Password,Czekamy Hasło DocType: Address,Address Line 1,Adres Linia 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stan postępu prac (np. Szkic, Zatwierdzony, Odwołany)." DocType: Print Settings,Allow Print for Draft,Pozostawić do wydruku dla projektu apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Ustaw ilość -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić" +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,"Prześlij ten dokument, aby potwierdzić" DocType: Contact,Unsubscribed,Nie zarejestrowany apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Custom role stronie i sprawozdania apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Ocena: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Narzędzie importu danych DocType: Address,Dadra and Nagar Haveli,Dadra i Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Przesyłanie plików należy poczekać kilka sekund. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Załącz własny obrazek (awatar) +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Załącz własny obrazek (awatar) apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Zmienione wartości Row DocType: Workflow State,Stop,Zatrzymaj DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Link do strony, którą chcesz otworzyć. Pozostaw puste, jeśli chcesz, aby to dominująca grupa." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Etykiety Wyrównaj do lewej DocType: Help Article,Expert,Ekspert DocType: Workflow State,circle-arrow-right, DocType: LDAP Settings,LDAP Server Url,LDAP URL serwera -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Nie można otworzyć kiedy {0} jest już otwarty +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Nie można otworzyć kiedy {0} jest już otwarty apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,W kolejce do instalacji DocType: Custom DocPerm,Custom DocPerm,niestandardowe DocPerm DocType: Newsletter,Send Unsubscribe Link,Wyślij link Wyrejestrowanie @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Aplikacja {0} usunięto DocType: Custom DocPerm,Apply User Permissions, DocType: User,Modules HTML,Moduły HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Konfiguracja> Menedżer uprawnień użytkownika apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Uzupełnij Brakujące Wartości DocType: DocType,Other Settings,Inne ustawienia DocType: Social Login Keys,Frappe,Frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth okaziciela Reklamowe apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nie wybrano dokumentów apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Wydarzenie -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","W terminie {0}, {1} napisał:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","W terminie {0}, {1} napisał:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nie można usunąć standardowe pole. Możesz ukryć go, jeśli chcesz" DocType: Top Bar Item,For top bar,Dla górnej zakładki apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nie udało się zidentyfikować {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,biurko Dostęp DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Błąd Serwera: Sprawdź loginy lub skontaktuj się z supportem. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,E-mail z powitaniem został wysłany -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Przygotujmy system do pierwszego użycia. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Przygotujmy system do pierwszego użycia. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Opisany apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Już zarejestrowano DocType: System Settings,Float Precision,Precyzja zmiennoprzecinkowa @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,Pozwól Drukuj apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Brak aplikacji zainstalowanych apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Zaznacz to pole jako obowiązkowe DocType: Communication,Clicked,Kliknął -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nie ma zgodny na '{0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nie ma zgodny na '{0} {1} DocType: User,Google User ID,ID Użytkownika Google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Zaplanowane do wysłania DocType: DocType,Track Seen,Tor widziany @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,lft DocType: User,Simultaneous Sessions,jednoczesnych sesji DocType: OAuth Client,Client Credentials,Referencje klientów -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Otwórz moduł lub narzędzie +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Otwórz moduł lub narzędzie DocType: Communication,Delivery Status,Status dostawy DocType: Module Def,App Name,Nazwa App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maksymalny rozmiar pliku jest dozwolone {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,Komunikacja odniesienia DocType: Email Queue,Unsubscribe Method,Metoda Wyrejestrowanie DocType: GSuite Templates,Related DocType,DocType powiązany apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,"Edytuj, aby dodać treść" -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Wybierz język -apps/frappe/frappe/__init__.py +510,No permission for {0},Brak zgody na {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Wybierz język +apps/frappe/frappe/__init__.py +509,No permission for {0},Brak zgody na {0} DocType: DocType,Advanced,Zaawansowany apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Wygląda na klucz API lub API Tajny jest źle !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Odniesienie: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Wprowadź Typ Formularza apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Brak otagowanych rekordów. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Usuń pole DocType: User,Send Password Update Notification,Wyślij powiadomienie o zmianie hasła -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!", +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!", apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Niestandardowe formaty do drukowania, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Zaktualizowano do nowej wersji DocType: Custom Field,Depends On,Zależny od @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,Jeden z apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Proszę wybrać plik do skopiowania apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Sprawdzanie jednej chwili apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Pokaż tagi +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Jeśli zastosowano ścisłe uprawnienia użytkownika i zaznaczono uprawnienie użytkownika dla DocType dla użytkownika, wszystkie dokumenty, w których wartość linku jest pusta, nie zostanie wyświetlona temu użytkownikowi" DocType: Address,Billing,Rozliczenie DocType: Email Queue,Not Sent,Nie wysłane DocType: Web Form,Actions,Działania @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasny apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Codzienne wydarzenia powinny kończyć się tego samego dnia DocType: Communication,User Tags,Tagi Użytkownika apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Pobieranie obrazów .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Konfiguracja> Użytkownik DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Pobieranie aplikacji {0} DocType: Communication,Feedback Request,Zgłoszenie Zapytanie @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Kopie zapasowe apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Dodaj kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcjonalnie: Zawsze wysyłaj do tych identyfikatorów. Każdy adres e-mail na nowy wiersz -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ukryj Szczegóły +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ukryj Szczegóły DocType: Workflow State,Tasks,Zadania DocType: Event,Tuesday,Wtorek DocType: Blog Settings,Blog Settings,Ustawienia Blogu @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Zapisz plik Python w tym samym folderze gdzie to jest zapisane i zwróć kolumnę i rezultat. DocType: DocType,Sort Field,Sortuj pola DocType: Razorpay Settings,Razorpay Settings,Ustawienia Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edytuj filtr -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nie może być obowiązkowe -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","np. Jeśli zastosować uprawnienia użytkownika jest sprawdzana pod kątem Zgłoś DocType ale nie Uprawnienia użytkownika są zdefiniowane dla raportu dla użytkownika, a następnie wszystkie raporty zostały przedstawione do tego użytkownika" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edytuj filtr +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nie może być obowiązkowe apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Dodaj więcej apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Ukryj Wykres DocType: System Settings,Session Expiry Mobile,Długość sesji na urządzeniach mobilnych @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,Opóźniony apps/frappe/frappe/config/setup.py +128,List of backups available for download,Lista kopii zapasowych dostępnych do pobrania apps/frappe/frappe/www/login.html +89,Sign up,Rejestracja DocType: Test Runner,Output,Wydajność +DocType: Email Alert,Set Property After Alert,Ustaw właściwość po alertu apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Dodaj pola do formularza. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Wygląda na to, że coś jest nie tak z konfiguracją witryny Paypal." DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,liść DocType: Portal Menu Item,Portal Menu Item,Portal Pozycja menu DocType: User Email,Email ID,Identyfikator E-mail +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Jeśli stosujesz uprawnienia użytkownika do sprawdzania dla typu raportu DocType, ale nie zdefiniowano uprawnień użytkownika do raportowania dla użytkownika, wszystkie raporty są wyświetlane tym użytkownikom" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Wykaz środków, które App klient będzie miał dostęp do gdy użytkownik na to pozwala.
np projekt" DocType: Translation,Translated Text,Tekst przetłumaczony DocType: Contact Us Settings,Query Options,Opcje Zapytania @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Konfiguracja zakończona apps/frappe/frappe/config/setup.py +66,Report of all document shares,Zgłoś wszystkich akcji dokumentów apps/frappe/frappe/www/update-password.html +18,New Password,Nowe hasło -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtr {0} brakujący +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtr {0} brakujący apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Przepraszam! Nie można usuwać auto generowane komentarzy DocType: Website Theme,Style using CSS,Style z CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType Odniesienia @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,Moduły blokowe apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,"Przywracanie długość do {0} dla '{1}' w '{2}'; Ustawianie długości, jak {3} spowoduje obcięcie danych." DocType: Print Format,Custom CSS,Niestandardowy CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentarz -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorowane: {0} {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorowane: {0} {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Zgłoszenie błędu na automatycznych zdarzeniach (wg. harmonogramu). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Plik CSV nie jest poprawny @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,Domyślnie przychodzące DocType: Workflow State,repeat,powtórz DocType: Website Settings,Banner,Baner DocType: Role,"If disabled, this role will be removed from all users.","Jeśli wyłączone, ta rola zostanie usunięty z wszystkich użytkowników." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pomoc w wyszukiwaniu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoc w wyszukiwaniu apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Zarejestrowałem się, ale wyłączone" DocType: DocType,Hide Copy,Ukryj Kopie apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Wyczyść wszystkie pola @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Kraj apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresy DocType: Communication,Shared,Dzielone -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Dołączyć dokument do wydrukowania +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Dołączyć dokument do wydrukowania DocType: Bulk Update,Field,Pole DocType: Communication,Received,Otrzymano DocType: Social Login Keys,Google Client ID,Identyfikator Klienta Google @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,Raport zapytania DocType: User,Set New Password,Ustaw nowe hasło DocType: User,Github User ID,identyfikator klienta GitHub-u apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Jeżeli Rodzaj dokumentu -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nie można usunąć lub anulować, bo {0} {1} jest powiązana z {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nie można usunąć lub anulować, bo {0} {1} jest powiązana z {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Nieznane aplikacja {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nie jest prawidłowy format raportu. Format raport powinien \ jedną z następujących czynności:% s DocType: Communication,Chat,Czat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Nazwa pola {0} pojawia się wiele razy w rzędzie {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Nazwa pola {0} pojawia się wiele razy w rzędzie {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} i {1} do {2} w rzędzie # {3} DocType: Communication,Expired,Upłynął DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Liczba kolumn polu siatka (Liczba kolumn w siatce powinno być mniejsze niż 11) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Mieć konto? Zalogu apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Nieznany format wydruku: {0} DocType: Workflow State,arrow-down,strzałka w dół apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Zwiń -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Użytkownik nie może usuwać {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Użytkownik nie może usuwać {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Zmieniony Dnia DocType: Help Article,Likes,Lubi DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Kod skryptu apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Utwórz adres e-mail użytkownika apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Utwórz adres e-mail użytkownika -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nie określono uprawnień +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nie określono uprawnień apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Ustawienia globalne: Użytkownicy będą mogli wybierać jedynie sprawdzonych ikony apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nie znaleziono DocType: Custom Role,Custom Role,Rola zwyczaj apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Strona główna / Folder 2 test DocType: System Settings,Ignore User Permissions If Missing,Ignoruj uprawnień użytkownika Jeśli Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Proszę zapisać dokument przed wysłaniem. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Proszę zapisać dokument przed wysłaniem. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Wpisz swoje hasło DocType: Dropbox Settings,Dropbox Access Secret,Sekret do Dostępu do Dropboxa apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodaj kolejny komentarz apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edycja DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Wypisany z newslettera -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Złożyć musi przyjść przed podział sekcji +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Złożyć musi przyjść przed podział sekcji apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Ostatnio modyfikowane przez DocType: Workflow State,hand-down, DocType: Address,GST State,Stan GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Nie można ustawić Anuluj bez Zatwierdź +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Nie można ustawić Anuluj bez Zatwierdź DocType: Website Theme,Theme,Motyw apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Wystąpiły błędy DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Przekierowanie URI związany z Kodeksem Autentyczna @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moje DocType: Website Theme,Text Color,Kolor tekstu DocType: Desktop Icon,Force Show,siła Pokaż apps/frappe/frappe/auth.py +78,Invalid Request,Nieprawidłowe żądanie -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ta postać nie posiada żadnych danych +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ta postać nie posiada żadnych danych apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Długość sesji musi być w formacie {0} DocType: Website Sidebar Item,Group,Grupa DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Wybierz target = ""_blank"", aby otworzyć w nowym oknie." @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignoruj kodowania błędów. DocType: Workflow State,wrench,klucz apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Brak Ustawień -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Konfiguracja> Użytkownik DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,Wyłącz rejestrację apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Czekaj cierpliwie, system jest konfigurowany. To zajmie zaledwie kilka chwil." @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Dodaj komentarz DocType: DocField,Mandatory,Obowiązkowe apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Moduł do eksportu -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Brak podstawowych uprawnień +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Brak podstawowych uprawnień apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Twoja subskrypcja wygaśnie {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Link pobierania dla twojej kopii zapasowej zostanie wysłany na następujący adres mailowy: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Znaczenie Zatwierdzenia, Anulowania, Modyfikacji" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,Raport zapytań apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Przypisany do {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtry zapisane DocType: DocField,Percent,Procent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Proszę ustawić filtry +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Proszę ustawić filtry apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Powiązane Z DocType: Workflow State,book,książka DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Błąd w skrypcie niestandardowe +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Błąd w skrypcie niestandardowe apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,Imię {0} apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Zapytanie kolejce. Może to potrwać kilka minut, prosimy o cierpliwość." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nie ustawiono uprawnień do tych kryteriów @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,Zezwalaj na logowanie p apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Nie masz wystarczających uprawnień, aby uzyskać dostęp do tego zasobu. Proszę skontaktować się z administratorem, aby uzyskać dostęp." DocType: Custom Field,Custom,Niestandardowy apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Ustawienia E-mail Alert na podstawie różnych kryteriów. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Stanowisk złożony w ramach {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Stanowisk złożony w ramach {0} DocType: Email Alert,Send alert if date matches this field's value,"Wyślij alert, jeśli termin odpowiada wartości tego pola jest" DocType: Workflow,Transitions,Przejścia apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Usunąć {0} i usunąć wszystkie dane? @@ -1307,9 +1308,8 @@ DocType: User,Login After,Logowanie Po DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Druk DocType: Workflow State,thumbs-up,Kciuk w górę -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Nie skonfigurowano konta pocztowego. Utwórz nowe konto e-mail z poziomu konfiguracji> poczta elektroniczna> konto e-mail DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precyzja obliczeń powinna być pomiędzy 1 i 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precyzja obliczeń powinna być pomiędzy 1 i 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,i DocType: Error Snapshot,Frames,Ramki @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link, DocType: Auto Email Report,Report Filters,Raport Filtry apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,teraz DocType: Workflow State,step-backward,Cofnij o jeden krok -apps/frappe/frappe/utils/boilerplate.py +262,{app_title}, +apps/frappe/frappe/utils/boilerplate.py +263,{app_title}, apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Proszę ustawić klucze dostępu do aplikacji Dropbox w pliku konfiguracyjnym Twojej strony apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Usuń ten rekord, aby umożliwić wysyłanie na ten adres e-mail" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Tylko pola obowiązkowe są niezbędne do nowych rekordów. Możesz usunąć kolumny nieobowiązkowe, jeśli chcesz." @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,Czy Załączniki Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Rozwiń wszystkie apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Wymagany poprawny login ID. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Otwórz ponownie -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Anulowaniu płatności -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Proszę wybrać poprawny plik .csv z danymi +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Proszę wybrać poprawny plik .csv z danymi apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} nie-podzielali ten dokument z {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Tranzycja statusu dokumentu z {0} do {1} jest niedozwolona DocType: DocType,"Make ""name"" searchable in Global Search",Make „Nazwa” można przeszukiwać w Global Search @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ory DocType: Help Category,Help Category,Pomoc Kategoria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Użytkownik {0} jest wyłączony apps/frappe/frappe/www/404.html +8,Page missing or moved,Brak strony lub została ona przeniesiona -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Edytuj właściwości {0} DocType: DocType,Route,Trasa apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Ustawienia bramki płatności Razorpay DocType: DocField,Name,Nazwa @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Szukaj dokumentów apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Szukaj dokumentów DocType: OAuth Authorization Code,Valid,Ważny -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Otwórz link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Twój język +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otwórz link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Twój język apps/frappe/frappe/desk/form/load.py +46,Did not load,Nie załadowano apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj wiersz DocType: Tag Category,Doctypes,Doctypes @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Odpowiedź je DocType: Address,Lakshadweep Islands,Wyspy Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Można zapisywać apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Niektóre dokumenty, takie jak faktury, nie powinny być zmieniane trwale. Ostateczna faza na takich dokumentów powinna nosić nazwę Podsumowany. Możesz decydować i ograniczać uprawnienia użytkownikom do Posdumowania." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nie masz uprawnień do wyeksportowania tego raportu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nie masz uprawnień do wyeksportowania tego raportu apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,wybrano 1 pozycję DocType: Newsletter,Test Email Address,Test adres email DocType: ToDo,Sender,Nadawca @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Importuj .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokumentu tożsamości DocType: Print Settings,Letter,List -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Obraz pola muszą być typu Zamontuj obraz +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Obraz pola muszą być typu Zamontuj obraz DocType: DocField,Columns,kolumny DocType: Async Task,Succeeded,Osiągnąłeś sukces apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Okienka obowiązkowe wymagane w {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,Edytor tekstu apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Ustawienia strony O Nas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edytuj niestandardowy HTML DocType: Error Snapshot,Error Snapshot,Błąd Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,W +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,W DocType: Email Alert,Value Change,Zmień Wartość DocType: Standard Reply,Standard Reply,Standardowa odpowiedź apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Szerokość pola wejściowego @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Użyj tej fieldName wygenerować tytuł apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importowania wiadomości z apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Zaproś jako Użytkownik -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Wybierz Załączniki +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Wybierz Załączniki apps/frappe/frappe/model/naming.py +94, for {0},dla {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Wystąpiły błędy. Proszę zgłosić ten fakt. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nie masz uprawnień do druku tego dokumentu +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nie masz uprawnień do druku tego dokumentu apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Proszę ustawić wartości filtrów w tabeli Zgłoś Filter. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Wczytuję raport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Wczytuję raport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Twoja subskrypcja wygaśnie dziś. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Załącz Plik @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Rozszerzenia regionalne DocType: LDAP Settings,Base Distinguished Name (DN),Bazowa nazwa wyróżniająca (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Opuść tę rozmowę -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Nie zostały wybrane opcje dla okienka {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Nie zostały wybrane opcje dla okienka {0} DocType: Customize Form,"Must be of type ""Attach Image""",Musi być typu "Dołącz zdjęcia" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Odznacz wszystko apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nie możesz wyłączony "tylko do odczytu" dla pola {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Notatka apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Błędny raport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Warunki sprzężenia zwrotnego nie są zgodne -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Pole Timeline musi być poprawnym nazwa_pola +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Pole Timeline musi być poprawnym nazwa_pola DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Wiersz # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Wiersz # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Wysłano e-mailem nowe hasło apps/frappe/frappe/auth.py +245,Login not allowed at this time,Login nie jest dostępny w tym czasie DocType: Email Account,Email Sync Option,Opcja synchronizacji poczty elektronicznej @@ -1581,7 +1579,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardowe odpowiedzi na najczęściej zadawane pytania. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Domyślnie Wysyłanie DocType: Workflow State,volume-off,wyłącz-głośność -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Lubiany przez {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Lubiany przez {0} DocType: Footer Item,Footer Item,Przedmiot stopki ,Download Backups,Pobierz Kopie zapasowe apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Strona główna / folderu Test 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,Wyrównie tekst apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Nazwa nie może zawierać znaków specjalnych, takich jak {0}" DocType: Contact Us Settings,Forward To Email Address,Prześlij dalej to adresu e-mail apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Pokaż wszystkie dane -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Tytuł pole musi być prawidłową nazwę pola +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Tytuł pole musi być prawidłową nazwę pola apps/frappe/frappe/config/core.py +7,Documents,Dokumenty DocType: Email Flag Queue,Is Completed,Jest zakończony apps/frappe/frappe/www/me.html +22,Edit Profile,Edytuj profil @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","To pole pojawia się tylko wtedy, gdy nazwa pola zdefiniowane tutaj ma wartość lub zasady są prawdziwe (przykłady): myfield eval: doc.myfield == 'Moja Wartość' eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Dzisiaj -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Dzisiaj +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Dzisiaj +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Dzisiaj apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).", DocType: Error Log,Log of Scheduler Errors,Zaloguj Błędów Scheduler DocType: User,Bio,Bio @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 gwiazdka jest najniższy i 5 gwiazdek to najwyższa ocena DocType: Event,Ref Name,Ref Nazwa DocType: Web Page,Center,Środek +DocType: Email Alert,Value To Be Set,"Wartość, którą należy ustawić" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Pierwszy poziom DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezentuje państwa dozwolony w jednym dokumencie i roli przypisanej do zmiany stanu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Odśwież Formularz @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,Ma Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Nazwa DOCTYPE powinna zaczynać się od litery i może składać się wyłącznie z liter, cyfr, podkreśleń i spacji" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,integracja Zapytanie -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Drogi +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Drogi DocType: Address,Maharashtra,Maharasztra DocType: Address,Accounts User,Konta Użytkownika DocType: Web Page,HTML for header section. Optional,HTML dla sekcji nagłówka. Do wyboru apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ta funkcja jest nowy i wciąż eksperymentalna -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksymalnie dozwolone {0} wierszy +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksymalnie dozwolone {0} wierszy DocType: Email Unsubscribe,Global Unsubscribe,Globalny Wyrejestrowanie apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,To jest bardzo częstym hasłem. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Widok DocType: Communication,Assigned,Przydzielony DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Wybierz Format Druku +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Wybierz Format Druku apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,wzory Krótkie klawiatury są łatwe do odgadnięcia DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Długość {0} powinna być pomiędzy 1 i 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Użytkownik nie może szukać apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Nieprawidłowy format wyjściowy DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Zastosuj tę regułę, jeśli Użytkownik nie jest właścicielem" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Będzie to identyfikator logowania +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Będzie to identyfikator logowania apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Stwórz budżet DocType: Note,Notify users with a popup when they log in,Informuj użytkownikom popup podczas logowania apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} nie istnieje, wybierz nowy cel do złączenia" @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,role Permission apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualizacja DocType: Error Snapshot,Snapshot View,Migawka Zobacz apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Zachowaj Newsletter przed wysyłką -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opcje muszą być dostępne dla DocType dla pola {0} w wierszu {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok temu +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opcje muszą być dostępne dla DocType dla pola {0} w wierszu {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edytuj właściwości DocType: Patch Log,List of patches executed,Lista poprawek wykonywane apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} już wypisany -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Środki komunikacji +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Środki komunikacji DocType: Website Settings,Banner HTML,Baner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Proszę wybrać inną metodę płatności. Razorpay nie obsługuje transakcji w walucie „{0}” apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,W kolejce do tworzenia kopii zapasowych. Może to potrwać kilka minut do godziny. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Zarejestruj OAuth klienta App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nie może być ""{2}"". Powinien to być jeden z ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nie może być ""{2}"". Powinien to być jeden z ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} i {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Pokazuj lub ukrywaj ikony pulpitu apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Zmiana hasła @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Pokaż podziały wiersza po sekcji DocType: Blogger,Short Name,Skrócona nazwa apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Strona {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Jesteś wybierając opcję Sync jako ALL, będzie zsynchronizować wszystkie \ czytać jak nieprzeczytane wiadomości z serwera. Może to również powodować powielanie \ komunikacji (e-maile)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Rozmiar Plików @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,Menadżer Zakupów DocType: Custom Script,Sample,Próba apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Artykuły Tagi DocType: Event,Every Week,Co tydzień +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Nie skonfigurowano konta pocztowego. Utwórz nowe konto e-mail z poziomu konfiguracji> poczta elektroniczna> konto e-mail apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Kliknij tutaj, aby sprawdzić zużycie lub uaktualnić do wyższego planu" DocType: Custom Field,Is Mandatory Field,jest polem obowiązkowym DocType: User,Website User,Użytkownik strony WWW @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Niestandardowe Sidebar Menu DocType: Workflow State,pencil,ołówek apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Czat wiadomości i innych powiadomień. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Włóż Po nie może być ustawiony jako {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Włóż Po nie może być ustawiony jako {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podziel się z {0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-mail Konfiguracja konta wpisz hasło: DocType: Workflow State,hand-up, DocType: Blog Settings,Writers Introduction,gf DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Błąd podczas oceny email alert {0}. Proszę poprawić swój szablon. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Błąd podczas oceny email alert {0}. Proszę poprawić swój szablon. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Aby zacząć wybierz Typ Dokumentu lub Rolę DocType: Contact,Passive,Nie aktywny DocType: Contact,Accounts Manager,Menedżer kont +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Płatność zostanie anulowana. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Wybierz typ pliku DocType: Help Article,Knowledge Base Editor,Baza wiedzy Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Strona nie znaleziona @@ -1849,6 +1851,7 @@ DocType: Property Setter,Property Type,Typ Właściwości DocType: Workflow State,screenshot,zrzut ekranu apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Tylko Administrator może zachować standardowy raport. Zmień nazwę i zachowaj. DocType: System Settings,Background Workers,Pracownicy tło +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nazwa pola {0} sprzeczna z obiektem meta DocType: Deleted Document,Data,Dane apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stan dokumentu apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Dokonaniu {0} z {1} @@ -1873,7 +1876,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Uprawnienia Pokaż użytkowników apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Musisz być zalogowany jako Administrator Systemu aby mieć dostęp do backup'ów. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Pozostały -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Proszę zapisać przed załączeniem. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Proszę zapisać przed załączeniem. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodano {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Domyślny motyw mieści się w {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType nie może być zmieniony z {0} na {1} w rzędzie{2} @@ -1894,11 +1897,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Uruchomieni apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Uruchomienie sesji nie powiodło się apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ten e-mail został wysłany do {0} i skopiowany do {1} DocType: Workflow State,th, -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Proszę skonfigurować domyślne konto e-mail z ustawień> poczta elektroniczna> konto e-mail -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Utwórz nowy {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Utwórz nowy {0} DocType: Email Rule,Is Spam,Czy Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Zgłoś {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Otwórz {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otwórz {0} DocType: OAuth Client,Default Redirect URI,Domyślnie Przekierowanie URI DocType: Email Alert,Recipients,Adresaci DocType: Workflow State,ok-sign,ok-sign @@ -1916,6 +1918,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Artykuły pomocy ,Modules Setup,Ustawienia Modułów apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Twoja płatność nie powiodła się. DocType: Communication,Unshared,niepodświetlonych DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Moduł nie został znaleziony @@ -1963,7 +1966,7 @@ DocType: Website Settings,Brand Image,Wizerunek marki DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Ustawienia górnego paska nawigacji, stopki i logo" DocType: Web Form Field,Max Value,Maksymalna wartość -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3}, +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3}, DocType: Contact,All,Wszystko DocType: Email Queue,Recipient,Adresat DocType: Communication,Has Attachment,zawiera załącznik @@ -1980,7 +1983,8 @@ DocType: Workflow State,align-right,Wyrównaj do prawej DocType: Auto Email Report,Email To,E-mail do apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} nie jest pusty DocType: Page,Roles,Role -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Pole {0} nie może być wybrane +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Błąd: brak wartości dla {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Pole {0} nie może być wybrane DocType: System Settings,Session Expiry,Długość sesji DocType: Workflow State,ban-circle, DocType: Email Flag Queue,Unread,Niewykształcony @@ -1995,7 +1999,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Standardowe ustawienia Użytkownika apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Utwórz nowy DocType: Workflow State,chevron-down, -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail nie wysłany do {0} (wypisany / wyłączony) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail nie wysłany do {0} (wypisany / wyłączony) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Najmniejszy Waluta Frakcja Wartość apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Przypisano do @@ -2006,12 +2010,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Od DocType: Website Theme,Google Font (Heading),Google Czcionka (Nagłówek) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Na początku wybierz węzeł grupy. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Znajdź {0} w {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Znajdź {0} w {1} DocType: OAuth Client,Implicit,Bezwarunkowy DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Dołącz jako komunikacji przeciwko tej DocType (musi mieć pola, ""status"", ""Temat"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI dla otrzymania kodu autoryzacji, gdy użytkownik zezwala na dostęp, a także reakcje awarii. Zazwyczaj końcowy REST wystawione przez Klienta App.
np http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nie wolno zmieniać {0} po zatwierdzeniu +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nie wolno zmieniać {0} po zatwierdzeniu DocType: Communication,Comment Type,Typ Komentarza DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Użytkownicy @@ -2026,7 +2030,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtruj dane DocType: Auto Email Report,Filter Data,Filtruj dane apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodaj znacznik -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Proszę najpierw załączyć plik +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Proszę najpierw załączyć plik apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Było kilka błędów ustawień nazwę, skontaktuj się z administratorem" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Nieprawidłowe konto poczty przychodzącej apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2041,11 +2045,11 @@ DocType: Blog Post,Email Sent,Wiadomość wysłana DocType: DocField,Ignore XSS Filter,Ignoruj filtr XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,Usunięto apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Ustawienia kopii zapasowej Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Wyślij jako E-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Wyślij jako E-mail DocType: Website Theme,Link Color,Kolor Łącza apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Użytkownik {0} nie może być wyłączony apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",Szanowny Dyrektorze ds. Systemu -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Twój kraj +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Twój kraj DocType: Event,Sunday,Niedziela apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,W widoku siatki DocType: Address Template,Template,Szablon @@ -2053,7 +2057,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Ustawienia LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Zmieniająca apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Ustawienia bramki płatności PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0} {1} '({3}) będzie obcięta, a maksymalna liczba znaków dozwolony jest {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0} {1} '({3}) będzie obcięta, a maksymalna liczba znaków dozwolony jest {2}" DocType: OAuth Client,Resource Owner Password Credentials,Zasobów Hasło właściciela Poświadczenia DocType: OAuth Client,Response Type,Typ odpowiedzi apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maksymalna liczba użytkowników @@ -2070,7 +2074,7 @@ DocType: DocField,Table,Tabela DocType: File,File Size,Rozmiar pliku apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Musisz się zalogować, aby przesłać ten formularz" DocType: User,Background Image,Obrazek tła -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Wybierz swój kraj, strefę czasową i walutę" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Wybierz swój kraj, strefę czasową i walutę" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Pomiędzy DocType: Async Task,Queued,W kolejce @@ -2079,6 +2083,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Utwórz apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Nieprawidłowy filtr: {0} DocType: Email Account,no failed attempts,bez nieudanych prób +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nie znaleziono domyślnego Szablonu adresu. Proszę utworzyć nową stronę z menu Setup> Printing and Branding> Address Template. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Dostęp za pomocą Tokenu @@ -2096,8 +2101,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Nazwa użytkownika Github DocType: DocType,Image View,Widok obrazka apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Wygląda na to, coś poszło nie tak podczas transakcji. Ponieważ nie potwierdziły płatności Paypal automatycznie zwrócimy Ci tę kwotę. Jeśli nie, prosimy o przesłanie wiadomości e-mail oraz wspomnieć o identyfikator korelacji: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","DołĘ ... cz symbole, cyfry i wielkie litery w hasło" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Włóż Po polu '{0}' o którym mowa w niestandardowym polu '{1}', z etykietą "{2}" nie istnieje" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","DołĘ ... cz symbole, cyfry i wielkie litery w hasło" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Włóż Po polu '{0}' o którym mowa w niestandardowym polu '{1}', z etykietą "{2}" nie istnieje" DocType: Workflow State,signal,sygnał DocType: DocType,Show Print First,Pokaż najpierw drukuj apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, aby pisać" @@ -2128,14 +2133,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Plik '{0}' Nie znaleziono apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Usuń sekcję DocType: User,Change Password,Zmień hasło -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Nieprawidłowy E-mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Witaj! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Nieprawidłowy E-mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Witaj! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,"Zakończenie wydarzenia nie może być wcześniej, niż rozpoczęcie" apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},"Nie masz uprawnień, aby pobrać raport na temat: {0}" +DocType: System Settings,Apply Strict User Permissions,Zastosuj ścisłe uprawnienia użytkownika DocType: DocField,Allow Bulk Edit,Zezwól na dużą liczbę edycji DocType: DocField,Allow Bulk Edit,Zezwól na dużą liczbę edycji DocType: Blog Post,Blog Post,Wpis Blogu -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Wyszukiwanie zaawansowane +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Wyszukiwanie zaawansowane apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Instrukcja resetowania hasła została wysłana na Twój email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Poziom 0 jest przeznaczony dla uprawnień na poziomie dokumentu, \ wyższych poziomów uprawnień na poziomie pola." @@ -2154,16 +2160,15 @@ DocType: Web Page,Sidebar and Comments,Pasek boczny i Komentarze apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Jeśli Zmieniasz dokument po Anuluj i zapisujesz go, będzie on miał nowy numer, który jest wersją starego numeru." DocType: Stripe Settings,Publishable Key,Klucz publikowany DocType: Stripe Settings,Publishable Key,Klucz publikowany -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok temu DocType: Workflow State,circle-arrow-left, apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis serwer cache nie działa. Prosimy o kontakt administratora / wsparcia Tech apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nazwa Party -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Dodaj nowy rekord +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Dodaj nowy rekord apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Badawczy apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Badawczy DocType: Currency,Fraction,Ułamek DocType: LDAP Settings,LDAP First Name Field,LDAP Imię Pole -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Wybierz z istniejących załączników +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Wybierz z istniejących załączników DocType: Custom Field,Field Description,Opis pola apps/frappe/frappe/model/naming.py +53,Name not set via Prompt, apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Skrzynka e-mail @@ -2209,11 +2214,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Informacje: DocType: Custom Field,Permission Level,Poziom dostępu DocType: User,Send Notifications for Transactions I Follow,Wysyłaj powiadomienia o transakcjach które śledzę -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Nie można ustawić Zatwierdź , Anuluj , Zmienić bez wypełnienia pola" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Nie można ustawić Zatwierdź , Anuluj , Zmienić bez wypełnienia pola" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Czy jesteś pewien, że chcesz usunąć ten załącznik?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nie można usunąć lub anulować, bo {0} {1} jest powiązana z {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Brak wyników wyszukiwania dla '

-apps/frappe/frappe/__init__.py +1063,Thank you,Dziękuję +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nie można usunąć lub anulować, bo {0} {1} jest powiązana z {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Dziękuję apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Zapisywanie DocType: Print Settings,Print Style Preview,Wydrukuj Style Podgląd apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2225,10 +2229,10 @@ DocType: DocField,In List View,W widoku listy DocType: Email Account,Use TLS,Użyj TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Niewłaściwe hasło lub login apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj niestandardowy kod javascript do formularza -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Nr Sri +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Nr Sri ,Role Permissions Manager,Zarządzanie Uprawnieniami Roli apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nazwa nowego formatu wydruku -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Usuń załącznik +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Usuń załącznik apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obowiązkowe: ,User Permissions Manager,Zarządzanie Uprawnieniami Użytkownika DocType: Property Setter,New value to be set,Wstawiam nową wartość @@ -2258,26 +2262,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dni apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Skategoryzowane posty blogowe DocType: Workflow State,Time,Czas DocType: DocField,Attach,Załącz -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nie jest prawidłowy wzór nazwa pola. Powinno być {{nazwa_pola}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nie jest prawidłowy wzór nazwa pola. Powinno być {{nazwa_pola}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Wyślij opinię żądanie tylko jeśli istnieje co najmniej jeden komunikacja jest dostępna dla danego dokumentu. DocType: Custom Role,Permission Rules,Reguły dostępu DocType: GSuite Settings,GSuite Settings,Ustawienia GSuite DocType: Address,Links,Łącza -apps/frappe/frappe/model/base_document.py +428,Value missing for,Brakuje wartości dla +apps/frappe/frappe/model/base_document.py +427,Value missing for,Brakuje wartości dla apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Dodaj pod-element -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Napisał Record nie mogą być usunięte. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Napisał Record nie mogą być usunięte. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Archiwizacja Rozmiar DocType: GSuite Templates,Template Name,Nazwa szablonu -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nowy typ dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nowy typ dokumentu DocType: Custom DocPerm,Read,Czytać DocType: Role Permission for Page and Report,Role Permission for Page and Report,Pozwolenie Rola Page i sprawozdania apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Wyrównanie wartości apps/frappe/frappe/www/update-password.html +14,Old Password,Stare hasło -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posty stworzone przez {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posty stworzone przez {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",Aby sformatować kolumny podaj nazwy kolumn w zapytaniu DocType: Has Domain,Has Domain,Ma domenę apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nie masz konta? Zapisz się -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable, +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable, DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Edytuj Uprawnienia ról DocType: Communication,Link DocType,DocType link @@ -2377,7 +2381,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Proszę upewnić się, że Twój profil jest adres e-mail" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Masz niezapisane zmiany na tym formularzu. Zapisz zmiany aby kontynuować. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Domyślnie dla {0} musi być opcja +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Domyślnie dla {0} musi być opcja DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategoria DocType: User,User Image,Zdjęcie Użytkownika apps/frappe/frappe/email/queue.py +289,Emails are muted,Email wyciszony @@ -2410,7 +2414,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Następny DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Te wartości będą automatycznie aktualizowane w transakcjach, a także będzie przydatne aby ograniczyć uprawnienia dla tego użytkownika w transakcji zawierających te wartości." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Wydawca -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Nie udało: {0} {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Nie udało: {0} {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Wybierz Obowiązkowe apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Przeglądaj apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,e-maili wysyłanych @@ -2422,7 +2426,7 @@ DocType: Async Task,Running,Bieganie apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Resetowanie hasła apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Proszę Upgrade Aby dodać więcej niż {0} abonentów DocType: Workflow State,hand-left, -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Typ pola {0} do {1} nie może być unikalny +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Typ pola {0} do {1} nie może być unikalny DocType: Email Account,Use SSL,Użyj SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Wybierz format wydruku Edycja @@ -2477,7 +2481,7 @@ DocType: DocField,No Copy,Brak kopii DocType: Workflow State,qrcode,Kod QR apps/frappe/frappe/www/login.html +34,Login with LDAP,Logowanie z LDAP DocType: Web Form,Breadcrumbs,Bułka tarta -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Jeśli Właściciela +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Jeśli Właściciela DocType: OAuth Authorization Code,Expiration time,czas ważności DocType: Web Page,Website Sidebar,Sidebar www DocType: Web Form,Show Sidebar,Show Sidebar @@ -2497,7 +2501,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nie można znale apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Imiona i nazwiska same w sobie są łatwe do odgadnięcia. apps/frappe/frappe/config/website.py +93,Knowledge Base,Baza wiedzy DocType: Workflow State,briefcase,teczka -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Wartość nie może być zmieniona dla {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Wartość nie może być zmieniona dla {0} DocType: Feedback Request,Is Manual,Instrukcja jest DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styl reprezentuje kolor przycisku: sukces - zielony, niebezpieczeństwo - czerwony, - odwróć - czarny, podstawowa - ciemnoniebieski, info - jasnoniebieskie, ostrzeżenie - pomarańczowy" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Brak załadowanego raportu. Proszę użyć zapytanie-raport/[Nazwa Raportu] aby uruchomić raport. @@ -2576,7 +2580,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Postęp apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role , apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,brakujące Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Nieprawidłowa nazwa pola '{0}' w autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Szukaj w rodzaju dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Szukaj w rodzaju dokumentu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Pozwól pola pozostaną edytowalne nawet po przedłożeniu DocType: Custom DocPerm,Role and Level,Rola i Poziom DocType: File,Thumbnail URL,Miniatura URL @@ -2593,19 +2597,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Więcej informacji DocType: Desktop Icon,Desktop Icon,Ikona pulpitu -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Twoja płatność została pomyślnie przyjęta +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Twoja płatność została pomyślnie przyjęta apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,"Przykro mi! Nie masz wystarczających uprawnień, aby zobaczyć tę stronę." apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,"Wskazówka: Kliknij dwukrotnie komórkę, aby edytować" DocType: Workflow State,bell,dzwonek apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Błąd powiadomienia e-mail apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Błąd powiadomienia e-mail apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Udostępnij ten dokument +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Konfiguracja> Menedżer uprawnień użytkownika apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children, DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Dodać załącznik +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodać załącznik DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Dziękujemy za wiadomości -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Wyślij potwierdzenia odczytu +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Wyślij potwierdzenia odczytu DocType: Stripe Settings,Stripe Settings,Ustawienia paskowe DocType: Stripe Settings,Stripe Settings,Ustawienia paskowe DocType: Dropbox Settings,Dropbox Setup via Site Config,Konfiguracja za pośrednictwem serwisu Dropbox Config @@ -2683,6 +2688,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Uwaga: Ten format wydruku jest w starym stylu i nie mogą być generowane za pośrednictwem interfejsu API. DocType: DocField,Print Width,Szerokość Wydruku ,Setup Wizard,Ustawienia Wizard +DocType: Address,GST State Number,Numer państwa GST DocType: User,Allow user to login only before this hour (0-24),Zezwól użytkownikowi na logowanie się tylko przed tymi godzinami (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder jest obowiązkowy apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2711,7 +2717,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Mały tekst apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator obejrzano {0} na {1} poprzez adres IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Równe -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Typ Opcje ""Dynamic Link 'pola muszą wskazywać na inny link Pole z opcji jak"" DocType """ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Typ Opcje ""Dynamic Link 'pola muszą wskazywać na inny link Pole z opcji jak"" DocType """ DocType: About Us Settings,Team Members Heading,Dział członków zespołu apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Nieprawidłowy format CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Ustaw liczbę kopii zapasowych @@ -2722,7 +2728,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Uwierzytelnianie przy pomocy trzeciej strony DocType: Website Settings,Banner is above the Top Menu Bar.,Baner jest nad górną zakładką menu DocType: Razorpay Settings,API Secret,Tajny API -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Eksport raportu: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Eksport raportu: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} nie istnieje DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2745,7 +2751,7 @@ DocType: Kanban Board Column,Column Name,Nazwa kolumny DocType: Language,Based On,Bazujący na apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Ustaw jako domyślne apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Sprawdź Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Typ pola {0} do {1} nie może być zindeksowany +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Typ pola {0} do {1} nie może być zindeksowany DocType: Communication,Email Account,Konto e-mail DocType: Workflow State,Download,Ściągnij DocType: Blog Post,Blog Intro,Wprowadzenie Blogu @@ -2756,7 +2762,7 @@ DocType: Web Page,Insert Code,Wstaw Kod DocType: ToDo,Low,Niski apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Możesz dodać właściwości dynamiczne z dokumentu za pomocą Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Nieprawidłowa wartość limitu {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Listy typ dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Listy typ dokumentu DocType: Event,Ref Type,Typ Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Jeśli wysyłasz nowe rekordy, pozostawić ""Nazwa"" (ID) kolumnę pustą." DocType: Address,Chattisgarh,Chattisgarh @@ -2778,26 +2784,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Wyślij Druk w formacie PDF DocType: Web Form,Amount,Wartość DocType: Workflow Transition,Allowed,Dozwolone -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Nie może być tylko jeden Fold w formie +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Nie może być tylko jeden Fold w formie apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nie można zapisać formatu pliku dla {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Przywróć ustawienia domyślne? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Nieprawidłowa strona główna apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Nieprawidłowy login. Spróbuj ponownie. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opcje wymagane w polu Typ linku lub typu tabeli {0} w wierszu {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opcje wymagane w polu Typ linku lub typu tabeli {0} w wierszu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opcje wymagane w polu Typ linku lub typu tabeli {0} w wierszu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opcje wymagane w polu Typ linku lub typu tabeli {0} w wierszu {1} DocType: Auto Email Report,Send only if there is any data,"Wyślij tylko wtedy, gdy nie ma żadnych danych" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Zrestartuj Filtry -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Dostęp na poziomie 0 powinien być ustawiony, zanim ustawiane będą wyższe poziomy" +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Dostęp na poziomie 0 powinien być ustawiony, zanim ustawiane będą wyższe poziomy" apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Cesja zamknięty przez {0} DocType: Integration Request,Remote,Zdalny -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Obliczać +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Obliczać apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Najpierw wybierz DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potwierdź Swój Email apps/frappe/frappe/www/login.html +42,Or login with,Lub zaloguj się DocType: Error Snapshot,Locals,Miejscowi apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Przekazywane za pośrednictwem {0} w dniu {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} wspomniał o Tobie w komentarzu w {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,na przykład (55 + 434) / 4 lub = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,na przykład (55 + 434) / 4 lub = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} is wymagany DocType: Integration Request,Integration Type,Rodzaj integracja DocType: Newsletter,Send Attachements,Wyślij załączniki @@ -2807,15 +2813,15 @@ DocType: DocField,Perm Level,Poziom Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Wydarzenia w dzisiejszym kalendarzu DocType: Web Page,Web Page,Strona internetowa DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"W wyszukiwaniu globalnym" niedozwolone dla typu {0} w wierszu {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"W wyszukiwaniu globalnym" niedozwolone dla typu {0} w wierszu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"W wyszukiwaniu globalnym" niedozwolone dla typu {0} w wierszu {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"W wyszukiwaniu globalnym" niedozwolone dla typu {0} w wierszu {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Pokaż listę -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Data musi być w formacie: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Data musi być w formacie: {0} DocType: Workflow,Don't Override Status,Nie zastępują status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Proszę dać ocenę. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Zgłoszenie Zapytanie apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Szukany termin -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Pierwszy użytkownik: to Ty! +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Pierwszy użytkownik: to Ty! apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Wybierz kolumny DocType: Translation,Source Text,Tekst źródłowy apps/frappe/frappe/www/login.py +55,Missing parameters for login,Brakujące parametry logowania @@ -2837,7 +2843,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importowanie DocType: ToDo,Assigned By,Nadany przez apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"Można użyć niestandardowego formularza, aby ustawić poziom na polach." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Wybierz swój region +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Wybierz swój region DocType: Custom DocPerm,Level,Poziom DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Ilość musi być większy niż 0 ° C. @@ -2857,7 +2863,7 @@ DocType: Website Theme,Background,Tło DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lista DocTypes używanych do zastosowania uprawnień użytkownika. Jeśli jest puste, wszystkie związane DocTypes zostaną wykorzystane do zastosowania uprawnień użytkownika." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Dodaj ocenę -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} Nie możesz wnieść poprawek bez anulowania +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} Nie możesz wnieść poprawek bez anulowania apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Cała strona DocType: DocType,Is Child Table, apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} musi być jednym z {1} @@ -2872,7 +2878,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Występuje ponad slide apps/frappe/frappe/config/setup.py +260,Install Applications.,Instaluj aplikacje DocType: Contact,Last Name,Nazwisko DocType: Event,Private,Prywatny -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Brak alarmy na dziś +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Brak alarmy na dziś DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Wyślij załączniki e-maila jako PDF (zalecane) DocType: Web Page,Left,Opuścił DocType: Event,All Day,Cały Dzień @@ -2886,7 +2892,7 @@ DocType: Event,Send an email reminder in the morning,Wyślij rano e-mail z przyp DocType: Blog Post,Published On,Opublikowany DocType: Contact,Gender,Płeć apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obowiązkowe informacje brakuje: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nie można ustawić jako wyjątkowy, ponieważ nie ma unikalne wartości" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nie można ustawić jako wyjątkowy, ponieważ nie ma unikalne wartości" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Tylko 200 wkładki dozwolone w jednym żądaniu DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Typ Odniesienia @@ -2899,7 +2905,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,znak-ostrzeżenie DocType: Workflow State,User,Użytkownik DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Pokaż tytuł w oknie przeglądarki jako "Prefiks - tytuł" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Tekst w rodzaju dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Tekst w rodzaju dokumentu apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Uruchom testy apps/frappe/frappe/handler.py +91,Logged Out,Wylogowano apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Jeszcze... @@ -2925,13 +2931,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Obecnie Przeglądanie DocType: DocField,Default,Domyślny apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} dodane -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Szukaj słowa "{0}" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Szukaj słowa "{0}" apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Proszę zapisać raport pierwsza apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonentów dodano apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nie W DocType: Workflow State,star, -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Wartości oddzielone przecinkami -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Maksymalna szerokość dla typu Waluta to 100px w rzędzie {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Wartości oddzielone przecinkami +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Maksymalna szerokość dla typu Waluta to 100px w rzędzie {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Proszę podzielić swoją opinię o {0} apps/frappe/frappe/config/website.py +13,Content web page.,Strona WWW zawartości apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj nową rolę @@ -2950,7 +2956,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nieprawidłowy użytkownik LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} Stan niedozwolony apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Proszę wybrać inną metodę płatności. PayPal nie obsługuje transakcji w walucie „{0}” -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Pole wyszukiwania {0} nie jest ważny +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Pole wyszukiwania {0} nie jest ważny DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Można znaleźć rzeczy, pytając "znaleźć pomarańczowy klientów"" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Przykro mi! Użytkownik powinien mieć pełny dostęp do własnego rekordu. @@ -3012,7 +3018,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtr Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst, który będzie wyświetlany na link do strony WWW, jeśli ta forma ma stronę internetową. Trasa link zostanie automatycznie generowane na podstawie `page_name` i` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Zgłoszenie wyzwalania -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Proszę ustawić {0} najpierw +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Proszę ustawić {0} najpierw DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Ścieżka DocType: Async Task,Failed,Nieudane diff --git a/frappe/translations/ps.csv b/frappe/translations/ps.csv index 6683485262..eedb5fbbe9 100644 --- a/frappe/translations/ps.csv +++ b/frappe/translations/ps.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook نوم DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,یادونه: په څو غونډو کې به د ګرځنده آله صورت کې اجازه ورکړل شي apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},کارن لپاره چارن ايميل {کارنان} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,دا برېښناليک نه واستوي. تاسو د دې مياشت کې د {0} بریښنالیکونو د استولو حد اوښتي. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,د تل لپاره {0} سپارل؟ +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,د تل لپاره {0} سپارل؟ DocType: Address,County,County DocType: Workflow,If Checked workflow status will not override status in list view,که معاینه ننګولې حالت به په لست محتویات دريځ نه واوړې apps/frappe/frappe/client.py +280,Invalid file path: {0},د دوتنې ناباوره لاره: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,لطف apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} د ونو DocType: User,User Emails,کارن برېښناليک DocType: User,Username,نوم -apps/frappe/frappe/model/base_document.py +581,Value too big,ارزښت ډېر لوی +apps/frappe/frappe/model/base_document.py +580,Value too big,ارزښت ډېر لوی DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,د دويم الخط ټیسټ DocType: Contact,Department,ریاست @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,يادښتونه DocType: Custom DocPerm,This role update User Permissions for a user,دغه رول د اوسمهال لپاره د يو کارن د کارن حلال apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},نوم بدلولی شی {0} DocType: Workflow State,zoom-out,لوډېرول-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,دابرخه دکتابتون خلاصه نه شي کولای {0} کله چې د بېلګې په توګه خلاص دی +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,دابرخه دکتابتون خلاصه نه شي کولای {0} کله چې د بېلګې په توګه خلاص دی apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,جدول {0} کولای خالي نه وي apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,سره ليجرونو apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,انځورونه DocType: Communication,Reference Owner,ماخذ خاوند DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,کوچنۍ دوران کسر واحد (سکې). لپاره د ډالرو د بيلګې په توګه 1 په سلو کې او دا باید د 0.01 داخل شي DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0}، د کتارونو تر {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0}، د کتارونو تر {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,لطفا یو fullname ورکړي. apps/frappe/frappe/model/document.py +904,Beginning with,سره پیل apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,د معلوماتو د وارداتو کينډۍ @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",که چېرې توانول شوی، د پټنوم د قوت پر بنسټ به د لږ تر لږه پاسورډ نمره ارزښت پلي شي. د 2 ارزښت منځني قوي کېږي او 4 ډېر قوي کېږي. DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",که چېرې توانول شوی، د پټنوم د قوت پر بنسټ به د لږ تر لږه پاسورډ نمره ارزښت پلي شي. د 2 ارزښت منځني قوي کېږي او 4 ډېر قوي کېږي. DocType: About Us Settings,"""Team Members"" or ""Management""","د ډلې غړي" یا "د مديريت" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',د ډګر 'د وګورئ' ډول لپاره Default بايد يا '0' یا د '1' وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',د ډګر 'د وګورئ' ډول لپاره Default بايد يا '0' یا د '1' وي apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,پرون DocType: Contact,Designation,ټاکل. DocType: Test Runner,Test Runner,امتحان Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,خپور ساحوي DocType: Email Group,Email Group,دبرېښنا ګروپ DocType: Note,Seen By,لیدل By apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Add ګڼ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ناخوښ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ناخوښ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,لپاره په برخه کې نندارې ته د لیبل جوړ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ناسم ارزښت: {0} بايد د {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",د بدلون په برخه مال (پټيږي، readonly، اجازه او نور) @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,زمون apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,د اداري غونډال په DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",تماس انتخابونو، لکه "خرڅلاو شوې پوښتن، د ملاتړ شوې پوښتن" او نور هر يو يې پر يوه نوي مزي يا جلا شوي commas. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. دانلود -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,درج +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,درج apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},وټاکئ {0} DocType: Print Settings,Classic,کلاسیک DocType: Desktop Icon,Color,رنګ @@ -122,7 +122,7 @@ DocType: Translation,Translation,ژباړه apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ولګوه apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,ښاغلی DocType: Custom Script,Client,د مراجع -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,دغه فورمه بدل شوی دی وروسته تاسو بار دا +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,دغه فورمه بدل شوی دی وروسته تاسو بار دا DocType: User Permission for Page and Report,User Permission for Page and Report,د Page او راپور کارن د اجازې د DocType: Address,Himachal Pradesh,Himachal پرادېش DocType: System Settings,"If not set, the currency precision will depend on number format",که ټاکل شوی نه وي، د اسعارو د دقت به د شمېر شکل پورې اړه لري @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,دلیل apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,لطفا د کارونکي مشخص DocType: Email Unsubscribe,Email Unsubscribe,ليک د ګډون د DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,سره د غوره نتیجه شفاف سابقه لري د شاوخوا سور 150px انځور وټاکئ. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,لومړی د کارونکي عکس به د سیستم د مدیر شي (تاسو کوالی شي وروسته بدلون). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,لومړی د کارونکي عکس به د سیستم د مدیر شي (تاسو کوالی شي وروسته بدلون). ,App Installer,ددفتروسایل Installer DocType: Workflow State,circle-arrow-up,دایره-غشی-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,د پورته ... DocType: Email Domain,Email Domain,برېښناليک ډومېن DocType: Workflow State,italic,شوی apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,د هر -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: پرته جوړول د وارداتو جوړ نه شي +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: پرته جوړول د وارداتو جوړ نه شي apps/frappe/frappe/config/desk.py +26,Event and other calendars.,دکمپاینونو او نورو کلیزه. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ټول برخو کې ضروري دي چې وړاندې د نظر. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,راکښن د کالمونو د ړک @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,معياري اړخ د پټې Men apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,آیا د کور او ضم پوښيو نه ړنګول apps/frappe/frappe/config/desk.py +19,Files,دوتنې apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,حلال پر بنسټ پر هغه څه رولونه د هغوی ګمارل شوي کارنان استعمال شي. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,تاسو اجازه نه لري چې د دې سند د اړوند بریښنالیکونو ته واستوي -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,لطفا له {0} ته ړک / ډله تيروخت 1 کالم انتخاب +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,تاسو اجازه نه لري چې د دې سند د اړوند بریښنالیکونو ته واستوي +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,لطفا له {0} ته ړک / ډله تيروخت 1 کالم انتخاب DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,وګورئ دا که تاسو ته ستاسو د sandbox API په کارولو سره د پیسو د آزمیښت apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,تاسو اجازه نه لري چې د يوې معياري وېب پاڼه موضوع ړنګول DocType: Feedback Trigger,Example,بېلګه @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Total پېرودونکي apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",که يو رول کوي 0 د ليول لاس رسی نه لري، نو په لوړه کچه د دي معنی نه ورکوي. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save As DocType: Communication,Seen,لیدل -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,نور معلومات وښیه +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,نور معلومات وښیه DocType: System Settings,Run scheduled jobs only if checked,یوازې ټاکل شوې دندې پرمخ که وکتل apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,که کړی سرلیکونه دي چارن به يوازې شي ښودل شوی apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,آرشیف @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,پټول Heading DocType: Address,Current,اوسني DocType: Address,Current,اوسني -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,اړونده اسناد apps/frappe/frappe/config/core.py +17,Groups of DocTypes,د DocTypes ډلو DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,لرې-کړۍ @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} په شان د ځانګړو تورو نه لري {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,په يو وخت کې ډېرو ارزښتونو د اوسمهالولو. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,تېروتنه: لاسوند بدل شوی دی وروسته تاسو پرانیستل دا -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,نه تلوالیزه پته کينډۍ وموندل. لطفا څخه Setup> د چاپونې او عالمه> پته کينډۍ يو نوی جوړ کړي. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} غونډال څخه: {1} DocType: Address,West Bengal,لویدیځ بنګال -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: جوړ نشي دمکپاین سپارل که Submittable نه +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: جوړ نشي دمکپاین سپارل که Submittable نه DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",فلتر له خوا د "{0}" DocType: Salutation,Administrator,Administrator @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog عنوان apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,معياري رول نه نافعال شي کولای DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,خبر پاڼه -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,آيا نه په خاطر له خوا د فرعي پکارواچوی +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,آيا نه په خاطر له خوا د فرعي پکارواچوی DocType: Web Form,Button Help,تڼی په مرسته DocType: Kanban Board Column,purple,ارغواني DocType: About Us Settings,Team Members,د ډلې غړي @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,له Gravata apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",ستاسو د ګډون په {0} وخت تېر شوی. د ماشو، {1}. DocType: Workflow State,plus-sign,جمع نښه apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup لا د بشپړ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,ددفتروسایل {0} نه لګول +apps/frappe/frappe/__init__.py +889,App {0} is not installed,ددفتروسایل {0} نه لګول DocType: Workflow State,Refresh,تاندول DocType: Event,Public,د عامې apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,هیڅ شی تر څو وښيي @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,خوبيا هم apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,دبرېښنا ليک ملاتړ DocType: DocField,Print Hide If No Value,چاپ پټول که هيڅ ارزښت DocType: Event,yellow,ژیړ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,خپور ساحوي باید یو قانوني fieldname وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,خپور ساحوي باید یو قانوني fieldname وي apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,upload ضميمه DocType: Block Module,Block Module,د بنديز ماډل apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,د صادراتو د کينډۍ @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},په يو نوی ګڼون تاسو لپاره د رامنځ ته شوي {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,لارښوونه په انګلیسي تورو apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,لارښوونه په انګلیسي تورو -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),وليکئ بريښناليک تسلیمونکی (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),وليکئ بريښناليک تسلیمونکی (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,برېښناليک پرچم د کتار apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,نه په ګوته کولای {0}. بل څه کوښښ وکړئ. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,پيغام ID DocType: Property Setter,Field Name,ساحوي نوم apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,د ګوګل GSuite نده شکل بندي شوې ده. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,او یا -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,موډول په نوم ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ته دوام ورکړي +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,موډول په نوم ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ته دوام ورکړي DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,سند DocType: User,Tile,سرلیک @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,ټولې نسخې وښایاست DocType: Workflow State,Print,چاپ DocType: User,Restrict IP,د محدودولو IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ډشبورډ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,په دې وخت بریښنالیکونو ته واستوي توان نلري apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,پلټنه يا د يو کمانډ ټايپ DocType: Communication,Timeline Name,مهال ویش نوم @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,خرڅلاو ماسټر مدير apps/frappe/frappe/www/complete_signup.html +13,One Last Step,یو تېر ګام apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,د لاسوند ډول (DocType) تاسو غواړئ دې برخه کې وي چې په تړاو نوم. د بيلګې په توګه د پېرېدونکي DocType: User,Roles Assigned,رولونه د ګمارل شوي -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,د لټون مرسته -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,د لټون مرسته +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,د لټون مرسته +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,د لټون مرسته DocType: Top Bar Item,Parent Label,Parent نښه د apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",ستاسو دپوښتنی سره ترلاسه شوي دي. موږ به بېرته ډېر ژر ځواب. که تاسو په کوم اضافي معلومات ولري، نو مهرباني وکړئ ځواب او دا پيغام. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,حلال دي په اتوماتيک ډول د کره راپورونو او د تالاشيو ژباړل. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,سمول Heading DocType: File,File URL,دوتنه URL DocType: Version,Table HTML,جدول د HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

نه پایلې موندل شول '

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,پېرودونکي ورزیات کړئ apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,نن د راتلونکې پېښې DocType: Email Alert Recipient,Email By Document Field,ليک د سند د ساحوي @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,اندازه په ساحوي apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,کارن لپاره د Share الزامی دی DocType: DocField,Hidden,پټ DocType: Web Form,Allow Incomplete Forms,نابشپړ فورمې اجازه -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} باید لومړی شي +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} باید لومړی شي apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",يو څو ټکي وکاروئ، عام عبارتونه څخه ډډه وکړي. DocType: Workflow State,plane,الوتکه -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,اوه. ستاسو د ورکړې ناکام دی. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",که تاسو د نوي ریکارډونه د پورته، "نوم لړۍ" جبري شي، که حاضر. -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,نن د خبرتیا ترلاسه کول +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,نن د خبرتیا ترلاسه کول apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType هغه يوازې د مدیر په نامه ونومول شي apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},د بدلون ارزښت {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,لورينه وکړئ د تصدیق خپل ایمیل وګورئ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,زياتيدو لپاره نه شي کولای چې د په بڼه پای وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,زياتيدو لپاره نه شي کولای چې د په بڼه پای وي DocType: Communication,Bounced,وغوړېد DocType: Deleted Document,Deleted Name,ړنګ نوم apps/frappe/frappe/config/setup.py +14,System and Website Users,سيستم او د وېب پاڼه کارنان @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,سند له پيله DocType: GSuite Templates,Destination ID,موخه تذکرې DocType: Desktop Icon,List,بشپړفهرست DocType: Communication,Link Name,لینک نوم -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ساحوي {0} په قطار {1} نه پټ شي او پرته له default اجباري +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ساحوي {0} په قطار {1} نه پټ شي او پرته له default اجباري DocType: System Settings,mm/dd/yyyy,mm / DD / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,بې اعتباره پټنوم: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,بې اعتباره پټنوم: DocType: Print Settings,Send document web view link in email,وليږئ بريښناليک په سند وېب محتویات مخونه apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ستاسو لپاره د سند Feedback {0} په بریالیتوب سره وژغوره apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,مخکینی -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} لپاره قطارونه {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",فرعي اسعارو. د بيلګې په توګه: "په سلو کې" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,د پورته دوتنې وټاکئ @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,لینک apps/frappe/frappe/utils/file_manager.py +96,No file attached,نه د دوتنې سره ضميمه DocType: Version,Version,نسخه DocType: User,Fill Screen,پرده ډکه کړئ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",له دې ونې راپور د ښودلو لپاره، د ورکو شویو معلوماتو له امله د توان نلري. په زیات احتمال، دا کار له امله پرېښلې فلتر. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,لطفا څخه Setup> بريښناليک> بريښناليک حساب تشکیلاتو تلوالیزه بريښناليک حساب +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",له دې ونې راپور د ښودلو لپاره، د ورکو شویو معلوماتو له امله د توان نلري. په زیات احتمال، دا کار له امله پرېښلې فلتر. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. دوتنه انتخاب apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,د پورته کولو له لارې سمول -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",لاسوند ډول ...، د بيلګې په توګه د پېرېدونکو +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",لاسوند ډول ...، د بيلګې په توګه د پېرېدونکو apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,د حالت '{0}' ناسم دی DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,خپل ژباړې ورزیات کړئ @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,چهارشنبه apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",څخه د رول پر بنسټ د اجازې د اصولو پرته، تاسو کولی شئ پر بنسټ DocTypes کارن حلال درخواست. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",دا اجازه به د ټولو هغه معاملاتو چې د اجازه ریکارډ دی تړاو درخواست. د بیلګې په توګه، که شرکت C د کارونکي X کارن حلال اضافه شوی دی، د کارونکي X به يواځې کولای معاملو چې د شرکت په توګه د تړاو ارزښت C وګورئ. -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,د انځور ډګر باید یو قانوني fieldname وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,د انځور ډګر باید یو قانوني fieldname وي DocType: OAuth Client,Token,د نښې DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (نوم) د نهاد د چا ملکیت دی چې جوړ شي apps/frappe/frappe/limits.py +82,"To renew, {0}.",د ماشو، {0}. @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,د پټې سامان apps/frappe/frappe/installer.py +125,App {0} already installed,ددفتروسایل {0} د مخه لګول شوي DocType: Workflow State,exclamation-sign,د کارونکي-نښه apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,انکړپټه ښودل حلال -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,مهال ویش په برخه باید یو لینک یا د ډېنامېک لینک وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,مهال ویش په برخه باید یو لینک یا د ډېنامېک لینک وي apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,نېټه Range apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} د {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,د و apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",د پټونې کیلي ناباوره ده، مهرباني وکړئ وګورئ site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ته DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},بریالی: {0} د {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},بریالی: {0} د {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,په قالب نه شي کولای د کارونکي عکس تفصيلات بدلون. په https://erpnext.com لطفا لپاره يو نوی ګڼون لپارهخپل apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,لطفا دوه دا بدلونونه راولي apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,د PDF نسل د مات انځور تړنې له امله پاتې راغلي @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,پرېوتونکې apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,وژغورل apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,تاسو څه سره د مرستې ضرورت لرئ؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,لپاره غوره غوراوي. په یوه نوي لين هر انتخاب. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,د تل لپاره لغوه {0}؟ +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,د تل لپاره لغوه {0}؟ DocType: Workflow State,music,موسيقي DocType: Web Page,Settings,امستنې apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,لطفا doctype مشخص DocType: Print Format,Style Settings,Style امستنې -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ننداره ډګر {0} باید یو قانوني fieldname وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ننداره ډګر {0} باید یو قانوني fieldname وي apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,نور DocType: Contact,Sales Manager,خرڅلاو مدير apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,نوم بدلول DocType: Print Format,Format Data,شکل د معلوماتو د -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,په څېر +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,په څېر DocType: Customize Form Field,Customize Form Field,دتنظيمولو فورمه ساحوي apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,کارن اجازه DocType: OAuth Client,Grant Type,وړیا ډول apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,د وګورئ چې اسناد يو کارن لخوا د لوستلو وړ دي apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,داعلاناتو ددفتروسایل اجازه نه -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,په توګه پځای٪ کاروي -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",برېښناليک ډومېن لپاره دې حساب نه بندي شوې، یو جوړول؟ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,په توګه پځای٪ کاروي +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",برېښناليک ډومېن لپاره دې حساب نه بندي شوې، یو جوړول؟ DocType: User,Reset Password Key,د بیرته شفر کلیدي DocType: Email Account,Enable Auto Reply,فعال د موټرونو ته ځواب ورکړئ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,نه دي ليدلي @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,د ټاکلو په یوازې کله DocType: Email Queue Recipient,Email Queue Recipient,ليک د کتار تسلیمونکی DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,نوم {0} د مخکې نه شتون -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: نه د وارداتو جوړ آیا په توګه {1} importable نه دی +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: نه د وارداتو جوړ آیا په توګه {1} importable نه دی apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},ستاسو په پته کينډۍ یوه تېروتنه شته {0} DocType: Footer Item,"target = ""_blank""",هدف = "_blank" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,له بشپړ نوم apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},تاسو ته راپور ته لاسرسی نه لري: {0} DocType: User,Send Welcome Email,وليږئ بريښناليک ښه راغلاست apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,پورته CSV دوتنې پکې په توګه دانلود د همدا شان ټول کارن پرېښلې. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Filter لرې کړئ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Filter لرې کړئ DocType: Address,Daman and Diu,دامان او يعنې DocType: Address,Personal,د شخصي apps/frappe/frappe/config/setup.py +113,Bulk Rename,د حجم د رښتو @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",معياري DocType نه شي کولای تلوالیزه چاپي بڼه لري، دتنظيمولو فورمه وکاروي DocType: Report,Query,نه خوری DocType: DocType,Sort Order,سمبالول، منظمول -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'په List View لپاره ډول {0} په قطار نه اجازه {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'په List View لپاره ډول {0} په قطار نه اجازه {1} DocType: Custom Field,Select the label after which you want to insert new field.,ليبل وروسته چې تاسو غواړئ چې نوي ډګر ورننباسئ وټاکئ. ,Document Share Report,سند Share راپور DocType: User,Last Login,تېره ننوتل -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},په قطار Fieldname ته اړتیا لیدل کیږي {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},په قطار Fieldname ته اړتیا لیدل کیږي {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,کالم DocType: Custom Field,Adds a custom field to a DocType,د يو DocType زیاتوي يو دود برخه DocType: File,Is Home Folder,ده کور پوښۍ @@ -594,7 +594,7 @@ DocType: File,Folder,دادوسیه DocType: DocField,Index,ډېرځليزې DocType: Email Group,Newsletter Manager,خبر پاڼه د مدير apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,انتخاب: 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,ټولې ليکنی +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} د {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,د غوښتنې په ترڅ کې د تیروتنې څېره. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} په برياليتوب سره د برېښليک ګروپ زياته شوې ده. DocType: Address,Uttar Pradesh,اترپردېش @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,شاخص DocType: DocShare,Everyone,هرڅوک DocType: Workflow State,backward,په شا -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: يوازې يو واکمنۍ د همدې رول، د ليول او اجازه {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: يوازې يو واکمنۍ د همدې رول، د ليول او اجازه {1} DocType: Email Queue,Add Unsubscribe Link,Add لاسرسۍ لینک apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,څه نه دي ویلي اوسه. یو نوی بحث پیل کړئ. DocType: Workflow State,share,برخه @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,اجا apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,محتویات پېرودونکي apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,اغلی DocType: Website Theme,Background Color,شاليد رنګ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ایمیل استولو په داسې حال کې تېروتنې شوې دي. لطفا بیا هڅه وکړې. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ایمیل استولو په داسې حال کې تېروتنې شوې دي. لطفا بیا هڅه وکړې. DocType: Portal Settings,Portal Settings,تانبه امستنې DocType: Web Page,0 is highest,0 لوړه ده apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,آیا تاسو په ډاډمنه توګه غواړئ چې د {0} د دې اړیکو relink؟ @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,له مونږ سره تماس apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,پلټي ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,پلټي ... DocType: Workflow State,text-width,text-عرض -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,د دې ریکارډ اعظمي ضميمه حد ته رسیدلی. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,د دې ریکارډ اعظمي ضميمه حد ته رسیدلی. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,دغه لانديني اجباري برخې باید ډکې شي:
DocType: Email Alert,View Properties (via Customize Form),محتویات Properties (دتنظيمولو فورمه له لارې) DocType: Note Seen By,Note Seen By,نوټ کتل By @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,راجستان apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,راپور جوړونکی راپورونه په مستقيمه توګه د راپور جوړونکی لخوا اداره کیږي. هیڅ د کولو نشته. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,مهرباني وکړئ ستاسو دبرېښنا ليک پته تایید کړي apps/frappe/frappe/model/document.py +903,none of,د هيڅ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ما ته ددې مطلب لېږنه کاپي +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ما ته ددې مطلب لېږنه کاپي apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,پورته کارن حلال DocType: Dropbox Settings,App Secret Key,ددفتروسایل پټې کلیدي apps/frappe/frappe/config/website.py +7,Web Site,وېبپاڼه: apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,چک توکي به د سرپاڼې ته وښودل شي -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} نه مجرد ډولونه جوړ شي +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} نه مجرد ډولونه جوړ شي apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban بورډ د {0} شتون نه لري. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} اوس مهال د دې سند یې ګورې DocType: ToDo,Assigned By Full Name,ګمارل شوي By بشپړ نوم apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} تازه -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,د مجرد ډوله راپور نه جوړ شي +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,د مجرد ډوله راپور نه جوړ شي apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ورځې مخکې DocType: Email Account,Awaiting Password,تمه پاسورډ DocType: Address,Address Line 1,پته کرښې 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",د ننګولې ایالتونه (د مثال په مسوده، تصویب، ردشوي). DocType: Print Settings,Allow Print for Draft,لپاره مسوده چاپ اجازه apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,ټاکل شوی مقدار -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,د دې سند سپارل د تایید +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,د دې سند سپارل د تایید DocType: Contact,Unsubscribed,کش apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,لپاره د مخ او راپور جوړ ګمرک رولونه apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,درجه: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,د معلوماتو د وارداتو اوزار DocType: Address,Dadra and Nagar Haveli,Dadra او ناګار Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,د پورته دوتنې مهرباني وکړئ د يو څو ثانيو کې انتظار وباسي. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ستاسو انځوريز ضمیمه +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ستاسو انځوريز ضمیمه apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,د کتارونو تر ارزښتونه بدله DocType: Workflow State,Stop,درېدل DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,لینک د پاڼې تاسو غواړئ چې دابرخه ته. خالي پريږدئ که تاسو غواړئ چې دا د يوې ډلې د مورنی. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,د کيڼ ليابلونه برا DocType: Help Article,Expert,کارپوه DocType: Workflow State,circle-arrow-right,دایره-غشی-حق DocType: LDAP Settings,LDAP Server Url,LDAP سرور URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,مثال دابرخه دکتابتون خلاصه نه شي کولای چې خپل {0} پرانیستې ده +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,مثال دابرخه دکتابتون خلاصه نه شي کولای چې خپل {0} پرانیستې ده apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,د نصب له پيله DocType: Custom DocPerm,Custom DocPerm,د ګمرکونو DocPerm DocType: Newsletter,Send Unsubscribe Link,وليږئ لاسرسۍ لینک @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,ددفتروسایل {0} لرې DocType: Custom DocPerm,Apply User Permissions,کارن حلال Apply DocType: User,Modules HTML,ماډل د HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> کارن حلال مدير apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ورک ارزښتونه اړین DocType: DocType,Other Settings,نور امستنې DocType: Social Login Keys,Frappe,Frappe @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth تسکره د نښې apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,هیڅ سند ټاکل apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ډاکټر DocType: Event,Event,دکمپاینونو -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",د {0}، {1} وليکل: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",د {0}، {1} وليکل: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,معياري ډګر ړنګ نه شي. تاسو کولای شۍ دا پټ که تاسو غواړی DocType: Top Bar Item,For top bar,د سر bar apps/frappe/frappe/utils/bot.py +148,Could not identify {0},کیدای شي په ګوته نه {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,مېز ته لاسرسی DocType: Workflow State,minus,منفي apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,د پالنګر تېروتنه: مهرباني وکړئ د خپل سرور د يادښتونه وګورئ او یا سمباله ملاتړ سره تماس ونيسئ. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ښه راغلاست استولي -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,راځئ چې لومړی د کارولو لپاره د سيستم چمتو کړي. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,راځئ چې لومړی د کارولو لپاره د سيستم چمتو کړي. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ځانګړي apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,له مخکي نه ثبت شوي DocType: System Settings,Float Precision,لرګې Precision @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,چاپ اجازه apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,نه کاریالونو ولګول شو apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,په توګه اجباري لمانځله په برخه کې DocType: Communication,Clicked,چې ټک -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ته هيڅ اجازه '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ته هيڅ اجازه '{0}' {1} DocType: User,Google User ID,د ګوګل کارن ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,ټاکل شوې واستوي DocType: DocType,Track Seen,Track کتل @@ -838,7 +837,7 @@ DocType: Address,Kerala,د کرالا DocType: File,Lft,من DocType: User,Simultaneous Sessions,نوار غونډه DocType: OAuth Client,Client Credentials,د مراجع د باورلیک ومانه -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,یو ماډل یا وسیله دابرخه +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,یو ماډل یا وسیله دابرخه DocType: Communication,Delivery Status,د وړاندې کولو حالت DocType: Module Def,App Name,ددفتروسایل نوم apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max د دوتنې کچه اجازه ده {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,ماخذ د مخابراتو DocType: Email Queue,Unsubscribe Method,د ګډون د Method DocType: GSuite Templates,Related DocType,اړوند DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,د محتوا اضافه د سمولو -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,انتخاب ژبې -apps/frappe/frappe/__init__.py +510,No permission for {0},لپاره په هیڅ اجازه {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,انتخاب ژبې +apps/frappe/frappe/__init__.py +509,No permission for {0},لپاره په هیڅ اجازه {0} DocType: DocType,Advanced,ژور apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,داسې ښکاري چې API کلیدي یا API پټې ناسم دی !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},ماخذ: {0} د {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,وليکئ فورمه ډول apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,هیڅ ډول ثبتونې سکس. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,لرې ساحوي DocType: User,Send Password Update Notification,وليږئ شفر تازه خبر -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",اجازه DocType، DocType. احتیاط کوه! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",اجازه DocType، DocType. احتیاط کوه! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",د چاپونې، دبرېښنا ليک دودیزه بڼی apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Updated د نوې بڼه DocType: Custom Field,Depends On,اړه لري پر @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,یو له apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,لطفا دوتنه غوره کړه چې کاپي apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,يوه شېبه کتل apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,انکړپټه ښودل نښانونه +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",که Apply سخت کارن اجازه وکتل او د کارن د اجازې لپاره د يو کاروونکي يوه DocType تعریف شوی وي، نو ټول اسناد چې د تړنه ارزښت دی خالي، به چې کارن ښودل نه شي DocType: Address,Billing,بلونو DocType: Email Queue,Not Sent,نه ته وليږدول شوه DocType: Web Form,Actions,کړنې @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,روښانه apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,هره ورځ د پیښو بايد په هماغه ورځ پای ته ورسوي. DocType: Communication,User Tags,کارن نښانونه apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,راوړلو انځورونه .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> کارن DocType: Workflow State,download-alt,دانلود-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},دمطلب ددفتروسایل {0} DocType: Communication,Feedback Request,Feedback غوښتنه @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Add تماس DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاري: تل د دغو تذکرو کې واستوي. په یو نوي هر يو قطار دبرېښنا ليک پته: -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,په بشپړه توګه کتل پټول +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,په بشپړه توګه کتل پټول DocType: Workflow State,Tasks,دندې DocType: Event,Tuesday,سه شنبه DocType: Blog Settings,Blog Settings,Blog امستنې @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,په همدې پوښۍ چې هلته دا وژغوره او ستون او له امله بيرته Python دوتنې ولیکئ. DocType: DocType,Sort Field,ننداره ساحوي DocType: Razorpay Settings,Razorpay Settings,Razorpay امستنې -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,چاڼ -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ساحوي {0} د {1} ډول نه شي اجباري وي -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",د بيلګې په توګه. که کارن حلال Apply لپاره راپور DocType چک شوی دی، خو د کارن حلال نه د يو کارن لپاره راپور کې تعريف شوي دي، نو د ټولو راپورونو چې کارن ښودل شوي دي +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,چاڼ +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ساحوي {0} د {1} ډول نه شي اجباري وي apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Add نور apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,پټول چارټ DocType: System Settings,Session Expiry Mobile,د ناستې د پای د موبايل په @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,وځنډید apps/frappe/frappe/config/setup.py +128,List of backups available for download,د backups دانلود لپاره بشپړفهرست apps/frappe/frappe/www/login.html +89,Sign up,ثبت نام DocType: Test Runner,Output,Output +DocType: Email Alert,Set Property After Alert,خاصیت وټاکي خبرتیا وروسته apps/frappe/frappe/config/setup.py +226,Add fields to forms.,د فارمونو برخو کړئ. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ښکاري چې څه غلط سره د دې ځای د وی.دا سازونې ده. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,د پاڼی DocType: Portal Menu Item,Portal Menu Item,تانبه Menu د قالب DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",که کارن حلال Apply لپاره راپور DocType چک دی، خو د کارن حلال نه د کارن لپاره راپور کې تعريف شوي دي، نو ټول راپورونه چې د کارن ښودل شوي دي DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,د سرچینو لست چې د مراجع ددفتروسایل به وروسته د کارونکي ته اجازه ورکوي چې دا ته لاسرسی ولري.
د بيلګې په توګه د پروژې د DocType: Translation,Translated Text,ژباړه متن DocType: Contact Us Settings,Query Options,خوری غوراوي @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,د اړيکې DocType: System Settings,Setup Complete,Setup بشپړ apps/frappe/frappe/config/setup.py +66,Report of all document shares,د ټولو سند د سهم راپور apps/frappe/frappe/www/update-password.html +18,New Password,نوئ پټ نوم -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} د ورکو +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} د ورکو apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,اوبخښه! تاسو نه شي کولای د Auto-تولید تبصرې ړنګول DocType: Website Theme,Style using CSS,CSS کارولو Style apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,ماخذ DocType @@ -1129,7 +1131,7 @@ DocType: User,Block Modules,د بنديز د روزنیز ماډل apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ته د اوپيات اوږدوالي د {0} لپاره د '{1}' په '{2}؛ د اوږدوالي د خوښو په توګه {3} به د معلوماتو د truncation سبب شي. DocType: Print Format,Custom CSS,د ګمرکونو د سټايل شي apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Add a comment -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},له پامه: {0} د {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},له پامه: {0} د {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,د تیروتنې په اتومات پیښو (pane دندې) څېره. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),يو د اعتبار وړ Comma جدا ارزښت نه (CSV دوتنه) @@ -1138,7 +1140,7 @@ DocType: Email Account,Default Incoming,default راتلونکي DocType: Workflow State,repeat,تکرار DocType: Website Settings,Banner,بينر DocType: Role,"If disabled, this role will be removed from all users.",که ناچارن شوی، دغه رول به له ټولو کاروونکو لرې شي. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,مرسته په پلټنه +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,مرسته په پلټنه apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,نومليکنه خو معلولينو DocType: DocType,Hide Copy,پټول کاپي apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ټول رولونه د پاکولو @@ -1170,7 +1172,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,د هېواد apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Addresses DocType: Communication,Shared,د شریکې -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,لاسوند د چاپولو لپاره ضمیمه +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,لاسوند د چاپولو لپاره ضمیمه DocType: Bulk Update,Field,ساحوي DocType: Communication,Received,ترلاسه DocType: Social Login Keys,Google Client ID,د ګوګل د مراجع ID @@ -1191,12 +1193,12 @@ DocType: Report,Query Report,خوری راپور DocType: User,Set New Password,د ټاکلو په موخه د نوي شفر DocType: User,Github User ID,Github کارن ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,که د سند ډول -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","نه delete کولای شي او يا لغوه کړي ځکه {0} د {1} سره تړاو دی {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","نه delete کولای شي او يا لغوه کړي ځکه {0} د {1} سره تړاو دی {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},نامعلوم اپلیکیشن {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",٪ s معتبر راپور بڼه کې نه دی. راپور شکل باید د لاندې٪ s يو \ DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} په کتارونو کی څو ځله ښکاري {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} په کتارونو کی څو ځله ښکاري {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} د {1} د {2} په قطار # {3} DocType: Communication,Expired,تېر شوی DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),د د د پټی کالمونو کې يو د مزي شمېر (په يوه شبکه Total یورتان باید د 11 څخه کم وي) @@ -1206,30 +1208,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,يو ګڼون لر apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},نامعلوم چاپ شکل: {0} DocType: Workflow State,arrow-down,غشی ښکته apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,سقوط -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},کارن اجازه نه ړنګول {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},کارن اجازه نه ړنګول {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,آخرین به روز رسانی DocType: Help Article,Likes,خوښوي DocType: Website Settings,Top Bar,غوره مدافع وکیالنو د DocType: GSuite Settings,Script Code,سکرېپټ د کوډ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,جوړول کارن برېښليک apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,جوړول کارن برېښليک -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,نه حلال کې مشخص +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,نه حلال کې مشخص apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Global امستنې: کارنان به يواځې کولای چک په انځورنونو کې غوره apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} ونه موندل شو DocType: Custom Role,Custom Role,د ګمرکونو رول apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,کور / امتحان پوښی 2 DocType: System Settings,Ignore User Permissions If Missing,کارن حلال پامه که ورک -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,لطفا د پورته مخکې سند وژغوري. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,لطفا د پورته مخکې سند وژغوري. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,خپل پټ نوم وليکئ DocType: Dropbox Settings,Dropbox Access Secret,Dropbox لاسرسی پټې apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Add يو بل پيغام apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,سمول DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,څخه د خبرپانې کش -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,قات باید یو برخه له خلاصيدو نه مخکې راغلي +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,قات باید یو برخه له خلاصيدو نه مخکې راغلي apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,اخري تاييد By DocType: Workflow State,hand-down,لاس ښکته DocType: Address,GST State,GST د بهرنیو چارو -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: جوړ نشي لغوه پرته سپارل +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: جوړ نشي لغوه پرته سپارل DocType: Website Theme,Theme,موضوع apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,تېروتنې وې. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI د Auth قانون تابع دي @@ -1248,7 +1250,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,زم DocType: Website Theme,Text Color,د متن رنګ DocType: Desktop Icon,Force Show,ځواک څرګندونه کوي apps/frappe/frappe/auth.py +78,Invalid Request,باطلې غوښتنه -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,دغه فورمه کې هیڅ وتنی نه لري +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,دغه فورمه کې هیڅ وتنی نه لري apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},د ناستې د پای نېټه بايد په بڼه کې وي {0} DocType: Website Sidebar Item,Group,ګروپ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",انتخاب هدف = "_blank" په دابرخه يو نوی مخ. @@ -1257,7 +1259,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,د کوډييزونه لپاره غلطيو سترګې پټې کړه. DocType: Workflow State,wrench,ورنشس apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,نه -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> کارن DocType: Authentication Log,Date,نېټه DocType: Website Settings,Disable Signup,نافعال لپارهخپل apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,کلک ناست په داسې حال کې د خپل سیستم د ده ليکلی. دا ښايي د څو شيبو واخلي. @@ -1268,7 +1269,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Add Comment DocType: DocField,Mandatory,اجباري apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ماډل د صادرولو -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: نه د اساسي پرېښلې ټولګه +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: نه د اساسي پرېښلې ټولګه apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,ستاسو ګډون به د پای ته د {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},ستاسو د شاتړ دانلود مخونه به په لاندې ایمیل ادرس راولي شي: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",د سپارل، لغوه ترجمه، تعدیل @@ -1281,11 +1282,11 @@ DocType: Desktop Icon,query-report,خوری-راپور apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ګمارل شوي د {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,چاڼګرونه وژغوره DocType: DocField,Percent,په سلو کې -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,لطفا د فلټرونو ټاکل +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,لطفا د فلټرونو ټاکل apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,تړاو لري DocType: Workflow State,book,کتاب DocType: Website Settings,Landing Page,بېړنۍ ناسته Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,په ګمرکونو الخط کې تېروتنه +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,په ګمرکونو الخط کې تېروتنه apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} نوم apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",د وارداتو غوښتنه پيله. دا ښايي د څو شيبو واخلي، لطفا ناروغ وي. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,نه حلال د دې ثبتیږي. @@ -1297,7 +1298,7 @@ DocType: System Settings,Allow Login using Mobile Number,اجازه ننوتل apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,تاسو پوره پرېښلې د دې منابعو ته لاسرسی نه لري. لورينه وکړئ خپل د مدیر سره اړیکه ته لاره پيدا کړي. DocType: Custom Field,Custom,د ګمرکونو apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup دبرېښنا ليک خبرتیا پر بنسټ د مختلفو معيارونو. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},ليکنې درج لاندې {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},ليکنې درج لاندې {0} DocType: Email Alert,Send alert if date matches this field's value,وليږئ د خبرتیا که نېټې دې برخه کې د ارزښت سره سمون خوري DocType: Workflow,Transitions,ته وسپارل apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} وويستل شي او د ټولو د معلوماتو د ړنګولو؟ @@ -1306,9 +1307,8 @@ DocType: User,Login After,ننوتل وروسته DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,د چاپونې DocType: Workflow State,thumbs-up,تړون -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,برېښناليک حساب تشکیلاتو نه. لطفا څخه Setup> بريښناليک> بريښناليک حساب يوه نوي برېښناليک ګڼون جوړ کړه DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision بايد 1 او 6 تر منځ وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision بايد 1 او 6 تر منځ وي apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,او DocType: Error Snapshot,Frames,چوکاټونه @@ -1317,7 +1317,7 @@ DocType: About Us Team Member,Image Link,د انځور لینک DocType: Auto Email Report,Report Filters,راپور چاڼګرونه apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,اوس DocType: Workflow State,step-backward,ګام په شا -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,مهرباني وکړئ په خپل ځای جوړول Useragent Dropbox لاسرسي کیلي ګانو څخه جوړ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,دغه ریکارډ ړنګول چې د دې ایمیل ادرس استولو اجازه apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,يوازې جبري پټی لپاره د نوي ریکارډونه ضروري دي. تاسو کولای غیر الزامی ستنې ړنګول که تاسو غواړئ. @@ -1339,8 +1339,7 @@ DocType: File,Is Attachments Folder,ده ضم پوښی apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Expand ټول apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,د اعتبار وړ ننوتل پېژند ته اړتيا لري. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re علني -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,تاسو د ورکړې دي لغوه -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,مهرباني سره د معلوماتو یو باوري csv دوتنه انتخاب +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,مهرباني سره د معلوماتو یو باوري csv دوتنه انتخاب apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-شریک دې سند سره د {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,څخه د {0} د {1} اجازه نشته سند وضعیت د لېږد DocType: DocType,"Make ""name"" searchable in Global Search",د کمکیانو لپاره د "نوم" په Global لټون لټول @@ -1353,7 +1352,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ا DocType: Help Category,Help Category,مرسته کټه ګورۍ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,کارن {0} معلول دی apps/frappe/frappe/www/404.html +8,Page missing or moved,Page ورک يا وړل -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,سمول {0} ملکیتونو DocType: DocType,Route,لار apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay تاديه ليدونکی امستنې DocType: DocField,Name,نوم @@ -1361,8 +1359,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,د ثبوت پلټنه apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,د ثبوت پلټنه DocType: OAuth Authorization Code,Valid,د اعتبار وړ -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,د پرانیستې لینک -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ستا ژبه +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,د پرانیستې لینک +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ستا ژبه apps/frappe/frappe/desk/form/load.py +46,Did not load,ايا د پورته کولو نه apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Add د کتارونو DocType: Tag Category,Doctypes,Doctypes @@ -1377,7 +1375,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,آیا Feedba DocType: Address,Lakshadweep Islands,Lakshadweep ټاپوان apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,آیا ولیکئ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",ځینې خاص اسناد، لکه د یوه صورتحساب، بايد يو ځل وروستۍ بدل نه شي. د داسې اسناد نهايي دولت په نوم یادیږی ته وسپارل شول. تاسې کولای شی چې محدود رول کولای سپارل. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,تاسو اجازه نه لري چې د دې راپور د صادرولو +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,تاسو اجازه نه لري چې د دې راپور د صادرولو apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 توکی ټاکل DocType: Newsletter,Test Email Address,ټیسټ دبرېښنا ليک پته: DocType: ToDo,Sender,استوونکی @@ -1412,7 +1410,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,د وارداتو .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,سند ID DocType: Print Settings,Letter,لیک -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,د انځور په ساحه باید د ډول وي ضمیمه د انځور +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,د انځور په ساحه باید د ډول وي ضمیمه د انځور DocType: DocField,Columns,ستونونه DocType: Async Task,Succeeded,بریالي وو apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},اجباري برخو کې اړتیا {0} @@ -1462,7 +1460,7 @@ DocType: DocField,Text Editor,متن اېډېټر apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,د امستنې زموږ په اړه Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,سمول ګمرک HTML DocType: Error Snapshot,Error Snapshot,تېروتنه لنډ جاج -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,په +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,په DocType: Email Alert,Value Change,د ارزښت د بدلون DocType: Standard Reply,Standard Reply,کره ځواب ورکړئ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,د وتنی په صندوق کې د سور د @@ -1478,12 +1476,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,د دې fieldname په استفادې سره د سرليک تولید apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,د وارداتو ليک له apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,په توګه د کارن بلنه -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,انتخاب ضم +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,انتخاب ضم apps/frappe/frappe/model/naming.py +94, for {0},د {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,تېروتنې وې. لطفا راپور دې. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,تاسو د دې لاسوند د چاپولو اجازه نه لري +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,تاسو د دې لاسوند د چاپولو اجازه نه لري apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,لطفا چاڼګرونه ارزښت په راپور Filter جدول جوړ. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Loading راپور +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading راپور apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ستاسو ګډون به نن پای ته رسیږي. DocType: Page,Standard,معياري apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,دوتنه ضمیمه @@ -1513,7 +1511,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,سیمه او تمدید DocType: LDAP Settings,Base Distinguished Name (DN),اډه قدرمنو نوم (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,دې خبرو اترو څخه ووځي -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},د تړنه ډګر غوراوي نه {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},د تړنه ډګر غوراوي نه {0} DocType: Customize Form,"Must be of type ""Attach Image""",باید د ډول وي "ضميمه د انځور" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Unselect ټول apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},تاسو کولای unset نه د ساحوي 'يوازې ادامه' {0} @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,یادښت apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,تېروتنه راپور apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedback شرایطو سمون نه -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,مهال ویش په برخه باید یو قانوني fieldname وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,مهال ویش په برخه باید یو قانوني fieldname وي DocType: Currency,Symbol,سمبول -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,د کتارونو تر # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,د کتارونو تر # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,نوی پټنوم راولي apps/frappe/frappe/auth.py +245,Login not allowed at this time,د ننوت په دې وخت کې اجازه نه لري DocType: Email Account,Email Sync Option,برېښناليک پرانیځئ انتخاب @@ -1579,7 +1577,7 @@ DocType: DocField,Text,متن apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,معياري د ګډو پوښتنو ته ځواب ورکوي. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,default لېږل DocType: Workflow State,volume-off,حجم پړاو -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},خوبيا هم د {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},خوبيا هم د {0} DocType: Footer Item,Footer Item,پښۍ د قالب ,Download Backups,دانلود Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,کور / امتحان پوښی 1 @@ -1614,7 +1612,7 @@ DocType: Web Page,Text Align,متن داسې ترتیب کړي apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},نوم نه شي کولای په شان د ځانګړو تورو لرونکی {0} DocType: Contact Us Settings,Forward To Email Address,مخ په وړاندې د برېښلیک پته apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,ټول معلومات ښيي -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,عنوان ډګر باید یو قانوني fieldname وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,عنوان ډګر باید یو قانوني fieldname وي apps/frappe/frappe/config/core.py +7,Documents,اسناد DocType: Email Flag Queue,Is Completed,بشپړ apps/frappe/frappe/www/me.html +22,Edit Profile,سمول پېژندنه @@ -1624,8 +1622,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",دې برخه کې به پرانيستل شي يوازې که د fieldname دلته تعریف ارزښت لري، یا د اصولو سمه (مثالونه) دي: myfield eval: doc.myfield == زما ارزښت 'eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,نن -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,نن +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,نن +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,نن apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",کله چې تاسو جوړ دې، د کاروونکي به يوازې کولای لاسرسی اسناد وي (د بيلګې په توګه. Blog Post) چې مخونه شته (د مثال په. ویبالګ). DocType: Error Log,Log of Scheduler Errors,يادښت د pane دندې تېروتنې DocType: User,Bio,Bio @@ -1649,6 +1647,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ستوري کېږي ټیټ & 5 ستوري حال لوړه درجه DocType: Event,Ref Name,دسرچینی یادونه نوم DocType: Web Page,Center,مرکز +DocType: Email Alert,Value To Be Set,ارزښت جوړ شي apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,لومړی د ليول DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ایالتونو کې د یو سند او رول ته دنده وسپارله څو د دولت د بدلون اجازه استازيتوب کوي. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,تاندول فورمه @@ -1669,18 +1668,18 @@ DocType: DocType,Has Web View,لري ويب کتل apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocType نوم باید سره یو لیک پیل او دا کار یوازې د تورو، شمېروو، ځایونو او تاکيد لري DocType: Communication,Spam,سپم DocType: Integration Request,Integration Request,د یووالي غوښتنه -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,ګرانه +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,ګرانه DocType: Address,Maharashtra,مهاراشترا DocType: Address,Accounts User,جوړوي کارن DocType: Web Page,HTML for header section. Optional,سرۍ کړی لپاره HTML. اختیاري apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,دا ځانګړتيا، نوي او تر اوسه آزمېښتي -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,اعظمي {0} د قطارونو په اجازه +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,اعظمي {0} د قطارونو په اجازه DocType: Email Unsubscribe,Global Unsubscribe,Global د ګډون د apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,دا یو ډیر عادی شفر. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,محتویات DocType: Communication,Assigned,ګمارل شوي DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,انتخاب چاپ شکل +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,انتخاب چاپ شکل apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,لنډ بورډ د نمونو دي اسانه فکر DocType: Portal Settings,Portal Menu,تانبه Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,د {0} اوږدوالی بايد 1 او 1000 تر منځ وي @@ -1719,7 +1718,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,کارن پلټنه نه شي apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,باطلې محصول شکل DocType: Custom DocPerm,Apply this rule if the User is the Owner,دغه قواعد د Apply که د کارن د خاوند ده -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,به خپل د ننوت تذکرو وي +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,به خپل د ننوت تذکرو وي apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,د راپور د جوړولو DocType: Note,Notify users with a popup when they log in,کارنان سره بړبوکيز خبر کله چې په log apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} د {1} نه شته، چې د لېږدونه او د نوي هدف وټاکئ @@ -1738,17 +1737,18 @@ DocType: User Permission for Page and Report,Roles Permission,رول د اجاز apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,تازه DocType: Error Snapshot,Snapshot View,انځور ښکاره کړی apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,لطفا د استولو مخکې د دغی وژغوري -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},غوراوي باید د ساحوي {0} په قطار کې یو باوري DocType وي {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} کال (ص) د وړاندې +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},غوراوي باید د ساحوي {0} په قطار کې یو باوري DocType وي {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,سمول Properties DocType: Patch Log,List of patches executed,د ټوټې د بشپړفهرست د اعدام apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} لا کش -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,د مخابراتو منځني +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,د مخابراتو منځني DocType: Website Settings,Banner HTML,بنر HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',لطفا بل طریقه ټاکي. Razorpay په اسعارو د راکړې ورکړې ملاتړ نه کوي '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,د شاتړ کتار ولاړ. دا ښايي يو څو دقيقو کې د يوه ساعت. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,راجستر OAuth د مراجع ددفتروسایل -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} د {1} نه وي. "{2}". دا بايد د يو وي "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} د {1} نه وي. "{2}". دا بايد د يو وي "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} يا {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,د ښودلو لپاره پټول د سرپاڼې انځورنونو apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,د تېرنويې د تازه @@ -1775,7 +1775,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,خپرونه د کرښې په برخې وروسته وقفې DocType: Blogger,Short Name,لنډ نوم apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",تاسو پرانیځئ انتخاب د ټولو په ټاکلو، دا به ټول د پالنګر څخه \ ولوستل همدارنګه نوې پېغام resync. دا هم د مخابراتو د (بریښنالیکونو) تکرار \ سبب شي. apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,دوتنې کچه @@ -1787,6 +1787,7 @@ DocType: Contact,Purchase Manager,رانيول مدير DocType: Custom Script,Sample,نمونه apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,UnCategorised نښانونه DocType: Event,Every Week,هره اونۍ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,برېښناليک حساب تشکیلاتو نه. لطفا څخه Setup> بريښناليک> بريښناليک حساب يوه نوي برېښناليک ګڼون جوړ کړه apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ستاسو د بېلګې وګورئ او یا هم د لوړو پلان د ترفیع لپاره دلته کلیک وکړی DocType: Custom Field,Is Mandatory Field,ده اجباري ساحوي DocType: User,Website User,وېب پاڼه د کارن @@ -1810,16 +1811,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,د ګمرکونو د پټې Menu DocType: Workflow State,pencil,پنسل apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,پيغامونه او نورو خبرتیاوې Chat. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},وروسته نه شي کولای ورننويستل {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},وروسته نه شي کولای ورننويستل {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} سره apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,برېښناليک حساب تشکیلاتو لطفا د خپل پټنوم داخل کړی: DocType: Workflow State,hand-up,لاس-up DocType: Blog Settings,Writers Introduction,ليکوال سريزه DocType: Address,Phone,تيليفون -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,په داسې حال کې تېروتنه ارزونه دبرېښنا ليک خبرتیا {0}. لورينه وکړئ خپل د کېنډۍ ورکوی. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,په داسې حال کې تېروتنه ارزونه دبرېښنا ليک خبرتیا {0}. لورينه وکړئ خپل د کېنډۍ ورکوی. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,انتخاب لاسوند ډول یا رول ته پيل کړي. DocType: Contact,Passive,Passive DocType: Contact,Accounts Manager,حسابونه مدير +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,ستاسو اجوره لغوه. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,دوتنه انتخاب ډول DocType: Help Article,Knowledge Base Editor,پوهې بنسټ اېډېټر apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Page ونه موندل شو @@ -1847,6 +1849,7 @@ DocType: Property Setter,Property Type,د ملکیت ډول DocType: Workflow State,screenshot,پرده apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,یوازې د اداره کولای شي د يوې معياري راپور وژغوري. لطفا نوم بدلولی شی او وژغوري. DocType: System Settings,Background Workers,شاليد کارګرانو +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} سره meta څيز په ټکر کې DocType: Deleted Document,Data,د معلوماتو د apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,سند حالت apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},تاسو کړې {0} د {1} @@ -1871,7 +1874,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,انکړپټه ښودل کارن حلال apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,تاسو بايد غونډال کې شي او د سیستم د مدير رول ولري تر څو backups لاسرسی وي. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,پاتې -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,لطفا د ژغورلو ضميمه مخکې. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,لطفا د ژغورلو ضميمه مخکې. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),د ورزیاتولو {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},په تلواله موضوع ټاکل شوې ده {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype څخه نشي بدل شي {0} د {1} په قطار {2} @@ -1892,11 +1895,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ناستې apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,ناستې شروع ناکام apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ایمیل د {0} ته استول شوې وه او کاپي د {1} DocType: Workflow State,th,مه -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,لطفا څخه Setup> بريښناليک> بريښناليک حساب تشکیلاتو تلوالیزه بريښناليک حساب -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},د جوړولو لپاره یو نوی {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},د جوړولو لپاره یو نوی {0} DocType: Email Rule,Is Spam,آیا سپام apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},راپور {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},د پرانیستې {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},د پرانیستې {0} DocType: OAuth Client,Default Redirect URI,Default Redirect URI DocType: Email Alert,Recipients,اخیستونکو DocType: Workflow State,ok-sign,سمه ده-نښه @@ -1914,6 +1916,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,مرسته بیشتر ,Modules Setup,ماډل د Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ډول: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,ستاسو د ورکړې ناکام دی. DocType: Communication,Unshared,شویوغیرمشترکو DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ماډل و نه موندل شو @@ -1961,7 +1964,7 @@ DocType: Website Settings,Brand Image,دچاپی DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",د سر ګرځښت bar، پښۍ او لوګو Setup. DocType: Web Form Field,Max Value,Max ارزښت -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},د {0} په کچه د {1} {2} په قطار {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},د {0} په کچه د {1} {2} په قطار {3} DocType: Contact,All,ټول DocType: Email Queue,Recipient,دترلاسه کوونکي DocType: Communication,Has Attachment,لري ضميمه @@ -1978,7 +1981,8 @@ DocType: Workflow State,align-right,په همغاړیتوب-حق DocType: Auto Email Report,Email To,د ليک apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,دادوسیه خلاصه {0} خالي نه ده DocType: Page,Roles,رول -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ساحوي {0} selectable نه ده. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},تېروتنه: د ارزښت لپاره ورک {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ساحوي {0} selectable نه ده. DocType: System Settings,Session Expiry,د ناستې د پای DocType: Workflow State,ban-circle,ban-کړۍ DocType: Email Flag Queue,Unread,نوې @@ -1993,7 +1997,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,کارن افتراضیو apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,نوی جوړول DocType: Workflow State,chevron-down,chevron ښکته -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),ایمیل ته نه استول {0} (کش / معيوبو) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),ایمیل ته نه استول {0} (کش / معيوبو) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,کوچنې د اسعارو له کسر ارزښت apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,د موظف @@ -2004,12 +2008,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,له DocType: Website Theme,Google Font (Heading),د ګوګل Font (Heading) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,لومړی د يوې ډلې غوټه وټاکئ. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},موندل {0} د {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},موندل {0} د {1} DocType: OAuth Client,Implicit,ضمني DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",د دې DocType په وړاندې د اړیکو د پايملون (باید برخو کې، "حالت" ولري، "مضمون") DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",لپاره اجازه کوډ تر لاسه يو ځل د کارونکي رسي اجازه ورکوي، او همدارنګه د ناکامۍ ځوابونه URIs. په خاصه توګه د استراحت د endpoint بربنډ د مراجع ددفتروسایل له خوا.
د بيلګې په توګه http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,اجازه نه سپارلو وروسته د {0} د بدلون +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,اجازه نه سپارلو وروسته د {0} د بدلون DocType: Communication,Comment Type,پيغام ډول DocType: OAuth Client,OAuth Client,OAuth د مراجع apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,کارنان @@ -2024,7 +2028,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,چاڼ د معلوماتو د DocType: Auto Email Report,Filter Data,چاڼ د معلوماتو د apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,يو ته نښان ورزیات کړئ -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,لطفا یو دوتنې لومړۍ ضمیمه کړي. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,لطفا یو دوتنې لومړۍ ضمیمه کړي. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",يو شمېر غلطيو په نوم ټاکلو وو، لطفا د پازوال سره اړيکه نيسئ apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,راتلونکي ایمیل حساب صحيح نه apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2039,11 +2043,11 @@ DocType: Blog Post,Email Sent,برېښناليک لېږلو DocType: DocField,Ignore XSS Filter,XSS Filter له پامه apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,لرې apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox شاتړ امستنې -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,وليږئ لکه دبرېښنا ليک +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,وليږئ لکه دبرېښنا ليک DocType: Website Theme,Link Color,لینک رنګ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,کارن {0} نه نافعال شي کولای apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",ګرانو سیستم مدیر، -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ستاسو د هېواد +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ستاسو د هېواد DocType: Event,Sunday,یک شنبه apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,په بريښنا کتل DocType: Address Template,Template,کينډۍ @@ -2051,7 +2055,7 @@ DocType: Address,Delhi,ډیلي apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP امستنې apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,د تعديل apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,وی.دا پیسو ليدونکی امستنې -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) به نیمګړې کړې، ځکه max تورو اجازه ده {2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: '{1}' ({3}) به نیمګړې کړې، ځکه max تورو اجازه ده {2} DocType: OAuth Client,Resource Owner Password Credentials,خاوند د تېرنويې د باورلیک د سرچینو DocType: OAuth Client,Response Type,غبرګون ډول apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max کارنان @@ -2068,7 +2072,7 @@ DocType: DocField,Table,جدول DocType: File,File Size,د دوتنې کچه apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,تاسو باید د login دې فورمه وسپاري DocType: User,Background Image,شاليد انځور -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",د خپل هېواد، د وخت د زون او د اسعارو وټاکئ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",د خپل هېواد، د وخت د زون او د اسعارو وټاکئ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,ويديو apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,تر منځ د DocType: Async Task,Queued,له پيله @@ -2077,6 +2081,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,جوړول apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},باطلې Filter: {0} DocType: Email Account,no failed attempts,نه ناکامه هڅه +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,نه تلوالیزه پته کينډۍ وموندل. لطفا څخه Setup> د چاپونې او عالمه> پته کينډۍ يو نوی جوړ کړي. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,ددفتروسایل لاسرسی لپاره عمده DocType: OAuth Bearer Token,Access Token,د لاسرسي د نښې @@ -2094,8 +2099,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github نوم DocType: DocType,Image View,د انځور ښکاره کړی apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",ښکاري چې څه د راکړې ورکړې په ترڅ کې رامنځته شو. څرنګه چې موږ د تادیاتو د تاييد نه، وی.دا به په اتوماتيک ډول دغه مبلغ هغوفیس تاسو. که داسې ونه شی، لطفا موږ ته يو بريښناليک ته واستوي او د ارتباط تذکرو یادونه: {0}. -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",شامل سمبولونه، د شمېر او د مرکز لیکونه په پټنوم -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ساحه '{0}' ذکر په ګمرک ساحوي وروسته ورننويستل '{1}'، سره ليبل '{2}'، نه شته +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",شامل سمبولونه، د شمېر او د مرکز لیکونه په پټنوم +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ساحه '{0}' ذکر په ګمرک ساحوي وروسته ورننويستل '{1}'، سره ليبل '{2}'، نه شته DocType: Workflow State,signal,سيګنال DocType: DocType,Show Print First,خپرونه چاپ اول apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + له post وليکئ @@ -2126,14 +2131,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,د دوتنې '{0}' ونه موندل شو apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,برخه لرې کړئ DocType: User,Change Password,پټ نوم بدل کړی -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},باطلې برېښناليک: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,سلام! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},باطلې برېښناليک: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,سلام! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,دکمپاینونو پای کې باید د پیل څخه وروسته وي apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},تاسو د يو راپور تر لاسه اجازه نه لرۍ: {0} +DocType: System Settings,Apply Strict User Permissions,سخت کارن حلال Apply DocType: DocField,Allow Bulk Edit,د حجم سمول اجازه DocType: DocField,Allow Bulk Edit,د حجم سمول اجازه DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ژور لټون +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ژور لټون apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,د تېرنويې د بیرته جوړولو د لارښوونو ته خپل ایمیل استول شوي دي apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",0 د ليول لپاره د سند په کچه پرېښلې، \ د ساحوي کچه پرېښلې لوړې کچې ده. @@ -2152,16 +2158,15 @@ DocType: Web Page,Sidebar and Comments,د پټې او تبصره apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",کله چې تاسو پرچاپیریال سره يو سند وروسته لغوه کړه او د ژغورلو دا، به د يو نوي شمېر چې د زاړه شمېر کې نسخه تر لاسه کړي. DocType: Stripe Settings,Publishable Key,خپرولو کلیدي DocType: Stripe Settings,Publishable Key,خپرولو کلیدي -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} کال (ص) د وړاندې DocType: Workflow State,circle-arrow-left,دایره-غشی-پاتې apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis زیرمه پالنګر ونه چلول. لطفا د مدیر / Tech ملاتړ سره اړیکه apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,د ګوند نوم -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,یو نوی ریکارډ د کمکیانو لپاره +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,یو نوی ریکارډ د کمکیانو لپاره apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,پلټي apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,پلټي DocType: Currency,Fraction,کسر DocType: LDAP Settings,LDAP First Name Field,LDAP لومړی نوم ساحوي -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,له موجوده attachments وټاکئ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,له موجوده attachments وټاکئ DocType: Custom Field,Field Description,ساحوي Description apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,له لارې د خپلسرو نوم نه apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ايميل @@ -2207,11 +2212,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,پيژندنه: DocType: Custom Field,Permission Level,د اجازې د ليول DocType: User,Send Notifications for Transactions I Follow,د معاملې زه تعقیب د خبرتیا وليږئ -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جوړ نشي سپارل، لغوه، پرته نوشتن راولی +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جوړ نشي سپارل، لغوه، پرته نوشتن راولی apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,آيا تاسو په ډاډمنه توګه غواړئ چې په ضمیمه کی ړنګ کړئ؟ -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","نه delete کولای شي او يا لغوه کړي ځکه {0} د {1} سره تړاو دی {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

نه پایلې موندل شول '

" -apps/frappe/frappe/__init__.py +1063,Thank you,مننه +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","نه delete کولای شي او يا لغوه کړي ځکه {0} د {1} سره تړاو دی {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,مننه apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ژغورل DocType: Print Settings,Print Style Preview,دچاپ Style د مخکتنې apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2223,10 +2227,10 @@ DocType: DocField,In List View,په لست کی View DocType: Email Account,Use TLS,ایس استعمال apps/frappe/frappe/email/smtp.py +24,Invalid login or password,د ننوتو ناسم نوم يا پاسورډ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Add د ګمرک د فارمونو جاوا. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR نه +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR نه ,Role Permissions Manager,رول حلال مدير apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,د نوي چاپ شکل نوم -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,روښانه ضميمه +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,روښانه ضميمه apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,اجباري: ,User Permissions Manager,کارن حلال مدير DocType: Property Setter,New value to be set,نوی ارزښت جوړ شي @@ -2256,26 +2260,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ور apps/frappe/frappe/config/website.py +47,Categorize blog posts.,بلاګ ليکنې کتګوری. DocType: Workflow State,Time,وخت DocType: DocField,Attach,ضمیمه -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} نه یو باوري fieldname بیلګه ده. دا باید د {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} نه یو باوري fieldname بیلګه ده. دا باید د {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,وليږئ Feedback غوښتنه هلته یوازې که دی لږ تر لږه يو د اړیکو د سند لپاره موجود دی. DocType: Custom Role,Permission Rules,د اجازې د اصول DocType: GSuite Settings,GSuite Settings,GSuite امستنې DocType: Address,Links,دویب -apps/frappe/frappe/model/base_document.py +428,Value missing for,ارزښت د ورک +apps/frappe/frappe/model/base_document.py +427,Value missing for,ارزښت د ورک apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Add د ماشومانو د -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} د {1}: وسپارل دثبت ړنګ نه شي. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} د {1}: وسپارل دثبت ړنګ نه شي. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,شاتړ اندازه DocType: GSuite Templates,Template Name,کينډۍ نوم -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,د سند د نوي ډول +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,د سند د نوي ډول DocType: Custom DocPerm,Read,ادامه DocType: Role Permission for Page and Report,Role Permission for Page and Report,د Page او راپور رول د اجازې د apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,سره برابر ارزښت apps/frappe/frappe/www/update-password.html +14,Old Password,زوړ پټ نوم -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},ليکنې له خوا د {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},ليکنې له خوا د {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",ته بڼه ستنې، په دپوښتنی کالم لیبلونه ورکړي. DocType: Has Domain,Has Domain,لري ډومېن apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,مونږ سره حساب نه لري؟ ګډون کول -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: جوړ نشي دمکپاین راولی که Submittable نه +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: جوړ نشي دمکپاین راولی که Submittable نه DocType: Address,Bihar,په بیهار apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,سمول رول حلال DocType: Communication,Link DocType,لینک DocType @@ -2374,7 +2378,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,لطفا باوري کړي چې ستاسو د عکس وښاياست لري يو بريښناليک پته apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,تاسو په دې فورم unsaved بدلونونه لري. لطفا د ژغورلو مخکې تاسو ته دوام ورکړي. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,د {0} باید یو انتخاب وي Default +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,د {0} باید یو انتخاب وي Default DocType: Tag Doc Category,Tag Doc Category,Tag Doc کټه ګورۍ DocType: User,User Image,کارن د انځور apps/frappe/frappe/email/queue.py +289,Emails are muted,برېښناليک دي سلبول @@ -2407,7 +2411,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,بل د ک DocType: Workflow State,ok,ښه DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,دغه ارزښتونه به په معاملو په اتوماتيک ډول تازه شي او به هم ګټور ته په دې اړه د کارونکي پر معاملو پکې دغو ارزښتونو پرېښلې محدود وي. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,خپرونکی -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** ناکام شو: {0} د {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ناکام شو: {0} د {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,اجباري وټاکئ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,څريدل د ښارونو له apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,برېښناليک ته وليږدول شوه @@ -2419,7 +2423,7 @@ DocType: Async Task,Running,منډه apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,د بیرته پاسورډ apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,لطفا د ترفيع ته زیات {0} ګډون اضافه DocType: Workflow State,hand-left,لاس پاتې -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} د {1} نه شي بې سارې وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} د {1} نه شي بې سارې وي DocType: Email Account,Use SSL,ایس ایس استعمال DocType: Workflow State,play-circle,play-کړۍ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,چاپ شکل وټاکئ سمول @@ -2474,7 +2478,7 @@ DocType: DocField,No Copy,نه کاپي DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,سره LDAP ورتګ DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,که خاوند +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,که خاوند DocType: OAuth Authorization Code,Expiration time,له کاره وتنې وخت DocType: Web Page,Website Sidebar,وېب پاڼه د پټې DocType: Web Form,Show Sidebar,خپرونه د پټې @@ -2494,7 +2498,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},نه پیدا {0} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,پخپله نومونه او تخلصونه دي اسانه فکر. apps/frappe/frappe/config/website.py +93,Knowledge Base,پوهې بنسټ DocType: Workflow State,briefcase,لايک -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ارزښت نه شي بدل شي {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ارزښت نه شي بدل شي {0} DocType: Feedback Request,Is Manual,آیا لارښود DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",سبک د تڼۍ رنګ استازيتوب کوي: د برياليتوب - شنه، خطر کې - سره، Inverse - تور، Primary - Dark نیلي، پيژندنه - رڼا نیلي، خبرداری - نارنجي apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,هيڅ راپور بار. لطفا ګټه نه خوری-راپور / د [راپور نوم] د يو راپور کړي. @@ -2573,7 +2577,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,پرمختګ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,د رول له خوا apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ورک فیلډز apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,باطلې fieldname '{0} په autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,د لټون په يو لاسوند ډول +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,د لټون په يو لاسوند ډول apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,اجازه برخه کې هم د سپارلو وروسته د سمون وړ پاتې شي DocType: Custom DocPerm,Role and Level,رول او د ليول DocType: File,Thumbnail URL,بټنوک URL @@ -2590,19 +2594,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,نور مالومات DocType: Desktop Icon,Desktop Icon,د سرپاڼې انځورن -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ستاسو د پيسو په برياليتوب سره د منلو وړ +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ستاسو د پيسو په برياليتوب سره د منلو وړ apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,اوبخښه! تاسو اجازه نه لري د دې مخ د کتلو. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,نکته: ډبل کلیک حجری ته د سمولو DocType: Workflow State,bell,زنګ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,په بريښناليک خبرتیا کې تېروتنه apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,په بريښناليک خبرتیا کې تېروتنه apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,د دې سند سره شریک کړي +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> کارن حلال مدير apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} د {1} د پاڼی غوټه نه شي ځکه چې دا د ماشومان لري DocType: Communication,Info,پيژندنه -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Add ضميمه +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Add ضميمه DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,تاسو د خپل پيغام مننه -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,وليږئ ولولئ د رسيد +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,وليږئ ولولئ د رسيد DocType: Stripe Settings,Stripe Settings,یاتوره امستنې DocType: Stripe Settings,Stripe Settings,یاتوره امستنې DocType: Dropbox Settings,Dropbox Setup via Site Config,وېبپاڼه جوړول Useragent له لارې Dropbox Setup @@ -2669,6 +2674,7 @@ DocType: DocType,Web View,ويب کتل apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,ګواښنه: دا چاپ شکل په زاړه ډوله دی او نه د API له لارې تولید شي. DocType: DocField,Print Width,چاپ پلنوالي ,Setup Wizard,Setup اسانګر +DocType: Address,GST State Number,GST د بهرنیو چارو شمیره DocType: User,Allow user to login only before this hour (0-24),اجازه د کارونکي یوازې د مخکې له دې ساعت login (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,دادوسیه خلاصه الزامی دی apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2697,7 +2703,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,د کوچنیو متن apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,د مدیر رسی {0} د {1} IP پته له لارې د {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,مساوی -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',د ډګر اقدام په ډېنامېک لینک 'ډول بايد د بل لینک ساحوي سره انتخابونو په توګه' DocType 'اشاره +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',د ډګر اقدام په ډېنامېک لینک 'ډول بايد د بل لینک ساحوي سره انتخابونو په توګه' DocType 'اشاره DocType: About Us Settings,Team Members Heading,د ډلې غړي د مدعي دی apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,باطلې CSV شکل apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,د ټاکلو په موخه د Backups شمېر @@ -2708,7 +2714,7 @@ DocType: Contact,Contact,تماس DocType: User,Third Party Authentication,دریم ګوند اعتبار DocType: Website Settings,Banner is above the Top Menu Bar.,بیرغ د غوره Menu Bar څخه پورته وي. DocType: Razorpay Settings,API Secret,API پټې -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,د صادراتو د راپور: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,د صادراتو د راپور: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} د {1} نه شته DocType: Email Account,Port,بندر DocType: Print Format,Arial,Arial @@ -2731,7 +2737,7 @@ DocType: Kanban Board Column,Column Name,کالم نوم DocType: Language,Based On,پر بنسټ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Default د کمکیانو لپاره apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,وګورئ Frappe سرور URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} د {1} نه په زیرمه شي +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} د {1} نه په زیرمه شي DocType: Communication,Email Account,Email اکانټ DocType: Workflow State,Download,دانلود DocType: Blog Post,Blog Intro,Blog سریزه @@ -2742,7 +2748,7 @@ DocType: Web Page,Insert Code,درج کوډ DocType: ToDo,Low,ټیټ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,تاسو کولای شی د سند څخه خوځنده جايدادونو له خوا Jinja templating په کارولو سره اضافه کړئ. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ناسم حد {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,لست يو لاسوند ډول +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,لست يو لاسوند ډول DocType: Event,Ref Type,دسرچینی یادونه ډول apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",که تاسو د نوي ریکارډونه د پورته، د "نوم" (ID) کالم خالي ووځي. DocType: Address,Chattisgarh,Chattisgarh @@ -2764,26 +2770,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,چاپ PDF په وليږئ DocType: Web Form,Amount,اندازه DocType: Workflow Transition,Allowed,اجازه -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,هلته يوازې يو يې په يوه فورمه زياتيدو لپاره وي +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,هلته يوازې يو يې په يوه فورمه زياتيدو لپاره وي apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},د دوتنې شکل لیکلو توان نلري {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,د تلواله امستنو بيازېرمل؟ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,باطلې لمړی مخ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,د ننوتو ناسم. بیا هڅه وکړه. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},غوراوي لپاره د لینک یا جدول ډول ډګر {0} په قطار اړتیا {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},غوراوي لپاره د لینک یا جدول ډول ډګر {0} په قطار اړتیا {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},غوراوي لپاره د لینک یا جدول ډول ډګر {0} په قطار اړتیا {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},غوراوي لپاره د لینک یا جدول ډول ډګر {0} په قطار اړتیا {1} DocType: Auto Email Report,Send only if there is any data,وليږئ يوازې که د هر ډول معلوماتو شتون لري apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,د بیرته چاڼګرونه -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: په کچه 0 اجازه بايد مخکې له لوړې کچې دي جوړ شي +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: په کچه 0 اجازه بايد مخکې له لوړې کچې دي جوړ شي apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},دندې له خوا تړل {0} DocType: Integration Request,Remote,Remote -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,محاسبه +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,محاسبه apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,مهرباني وکړئ لومړی انتخاب DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,تایید ستاسو دبرېښنا ليک apps/frappe/frappe/www/login.html +42,Or login with,او یا د login DocType: Error Snapshot,Locals,ځايي خلک apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},افهام له لارې د {0} د {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} په نظر ذکر تاسو د {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,د بيلګې په توګه / 4 (+ 434 55) یا = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,د بيلګې په توګه / 4 (+ 434 55) یا = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} ته اړتيا ده DocType: Integration Request,Integration Type,ادغام ډول DocType: Newsletter,Send Attachements,Attachements وليږئ @@ -2793,15 +2799,15 @@ DocType: DocField,Perm Level,Perm د ليول apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,پیښی په د نن جنتري DocType: Web Page,Web Page,ویب پاڼه DocType: Blog Category,Blogger,ویبالګ -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'په Global د لټون لپاره ډول نه اجازه {0} په قطار {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,محتویات بشپړفهرست -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},نېټه بايد په بڼه کې وي: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},نېټه بايد په بڼه کې وي: {0} DocType: Workflow,Don't Override Status,مه حالت نه واوړې apps/frappe/frappe/www/feedback.html +90,Please give a rating.,لطفا یوه درجه ورکړي. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback غوښتنه apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,د لټون شرايط -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,د لومړي کارن: تاسو +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,د لومړي کارن: تاسو apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,انتخاب یورتان DocType: Translation,Source Text,سرچینه متن apps/frappe/frappe/www/login.py +55,Missing parameters for login,لپاره د ننوتو ورک پارامترونو @@ -2823,7 +2829,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,د واردوونکو DocType: ToDo,Assigned By,ګمارل شوي By apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,تاسو کولای دتنظيمولو په فورمه کې کاروي ترڅو کروندو په کچه ټاکل. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,ستاسو د سيمې ټاکلو لپاره +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,ستاسو د سيمې ټاکلو لپاره DocType: Custom DocPerm,Level,د ليول DocType: Custom DocPerm,Report,راپور apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,اندازه بايد په پرتله 0 ډيره وي. @@ -2843,7 +2849,7 @@ DocType: Website Theme,Background,شاليد DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",د DocTypes ته کارن حلال درخواست کارول JSON لست. که تش، د ټولو سره تړاو DocTypes لپاره به وکارول شي کارن حلال درخواست. DocType: Report,Ref DocType,دسرچینی یادونه DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,لطفا یوه درجه اضافه -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: جوړ نشي تعدیل پرته لغوه کړه +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: جوړ نشي تعدیل پرته لغوه کړه apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,بشپړ Page DocType: DocType,Is Child Table,آیا د ماشومانو د جدول apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} بايد د يو شي د {1} @@ -2858,7 +2864,7 @@ DocType: Website Slideshow,This goes above the slideshow.,دا غوښتنليک apps/frappe/frappe/config/setup.py +260,Install Applications.,غوښتنلیکونه ولګوه. DocType: Contact,Last Name,کورنۍ نوم DocType: Event,Private,د خصوصي -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,د نن نه خبرتياوي +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,د نن نه خبرتياوي DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),د PDF په وليږئ بريښناليک چاپ ضم (وړانديز) DocType: Web Page,Left,کيڼ DocType: Event,All Day,ټوله ورځ @@ -2872,7 +2878,7 @@ DocType: Event,Send an email reminder in the morning,د سهار په یو بر DocType: Blog Post,Published On,بخش د DocType: Contact,Gender,د جندر apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,اجباري معلومات ورک شوي وي: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ساحوي '{0}' په توګه ځانګړې نه شي جوړ شي ځکه چې غیر ساری ارزښتونو لري +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ساحوي '{0}' په توګه ځانګړې نه شي جوړ شي ځکه چې غیر ساری ارزښتونو لري apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,يوازې 200 ارائش او په يوه غوښتنه اجازه DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,ماخذ ډول @@ -2885,7 +2891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,خبرداری-نښه DocType: Workflow State,User,کارن DocType: Website Settings,"Show title in browser window as ""Prefix - title""",خپرونه د سرليک په لټونګر په توګه کړکۍ »مختاړی - لقب" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,د متن په لاسوند ډول +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,د متن په لاسوند ډول apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,چلول ازموینې apps/frappe/frappe/handler.py +91,Logged Out,غونډال کې له جملې څخه apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,نور ... @@ -2911,13 +2917,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,اوس مهال پېژنڅېر ه DocType: DocField,Default,default apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} زياته کړه -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',لپاره د لټون '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',لپاره د لټون '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,لطفا د دې رپوټ په لومړي سر وژغوري apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ګډون کړه apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,نه په DocType: Workflow State,star,ستوري -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ارزښتونو له خوا commas جلا -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},د ډول د اسعارو Max سور دی 100px په قطار {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ارزښتونو له خوا commas جلا +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},د ډول د اسعارو Max سور دی 100px په قطار {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},لطفا د خپل نظریات شریک {0} apps/frappe/frappe/config/website.py +13,Content web page.,منځپانګه ګورت پاڼه د. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,یو نوی رول ورزیات کړئ @@ -2936,7 +2942,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,يو د اعتبار وړ LDAP کارونکي نه apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} نه یو باوري د بهرنیو چارو apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',لطفا بل طریقه ټاکي. وی.دا په اسعارو د راکړې ورکړې ملاتړ نه کوي '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,د لټون ډګر {0} د اعتبار وړ نه دی +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,د لټون ډګر {0} د اعتبار وړ نه دی DocType: Workflow State,ok-circle,سمه ده-کړۍ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',تاسو کولای شيان له خوا غوښتنه په مشتريان نارنج پیدا 'پیدا apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,اوبخښه! کارن بايد د خپل ریکارډ بشپړ لاسرسی ولري. @@ -2996,7 +3002,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,چاڼ ميتاکارډونه DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,د پلټلو لپاره څه ته لینک ګورت پاڼه نندارې ته شي که دغه فورمه د ګورت پاڼه لري. لینک لاره هم په اتوماتيک ډول د `` page_name` او parent_website_route` پر بنسټ د تولید شوی DocType: Feedback Request,Feedback Trigger,Feedback ماشه -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,لطفا جوړ {0} په لومړي +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,لطفا جوړ {0} په لومړي DocType: Unhandled Email,Message-id,پيغام-ID DocType: Patch Log,Patch,پچ DocType: Async Task,Failed,کې پاتې راغی diff --git a/frappe/translations/pt-BR.csv b/frappe/translations/pt-BR.csv index 6ac8390549..0950e0a3b5 100644 --- a/frappe/translations/pt-BR.csv +++ b/frappe/translations/pt-BR.csv @@ -8,7 +8,7 @@ DocType: Workflow State,pause,pausar DocType: User,Facebook Username,Usuário do Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Observação: Serão permitidas múltiplas sessões no caso de dispositivo móvel apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Não é possível enviar este email. Você excedeu o limite de envio de {0} emails para este mês. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Confirmar Permanentemente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Confirmar Permanentemente {0} ? DocType: Workflow,If Checked workflow status will not override status in list view,Uma vez selecionado o status do fluxo de trabalho não sobrescreverá o status do documentos na visualização da lista apps/frappe/frappe/client.py +280,Invalid file path: {0},Caminho de arquivo inválido: {0} DocType: Workflow State,eye-open,olho aberto @@ -24,7 +24,7 @@ apps/frappe/frappe/config/core.py +42,Logs,Logs DocType: Custom DocPerm,This role update User Permissions for a user,Este papel arualiza Permissões do Usuário para um usuário apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Mudar o nome {0} DocType: Workflow State,zoom-out,diminuir zoom -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Não é possível abrir {0} quando sua instância está aberta +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Não é possível abrir {0} quando sua instância está aberta apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} não pode ser vazio apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Com Razões apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Imagens @@ -34,19 +34,19 @@ apps/frappe/frappe/model/document.py +904,Beginning with,Começando com apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Modelo de importação de dados apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parente DocType: About Us Settings,"""Team Members"" or ""Management""","Membros da Equipe" ou "Gerenciamento" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Padrão para ""Verificar"" o tipo de campo deve ser '0' ou '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Padrão para ""Verificar"" o tipo de campo deve ser '0' ou '1'" DocType: Email Account,Enable Incoming,Ativar Entrada apps/frappe/frappe/www/login.html +22,Email Address,Endereço de Email DocType: Communication,Unread Notification Sent,Notificação de mensagem não lida enviada apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You need {0} role to export.,Exportação não é permitido . Você precisa da função {0} para exportar . DocType: Email Group,Email Group,Grupo de Emails -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Não Parecido +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Não Parecido apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (esconder , readonly , permissão etc )" DocType: Workflow State,lock,trancar apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Configurações da Página Fale Conosco. apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador logou-se DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opções de contato, como ""Perguntas sobre Vendas, Perguntas de suporte"", etc cada uma em uma nova linha ou separadas por vírgulas." -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,For ranges,Para faixas DocType: Workflow State,indent-right,indentar à direita apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +46,1 minute ago,1 minuto atrás @@ -83,11 +83,11 @@ DocType: OAuth Bearer Token,Refresh Token,Token de Atualização apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Newsletter has already been sent,O Boletim Informativo já foi enviado apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Por favor, especifique usuário" DocType: Email Unsubscribe,Email Unsubscribe,Cancelar inscrição de email -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,O primeiro usuário será o System Manager (você pode mudar isso mais tarde). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,O primeiro usuário será o System Manager (você pode mudar isso mais tarde). ,App Installer,Instalador de Aplicativos apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Carregando... DocType: Email Domain,Email Domain,Domínio de Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Não é possível definir Importação sem Criar +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Não é possível definir Importação sem Criar apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Arraste para classificar colunas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +2,Widths can be set in px or %.,Larguras podem ser definidas em px ou %. apps/frappe/frappe/public/js/frappe/form/print.js +101,Start,Iniciar @@ -96,7 +96,7 @@ DocType: Portal Settings,Standard Sidebar Menu,Menu Lateral Padrão apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Não é possível excluir pastas Inicial e Anexos apps/frappe/frappe/config/desk.py +19,Files,Arquivos apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,As permissões são aplicadas em usuários com base nas funções que lhe são atribuídas. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Você não tem permissão para enviar emails relacionados a este documento +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Você não tem permissão para enviar emails relacionados a este documento apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +238,Reqd,Solicitado apps/frappe/frappe/core/doctype/communication/email.py +263,Unable to find attachment {0},Incapaz de encontrar o anexo {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +226,Assign a permission level to the field.,Atribuir um nível de permissão para o campo. @@ -121,7 +121,6 @@ DocType: Workflow State,headphones,fones de ouvido DocType: Email Account,e.g. replies@yourcomany.com. All replies will come to this inbox.,eg replies@yourcomany.com. Todas as respostas virão a esta caixa de entrada. apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,É necessário email válido e nome DocType: DocType,Hide Heading,Ocultar Título -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documentos Relacionados DocType: Workflow State,remove-circle,remove-círculo DocType: Contact,Is Primary Contact,É o contato principal apps/frappe/frappe/config/website.py +68,Javascript to append to the head section of the page.,Javascript para acrescentar ao cabeçalho da página. @@ -132,7 +131,7 @@ apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special cha apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Atualizar muitas informações de uma só vez. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Erro: O documento foi modificado depois de aberto apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} deslogado: {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível definir atributo Enviar se não pode ser enviado +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível definir atributo Enviar se não pode ser enviado apps/frappe/frappe/desk/page/chat/chat.js +54,Message from {0},Mensagem do {0} DocType: Newsletter,Newsletter,Boletim Informativo DocType: Web Form,Button Help,Botão de Ajuda @@ -142,7 +141,7 @@ DocType: Address Template,System Manager,Administrador do Sistema DocType: Dropbox Settings,Allow Dropbox Access,Permitir Acesso Dropbox DocType: Workflow State,plus-sign,sinal de mais apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuração já está concluída -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} não está instalado +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} não está instalado DocType: Workflow State,Refresh,Atualizar apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nada para mostrar apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Gostou por @@ -158,14 +157,14 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start DocType: Customize Form,Is Table,É Tabela DocType: Website Settings,Set Banner from Image,Definir imagem como banner apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Uma nova conta foi criada para você em {0} -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Digite email do Destinatário(s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Digite email do Destinatário(s) apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Não é possível identificar aberto {0}. Tente outra coisa. apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +355,Your information has been submitted,Suas informações foram enviadas apps/frappe/frappe/core/doctype/user/user.py +292,User {0} cannot be deleted,O usuário {0} não pode ser excluído apps/frappe/frappe/public/js/frappe/request.js +113,Another transaction is blocking this one. Please try again in a few seconds.,"Outra transação está bloqueando essa. Por favor, tente novamente em alguns segundos." DocType: DocType,App,Aplicativo DocType: Communication,Attachment,Anexos -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nome do módulo ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nome do módulo ... DocType: Custom Field,Fieldname,Nome do Campo DocType: User,Tile,Telha apps/frappe/frappe/templates/includes/login/login.js +106,Verifying...,Verificando... @@ -193,12 +192,12 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,{0} from {1} to DocType: Web Form,Amount Based On Field,Total Baseado no Campo apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Usuário é obrigatória para Partilhar DocType: Web Form,Allow Incomplete Forms,Permitir Formulários Incompletos -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} deve ser definida primeiro +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} deve ser definida primeiro apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Use algumas palavras, evite frases comuns." apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se você estiver fazendo upload de novos registros, a coluna ""Naming Series"" torna-se obrigatória, se presente." apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType só pode ser renomeado pelo Administrador apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},mudou o valor de {0} -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold não pode ser no final da forma +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold não pode ser no final da forma DocType: Communication,Bounced,Bounced DocType: Deleted Document,Deleted Name,Nome Excluído apps/frappe/frappe/config/setup.py +14,System and Website Users,Usuários do sistema e do site @@ -209,7 +208,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/toolbar.js +234,"Your download is apps/frappe/frappe/www/feedback.html +23,Your rating: ,Seu rating: DocType: Print Settings,"Always add ""Draft"" Heading for printing draft documents","Sempre adicionar ""Rascunho"" no cabeçalho para impressão de documentos não enviados" DocType: About Us Settings,Website Manager,Administrador do Site -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,"O campo {0} na linha {1} não pode ser escondido e obrigatória , sem padrão" +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,"O campo {0} na linha {1} não pode ser escondido e obrigatória , sem padrão" DocType: Print Settings,Send document web view link in email,Enviar link no email para visualizar o documento online DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-moeda. Por exemplo "Centavo" DocType: Letter Head,Check this to make this the default letter head in all prints,Marque esta opção para tornar este o cabeçalho padrão em todas as impressões @@ -219,18 +218,18 @@ DocType: Version,Version,Versão DocType: User,Fill Screen,Preencher Tela apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Selecionar arquivo apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Editar via Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Tipo de documento ..., por exemplo: cliente" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Tipo de documento ..., por exemplo: cliente" DocType: Workflow State,barcode,Código de barras apps/frappe/frappe/config/setup.py +232,Add your own translations,Adicione suas próprias traduções DocType: About Us Team Member,About Us Team Member,Sobre Nós - Membros da Equipe apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.","As permissões são definidas em Funções e Tipos de Documentos (chamados Doctypes ) , definindo direitos como Ler, Escrever, Criar, Deletar, Enviar, Cancelar, Corrigir, Reportar, Importar, Exportar, Imprimir, Email e Definir Permissões de Usuário." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Além de função com base em regras de permissão, você pode aplicar permissões de usuário baseado em doctypes ." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Campo de imagem deve ser um nome de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Campo de imagem deve ser um nome de campo válido DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (nome) da entidade cuja propriedade é para ser definida DocType: Website Settings,Website Theme Image Link,Link da Imagem do Tema do Site DocType: Web Form,Sidebar Items,Itens da barra lateral apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostrar Permissões -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Campo Timeline deve ser um link ou link dinâmico +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Campo Timeline deve ser um link ou link dinâmico apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Intervalo entre datas DocType: About Us Settings,Introduce your company to the website visitor.,Apresente sua empresa para o visitante do site. apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Para @@ -248,11 +247,11 @@ DocType: Print Format,Style Settings,Configurações de Estilo DocType: Contact,Sales Manager,Gerente de Vendas apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Renomear DocType: Print Format,Format Data,Formato de dados -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Parecido +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Parecido apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Permitir que o usuário apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Confira quais os documentos são lidos por um Usuário -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,usar % como coringa -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domínio de email não configurado para esta conta, criar um?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,usar % como coringa +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domínio de email não configurado para esta conta, criar um?" DocType: User,Reset Password Key,Redefinição de senha chave DocType: Email Account,Enable Auto Reply,Ativar resposta automática DocType: Workflow State,zoom-in,aumentar zoom @@ -280,7 +279,7 @@ DocType: Property Setter,Property Setter overrides a standard DocType or Field p apps/frappe/frappe/core/doctype/user/user.py +689,Cannot Update: Incorrect / Expired Link.,Não é possível atualizar : Link incorreto / expirado. apps/frappe/frappe/utils/password_strength.py +58,Better add a few more letters or another word,Recomenda-se adicionar mais algumas letras ou colocar uma palavra adicional apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,O nome de usuário {0} já existe -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Não é possível definir importação como {1} se não é importável +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Não é possível definir importação como {1} se não é importável apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Há um erro no seu modelo de endereço {0} DocType: Workflow State,hdd,hdd DocType: ToDo,High,Alta @@ -302,11 +301,11 @@ DocType: Website Theme,Google Font (Text),Google Font (Texto) apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +31,{0} already unsubscribed for {1} {2},{0} já teve sua sua inscrição cancelada para {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +327,Did not remove,Não removido apps/frappe/frappe/desk/like.py +89,Liked,Gostou -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Visualização em Lista' não pode ser utilizado para o tipo {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Visualização em Lista' não pode ser utilizado para o tipo {0} na linha {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selecione a etiqueta após a qual você deseja inserir um novo campo. ,Document Share Report,Relatório de Documentos Compartilhados DocType: User,Last Login,Último Login -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nome do campo é necessário na linha {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nome do campo é necessário na linha {0} DocType: Custom Field,Adds a custom field to a DocType,Adiciona um campo personalizado para um Tipo de Documento (DocType) DocType: File,Is Home Folder,É Home Folder apps/frappe/frappe/core/page/user_permissions/user_permissions.js +140,Upload and Sync,Upload e Sincronizar @@ -318,13 +317,13 @@ apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log de erro apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,"{0} foi adicionado com sucesso ao grupo de emails," apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or public?,Tornar o(s) arquivo(s) privados ou públicos? DocType: DocShare,Everyone,Todos -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Apenas uma regra de permissão com a mesma função, nível e {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Apenas uma regra de permissão com a mesma função, nível e {1}" DocType: Email Queue,Add Unsubscribe Link,Adicionar link para cancelar inscrição DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Filtrar registros com base em permissões de usuário definidos para um usuário DocType: PayPal Settings,API Password,Senha da API apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not set for Custom Field,Fieldname não definida para campo personalizado apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Última atualização por -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Ocorreram erros durante o envio de email. Por favor, tente novamente." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Ocorreram erros durante o envio de email. Por favor, tente novamente." DocType: Portal Settings,Portal Settings,Configurações do Portal apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Você tem certeza que deseja relinkar a comunicação para {0}? DocType: Email Group Member,Email Group Member,Membro do Grupo de Emails @@ -339,32 +338,32 @@ DocType: Workflow State,play,jogar apps/frappe/frappe/core/page/permission_manager/permission_manager.js +408,Did not add,Não adicionado DocType: Contact Us Settings,Contact Us Settings,Configurações do Fale Conosco DocType: Workflow State,text-width,largura de texto -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Limite máximo de anexo para este recorde atingido. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Limite máximo de anexo para este recorde atingido. DocType: Email Alert,View Properties (via Customize Form),Exibir Propriedades (via Personalizar Formulário) DocType: Note Seen By,Note Seen By,Nota Vista por DocType: Feedback Trigger,Check Communication,Checar Comunicação apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Os relatórios são gerenciados diretamente pelo sistema. Nada a fazer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Por favor, verifique seu endereço de email" apps/frappe/frappe/model/document.py +903,none of,nenhum -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Envie-me uma Cópia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Envie-me uma Cópia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Publique as permissões de usuário apps/frappe/frappe/config/website.py +7,Web Site,Web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Itens marcados serão mostrado na área de trabalho -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} não pode ser ajustada para os modelos únicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} não pode ser ajustada para os modelos únicos apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Painel Kanban {0} não existe. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} está vendo atualmente este documento apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} atualizado(a) -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Relatório não pode ser ajustada para os modelos únicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Relatório não pode ser ajustada para os modelos únicos DocType: Email Account,Awaiting Password,Aguardando Senha DocType: Address,Address Line 1,Endereço apps/frappe/frappe/utils/data.py +441,Cent,Centavo apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Status para o fluxo de trabalho (por exemplo, rascunho, aprovado, cancelado)." DocType: Print Settings,Allow Print for Draft,Permitir impressão para rascunho -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Enviar este documento para confirmar +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Enviar este documento para confirmar DocType: Contact,Unsubscribed,Inscrição Cancelada apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Rating: apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Fazendo upload de arquivos, por favor aguarde alguns segundos." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Anexe sua Imagem +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Anexe sua Imagem apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valores das Linhas Mudaram DocType: Workflow State,Stop,Parar DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link para a página que você deseja abrir. Deixe em branco se você quiser torná-lo um pai grupo. @@ -373,7 +372,7 @@ DocType: Blogger,User ID of a Blogger,ID do usuário de um Blogger apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Não deve permanecer pelo menos um gestor de sistema DocType: Print Format,Align Labels to the Left,Alinhar etiquetas à esquerda DocType: Workflow State,circle-arrow-right,círculo de seta à direita -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Não é possível abrir instância , quando o seu {0} é aberto" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Não é possível abrir instância , quando o seu {0} é aberto" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Na fila para instalação DocType: Newsletter,Send Unsubscribe Link,Enviar link para cancelar inscrição DocType: Report,Script Report,Relatório Script @@ -433,7 +432,7 @@ apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +213,Import Fa DocType: Email Account,Auto Reply Message,Resposta Automática DocType: Contact,User ID,ID de Usuário DocType: File,Lft,LFT -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Abra um módulo ou ferramenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Abra um módulo ou ferramenta DocType: Communication,Delivery Status,Status da Entrega DocType: Module Def,App Name,Nome do App DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","Campo que representa o status da transação no fluxo de trabalho (se o campo não estiver presente, um novo campo oculto personalizado será criado)" @@ -441,7 +440,7 @@ apps/frappe/frappe/utils/oauth.py +194,Email not verified with {1},Email não ve DocType: Help Article,Knowledge Base Contributor,Colaborador da Base de Conhecimento DocType: Communication,Sent Read Receipt,Enviar Confirmação de Leitura DocType: Email Queue,Unsubscribe Method,Método de Cancelamento de Inscrição -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Selecionar Idiomas +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Selecionar Idiomas apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Parece que a chave API ou o segredo da API estão errados !!! DocType: File,Attached To Name,Anexado Para Nome apps/frappe/frappe/email/receive.py +95,Invalid User Name or Support Password. Please rectify and try again.,"Nome de usuário ou senha inválidos. Por favor, corrigir e tentar novamente." @@ -454,7 +453,7 @@ DocType: Customize Form,Enter Form Type,Digite o Tipo de Formulário apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Não há registros marcados. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Remover Campo DocType: User,Send Password Update Notification,Enviar notificação de alteração de senha -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Permitindo DocType , DocType . Tenha cuidado !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permitindo DocType , DocType . Tenha cuidado !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formatos personalizados para impressão, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Atualizado para uma Nova Versão DocType: Custom Field,Depends On,Depende de @@ -532,7 +531,7 @@ apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App { DocType: Communication,Feedback Request,Solicitação de Feedback apps/frappe/frappe/www/login.html +30,Sign in,Entrar DocType: System Settings,Backups,Backups -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ocultar Detalhes +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ocultar Detalhes DocType: Workflow State,Tasks,Tarefas DocType: Blog Settings,Blog Settings,Configurações do Blog DocType: Workflow State,bullhorn,megafone @@ -545,9 +544,8 @@ DocType: Website Settings,Hide Footer Signup,Esconder Link de Inscrição do Rod apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this document,cancelou este documento apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Gravar um arquivo Python na mesma pasta onde este é guardado e coluna de retorno e resultado. DocType: DocType,Sort Field,Ordenar por campo -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Edit Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,O campo {0} do tipo {1} não pode ser obrigatória -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","por exemplo. Se aplicar permissões do usuário está marcada para o relatório DocType mas não permissões de usuário são definidos para o relatório para um usuário, em seguida, todos os relatórios são mostrados para que o Usuário" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Edit Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,O campo {0} do tipo {1} não pode ser obrigatória DocType: System Settings,Session Expiry Mobile,Duração da Sessão Móvel apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,Pesquisar resultados para apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,Select To Download:,Selecione para Download: @@ -591,7 +589,7 @@ apps/frappe/frappe/website/doctype/contact_us_settings/contact_us_settings.js +3 DocType: User,Block Modules,Módulos de blocos apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Revertendo comprimento para {0} para '{1}' em '{2}'; Definir o comprimento como {3} irá causar truncamento de dados. DocType: Print Format,Custom CSS,CSS Personalizado -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorados: {0} para {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorados: {0} para {1} apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log de erro sobre eventos automatizados ( programador ) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Não é um valor CSV válido (arquivo CSV) DocType: Email Account,Default Incoming,Padrão de Entrada @@ -628,26 +626,27 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Docume apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s não é um formato válido de relatório. O formato do relatório deve ser um dos seguintes %s DocType: Communication,Chat,Conversa ou Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} aparece várias vezes em linhas {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} aparece várias vezes em linhas {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} de {1} para {2} na linha #{3} +DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),O número de colunas para um campo numa Grelha (O Total de Colunas em um grid deve ser inferior a 11) apps/frappe/frappe/www/login.html +93,Have an account? Login,Possui cadastro? Entre apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Formato de Impressão desconhecido: {0} DocType: Workflow State,arrow-down,seta para baixo apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Recolher -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Usuário não tem permissão para excluir {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Usuário não tem permissão para excluir {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Última atualização em DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Barra superior apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Configurações Globais: Os Usuários serão capazes de escolher apenas ícones selecionados apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Início / Teste pasta 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorar permissões de usuário se ausente -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Por favor, salve o documento antes de fazer upload." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Por favor, salve o documento antes de fazer upload." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Digite sua senha DocType: Dropbox Settings,Dropbox Access Secret,Segredo de Acesso Dropbox -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Dobre deve vir antes de uma quebra de secção +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Dobre deve vir antes de uma quebra de secção apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Última Alteração por DocType: Workflow State,hand-down,mão abaixo -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Não é possível definir Cancelar sem Submeter +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Não é possível definir Cancelar sem Submeter apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Ocorreram erros. DocType: DocType,Is Submittable,Pode ser Enviado apps/frappe/frappe/core/page/data_import_tool/exporter.py +265,Column Labels:,Rótulos de coluna: @@ -658,7 +657,7 @@ DocType: Custom Script,Script,Script apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Minhas Configurações DocType: Desktop Icon,Force Show,Forçar Exibição apps/frappe/frappe/auth.py +78,Invalid Request,Requisição Inválida -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Este formulário não tem nenhum campo a ser preenchido +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Este formulário não tem nenhum campo a ser preenchido DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Select target = "" _blank"" para abrir em uma nova página." apps/frappe/frappe/public/js/frappe/model/model.js +487,Permanently delete {0}?,Excluir Permanentemente {0} ? apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Não Definido @@ -667,7 +666,7 @@ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while y DocType: Email Queue,Email Queue,Fila de Emails apps/frappe/frappe/core/page/desktop/desktop.py +12,Add Employees to Manage Them,Adicione colaboradores para gerí-los apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,As funções podem ser definidas para os usuários através de sua página de Usuário. -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nenhum conjunto de permissões básico +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nenhum conjunto de permissões básico apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Link de download para o seu backup será enviado por email no seguinte endereço de email: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Corrigir" apps/frappe/frappe/desk/doctype/todo/todo_list.js +7,To Do,Atribuições @@ -676,7 +675,7 @@ DocType: File,Preview HTML,Pré-visualização de HTML apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Atribuído para {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtros salvos DocType: DocField,Percent,Por cento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Por favor, defina filtros" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Por favor, defina filtros" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Relacionado com DocType: Website Settings,Landing Page,Página de chegada apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nome @@ -691,10 +690,10 @@ apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and de apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} para {2} DocType: User,Login After,Login após DocType: Print Format,Monospace,Monospace -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precisão deve estar entre 1 e 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precisão deve estar entre 1 e 6 apps/frappe/frappe/patches/v6_19/comment_feed_communication.py +131,Assignment,Tarefa DocType: Workflow State,step-backward,voltar -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Defina teclas de acesso Dropbox em sua configuração local apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Excluir este registro para permitir o envio para esse endereço de email apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Somente os campos obrigatórios são necessários para novos registros. Você pode excluir colunas não-obrigatórias, se desejar." @@ -710,7 +709,7 @@ DocType: Custom DocPerm,Amend,Corrigir DocType: File,Is Attachments Folder,É Pasta de Anexos apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,É necessário um usuário válido. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Abrir Novamente -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Por favor, selecione um arquivo csv com dados válidos" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Por favor, selecione um arquivo csv com dados válidos" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} descompartilhou este documento com {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Transição Status do Documento de {0} para {1} não é permitido DocType: DocType,"Make ""name"" searchable in Global Search","Tornar ""nome"" pesquisável na Busca Global" @@ -720,7 +719,6 @@ apps/frappe/frappe/model/document.py +526,Record does not exist,Registro não ex apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Valor Original apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Usuário {0} está desativado apps/frappe/frappe/www/404.html +8,Page missing or moved,Página ausente ou mudou -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Editar propriedades de {0} apps/frappe/frappe/desk/form/load.py +46,Did not load,Não carregue DocType: Tag Category,Doctypes,Doctypes apps/frappe/frappe/desk/query_report.py +87,Query must be a SELECT,Consulta deve ser um SELECT @@ -746,7 +744,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +32,Incor apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,Padrão para Envio e Recebimento apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Importar .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID do Documento -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Campo de imagem deve ser do tipo Anexar Imagem +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Campo de imagem deve ser do tipo Anexar Imagem apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Os campos obrigatórios exigidos no {0} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?,Repor permissões para {0} ? apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Removed,Linhas Excluídas @@ -773,7 +771,7 @@ DocType: Customize Form,"Fields separated by comma (,) will be included in the " apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,Por favor Duplicar este site Tema para personalizar. apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Configurações para a Página Sobre Nós. DocType: Error Snapshot,Error Snapshot,Snapshot de Erro -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,em +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,em DocType: Email Alert,Value Change,Mudança de Valor DocType: Standard Reply,Standard Reply,Resposta Padrão apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Largura de entrada da caixa @@ -784,9 +782,9 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilize este campo para gerar o título apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importar Email do apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Convidar como Usuário -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Selecione os Anexos +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Selecione os Anexos apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Houveram erros. Por favor, reporte isso." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Carregando Relatório +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Carregando Relatório apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Anexar Arquivo apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,Notificação de Atualização de Senha apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +59,Assignment Complete,Atribuição Concluída @@ -800,7 +798,7 @@ DocType: Custom Field,Default Value,Valor padrão DocType: Workflow Document State,Update Field,Atualizar Campo apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensões regionais apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Deixar essa conversa -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opções não definida para o campo link {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opções não definida para o campo link {0} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Desmarcar Todos apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Você não pode desabilitar ""Somente leitura"" para o campo {0}" apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,Please do not change the template headings.,"Por favor, não alterar as posições do modelo." @@ -824,7 +822,7 @@ DocType: Authentication Log,Logout,Sair apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,As permissões em níveis mais elevados são permissões igualdade. Todos os campos têm um conjunto Nível de Permissão contra eles e as regras definidas em que as permissões se aplicam ao campo. Isso é útil no caso de você querer esconder ou fazer determinado campo somente leitura para certas funções. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Se estas instruções não forem úteis, dê sua sugestão no GitHub." apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Reportar erro -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Linha # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Linha # {0}: apps/frappe/frappe/auth.py +245,Login not allowed at this time,Entrada não permitida neste momento DocType: Async Task,Runtime,Runtime DocType: DocType,Permissions Settings,Configurações de Permissões @@ -840,7 +838,7 @@ DocType: DocField,Text,Texto apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Repostas padrões para perguntas comuns. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Padrão Envio DocType: Workflow State,volume-off,mudo -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Aprovado por {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Aprovado por {0} ,Download Backups,Download de Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Início / Teste pasta 1 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +75,"Do not update, but insert new records.","Não atualizar, mas inserir novos registros." @@ -895,11 +893,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should s DocType: Address,Accounts User,Usuário de Contas DocType: Web Page,HTML for header section. Optional,HTML para a seção de cabeçalho. opcional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Esta funcionalidade é nova e ainda está em fase experimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Máximo de {0} linhas permitido +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Máximo de {0} linhas permitido DocType: Email Unsubscribe,Global Unsubscribe,Mundial Unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Essa é uma senha muito comum. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Ver -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Selecione o Formato de Impressão +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selecione o Formato de Impressão DocType: Portal Settings,Portal Menu,Portal menu apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +356,Search for anything,Procurar por qualquer coisa DocType: DocField,Print Hide,Ocultar Impressão @@ -928,11 +926,11 @@ DocType: Error Snapshot,Snapshot View,Ver Snapshot apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Por favor, salve o Boletim Informativo antes de enviar" DocType: Patch Log,List of patches executed,Lista de correções executado apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} já teve sua inscrição removida -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Meio de comunicação +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Meio de comunicação DocType: Website Settings,Banner HTML,Faixa HTML apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Na fila para backup em até uma hora. apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrar App OAuth Cliente -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} não pode ser ""{2}"". Deve pertencer a ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} não pode ser ""{2}"". Deve pertencer a ""{3}""" apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Mostrar ou ocultar ícones no desktop apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Atualização de Senha DocType: Workflow State,trash,lixo @@ -966,11 +964,11 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.py +106,Please up apps/frappe/frappe/modules/utils.py +202,App not found,App não encontrado apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create a {0} against a child document: {1},Não é possível criar um {0} contra um documento filho: {1} apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Mensagens do chat e outras notificações. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Depois de inserir não pode ser definido como {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Depois de inserir não pode ser definido como {0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Configuração de email, por favor informe sua senha para:" DocType: Workflow State,hand-up,mão acima DocType: Blog Settings,Writers Introduction,Introdução dos Escritores -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Erro ao avaliar Email de Alerta {0}. Corrija seu modelo. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Erro ao avaliar Email de Alerta {0}. Corrija seu modelo. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Selecione o Tipo de Documento ou Função para começar. DocType: Contact,Passive,Sem movimento DocType: Contact,Accounts Manager,Gerente de Contas @@ -1002,7 +1000,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Mostrar Permissões de Usuário apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Você precisa estar conectado e ter permissão para ser capaz de acessar backups. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Remanescente -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Por favor, salve antes de anexar." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Por favor, salve antes de anexar." apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType não pode ser alterado a partir de {0} a {1} em linha {2} apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Fluxo de trabalho será iníciado após salvar. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Pode Compartilhar @@ -1011,7 +1009,7 @@ DocType: Workflow State,step-forward,prosseguir apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Atualizando... DocType: System Settings,System Settings,Configurações do Sistema apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Este email foi enviado para {0} e copiados para {1} -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Criar um(a) novo(a) {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Criar um(a) novo(a) {0} DocType: Workflow State,ok-sign,ok-sinal DocType: Newsletter,Create and Send Newsletters,Criar e enviar email marketing apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +309,From Date must be before To Date,A data inicial deve ser anterior a data final @@ -1043,13 +1041,13 @@ DocType: Feedback Trigger,Email Field,Campo do Email apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0} compartilhou este documento com {1} DocType: Website Settings,Brand Image,Imagem da Marca apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuração de barra de navegação do topo, rodapé, e logotipo." -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Por {0} a nível {1} em {2} na linha {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Por {0} a nível {1} em {2} na linha {3} DocType: Address,Sales User,Usuário de Vendas apps/frappe/frappe/config/setup.py +178,Drag and Drop tool to build and customize Print Formats.,Ferramenta de segure e arraste para construir e personalizar formatos de impressão. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +434,Set,Conjunto DocType: Workflow State,align-right,Alinhar à direita apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Pasta {0} não está vazio -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,O campo {0} não é selecionável. +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,O campo {0} não é selecionável. DocType: System Settings,Session Expiry,Duração da Sessão DocType: Bulk Update,Desk,Mesa apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Escreva uma consulta SELECT. Resultado nota não é paginada (todos os dados são enviados de uma só vez). @@ -1057,7 +1055,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Down,Ctrl + Seta para baixo apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common password.,Essa é uma das 10 senhas mais comuns.. DocType: Workflow State,chevron-down,divisa-abaixo -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email não enviado para {0} (inscrição cancelada / desativado) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email não enviado para {0} (inscrição cancelada / desativado) DocType: Currency,Smallest Currency Fraction Value,Menor valor fracionado de moeda apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Atribuir a DocType: Web Page,Enable Comments,Ativação de comentários @@ -1065,18 +1063,18 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Website Theme,Google Font (Heading),Fonte do Google (cabeçalho) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Selecione um nó de grupo primeiro. DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Anexar como a comunicação contra este DocType (deve ter campos, ""status"", ""Assunto"")" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Não é permitido alterar {0} após a apresentação +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Não é permitido alterar {0} após a apresentação apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Usuários DocType: Communication,Timeline field Name,Nome do campo da timeline apps/frappe/frappe/core/page/permission_manager/permission_manager.js +136,Loading,Carregando apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Facebook, Google, GitHub.","Enter para ativar o login via Facebook , Google, GitHub ." apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Inclua uma etiqueta -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Por favor, anexar um arquivo primeiro" +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Por favor, anexar um arquivo primeiro" DocType: Website Slideshow Item,Website Slideshow Item,Item do Slideshow do Site DocType: Portal Settings,Default Role at Time of Signup,Função padrão no momento da inscrição DocType: DocType,Title Case,Caixa do Título DocType: Blog Post,Email Sent,Email enviado -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Enviar como email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Enviar como email DocType: Website Theme,Link Color,Cor do link apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,O usuário {0} não pode ser desativado apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Caro Administrador de Sistemas," @@ -1090,7 +1088,7 @@ DocType: Workflow State,file,arquivo apps/frappe/frappe/www/login.html +108,Back to Login,Voltar para Login DocType: File,File Size,Tamanho do arquivo apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Você precisa estar logado para enviar este formulário -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Escolha o seu País, Fuso Horário e Moeda" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Escolha o seu País, Fuso Horário e Moeda" DocType: Async Task,Queued,Enfileiradas apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro inválido: {0} DocType: OAuth Bearer Token,Access Token,Token de Acesso @@ -1115,7 +1113,7 @@ DocType: Contact,Maintenance Manager,Gerente de Manutenção DocType: Website Theme,Top Bar Text Color,Cor do texto da barra superior apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Arquivo '{0}' não encontrado DocType: User,Change Password,Alterar a senha -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email inválido: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email inválido: {0} apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Evento final deve ser após o início apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Você não tem permissão para acessar um relatório sobre: {0} DocType: Blog Post,Blog Post,Mensagem do Blog @@ -1131,7 +1129,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18 DocType: Workflow State,circle-arrow-left,círculo de seta para a esquerda apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Servidor de cache Redis não está funcionando. Entre em contato com o Administrador de apoio / Tecnologia apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nome do Sujeito -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Criar um novo registro +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Criar um novo registro DocType: LDAP Settings,LDAP First Name Field,Campo Primeiro Nome do LDAP DocType: Custom Field,Field Description,Descrição do Campo apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nome não definido através Prompt @@ -1162,7 +1160,7 @@ apps/frappe/frappe/www/update-password.html +111,Please enter the password,Por f apps/frappe/frappe/www/printview.py +83,Not allowed to print cancelled documents,Não permitido para imprimir documentos cancelados apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: User,Send Notifications for Transactions I Follow,Enviar notificações para transações seguidas por mim -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível definir Enviar, Cancelar, Alterar sem Salvar" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível definir Enviar, Cancelar, Alterar sem Salvar" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Tem certeza de que deseja excluir o anexo? apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Salvando DocType: Print Settings,Print Style Preview,Estilo de visualização de impressão @@ -1171,7 +1169,7 @@ DocType: Website Settings,Website Theme,Tema do Site DocType: DocField,In List View,Mostrar na Visualização da Lista apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Login ou senha inválidos apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Adicionar javascript personalizado aos formulários. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Nº de série +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Nº de série ,Role Permissions Manager,Gestor de Permissões por Função ,User Permissions Manager,Gestor de Permissões de Usuário DocType: Email Alert,Days Before or After,Dias Antes ou Após @@ -1187,14 +1185,14 @@ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +12,Clear Error Logs DocType: Email Account,Notify if unreplied for (in mins),Informar se não for respondido em (minutos) apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Há 2 dias apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Categorizar posts. -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} não é padrão para nome de campo válido. Deve ser {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} não é padrão para nome de campo válido. Deve ser {{field_name}}. apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Adicionar sub-item -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Registro enviado não pode ser excluído. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Registro enviado não pode ser excluído. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Tamanho do backup apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Alinhar Valor -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posts de {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posts de {0} apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Não tem uma conta? Se inscreva -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível definir atributo Corrigir se não pode ser enviado +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível definir atributo Corrigir se não pode ser enviado apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Editar permissões de Função DocType: Communication,Link DocType,Relacionar ao DocType DocType: Social Login Keys,Social Login Keys,Login nas Redes Sociais @@ -1255,7 +1253,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +227,Permissi DocType: Contact Us Settings,Pincode,CEP apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure that there are no empty columns in the file.,"Por favor, certifique-se de que não existem colunas vazias no arquivo." apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Verifique se o seu perfil tem um endereço de email -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Padrão para {0} deve ser uma opção +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Padrão para {0} deve ser uma opção DocType: User,User Image,Imagem do Usuário apps/frappe/frappe/email/queue.py +289,Emails are muted,Emails são silenciados apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Seta para cima @@ -1272,13 +1270,13 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +17,Tree view not availabl DocType: Custom Field,Label Help,Ajuda sobre Etiquetas apps/frappe/frappe/utils/password_strength.py +122,Dates are often easy to guess.,Datas são frequentemente fáceis de adivinhar. DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Esses valores serão atualizados automaticamente em transações e também serão úteis para restringir as permissões para este usuário em operações que contenham esses valores. -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Falha: {0} para {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Falha: {0} para {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Selecionar Campos Obrigatórios apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Procurar DocType: Async Task,Running,Correndo apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Por favor, atualize para adicionar mais de {0} assinantes" DocType: Workflow State,hand-left,mão à esquerda -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} para {1} não pode ser exclusivo +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} para {1} não pode ser exclusivo DocType: Workflow State,play-circle,jogo-círculo apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Selecione um formato de impressão para editar DocType: Address,Shipping,Expedição @@ -1306,7 +1304,7 @@ DocType: ToDo,ToDo,Lista de Atribuições DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Logar com LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Se proprietário +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Se proprietário DocType: Web Page,Website Sidebar,Menu Lateral do Site DocType: Web Form,Show Sidebar,Mostrar menu lateral apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +142,Complete By,Finalizar até @@ -1316,7 +1314,7 @@ DocType: Website Settings,Top Bar Items,Itens da barra superior DocType: Print Settings,Print Settings,Configurações de Impressão DocType: DocType,Max Attachments,Máx. de Anexos apps/frappe/frappe/config/website.py +93,Knowledge Base,Base de Conhecimento -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Valor não pode ser alterado para {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Valor não pode ser alterado para {0} DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa a cor do botão: Sucesso - Verde, Perigo - Vermelho, Inverso - Preto, Primário - Azul Escuro, Informações - Azul Claro, Aviso - Laranja" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Não Relatório Loaded. Por favor, use-consulta do relatório / [Nome do relatório] para executar um relatório." DocType: Workflow Transition,Workflow Transition,Transição do Fluxo de Trabalho @@ -1335,6 +1333,7 @@ apps/frappe/frappe/permissions.py +397,Permission already set,Permissão já def apps/frappe/frappe/core/doctype/docshare/docshare.py +47,{0} shared this document with everyone,{0} compartilhou este documento com todos apps/frappe/frappe/desk/page/activity/activity_row.html +17,Commented on {0}: {1},Comentou sobre {0}: {1} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +248,These restrictions will apply for Document Types where 'Apply User Permissions' is checked for the permission rule and a field with this value is present.,Essas restrições serão aplicadas para tipos de documento onde "Aplicar permissões de usuário 'está marcada para a regra de permissão e um campo com esse valor está presente. +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Aplicar apps/frappe/frappe/integrations/utils.py +76,{0} Settings not found,{0} Configurações não encontradas DocType: Module Def,Module Def,Módulo Def apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Páginas na Desk (suportes do lugar) @@ -1363,8 +1362,8 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan DocType: Contact,More Information,Mais Informações DocType: Desktop Icon,Desktop Icon,Ícone da área de trabalho apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} não pode ser um nó de extremidade , uma vez que tem filhos" -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Anexar -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Enviar Confirmação de Leitura +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Anexar +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Enviar Confirmação de Leitura DocType: Stripe Settings,Stripe Settings,Configurações do Stripe DocType: Dropbox Settings,Dropbox Setup via Site Config,Configuração do Dropbox via Site Config apps/frappe/frappe/www/login.py +64,Invalid Login Token,Inválido símbolo de logon @@ -1428,7 +1427,7 @@ apps/frappe/frappe/config/setup.py +146,Add / Manage Email Accounts.,Adicionar / apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Obrigado pelo seu email apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrador acessada {0} em {1} através do endereço IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Igual -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Opções 'Dynamic Link' tipo de campo deve apontar para um outro campo Ligação com opções como ""TipoDoc '" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Opções 'Dynamic Link' tipo de campo deve apontar para um outro campo Ligação com opções como ""TipoDoc '" DocType: About Us Settings,Team Members Heading,Título da página Membros da Equipe apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Formato inválido de CSV DocType: DocField,Do not allow user to change after set the first time,Não permitir que o usuário altere após definir o primeiro tempo @@ -1436,7 +1435,7 @@ apps/frappe/frappe/public/js/frappe/upload.js +252,Private or Public?,Privada ou DocType: Contact,Contact,Contato DocType: Website Settings,Banner is above the Top Menu Bar.,A faixa está acima da barra de menu superior. DocType: Razorpay Settings,API Secret,Segredo da API -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Exportar Relatório: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Exportar Relatório: apps/frappe/frappe/config/core.py +12,Models (building blocks) of the Application,Modelos (blocos de construção) do aplicativo apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +105,Select Module,Selecione o Módulo apps/frappe/frappe/sessions.py +29,Cache Cleared,Cache Limpo @@ -1447,7 +1446,7 @@ DocType: Print Settings,PDF Settings,Configurações do PDF DocType: Kanban Board Column,Column Name,Nome da coluna DocType: Language,Based On,Baseado em apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Tornar padrão -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} para {1} não pode ser indexado +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} para {1} não pode ser indexado DocType: Workflow State,Download,Baixar DocType: Blog Post,Blog Intro,Introdução do Blog DocType: DocField,Display Depends On,Visualização depende @@ -1468,7 +1467,7 @@ DocType: Web Form,Amount,Total apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restaurar as configurações padrão? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Inválido Página Inicial apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Restaurar Filtros -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : permissão no nível 0 deve ser definida antes de definir os níveis mais altos +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : permissão no nível 0 deve ser definida antes de definir os níveis mais altos apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Atribuição fechado por {0} DocType: Integration Request,Remote,Remoto DocType: Integration Request,Remote,Remoto @@ -1477,15 +1476,15 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Emai apps/frappe/frappe/www/login.html +42,Or login with,Ou faça login com apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicada via {0} em {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} mencionou você em um comentário em {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por exemplo (55 + 434) / 4 ou = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,por exemplo (55 + 434) / 4 ou = Math.sin (Math.PI / 2) ... DocType: Social Login Keys,GitHub Client ID,ID do Cliente do Github DocType: DocField,Perm Level,Nível Permanente apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Eventos no calendário de hoje apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Ver Lista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},A data deve estar no formato : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},A data deve estar no formato : {0} apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Por favor, atribua um rating." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Solicitação de Feedback -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,O primeiro usuário: Você +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,O primeiro usuário: Você DocType: Translation,Source Text,Texto Original apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parâmetros que faltam para o login DocType: Workflow State,folder-open,abrir pasta @@ -1506,7 +1505,7 @@ DocType: Email Domain,domain name,nome de domínio DocType: Kanban Board Column,Order,Pedido DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Lista JSON de doctypes usados para aplicar permissões de usuário. Se vazio, todas as doctypes vinculados serão usados para aplicar permissões de usuário." DocType: Report,Ref DocType,DocType de Ref. -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Não é possível definir Amend sem Cancelar +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Não é possível definir Amend sem Cancelar apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Página completa DocType: DocType,Is Child Table,É Tabela Filho apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} deve fazer parte de {1} @@ -1524,7 +1523,7 @@ DocType: Workflow Action,Workflow Action,Ação do Fluxo de Trabalho DocType: Event,Send an email reminder in the morning,Enviar um email lembrete na parte da manhã DocType: Blog Post,Published On,Publicado no apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informações obrigatórias ausente: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"O campo '{0}' não pode ser definido como único, pois tem valores não-exclusivos" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"O campo '{0}' não pode ser definido como único, pois tem valores não-exclusivos" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,São permitidas somente 200 inserções por solicitação DocType: Event,Repeat On,Repetir em DocType: Communication,Marked As Spam,Marcado como spam @@ -1544,7 +1543,7 @@ DocType: Email Account,Notifications and bulk mails will be sent from this outgo apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Atualmente Exibindo apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} assinantes acrescentados apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Não Presente -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Largura máxima para o tipo de moeda é 100px na linha {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Largura máxima para o tipo de moeda é 100px na linha {0} apps/frappe/frappe/config/website.py +13,Content web page.,Conteúdo da Página Web apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Adicionar um Novo Papel DocType: Deleted Document,Deleted Document,Documento Excluído @@ -1552,7 +1551,7 @@ apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went w apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Extensões de script do lado do cliente em Javascript DocType: User,Email Settings,Configurações de Email apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} não é um status válido -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Campo de pesquisa {0} não é válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Campo de pesquisa {0} não é válido DocType: Workflow State,ok-circle,ok-círculo apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Você pode encontrar as coisas pedindo ""encontrar fulano em clientes""" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Desculpe! O usuário deve ter acesso completo ao seu próprio registro. @@ -1590,7 +1589,7 @@ apps/frappe/frappe/model/document.py +540,Please refresh to get the latest docum ,Desktop,Área de trabalho DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"O texto a ser exibido para o link da página da web, se este formulário tem uma página web. Um link será gerado automaticamente com base em ` page_name` e `parent_website_route`" DocType: Feedback Request,Feedback Trigger,Gatilho para Feedback -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Defina {0} primeiro +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Defina {0} primeiro DocType: Patch Log,Patch,Remendo apps/frappe/frappe/core/page/data_import_tool/importer.py +54,No data found,Não foram encontrados dados DocType: User,Background Style,Estilo do Fundo diff --git a/frappe/translations/pt.csv b/frappe/translations/pt.csv index fad556bdc6..9a81042424 100644 --- a/frappe/translations/pt.csv +++ b/frappe/translations/pt.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Nome de Utilizador do Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Nota: Serão permitidas sessões múltiplas no caso dos dispositivos móveis apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Caixa de entrada de e-mail para os utilizadores {users} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Não pode enviar este email. O limite de envio de de {0} emails para este mês foi ultrapassado. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Enviar Permanentemente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Enviar Permanentemente {0} ? DocType: Address,County,Município DocType: Workflow,If Checked workflow status will not override status in list view,Se o status do fluxo de trabalho verificado não irá substituir o status na exibição de lista apps/frappe/frappe/client.py +280,Invalid file path: {0},Caminho de ficheiro inválido: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Por fa apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,Organograma {0} DocType: User,User Emails,E-mails de utilizadores DocType: User,Username,Nome do utilizador -apps/frappe/frappe/model/base_document.py +581,Value too big,Valor muito grande +apps/frappe/frappe/model/base_document.py +580,Value too big,Valor muito grande DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Execute teste de script DocType: Contact,Department,Departamento @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Registos DocType: Custom DocPerm,This role update User Permissions for a user,Este papel atualiza as permissões para um utilizador apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Alterar o Nome de {0} DocType: Workflow State,zoom-out,zoom-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Não é possível abrir {0} quando a sua instância está aberta +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Não é possível abrir {0} quando a sua instância está aberta apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} não pode estar vazia. apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,com Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,imagens DocType: Communication,Reference Owner,Dono de Referência DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Menor unidade fração circulante (moeda). Para por exemplo, 1 cêntimo por USD e deve ser inserido como 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Linha {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Linha {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Por favor, dê um nome completo." apps/frappe/frappe/model/document.py +904,Beginning with,A começar com apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Modelo de Importação de dados @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Principal DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Se ativado, a força da senha será aplicada com base no valor Minimum Password Score. Um valor de 2 sendo médio forte e 4 sendo muito forte." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Se ativado, a força da senha será aplicada com base no valor Minimum Password Score. Um valor de 2 sendo médio forte e 4 sendo muito forte." DocType: About Us Settings,"""Team Members"" or ""Management""","""Membros da Equipa"" ou ""Gestão""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"O padrão para o tipo ""Verificar"" do campo deve ser '0' ou '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"O padrão para o tipo ""Verificar"" do campo deve ser '0' ou '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Ontem DocType: Contact,Designation,Designação DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,É Publicado campo DocType: Email Group,Email Group,Grupo de Email DocType: Note,Seen By,Visto por apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Adicionar Múltiplos -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Não Gostar +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Não Gostar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Defina o rótulo de exibição do campo apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valor incorreto: {0} deve ser {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Alterar as propriedades do campo (ocultar, só de leitur , permissão etc )" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Configura apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrador com Sessão Iniciada DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","As opções de contacto, como ""Consulta de Vendas, Consulta de Apoio"", etc., devem estar cada uma numa nova linha ou separadas por vírgulas." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Inserir +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Inserir apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Selecione {0} DocType: Print Settings,Classic,Clássico DocType: Desktop Icon,Color,Cor @@ -122,7 +122,7 @@ DocType: Translation,Translation,Tradução apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Sr. DocType: Custom Script,Client,Cliente -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Este formulário foi modificado depois de ter carregado ele +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Este formulário foi modificado depois de ter carregado ele DocType: User Permission for Page and Report,User Permission for Page and Report,Permissão de utilizadores para Páginas e Relatórios DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Se não for definido, a precisão da moeda dependerá do formato de número" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Motivo apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Por favor, especifique um utilizador" DocType: Email Unsubscribe,Email Unsubscribe,Anular Inscrição de Email DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Selecione uma imagem de aproximadamente 150px de largura com um fundo transparente para melhores resultados. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,O primeiro utilizador será o Gestor dos Systema (você pode mudar isso mais tarde). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,O primeiro utilizador será o Gestor dos Systema (você pode mudar isso mais tarde). ,App Installer,Instalador da App DocType: Workflow State,circle-arrow-up,círculo de seta para cima apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,A enviar... DocType: Email Domain,Email Domain,Domínio de e-mail DocType: Workflow State,italic,itálico apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Para Todos -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Não é possível Importar sem Criar +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Não é possível Importar sem Criar apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Evento e outros calendários. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Todos os campos são necessários para enviar o comentário. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Arraste para ordenar as colunas @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Menu lateral Padrão apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Não é possível eliminar as pastas Início e Anexos apps/frappe/frappe/config/desk.py +19,Files,Ficheiros apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,As permissões são aplicadas nos Utilizadores com base nas Funções atribuídas aos mesmos. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Você não tem permissão para enviar e-mails relacionados com este documento -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Por favor, selecione pelo menos coluna 1 a partir de {0} para classificar / grupo" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Você não tem permissão para enviar e-mails relacionados com este documento +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Por favor, selecione pelo menos coluna 1 a partir de {0} para classificar / grupo" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Marque esta opção se você estiver testando o seu pagamento usando o API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Você não tem permissão para excluir um site Tema padrão DocType: Feedback Trigger,Example,Exemplo @@ -206,7 +206,7 @@ DocType: Email Group,Total Subscribers,Total de Assinantes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Se uma função não tem acesso ao Nível 0, então não faz sentido ter aceso aos níveis mais altos." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Salvar como DocType: Communication,Seen,Visto -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Mostrar mais detalhes +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Mostrar mais detalhes DocType: System Settings,Run scheduled jobs only if checked,Execute as tarefas agendadas somente se estiverem selecionadas apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,só será mostrado se títulos de seção estão habilitados apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arquivo @@ -222,7 +222,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Mostrar Gráfico apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,E-mail válido e nome desejado DocType: DocType,Hide Heading,Ocultar Cabeçalho DocType: Address,Current,Atual -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documentos relacionados apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupos de DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,círculo-de-remoção @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filtro apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},O Nome de Campo {0} não pode ter caracteres especiais como {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Atualizar muitos valores de uma só vez. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Erro: O documento foi alterado depois de o ter aberto -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenhum modelo de endereço padrão encontrado. Crie um novo da Configuração> Impressão e Marcação> Modelo de endereço. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} desconectado: {1} DocType: Address,West Bengal,Bengala Ocidental -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível Atribuir o Envio se não poder ser Enviado +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Não é possível Atribuir o Envio se não poder ser Enviado DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrados por "{0}" DocType: Salutation,Administrator,Administrador @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Título do Blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Funções padrão não pode ser desativado DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"não pode usar sub-consulta, a fim de" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"não pode usar sub-consulta, a fim de" DocType: Web Form,Button Help,botão Ajuda DocType: Kanban Board Column,purple,roxa DocType: About Us Settings,Team Members,Membros da Equipe @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Obtenha seu apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Sua assinatura expirou em {0}. Para renovar, {1}." DocType: Workflow State,plus-sign,sinal-mais apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configuração já está completa -apps/frappe/frappe/__init__.py +890,App {0} is not installed,A app {0} não está instalada +apps/frappe/frappe/__init__.py +889,App {0} is not installed,A app {0} não está instalada DocType: Workflow State,Refresh,Recarregar DocType: Event,Public,Público apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nada a mostrar @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Curtido por apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Apoio de Email DocType: DocField,Print Hide If No Value,Ocultar na Impressão Se Não Houver Nenhum Valor DocType: Event,yellow,amarelo -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,É Publicado O campo deve ser um nome do campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,É Publicado O campo deve ser um nome do campo válido apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Envie anexos DocType: Block Module,Block Module,Bloquear Módulo apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Modelo de Exportação @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Foi criada uma nova conta foi criada para si em {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruções Emailed apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruções Emailed -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Inserir Destinatário(s) de Email +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Inserir Destinatário(s) de Email DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Bandeira Queue Email apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Não é possível identificar {0} aberto/a. Experimente algo diferente. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ID da Mensagem DocType: Property Setter,Field Name,Nome do Campo apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,O Google GSuite não está configurado. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ou -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nome do módulo... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continuar +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nome do módulo... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continuar DocType: Custom Field,Fieldname,Nome de Campo DocType: Workflow State,certificate,certificado DocType: User,Tile,Azulejo @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Mostrar todas as versões DocType: Workflow State,Print,Imprimir DocType: User,Restrict IP,Restringir IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,painel de controle apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Não é possível enviar e-mails a esta hora apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Pesquisar ou digite um comando DocType: Communication,Timeline Name,Nome Timeline @@ -329,7 +328,7 @@ DocType: Contact,Sales Master Manager,Gestor de Vendas Master apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Um Último Passo apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Nome do Tipo de Documento (DocType) que pretende que este campo seja vinculado. Por ex: Cliente DocType: User,Roles Assigned,Funções Atribuídas -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,procure ajuda +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,procure ajuda DocType: Top Bar Item,Parent Label,Rótulo Principal apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Sua consulta foi recebida. Nós responderemos de volta em breve. Se você tiver qualquer informação adicional, por favor responda a este e-mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,As permissões são automaticamente traduzidas para os Relatórios e Pesquisas Standard. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Editar Cabeçalho DocType: File,File URL,URL do Ficheiro DocType: Version,Table HTML,Tabela HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Não foram encontrados resultados para '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Adicionar Assinantes apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Próximos Eventos para Hoje DocType: Email Alert Recipient,Email By Document Field,Email por Campo de Documento @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,Montante baseado em campo apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Para Partilhar é obrigatório um utilizador DocType: DocField,Hidden,Oculto DocType: Web Form,Allow Incomplete Forms,Permitir formulários incompletos -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} deve ser definido primeiro +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} deve ser definido primeiro apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Use poucas palavras, evite frases comuns." DocType: Workflow State,plane,avião -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Seu pagamento falhou. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Se estiver a carregar novos registos, a ""Série de Atribuição de Nomes"" torna-se obrigatória, caso esteja presente." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Obter Alertas para Hoje +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Obter Alertas para Hoje apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,Só o Administrador é que pode alterar o nome de DocType apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},valor alterado de {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Por favor, verifique seu e-mail para verificação" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,A Dobra não pode ser no fim do formulário +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,A Dobra não pode ser no fim do formulário DocType: Communication,Bounced,Saltado DocType: Deleted Document,Deleted Name,Nome eliminado apps/frappe/frappe/config/setup.py +14,System and Website Users,Utilizadores Sistema e Website @@ -394,13 +393,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Documento em Fila de DocType: GSuite Templates,Destination ID,ID do destino DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,Nome do Link -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,O campo {0} na linha {1} não pode ser ocultado e ser obrigatório sem padrão +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,O campo {0} na linha {1} não pode ser ocultado e ser obrigatório sem padrão DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Senha inválida: DocType: Print Settings,Send document web view link in email,Enviar documento vista web link no e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Seus comentários para documento {0} é salvo com sucesso apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Anterior -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} linhas para {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-moeda. Para "Cent" por exemplo apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Selecione o arquivo carregado @@ -411,10 +410,11 @@ DocType: Desktop Icon,Link,Link apps/frappe/frappe/utils/file_manager.py +96,No file attached,Não foi anexado nenhum ficheiro DocType: Version,Version,versão DocType: User,Fill Screen,Preencher Ecrã -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Não é possível exibir este relatório árvore, por falta de dados. Muito provavelmente, ele está sendo filtrados devido a permissões." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de e-mail padrão de Configuração> Email> Conta de e-mail +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Não é possível exibir este relatório árvore, por falta de dados. Muito provavelmente, ele está sendo filtrados devido a permissões." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Selecionar Ficheiro apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Editar através de Carregar -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","tipo de documento..., por ex: cliente" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","tipo de documento..., por ex: cliente" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,A condição '{0}' é inválido DocType: Workflow State,barcode,código de barras apps/frappe/frappe/config/setup.py +232,Add your own translations,Adicione as suas próprias traduções @@ -424,7 +424,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Quarta-feira apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Para além da função com base nas Regras de permissão, pode aplicar Permissões de Utilizador com base em doctypes ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",Essas permissões serão aplicadas para todas as operações onde o registro permitido é vinculado. -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,O campo de imagem deve ter um nome de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,O campo de imagem deve ter um nome de campo válido DocType: OAuth Client,Token,Símbolo DocType: Property Setter,ID (name) of the entity whose property is to be set,A ID (nome) da entidade cuja propriedade está a ser definida apps/frappe/frappe/limits.py +82,"To renew, {0}.","Para renovar, {0}." @@ -433,7 +433,7 @@ DocType: Web Form,Sidebar Items,Itens Sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,O aplicativo {0} já está instalado DocType: Workflow State,exclamation-sign,sinal de exclamação apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Mostrar permissões -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,campo Timeline deve ser uma ligação ou vínculo dinâmico +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,campo Timeline deve ser uma ligação ou vínculo dinâmico apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Intervalo de datas apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Página {0} de {1} @@ -441,7 +441,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Aprese apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","A chave de criptografia é inválida, verifique site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,para DocType: Kanban Board Column,darkgrey,cinza escuro -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Bem-sucedida: {0} para {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Bem-sucedida: {0} para {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Não é possível alterar os detalhes do usuário na demo. Inscreva-se para uma nova conta em https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Por favor, duplique isto para efetuar alterações" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Geração de PDF falhou por causa de links de imagens quebradas @@ -458,24 +458,24 @@ DocType: DocField,Collapsible,Comprimíveis apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Salvo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Com o que você precisa de ajuda? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opções para selecionar. Cada opção numa nova linha. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Cancelar Permanentemente {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Cancelar Permanentemente {0} ? DocType: Workflow State,music,música DocType: Web Page,Settings,Configurações apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Por favor, especifique um doctype" DocType: Print Format,Style Settings,Settings -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Ordenar campo {0} deve ser um nome do campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Ordenar campo {0} deve ser um nome do campo válido apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mais DocType: Contact,Sales Manager,Gestor De Vendas apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Alterar Nome DocType: Print Format,Format Data,Formatar Dados -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Gosto +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Gosto DocType: Customize Form Field,Customize Form Field,Personalizar Campo de Formulário apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Permitir Utilizador DocType: OAuth Client,Grant Type,Tipo Grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Confira que documentos podem ser lidos por um Utilizador apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Não é permitido o aplicativo de listagem -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,usar% como curinga -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Domínio de e-mail não configurado para esta conta, criar um?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,usar% como curinga +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Domínio de e-mail não configurado para esta conta, criar um?" DocType: User,Reset Password Key,Redefinir Tecla de Senha DocType: Email Account,Enable Auto Reply,Ativar Resposta Automática apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Não Visto @@ -518,7 +518,7 @@ DocType: DocField,Set Only Once,Definir apenas uma vez DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Destinatário DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nome de utilizador {0} já existe -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Não é possível definir a importação pois {1} não pode ser importado +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Não é possível definir a importação pois {1} não pode ser importado apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Ocorreu um erro no seu Modelo de Endereços {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,Disco Rígido @@ -530,7 +530,7 @@ DocType: Communication,From Full Name,Do Nome Completo apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Você não tem acesso ao Relatório: {0} DocType: User,Send Welcome Email,Enviar e-mail de boas-vindas apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Carregar ficheiro CSV que contém todas as permissões de utilizador no mesmo formato de Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Remover Filtro +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Remover Filtro DocType: Address,Daman and Diu,Daman e Diu DocType: Address,Personal,Pessoal apps/frappe/frappe/config/setup.py +113,Bulk Rename,Alterar Nome em Massa @@ -560,11 +560,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","DocType padrão não pode ter o formato de impressão padrão, use Personalizar formulário" DocType: Report,Query,Consulta DocType: DocType,Sort Order,Ordem de classificação -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Na Vista de Lista' não é permitida para o tipo {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Na Vista de Lista' não é permitida para o tipo {0} na linha {1} DocType: Custom Field,Select the label after which you want to insert new field.,Selecione o rótulo após o qual você deseja inserir novo campo. ,Document Share Report,Relatório de Partilha de Documento DocType: User,Last Login,Última Sessão -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},É necessário colocar o Nome de Campo na linha {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},É necessário colocar o Nome de Campo na linha {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Coluna DocType: Custom Field,Adds a custom field to a DocType,Adiciona um campo personalizado a um DocType DocType: File,Is Home Folder,É o Ficheiro Principal @@ -589,7 +589,7 @@ DocType: File,Folder,Pasta DocType: DocField,Index,Índice DocType: Email Group,Newsletter Manager,Gestor de Newsletter apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opção 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Todas as publicações +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} para {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Registo de erro durante as solicitações. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} foi adicionada com sucesso ao Email Grupo. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -599,7 +599,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicador DocType: DocShare,Everyone,Todas as Pessoas DocType: Workflow State,backward,para trás -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Só é permitida uma regra para a mesma Função, Nível e {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Só é permitida uma regra para a mesma Função, Nível e {1}" DocType: Email Queue,Add Unsubscribe Link,Adicionar Unsubscribe link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ainda não há comentários. Iniciar uma nova discussão. DocType: Workflow State,share,ação @@ -618,7 +618,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,não apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Exibir Inscritos apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Sra. DocType: Website Theme,Background Color,Cor de Fundo -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Ocorreram erros durante o envio de e-mail. Por favor, tente novamente." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Ocorreram erros durante o envio de e-mail. Por favor, tente novamente." DocType: Portal Settings,Portal Settings,Definições do Portal DocType: Web Page,0 is highest,0 é maior apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Tem certeza de que quer vincular novamente essa comunicação para {0}? @@ -646,7 +646,7 @@ DocType: Contact Us Settings,Contact Us Settings,Definições de Contacte-nos apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Procurando ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Procurando ... DocType: Workflow State,text-width,texto de largura -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Foi atingido o Limite Máximo de Anexo para este registo. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Foi atingido o Limite Máximo de Anexo para este registo. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Os seguintes campos obrigatórios devem ser preenchidos:
DocType: Email Alert,View Properties (via Customize Form),Exibir propriedades (via Personalizar formulário) DocType: Note Seen By,Note Seen By,Nota Visto por @@ -656,17 +656,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,As comunicações do Criador de Relatórios são geridas diretamente pelo criador de relatório. Nada a fazer. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Por favor verifique seu endereço de email apps/frappe/frappe/model/document.py +903,none of,nenhum de -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Envie-me uma cópia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Envie-me uma cópia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Upload permissões de utilizador DocType: Dropbox Settings,App Secret Key,App chave secreta apps/frappe/frappe/config/website.py +7,Web Site,web site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Os itens verificados serão mostrados na área de trabalho -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} não pode ser definido para os modelos Únicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} não pode ser definido para os modelos Únicos apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} não existe. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} está neste momento a ver este documento DocType: ToDo,Assigned By Full Name,Atribuído por Nome completo apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} atualizado -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,O relatório não pode ser definido para os tipos Únicos +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,O relatório não pode ser definido para os tipos Únicos apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dias atrás DocType: Email Account,Awaiting Password,aguardando senha DocType: Address,Address Line 1,Endereço Linha 1 @@ -676,7 +676,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Membros para o fluxo de trabalho (por exemplo, o projecto, aprovado , Cancelado ) ." DocType: Print Settings,Allow Print for Draft,Permitir Impressão para Rascunho apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Definir Quantidade -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Submeter este documento para confirmar +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Submeter este documento para confirmar DocType: Contact,Unsubscribed,Inscrição cancelada apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Definir funções personalizadas para página e relatório apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Avaliação: @@ -684,7 +684,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Ferramenta de Importação de Dados DocType: Address,Dadra and Nagar Haveli,Dadra e Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"upload de arquivos, por favor aguarde alguns segundos." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Anexar a Sua Imagem +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Anexar a Sua Imagem apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valores linha alterada DocType: Workflow State,Stop,pare DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link para a página que deseja abrir. Deixe em branco se desejar torná-lo um grupo principal. @@ -699,7 +699,7 @@ DocType: Print Format,Align Labels to the Left,Alinhar Labels à esquerda DocType: Help Article,Expert,Especialista DocType: Workflow State,circle-arrow-right,círculo com seta à direita DocType: LDAP Settings,LDAP Server Url,Servidor LDAP Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Não é possível abrir a instância , quando o seu {0} está aberto" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Não é possível abrir a instância , quando o seu {0} está aberto" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Na fila para instalar DocType: Custom DocPerm,Custom DocPerm,DocPerm personalizado DocType: Newsletter,Send Unsubscribe Link,Enviar Cancelar subscrição link @@ -716,7 +716,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} removido DocType: Custom DocPerm,Apply User Permissions,Aplicar Permissões de Utilizador DocType: User,Modules HTML,HTML de Módulos -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuração> Gerente de Permissões de Usuário apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,São Necessários os Valores em Falta DocType: DocType,Other Settings,Outras Definições DocType: Social Login Keys,Frappe,Frappe @@ -734,7 +733,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nenhum documento foi selecionado apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Evento -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Em {0}, {1} escreveu:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Em {0}, {1} escreveu:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Não é possível eliminar o campo padrão. Se desejar pode ocultá-lo DocType: Top Bar Item,For top bar,Para a barra superior apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Não foi possível identificar {0} @@ -748,7 +747,7 @@ DocType: Role,Desk Access,Acesso ao Ambiente de Trabalho DocType: Workflow State,minus,menos apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Erro de servidor: Por favor, verifique os logs do servidor ou contate o suporte técnico." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Bem-vindo e-mail enviado -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Vamos preparar o sistema para a primeira utilização. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Vamos preparar o sistema para a primeira utilização. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Em Destaque apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Já Está Registado DocType: System Settings,Float Precision,Precisão da Vírgula Flutuante @@ -761,7 +760,7 @@ DocType: Web Form,Allow Print,permitir impressão apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nenhuma Aplicação Instalada apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marque o campo como Obrigatório DocType: Communication,Clicked,Clicado -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Sem permissão para '{0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Sem permissão para '{0} ' {1} DocType: User,Google User ID,ID de Utilizador Google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programado para enviar DocType: DocType,Track Seen,Registar Visualizações @@ -831,7 +830,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Esq DocType: User,Simultaneous Sessions,Sessões simultâneas DocType: OAuth Client,Client Credentials,Credenciais no cliente -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Abre um módulo ou uma ferramenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Abre um módulo ou uma ferramenta DocType: Communication,Delivery Status,Status de Entrega DocType: Module Def,App Name,Nome da App apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,tamanho máximo de arquivo permitido é {0} MB @@ -843,8 +842,8 @@ DocType: Feedback Request,Reference Communication,referência Comunicação DocType: Email Queue,Unsubscribe Method,Método unsubscribe DocType: GSuite Templates,Related DocType,DocType relacionado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edite para adicionar conteúdo -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,selecionar idiomas -apps/frappe/frappe/__init__.py +510,No permission for {0},Sem permissão para {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,selecionar idiomas +apps/frappe/frappe/__init__.py +509,No permission for {0},Sem permissão para {0} DocType: DocType,Advanced,Avançado apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Parece ser a chave API ou API segredo está errado !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referência: {0} {1} @@ -866,7 +865,7 @@ DocType: Customize Form,Enter Form Type,Insira o Tipo de Formulário apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Não há registos marcados. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Remover campo DocType: User,Send Password Update Notification,Enviar senha Notificação Actualização -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",Está a permitir DocType. Tenha cuidado ! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",Está a permitir DocType. Tenha cuidado ! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formatos Personalizados para Impressão, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Atualizado para a versão nova DocType: Custom Field,Depends On,Depende De @@ -960,6 +959,7 @@ apps/frappe/frappe/model/document.py +902,one of,um dos apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Selecione o arquivo para copiar apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Verificando um momento apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Mostrar as tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Se a opção Aplicar permissão de usuário estrito estiver marcada e a permissão de usuário for definida para um DocType para um usuário, todos os documentos onde o valor do link estiver em branco não serão exibidos para esse usuário" DocType: Address,Billing,Faturação DocType: Email Queue,Not Sent,Não Enviado DocType: Web Form,Actions,Ações @@ -989,6 +989,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,limpar apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Os eventos diários devem terminar no mesmo dia. DocType: Communication,User Tags,Etiquetas de utilizador apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Fetching Images .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuração> Usuário DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},A Transferir a App {0} DocType: Communication,Feedback Request,feedback Request @@ -1006,7 +1007,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Cópias de segurança apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Adicionar contato DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opcional: Sempre enviar para estes ids. Cada endereço de email em uma nova linha -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ocultar Dados +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ocultar Dados DocType: Workflow State,Tasks,tarefas DocType: Event,Tuesday,Terça-feira DocType: Blog Settings,Blog Settings,Definições do Blog @@ -1026,9 +1027,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Gravar um arquivo Python na mesma pasta onde esta é salvo e coluna de retorno e resultado. DocType: DocType,Sort Field,Ordenar campo DocType: Razorpay Settings,Razorpay Settings,Configurações Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Editar Filtro -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,O campo {0} do tipo {1} não pode ser obrigatório -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ex: Se estiver selecionado Aplicar Permissões de Utilizador para o Relatório DocType mas não estão definidas as Permissões de Utilizador para o Relatório dum Utilizador, então, todos os Relatórios serão exibidos a esse Utilizador" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Editar Filtro +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,O campo {0} do tipo {1} não pode ser obrigatório apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Adicione mais apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Esconder Gráfico DocType: System Settings,Session Expiry Mobile,Sessão de validade Móvel @@ -1043,6 +1043,7 @@ DocType: Communication,Delayed,Atrasado apps/frappe/frappe/config/setup.py +128,List of backups available for download,Lista de backups disponíveis para download apps/frappe/frappe/www/login.html +89,Sign up,inscrever-se DocType: Test Runner,Output,Saída +DocType: Email Alert,Set Property After Alert,Definir propriedade após o alerta apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Adicione campos aos formulários. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Parece que algo está errado com a configuração do Paypal deste site. DocType: File,rgt,rgt @@ -1050,6 +1051,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,folha DocType: Portal Menu Item,Portal Menu Item,Item do Menu do Portal DocType: User Email,Email ID,ID de Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Se Aplicar Permissões de Usuário for verificado para o Report DocType, mas não há Permissões de Usuário definidas para Relatório para um Usuário, todos os Relatórios são mostrados a esse Usuário" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Uma lista de recursos que o aplicativo cliente terá acesso a depois que o usuário permita.
por exemplo, do projeto" DocType: Translation,Translated Text,Texto traduzido DocType: Contact Us Settings,Query Options,Opções de Consulta @@ -1067,7 +1069,7 @@ DocType: Address,Contacts,Contactos DocType: System Settings,Setup Complete,Instalação concluída apps/frappe/frappe/config/setup.py +66,Report of all document shares,Relatório de todas as partilhas de documentos apps/frappe/frappe/www/update-password.html +18,New Password,Nova Senha -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Falta o filtro {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Falta o filtro {0} apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Desculpa! Você não pode excluir comentários gerados automaticamente DocType: Website Theme,Style using CSS,Estilo usando CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType de Referência @@ -1122,7 +1124,7 @@ DocType: User,Block Modules,Bloquear Módulos apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,O comprimento de reversão de {0} para '{1}' em '{2}'; Definir o comprimento como {3} irá causar truncamento de dados. DocType: Print Format,Custom CSS,CSS Personalizada apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Adicionar um comentário -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorados: {0} a {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorados: {0} a {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Registo de erro em eventos automáticos (programador). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Não é um Valor Separado por Vírgula válido (Ficheiro CSV) @@ -1131,7 +1133,7 @@ DocType: Email Account,Default Incoming,Entrada Padrão DocType: Workflow State,repeat,repetir DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.",Se esta função for desativada será removida em todos os utilizadores. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Ajuda na Pesquisa +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ajuda na Pesquisa apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Registrado, mas desativado" DocType: DocType,Hide Copy,Ocultar Copiar apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Desselecionar todas as funções @@ -1163,7 +1165,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,País apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Endereços DocType: Communication,Shared,Compartilhado -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Anexar Cópia do Documento +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Anexar Cópia do Documento DocType: Bulk Update,Field,Campo DocType: Communication,Received,Recebido DocType: Social Login Keys,Google Client ID,ID de Cliente Google @@ -1184,12 +1186,12 @@ DocType: Report,Query Report,Relatório de Consulta DocType: User,Set New Password,Definir nova senha DocType: User,Github User ID,ID de Utilizador GitHub apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Se o Tipo de Documento -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Não é possível excluir ou cancelar porque {0} {1} está relacionada com {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Não é possível excluir ou cancelar porque {0} {1} está relacionada com {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},App Desconhecido {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S não é um formato de relatório válido. formato do relatório deve \ um dos seguintes% s DocType: Communication,Chat,Conversar -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},O Nome de Campo {0} aparece várias vezes nas linhas {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},O Nome de Campo {0} aparece várias vezes nas linhas {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} a partir de {1} a {2} na fileira # {3} DocType: Communication,Expired,Expirado DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),O número de colunas para um campo numa Grelha (O Total de Colunas numa grelha deve ser inferior a 11) @@ -1199,30 +1201,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Ter uma conta? Entr apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Desconhecido Formato de Impressão: {0} DocType: Workflow State,arrow-down,seta-para-baixo apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Comprimir -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},O Utilizador não tem permissão para remover {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},O Utilizador não tem permissão para remover {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Última Atualização Em DocType: Help Article,Likes,Gostos DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Código de Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Criar e-mail de utilizador apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Criar e-mail de utilizador -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Não há permissões especificadas +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Não há permissões especificadas apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Definições Globais: Os utilizadores só serão capazes de escolher ícones verificados apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} não encontrado DocType: Custom Role,Custom Role,Papel personalizado apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Início/Pasta de Teste 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorar Permissões de Utilizador Se Faltar -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Por favor, guarde o documento antes o carregar." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Por favor, guarde o documento antes o carregar." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Insira a sua senha DocType: Dropbox Settings,Dropbox Access Secret,Segredo de Acesso à Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Adicionar Outro Comentário apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Editar DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Sobras do Boletim -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,A Dobra deve vir antes de uma Quebra de Seção +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,A Dobra deve vir antes de uma Quebra de Seção apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Última Modificação Por DocType: Workflow State,hand-down,mão-para-baixo DocType: Address,GST State,Estado GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Não é possível Cancelar sem Enviar +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Não é possível Cancelar sem Enviar DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Ocorreram erros DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI de redirecionamento Bound To Código Auth @@ -1241,7 +1243,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Minha DocType: Website Theme,Text Color,Cor do texto DocType: Desktop Icon,Force Show,Forçar Mostrar apps/frappe/frappe/auth.py +78,Invalid Request,Solicitação Inválida -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Esta forma não tem qualquer entrada +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Esta forma não tem qualquer entrada apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sessão de validade devem estar no formato {0} DocType: Website Sidebar Item,Group,Grupo DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Selecteer target = "" _blank "" te openen in een nieuwe pagina ." @@ -1250,7 +1252,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorar erros de codificação. DocType: Workflow State,wrench,chave inglesa apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Não Selecionado -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configuração> Usuário DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,Desativar Inscrição apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Relaxe enquanto o seu sistema está a ser inicializado. Pode demorar alguns minutos @@ -1261,7 +1262,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Adicionar Comentário DocType: DocField,Mandatory,Obrigatório apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Módulo para Exportar -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Sem permissões básicas definidas +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Sem permissões básicas definidas apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Sua assinatura irá expirar em {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},O link de transferência para a cópia de segurança será enviado por email para o seguinte endereço de email: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Significado de Enviar, Cancelar, Alterar" @@ -1274,11 +1275,11 @@ DocType: Desktop Icon,query-report,relatório-de-consulta apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Atribuído a {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtros salvos DocType: DocField,Percent,Por Cento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Por favor, defina os filtros" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Por favor, defina os filtros" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Ligado Com DocType: Workflow State,book,livro DocType: Website Settings,Landing Page,Página de Destino -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Erro no script personalizado +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Erro no script personalizado apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,Nome de {0} apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","A Solicitação de Importação está em Fila de Espera. Isto pode demorar alguns instantes, por favor, seja paciente." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Sem Permissões definidas para este critério. @@ -1290,7 +1291,7 @@ DocType: System Settings,Allow Login using Mobile Number,Permitir login usando o apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Você não tem permissão para aceder a este recurso. Entre em contato com seu gerente para obter acesso. DocType: Custom Field,Custom,Personalizado apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email de Alerta com base em vários critérios. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Posts arquivados em {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Posts arquivados em {0} DocType: Email Alert,Send alert if date matches this field's value,Enviar alerta se a data corresponde valor deste campo DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Remover {0} e excluir todos os dados? @@ -1299,9 +1300,8 @@ DocType: User,Login After,Iniciar Sessão Após DocType: Print Format,Monospace,Mono-espaçada DocType: Letter Head,Printing,Impressão DocType: Workflow State,thumbs-up,polegar para cima -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail e não configuração. Crie uma nova conta de e-mail de Configuração> E-mail> Conta de e-mail DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,A precisão deve estar entre 1 e 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,A precisão deve estar entre 1 e 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,e DocType: Error Snapshot,Frames,Frames @@ -1310,7 +1310,7 @@ DocType: About Us Team Member,Image Link,Link da Imagem DocType: Auto Email Report,Report Filters,Filtros de relatório apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,agora DocType: Workflow State,step-backward,passo para trás- -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{título_da_app} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{título_da_app} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Por favor, defina as teclas de acesso da Dropbox na config do seu site" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Eliminar este registo para permitir o envio para este endereço de email apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Só são os campos obrigatórios é que são necessários para efetuar novos registos. Se desejar pode eliminar as colunas não obrigatórias. @@ -1332,8 +1332,7 @@ DocType: File,Is Attachments Folder,É a Pasta Anexos apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Expandir todos apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Válido ID É necessário iniciar sessão. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Novamento aberto -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Você cancelou o pagamento -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Por favor, selecione um ficheiro csv com dados válidos" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Por favor, selecione um ficheiro csv com dados válidos" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} anulou partilha deste documento com {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Não é permitida a transição do Estado do Documento de {0} para {1} DocType: DocType,"Make ""name"" searchable in Global Search",Faça "nome" pesquisável em Pesquisa Global @@ -1346,7 +1345,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Val DocType: Help Category,Help Category,Ajuda Categoria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Utilizador {0} está desativado apps/frappe/frappe/www/404.html +8,Page missing or moved,Página em falta ou movida -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Editar {0} propriedades DocType: DocType,Route,Rota apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,configurações de gateway de pagamento Razorpay DocType: DocField,Name,Nome @@ -1354,8 +1352,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pesquisar os documentos apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Pesquisar os documentos DocType: OAuth Authorization Code,Valid,Válido -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Abrir Link -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Seu idioma +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Abrir Link +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Seu idioma apps/frappe/frappe/desk/form/load.py +46,Did not load,Não carregou apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Adicionar linha DocType: Tag Category,Doctypes,doctypes @@ -1370,7 +1368,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,É pedido fee DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Pode Escrever apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Alguns documentos , como as Faturas , não devem ser alterados assim que forem concluídos. A conclusão de tais documentos é denominada de Enviado. Pode restringir quais funções podem efetuar este Envio." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Você não tem permissão para exportar este relatório +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Você não tem permissão para exportar este relatório apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 item selecionado DocType: Newsletter,Test Email Address,Teste de Endereço de Email DocType: ToDo,Sender,Remetente @@ -1405,7 +1403,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,documento de identificação DocType: Print Settings,Letter,Carta -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,O campo de imagem deve ser do tipo Anexar Imagem +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,O campo de imagem deve ser do tipo Anexar Imagem DocType: DocField,Columns,Colunas DocType: Async Task,Succeeded,Sucedido apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Os campos obrigatórios exigidos em {0} @@ -1456,7 +1454,7 @@ DocType: DocField,Text Editor,Editor de Texto apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Sobre as definições para nós página. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Editar HTML Personalizado DocType: Error Snapshot,Error Snapshot,Erro em Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Em +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Em DocType: Email Alert,Value Change,Valor Variação DocType: Standard Reply,Standard Reply,Resposta padrão apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Largura da caixa de entrada @@ -1472,12 +1470,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilize este fieldname para gerar título apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importar Email de apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Convidar como Utilizador -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Selecione Anexos +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Selecione Anexos apps/frappe/frappe/model/naming.py +94, for {0},para {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Houve erros. Por favor, reporte isso." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Você não tem permissão para imprimir este documento +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Você não tem permissão para imprimir este documento apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Por favor, definir o valor de filtros na tabela Filtro de Relatório." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,A Carregar Relatório +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,A Carregar Relatório apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Sua assinatura expira hoje. DocType: Page,Standard,Padrão apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Anexar Ficheiro @@ -1507,7 +1505,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensões Regionais DocType: LDAP Settings,Base Distinguished Name (DN),Base de dados de nome distinto (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Sair desta conversa -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},As opções não estão definida para o campo de link {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},As opções não estão definida para o campo de link {0} DocType: Customize Form,"Must be of type ""Attach Image""",Deve ser do tipo "Anexar Imagem" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Desmarque todos apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Você pode não mudar 'Somente leitura' para o campo {0} @@ -1550,9 +1548,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Nota apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Reportar Erro apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,As condições de feedback não correspondem -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,campo Timeline deve ser um nome de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,campo Timeline deve ser um nome de campo válido DocType: Currency,Symbol,Símbolo -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Linha #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Linha #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nova senha enviada por email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Neste momento não é permitido iniciar sessão DocType: Email Account,Email Sync Option,Sincronizar e-mail Opção @@ -1574,7 +1572,7 @@ DocType: DocField,Text,Caixa de Texto apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Norma responde a perguntas comuns. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Envio Padrão DocType: Workflow State,volume-off,volume de off- -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Curtido por {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Curtido por {0} DocType: Footer Item,Footer Item,Item do Rodapé ,Download Backups,Transferir cópias de segurança apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Início/Pasta de Teste 1 @@ -1609,7 +1607,7 @@ DocType: Web Page,Text Align,Alinhar texto apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},O nome não pode conter caracteres especiais como {0} DocType: Contact Us Settings,Forward To Email Address,Encaminhar para o Email apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Mostrar todos os dados -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Campo Título deve ser um nome de campo válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Campo Título deve ser um nome de campo válido apps/frappe/frappe/config/core.py +7,Documents,Documentos DocType: Email Flag Queue,Is Completed,Está completo apps/frappe/frappe/www/me.html +22,Edit Profile,Editar Perfil @@ -1619,7 +1617,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Este campo aparecerá apenas se o nome do campo definido aqui tem valor ou as regras são verdadeiros (exemplos): myfield eval: doc.myfield == 'Meu Valor' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Hoje +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hoje apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Depois de ter definido isso, os utilizadores só poderão ser capazes de aceder a documentos (ex: Post de Blog) onde existir a ligação (ex: Blogger)." DocType: Error Log,Log of Scheduler Errors,Registo de Erros de Programador DocType: User,Bio,Biografia @@ -1643,6 +1641,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,Sendo 1 estrela a menor e 5 estrelas a mais alta classificação DocType: Event,Ref Name,Nome de Ref DocType: Web Page,Center,Centro +DocType: Email Alert,Value To Be Set,Valor a ser definido apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primeiro Nível DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representa os status permitidos em um documento e a função atribuída que pode alterar o status. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Recarregar Formulário @@ -1663,18 +1662,18 @@ DocType: DocType,Has Web View,Tem Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","O nome de DocType deve começar com uma letra e só pode ser composto por letras, números, espaços e traços inferior" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,Pedido de Integração -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Caro +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Caro DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Utilizador de Contas DocType: Web Page,HTML for header section. Optional,O HTML da seção de cabeçalho. Opcional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Este recurso é novo e ainda em fase experimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,É permitido um máximo de {0} linhas +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,É permitido um máximo de {0} linhas DocType: Email Unsubscribe,Global Unsubscribe,Anular Inscrição Global apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Esta é uma senha muito comum. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Visão DocType: Communication,Assigned,Atribuído DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Selecione Formato de Impressão +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selecione Formato de Impressão apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,padrões do teclado curtas são fáceis de adivinhar DocType: Portal Settings,Portal Menu,Menu do Portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Comprimento de {0} deve ser entre 1 e 1000 @@ -1713,7 +1712,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,O utilizador não pode pesquisar apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Formato de saída inválido DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplicar esta regra se o Utilizador for o Proprietário -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Será seu ID de login +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Será seu ID de login apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Criar Relatório DocType: Note,Notify users with a popup when they log in,Notificar os utilizadores com um pop-up quando eles entram apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} não existe, efetue uma nova seleção para unir" @@ -1732,17 +1731,18 @@ DocType: User Permission for Page and Report,Roles Permission,Roles permissão apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Atualizar DocType: Error Snapshot,Snapshot View,Snapshot Vista apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Por favor, guarde a Newsletter antes de a enviar" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},As opções devem ser um DocType válido para o campo {0} na linha {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ano (s) atras +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},As opções devem ser um DocType válido para o campo {0} na linha {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Editar Propriedades DocType: Patch Log,List of patches executed,Lista de correções executada apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} já cancelaram a inscrição -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Meio de Comunicação +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Meio de Comunicação DocType: Website Settings,Banner HTML,Banner de HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Selecione outra forma de pagamento. não Razorpay não suporta transações em moeda '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Na fila para da cópia de segurança. Pode demorar entre alguns minutos e uma hora. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registar OAuth da aplicação cliente -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} não pode ser ""{2}"". Deve ser um dos ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} não pode ser ""{2}"". Deve ser um dos ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ou {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Mostrar ou ocultar ícones do Ambiente de Trabalho apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Atualização da Senha @@ -1769,7 +1769,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Mostrar quebras de linha após Secções DocType: Blogger,Short Name,Nome Curto apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Página {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Você está selecionando Sincronizar Option como tudo, ele vai voltar a sincronizar todos os \ ler, bem como mensagens não lidas a partir do servidor. Isso também pode causar a duplicação \ de comunicação (e-mails)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Tamanho de Ficheiros @@ -1781,6 +1781,7 @@ DocType: Contact,Purchase Manager,Gestor de Compras DocType: Custom Script,Sample,Amostra apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Sem Categoria Etiquetas DocType: Event,Every Week,Semanais +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Conta de e-mail e não configuração. Crie uma nova conta de e-mail de Configuração> E-mail> Conta de e-mail apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Clique aqui para verificar a sua utilização ou atualizar para um plano superior DocType: Custom Field,Is Mandatory Field,É um Campo Obrigatório DocType: User,Website User,Utilizador de Website @@ -1803,16 +1804,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Menu de personalização da barra lateral DocType: Workflow State,pencil,lápis apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Mensagens de chat e outras notificações. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},O Inserir Depois não pode ser definido como {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},O Inserir Depois não pode ser definido como {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Partilhar {0} com apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Email Configuração de conta, digite sua senha para:" DocType: Workflow State,hand-up,mão-para-cima DocType: Blog Settings,Writers Introduction,Escritores Introdução DocType: Address,Phone,Telefone -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,"Erro ao avaliar o Alerta de Email {0}. Por favor, corrija seu modelo." +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,"Erro ao avaliar o Alerta de Email {0}. Por favor, corrija seu modelo." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Selecione tipo de documento ou papel para começar. DocType: Contact,Passive,Passivo DocType: Contact,Accounts Manager,Gestor de Contas +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Seu pagamento é cancelado. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Selecionar Tipo de Arquivo DocType: Help Article,Knowledge Base Editor,Conhecimento do Editor Base de Dados apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Página não encontrada @@ -1840,6 +1842,7 @@ DocType: Property Setter,Property Type,Tipo de Propriedade DocType: Workflow State,screenshot,tela apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Só o Administrador pode salvar um relatório padrão. Por favor, altere o nome e salve." DocType: System Settings,Background Workers,Trabalhos de segundo plano +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Nome do campo {0} em conflito com meta-objeto DocType: Deleted Document,Data,Dados apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Status do Documento apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Você fez {0} de {1} @@ -1864,7 +1867,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Mostar permissões de utilizador apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Você precisa estar conectado e ter permissões de ""System Manager Role"" para poder aceder a cópias de segurança." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Restante -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Por favor, guarde antes de anexar." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Por favor, guarde antes de anexar." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Adicionado {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},O tema padrão é definido em {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},O Tipo de Campo não pode ser alterado de {0} para {1} na linha {2} @@ -1884,11 +1887,10 @@ DocType: System Settings,System Settings,Configurações do sistema apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Falha ao iniciar a sessão apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Este e-mail foi enviado para {0} e copiados para {1} DocType: Workflow State,th,ª -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configure a Conta de e-mail padrão de Configuração> Email> Conta de e-mail -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Criar um novo {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Criar um novo {0} DocType: Email Rule,Is Spam,é Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Relatório {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Abrir {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Abrir {0} DocType: OAuth Client,Default Redirect URI,Padrão de redirecionamento URI DocType: Email Alert,Recipients,Destinatários DocType: Workflow State,ok-sign,sinal-ok @@ -1906,6 +1908,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,artigo de ajuda ,Modules Setup,Configuração de Módulos apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tipo: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,O seu pagamento falhou. DocType: Communication,Unshared,não compartilhado DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Módulo Não Encontrado @@ -1953,7 +1956,7 @@ DocType: Website Settings,Brand Image,Imagem de marca DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Configuração de topo barra de navegação do rodapé, e logotipo." DocType: Web Form Field,Max Value,Max Valor -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Para {0} no nível {1} em {2} na linha {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Para {0} no nível {1} em {2} na linha {3} DocType: Contact,All,Tudo DocType: Email Queue,Recipient,Destinatário DocType: Communication,Has Attachment,possui anexo @@ -1970,7 +1973,8 @@ DocType: Workflow State,align-right,alinhar-à-direita DocType: Auto Email Report,Email To,Email para apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,A Pasta {0} não está vazia DocType: Page,Roles,Funções -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Não é possível selecionar o campo {0}. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Erro: Falta valor para {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Não é possível selecionar o campo {0}. DocType: System Settings,Session Expiry,Caducidade sessão DocType: Workflow State,ban-circle,círculo de proibição DocType: Email Flag Queue,Unread,Não lida @@ -1985,7 +1989,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Padrões de Perfil apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Criar Novo DocType: Workflow State,chevron-down,chevron para baixo -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),O Email não foi enviado para {0} (inscrição anulada / desativado) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),O Email não foi enviado para {0} (inscrição anulada / desativado) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Menor Preço Moeda Fração apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Atribuir A @@ -1996,12 +2000,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,De DocType: Website Theme,Google Font (Heading),Tipo de Letra Google (Cabeçalho) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Selecione um nó de grupo em primeiro lugar. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Localizar {0} em {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Localizar {0} em {1} DocType: OAuth Client,Implicit,Implícito DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Anexa como comunicação neste DocType (deve ter campos, ""Estado"", ""Assunto"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs para receber o código de autorização uma vez que o utilizador permite o acesso, bem como respostas de falha. Normalmente, um terminal REST expostas pelo cliente App.
por exemplo, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Não é permitido alterar {0} após o seu envio +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Não é permitido alterar {0} após o seu envio DocType: Communication,Comment Type,Tipo de Comentário DocType: OAuth Client,OAuth Client,Cliente OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Utilizadores @@ -2016,7 +2020,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtrar dados DocType: Auto Email Report,Filter Data,Filtrar dados apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Adicionar etiqueta -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Por favor, anexe primeiro um ficheiro." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Por favor, anexe primeiro um ficheiro." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Houve alguns erros de definir o nome, por favor, entre em contato com o administrador" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,A conta de e-mail recebida não é correta apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2031,11 +2035,11 @@ DocType: Blog Post,Email Sent,Email Enviado DocType: DocField,Ignore XSS Filter,Ignorar Filtro XSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,removido apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,configurações de cópias de segurança para o Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Enviar como Email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Enviar como Email DocType: Website Theme,Link Color,Cor do Link apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,O utilizador {0} não pode ser desativado apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Caro Administrador de Sistema," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Seu país +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Seu país DocType: Event,Sunday,Domingo apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Em Grid View DocType: Address Template,Template,Modelo @@ -2043,7 +2047,7 @@ DocType: Address,Delhi,Délhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Configurações LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,A Alterar apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,configurações de gateway de pagamento PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vai ficar truncado, pois os caracteres máximos permitidos são {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vai ficar truncado, pois os caracteres máximos permitidos são {2}" DocType: OAuth Client,Resource Owner Password Credentials,De recursos do proprietário senha Credenciais DocType: OAuth Client,Response Type,Tipo de resposta apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Máx. de Utilizadores @@ -2060,7 +2064,7 @@ DocType: DocField,Table,Tabela DocType: File,File Size,Tamanho apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Você deve entrar para enviar este formulário DocType: User,Background Image,Imagem de Fundo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Escolha o seu país, fuso horário e moeda" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Escolha o seu país, fuso horário e moeda" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Entre DocType: Async Task,Queued,Em Fila @@ -2069,6 +2073,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Criar apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtro Inválido: {0} DocType: Email Account,no failed attempts,tentativas não falharam +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nenhum modelo de endereço padrão encontrado. Crie um novo da Configuração> Impressão e Marcação> Modelo de endereço. DocType: GSuite Settings,refresh_token,Refresh_token DocType: Dropbox Settings,App Access Key,App Chave de Acesso DocType: OAuth Bearer Token,Access Token,Símbolo de Acesso @@ -2086,8 +2091,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Utilizador GitHub DocType: DocType,Image View,Vista de Imagem apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Parece que algo deu errado durante a transação. Desde que não tenham confirmado o pagamento, Paypal vai reembolsá-lo automaticamente esse valor. Se isso não acontecer, por favor, envie-nos um e-mail e mencionar a ID de Correlação: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inclua símbolos, números e letras maiúsculas na senha" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","O campo Inserir Depois '{0}' mencionado no Campo Personalizado '{1}', com rótulo '{2}', não existe" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inclua símbolos, números e letras maiúsculas na senha" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","O campo Inserir Depois '{0}' mencionado no Campo Personalizado '{1}', com rótulo '{2}', não existe" DocType: Workflow State,signal,sinalizar DocType: DocType,Show Print First,Mostrar Primeira Impressão apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter para postar @@ -2118,14 +2123,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,O ficheiro '{0}' não foi encontrado apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Remover Seção DocType: User,Change Password,Alterar Senha -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email Inválido: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Olá! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email Inválido: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Olá! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,O término do evento deve ser após o início do mesmo apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Você não tem permissão para obter um relatório sobre: {0} +DocType: System Settings,Apply Strict User Permissions,Aplicar permissões de usuário estrito DocType: DocField,Allow Bulk Edit,Permitir edição em massa DocType: DocField,Allow Bulk Edit,Permitir edição em massa DocType: Blog Post,Blog Post,Post do Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Pesquisa Avançada +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Pesquisa Avançada apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,As instruções de redefinição de senha foram enviadas para o seu email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nível 0 é para permissões de nível de documento, \ níveis mais altos para permissões de nível de campo." @@ -2144,16 +2150,15 @@ DocType: Web Page,Sidebar and Comments,Sidebar e Comentários apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Quando você Alterar um documento depois de Cancelar e salvá-lo , ele irá obter um novo número que é uma versão do antigo número ." DocType: Stripe Settings,Publishable Key,Chave publicável DocType: Stripe Settings,Publishable Key,Chave publicável -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ano (s) atras DocType: Workflow State,circle-arrow-left,círculo com seta para a esquerda apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,O servidor de cache Redis não está a funcionar. Entre em contacto com o Administrador / Apoio Tecnológico apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nome da Parte -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Efetuar um novo registo +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Efetuar um novo registo apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Procurando apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Procurando DocType: Currency,Fraction,Fração DocType: LDAP Settings,LDAP First Name Field,LDAP Nome Campo -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Selecione a partir de anexos existentes +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Selecione a partir de anexos existentes DocType: Custom Field,Field Description,Descrição de Campo apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nome não definido através de Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Inbox @@ -2199,11 +2204,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Informações: DocType: Custom Field,Permission Level,Nível de Permissão DocType: User,Send Notifications for Transactions I Follow,Enviar Notificações para Transações Eu sigo -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível Enviar, Cancelar, Alterar sem Escrever" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Não é possível Enviar, Cancelar, Alterar sem Escrever" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Tem a certeza de que deseja eliminar o anexo? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Não é possível excluir ou cancelar porque {0} {1} está relacionada com {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Não foram encontrados resultados para '

-apps/frappe/frappe/__init__.py +1063,Thank you,Obrigado +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Não é possível excluir ou cancelar porque {0} {1} está relacionada com {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Obrigado apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,A guardar DocType: Print Settings,Print Style Preview,Pré-visualização de Estilo de Impressão apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2215,10 +2219,10 @@ DocType: DocField,In List View,Na Vista de Lista DocType: Email Account,Use TLS,Usar TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Login ou Senha Inválidos apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Adicione javascript personalizado aos formulários. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr n +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr n ,Role Permissions Manager,Permissões da Função de Gestor apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Nome do novo Formato de Impressão -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Limpar Anexo +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Limpar Anexo apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obrigatório: ,User Permissions Manager,Permissões de Gestor de utilizadores DocType: Property Setter,New value to be set,Novo valor a ser definido @@ -2248,26 +2252,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Há 2 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Categorizar posts de blog. DocType: Workflow State,Time,Tempo DocType: DocField,Attach,Anexar -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} não é um nome de campo padrão válido. Deverá ser {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} não é um nome de campo padrão válido. Deverá ser {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Enviar comentários Pedido somente se houver pelo menos uma comunicação está disponível para o documento. DocType: Custom Role,Permission Rules,Regras de Permissão DocType: GSuite Settings,GSuite Settings,Configurações GSuite DocType: Address,Links,Links -apps/frappe/frappe/model/base_document.py +428,Value missing for,Valor em falta para +apps/frappe/frappe/model/base_document.py +427,Value missing for,Valor em falta para apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Adicionar Subgrupo -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: O Registo Enviado não pode ser eliminado. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: O Registo Enviado não pode ser eliminado. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Tamanho da cópia de segurança DocType: GSuite Templates,Template Name,Nome do modelo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,novo tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,novo tipo de documento DocType: Custom DocPerm,Read,Ler DocType: Role Permission for Page and Report,Role Permission for Page and Report,Permissão papel para a página e Relatório apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,alinhar Valor apps/frappe/frappe/www/update-password.html +14,Old Password,Senha Antiga -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Posts publicados por {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Posts publicados por {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Para formatar colunas, dar rótulos de coluna na consulta." DocType: Has Domain,Has Domain,Tem domínio apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Não tem uma conta? inscrever-se -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível Alterar se não Enviar +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Não é possível Alterar se não Enviar DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Editar Permissões de Função DocType: Communication,Link DocType,Ligar DocType @@ -2366,7 +2370,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Por favor, verifique se o seu perfil tem um endereço de email" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Você tem alterações não salvas neste formulário. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,O padrão para {0} deve ser uma opção +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,O padrão para {0} deve ser uma opção DocType: Tag Doc Category,Tag Doc Category,Tag Categoria Doc DocType: User,User Image,Imagem do utilizador apps/frappe/frappe/email/queue.py +289,Emails are muted,Os emails estão sem som @@ -2399,7 +2403,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Próximas DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Esses valores serão atualizados automaticamente em transações e também será útil para restringir as permissões para este utilizador em operações que contenham esses valores. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Editor -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Falha: de {0} para {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Falha: de {0} para {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Selecione Obrigatório apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Pesquisar apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Emails Enviados @@ -2411,7 +2415,7 @@ DocType: Async Task,Running,A Correr apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Redefinir Senha apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Por favor, Atualize para adicionar mais de {0} assinantes" DocType: Workflow State,hand-left,mão-esquerda -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,O Tipo de Campo {0} de {1} não pode ser único +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,O Tipo de Campo {0} de {1} não pode ser único DocType: Email Account,Use SSL,Usar SSL DocType: Workflow State,play-circle,círculo-de-reprodução apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Selecione Print Format para Editar @@ -2466,7 +2470,7 @@ DocType: DocField,No Copy,Nenhuma Cópia DocType: Workflow State,qrcode,códigoqr apps/frappe/frappe/www/login.html +34,Login with LDAP,Entrar com LDAP DocType: Web Form,Breadcrumbs,Caminhos -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Se o Dono +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Se o Dono DocType: OAuth Authorization Code,Expiration time,Data de validade DocType: Web Page,Website Sidebar,Sidebar site DocType: Web Form,Show Sidebar,Mostrar barra lateral @@ -2486,7 +2490,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Não foi possíve apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Os nomes e sobrenomes são fáceis de adivinhar. apps/frappe/frappe/config/website.py +93,Knowledge Base,base de Conhecimento DocType: Workflow State,briefcase,pasta -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},O valor não pode ser alterado para {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},O valor não pode ser alterado para {0} DocType: Feedback Request,Is Manual,é manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Estilo representa a cor do botão: Sucesso - Verde, Perigo - vermelho, Inverse - Preto, Primário - Dark Info, azul - azul claro, Aviso - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Não foram carregados nenhuns relatórios Utilize consulta-de-relatório[Nome de Relatório] para executar um relatório. @@ -2565,7 +2569,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Progresso apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,por Função apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Campos ausentes apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname inválido '{0}' em autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Pesquisar em um tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Pesquisar em um tipo de documento apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Permitir que o campo permaneça editável mesmo após ser enviado DocType: Custom DocPerm,Role and Level,Função e Nível DocType: File,Thumbnail URL,URL Thumbnail @@ -2582,19 +2586,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mais Informação DocType: Desktop Icon,Desktop Icon,Ícone do Ambiente de Trabalho -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Seu pagamento foi aceito com sucesso +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Seu pagamento foi aceito com sucesso apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Desculpe! Você não tem permissão para visualizar esta página. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Dica: Clique duas vezes na célula para editar DocType: Workflow State,bell,sino apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Erro no alerta por e-mail apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Erro no alerta por e-mail apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Compartilhe este documento com +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configuração> Gerente de Permissões de Usuário apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} não pode ser um nó da folha, pois tem subgrupos" DocType: Communication,Info,Informações -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Juntar anexo +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Juntar anexo DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Obrigado por sua mensagem -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Enviar o recibo de leitura +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Enviar o recibo de leitura DocType: Stripe Settings,Stripe Settings,Configurações de listra DocType: Stripe Settings,Stripe Settings,Configurações de listra DocType: Dropbox Settings,Dropbox Setup via Site Config,Setup Dropbox via configuração do site @@ -2672,6 +2677,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Aviso: Este formato de impressão é em estilo antigo e não pode ser gerado através da API. DocType: DocField,Print Width,Largura de Impressão ,Setup Wizard,Assistente de Configuração +DocType: Address,GST State Number,Número de estado do GST DocType: User,Allow user to login only before this hour (0-24),Permitir que o utilizador inicie sessão somente antes desta hora (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,A Pasta é obrigatória apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2700,7 +2706,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Texto Pequeno apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,O administrador acedeu {0} em {1} através do Endereço IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Iguais -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',O tipo de campo Opções 'Dynamic Link' deve apontar para outro Campo de Link com opções como 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',O tipo de campo Opções 'Dynamic Link' deve apontar para outro Campo de Link com opções como 'DocType' DocType: About Us Settings,Team Members Heading,Membros da Equipe título apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Formato CSV Inválido apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Definir número de cópias de segurança @@ -2711,7 +2717,7 @@ DocType: Contact,Contact,Contacto DocType: User,Third Party Authentication,Autenticação de Terceiros DocType: Website Settings,Banner is above the Top Menu Bar.,O Banner está acima da Barra de Menu Superior. DocType: Razorpay Settings,API Secret,API Segredo -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Exportar relatório: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Exportar relatório: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} não existe DocType: Email Account,Port,Porta DocType: Print Format,Arial,Arial @@ -2734,7 +2740,7 @@ DocType: Kanban Board Column,Column Name,Nome da Coluna DocType: Language,Based On,Baseado Em apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Tornar Padrão apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Verifique URL Frappe Servidor -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,O Tipo de Campo {0} de {1} não pode ser indexado +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,O Tipo de Campo {0} de {1} não pode ser indexado DocType: Communication,Email Account,Conta de Email DocType: Workflow State,Download,Transferir DocType: Blog Post,Blog Intro,Intr. do Blog @@ -2745,7 +2751,7 @@ DocType: Web Page,Insert Code,Inserir Código DocType: ToDo,Low,Baixo apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Você pode adicionar propriedades dinâmicas do documento usando Jinja templates. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limite inválido {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lista de um tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lista de um tipo de documento DocType: Event,Ref Type,Tipo de Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Se estiver a carregar novos registos, deixe a coluna ""nome"" (ID) em branco." DocType: Address,Chattisgarh,Chattisgarh @@ -2767,26 +2773,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Enviar Imprimir como PDF DocType: Web Form,Amount,Montante DocType: Workflow Transition,Allowed,Permitido -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Só pode haver uma Fold de uma forma +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Só pode haver uma Fold de uma forma apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Não foi possível escrever o formato do arquivo para {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restaurar as definições padrão? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Página Inicial Inválida apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Login inválido. Tente novamente. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opções necessárias para o campo Link ou Tipo de tabela {0} na linha {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opções necessárias para o campo Link ou Tipo de tabela {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opções necessárias para o campo Link ou Tipo de tabela {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opções necessárias para o campo Link ou Tipo de tabela {0} na linha {1} DocType: Auto Email Report,Send only if there is any data,Envie somente se houver quaisquer dados apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Redefinir Filtros -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: A permissão no nível 0 deve ser atribuída antes de atribuir níveis mais altos +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: A permissão no nível 0 deve ser atribuída antes de atribuir níveis mais altos apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Atribuição encerrada por {0} DocType: Integration Request,Remote,Controlo remoto -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calcular +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calcular apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Por favor, selecione primeiro o DocType" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirmar o Seu Email apps/frappe/frappe/www/login.html +42,Or login with,Ou inície sessão com DocType: Error Snapshot,Locals,Locais apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicado através de {0} em {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} mencionou-o num comentário em {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex: (55 + 434) / 4 ou = Math.sin(Math.PI/2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex: (55 + 434) / 4 ou = Math.sin(Math.PI/2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} é necessário DocType: Integration Request,Integration Type,Tipo de Integração DocType: Newsletter,Send Attachements,Enviar Attachements @@ -2796,15 +2802,15 @@ DocType: DocField,Perm Level,Nível de Perm. apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Eventos no Calendário de Hoje DocType: Web Page,Web Page,Página Web DocType: Blog Category,Blogger,Blogueiro -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Na Pesquisa Global' não é permitido para o tipo {0} na linha {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Ver lista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},A data deve estar no formato: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},A data deve estar no formato: {0} DocType: Workflow,Don't Override Status,Não Sobrescrever o Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Por favor, dar uma classificação." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} comentários Pedido apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Termo de pesquisa -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,O Primeiro Utilizador : Tú +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,O Primeiro Utilizador : Tú apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Selecionar Colunas DocType: Translation,Source Text,fonte do texto apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parâmetros de início de sessão em falta @@ -2826,7 +2832,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,A Importar DocType: ToDo,Assigned By,Atribuído Por apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Você pode usar Personalizar Formulário para definir os níveis de campos. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Selecione sua região +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Selecione sua região DocType: Custom DocPerm,Level,Nível DocType: Custom DocPerm,Report,Relatório apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Montante deve ser maior que 0. @@ -2846,7 +2852,7 @@ DocType: Website Theme,Background,Fundo DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","A lista JSON de doctypes utilizados para aplicar Permissões de Utilizador. Se estiver vazia, todos os DocTypes vinculados serão utilizados para aplicar as Permissões de Utilizador." DocType: Report,Ref DocType,DocType de Ref apps/frappe/frappe/www/feedback.py +42,Please add a rating,Adicione uma classificação -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Não é possível Alterar sem Cancelar +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Não é possível Alterar sem Cancelar apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Página Completa DocType: DocType,Is Child Table,É uma Subtabela apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} deve ser um dos {1} @@ -2861,7 +2867,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Isto vai acima do slid apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalar Aplicações . DocType: Contact,Last Name,Sobrenome DocType: Event,Private,Privado -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Não há alertas para hoje +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Não há alertas para hoje DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Enviar E-mail Imprima anexos em formato PDF (recomendado) DocType: Web Page,Left,Esquerda DocType: Event,All Day,Dia Inteiro @@ -2875,7 +2881,7 @@ DocType: Event,Send an email reminder in the morning,Enviar um e-mail lembrete n DocType: Blog Post,Published On,Publicado Em DocType: Contact,Gender,Sexo apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informações obrigatórias em falta: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"O campo '{0}' não pode ser definido como Único, pois tem valores não únicos" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"O campo '{0}' não pode ser definido como Único, pois tem valores não únicos" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Só são permitidas 200 inserções por uma solicitação DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Tipo de Referência @@ -2888,7 +2894,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,sinal de alerta- DocType: Workflow State,User,Utilizador DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Mostrar título na janela do navegador como "Prefixo - título" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,texto em tipo de documento +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,texto em tipo de documento apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Executar Testes apps/frappe/frappe/handler.py +91,Logged Out,Desconectado apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mais... @@ -2914,13 +2920,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Visualização Atual DocType: DocField,Default,Padrão apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} adicionado -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Pesquisar por '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Pesquisar por '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Por favor, salve o primeiro relatório" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} assinantes adicionados apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Not Está Em DocType: Workflow State,star,estrela -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valores separados por vírgulas -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Largura máx. para o tipo de Moeda é 100px na linha {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valores separados por vírgulas +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Largura máx. para o tipo de Moeda é 100px na linha {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Por favor, compartilhe seus comentários para {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Página web de conteúdo. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Adicionar uma Nova Função @@ -2938,7 +2944,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Não é um utilizador LDAP válido apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} não é um estado válido apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Selecione outra forma de pagamento. O PayPal não suporta transações em moeda '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,campo de pesquisa {0} não é válido +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,campo de pesquisa {0} não é válido DocType: Workflow State,ok-circle,círculo-ok apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Você pode encontrar as coisas, pedindo "encontrar laranja em clientes '" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,É proibido compartilhar com o utilizador de website. @@ -3000,7 +3006,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,filtrar Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,O texto a ser exibido para link para a página da Web se esta forma tem uma página web. Rota Link será gerada automaticamente com base em `` page_name` e parent_website_route` DocType: Feedback Request,Feedback Trigger,feedback Gatilho -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Por favor, defina {0} primeiro" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Por favor, defina {0} primeiro" DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Correção DocType: Async Task,Failed,Falhou diff --git a/frappe/translations/ro.csv b/frappe/translations/ro.csv index 4c277250d4..cab5dec460 100644 --- a/frappe/translations/ro.csv +++ b/frappe/translations/ro.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Utilizator Facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Notă: sesiuni multiple vor fi permise în caz de dispozitiv mobil apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Activat de e-mail inbox pentru utilizator {} utilizatori apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nu pot trimite e-mail. Ați trecut la limita de expediere a {0} email-uri pentru această lună. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Permanent Trimite {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Permanent Trimite {0}? DocType: Address,County,județ DocType: Workflow,If Checked workflow status will not override status in list view,În cazul în care starea fluxului de lucru Înregistrate nu va suprascrie starea în vizualizarea listă apps/frappe/frappe/client.py +280,Invalid file path: {0},Cale de fișier nevalid: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Vă rug apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} arbore DocType: User,User Emails,E-mailurile utilizator DocType: User,Username,Nume de utilizator -apps/frappe/frappe/model/base_document.py +581,Value too big,Valoare prea mare +apps/frappe/frappe/model/base_document.py +580,Value too big,Valoare prea mare DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Executați testul Script DocType: Contact,Department,Departament @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Busteni DocType: Custom DocPerm,This role update User Permissions for a user,Acest rol Permisiunile actualizare pentru utilizator unui utilizator apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Redenumirea {0} DocType: Workflow State,zoom-out,mareste -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Nu se poate deschide {0}, atunci când de exemplu sa este deschis" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Nu se poate deschide {0}, atunci când de exemplu sa este deschis" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabelul {0} nu poate fi gol apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Cu Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,imagini DocType: Communication,Reference Owner,de referință proprietar DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Cea mai mică unitate de fracțiune circulant (monedă). Pentru de exemplu, 1 cent pentru USD și ar trebui să fie introdus ca 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Row" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Row" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Vă rugăm să dați un FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,Începând cu apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Import date Format @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Mamă DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Dacă este activată, puterea parolei va fi aplicată pe baza valorii minimă a scorului parolei. O valoare de 2 fiind puternică medie și 4 fiind foarte puternică." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Dacă este activată, puterea parolei va fi aplicată pe baza valorii minimă a scorului parolei. O valoare de 2 fiind puternică medie și 4 fiind foarte puternică." DocType: About Us Settings,"""Team Members"" or ""Management""","""Membrii echipei"" sau ""Management""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Implicit pentru ""Verifica"" tip de câmp trebuie să fie ""0"" sau ""1""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Implicit pentru ""Verifica"" tip de câmp trebuie să fie ""0"" sau ""1""" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Ieri DocType: Contact,Designation,Destinatie DocType: Test Runner,Test Runner,Testare Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Este publicat Câmp DocType: Email Group,Email Group,E-mail grup DocType: Note,Seen By,Văzut de apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Adăugați mai multe -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nu ca +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nu ca apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Setați eticheta de afișare pentru câmpul apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Valoare incorectă: {0} trebuie sa fie {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Proprietățile schimbare de câmp (ascunde, readonly, permisiunea etc)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Setări p apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administratorul a fost autentificat DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opțiuni de contact, cum ar fi ""Vanzari interogare, interogare Support"", etc fiecare pe o linie nouă sau separate prin virgule." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Descărcați -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Introduceți +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Introduceți apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Selectați {0} DocType: Print Settings,Classic,Clasic DocType: Desktop Icon,Color,Culoare @@ -122,7 +122,7 @@ DocType: Translation,Translation,Traducere apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instala apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Această formă a fost modificat după ce ați încărcat +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Această formă a fost modificat după ce ați încărcat DocType: User Permission for Page and Report,User Permission for Page and Report,Permisiunea de utilizator pentru pagina și Raport DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Dacă nu este setat, precizia valută va depinde de formatul numărului" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,motiv apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Vă rugăm să specificați de utilizator DocType: Email Unsubscribe,Email Unsubscribe,Email Dezabonare DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,"Selectați o imagine de lățime de aproximativ 150px cu un fundal transparent, pentru cele mai bune rezultate." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Primul Utilizatorul va deveni System Manager (puteți schimba asta mai târziu). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Primul Utilizatorul va deveni System Manager (puteți schimba asta mai târziu). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cerc-săgeată-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Se încarcă ... DocType: Email Domain,Email Domain,Domeniu e-mail DocType: Workflow State,italic,cursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Pentru toti -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: nu se poate configura importați fără creați +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: nu se poate configura importați fără creați apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Eveniment și alte calendare. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Toate câmpurile sunt necesare pentru a trimite comentariul. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Trageți pentru a sorta coloanele @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Bara laterală meniu standard apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nu se poate șterge Acasă și Echipamente dosare apps/frappe/frappe/config/desk.py +19,Files,fişierele apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Permisiuni se aplică pe Utilizatori bazat pe ceea ce Rolurile sunt atribuite. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nu vi se permite trimitea e-mailuri relaționate cu acest document -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Vă rugăm să selectați atleast 1 coloana din {0} pentru a sorta / grup +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nu vi se permite trimitea e-mailuri relaționate cu acest document +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Vă rugăm să selectați atleast 1 coloana din {0} pentru a sorta / grup DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Verifica acest lucru dacă testați plata utilizând API-ul Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nu vi se permite să ștergeți o temă Website standard de DocType: Feedback Trigger,Example,Exemplu @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Abonații totale apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","În cazul în care un rol nu are acces la nivel de 0, apoi niveluri mai ridicate sunt lipsite de sens." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Salvează ca DocType: Communication,Seen,Văzut -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Arată mai multe detalii +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Arată mai multe detalii DocType: System Settings,Run scheduled jobs only if checked,Rulați locuri de muncă programate numai dacă verificate apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Va fi afișată numai în cazul în care pozițiile sunt activate secțiuni apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiva @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Ascunde antet DocType: Address,Current,Actual DocType: Address,Current,Actual -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Documente relatate apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupuri de doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,elimina-cerc @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,filtru apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Nume câmp {0} nu poate avea caractere speciale, cum ar fi {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Actualizati multe valori la un moment dat. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Eroare: Documentul a fost modificat după ce ați deschis -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit niciun șablon de adresă implicit. Creați unul nou din Setup> Printing and Branding> Template Address. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} logged out: {1} DocType: Address,West Bengal,Bengalul de Vest -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: nu se poate configura alocați introducere dacă nu există posibilitate de introducere +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: nu se poate configura alocați introducere dacă nu există posibilitate de introducere DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrate prin "{0}" DocType: Salutation,Administrator,Administrator @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Titlu blog apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Rolurile standard nu pot fi dezactivate DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Nu se pot utiliza sub-interogare în scopul de +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Nu se pot utiliza sub-interogare în scopul de DocType: Web Form,Button Help,butonul Ajutor DocType: Kanban Board Column,purple,Violet DocType: About Us Settings,Team Members,Membrii echipei @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Ia-ti un ava apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Abonamentul dvs. a expirat la {0}. Pentru a reînnoi, {1}." DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Configurarea deja completă -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nu este instalat +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nu este instalat DocType: Workflow State,Refresh,Actualizare DocType: Event,Public,Public apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nimic pentru a arăta @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Placut de apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mail Asistență DocType: DocField,Print Hide If No Value,Print Ascunde Dacă nici o valoare DocType: Event,yellow,galben -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Este publicat de câmp trebuie să fie un numele_campului valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Este publicat de câmp trebuie să fie un numele_campului valid apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Încărcați Attachment DocType: Block Module,Block Module,Modul de blocare apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Format Export @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},"Un cont nou a fost creat pentru tine, la {0}" apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrucțiuni trimise prin e-mail apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instrucțiuni trimise prin e-mail -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Introduceți adresa de email Recipient (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Introduceți adresa de email Recipient (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-mail Flag Coadă apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nu se poate identifica deschis {0}. Încercați altceva. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ID-ul mesajului DocType: Property Setter,Field Name,Nume câmp apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nu este configurat. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,sau -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,nume de modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Continua +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,nume de modul ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Continua DocType: Custom Field,Fieldname,Nume câmp DocType: Workflow State,certificate,certificat DocType: User,Tile,Țiglă @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Afișați toate versiunile DocType: Workflow State,Print,imprimare DocType: User,Restrict IP,Restricționa IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Bord apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nu s-au putut trimite email-uri în acest moment apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Căutare sau tastați o comandă DocType: Communication,Timeline Name,Nume cronologie @@ -329,7 +328,7 @@ DocType: Contact,Sales Master Manager,Vânzări Maestru de Management apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Unul ultim pas apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Denumirea tipului de document (DocType) pe care doriți acest domeniu să fie legate de. de exemplu Clientul DocType: User,Roles Assigned,Rolurile atribuite -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Ajutor căutare +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Ajutor căutare DocType: Top Bar Item,Parent Label,Părinte Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Întrebarea dvs. a fost primit. Va vom raspunde din nou în scurt timp. Dacă aveți orice informații suplimentare, vă rugăm să răspundeți la acest e-mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Permisiunile sunt traduse în mod automat la rapoarte standard și Căutări. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Editați Poziția DocType: File,File URL,URL fișier DocType: Version,Table HTML,Tabelul HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nu s-au găsit rezultate pentru '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Adăugaţi Abonați apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Evenimente viitoare de azi DocType: Email Alert Recipient,Email By Document Field,E-mail prin documentul de câmp @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,Suma bazată pe câmp apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Utilizatorul este obligatorie pentru cota DocType: DocField,Hidden,ascuns DocType: Web Form,Allow Incomplete Forms,Formulare incomplete permit -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} trebuie să fie configurat prima dată +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} trebuie să fie configurat prima dată apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Utilizați câteva cuvinte, evitați expresii comune." DocType: Workflow State,plane,avion -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. Plata dvs. a eșuat. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Dacă încărcați noi recorduri, ""Naming Seria"" devine obligatorie, dacă este prezent." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Primiți alerte pentru ziua de azi +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Primiți alerte pentru ziua de azi apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType pot fi redenumite numai de Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Valoarea modificată a {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Vă rugăm să verificați e-mail-ul pentru verificare -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold nu poate fi la sfârșitul formularului +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold nu poate fi la sfârșitul formularului DocType: Communication,Bounced,Returnate DocType: Deleted Document,Deleted Name,Nume șters apps/frappe/frappe/config/setup.py +14,System and Website Users,De sistem și site Utilizatori @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,documentul Queued DocType: GSuite Templates,Destination ID,ID-ul destinației DocType: Desktop Icon,List,listă DocType: Communication,Link Name,link Nume -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Domeniu {0} în rândul {1} nu poate fi ascuns și obligatoriu fără implicit +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Domeniu {0} în rândul {1} nu poate fi ascuns și obligatoriu fără implicit DocType: System Settings,mm/dd/yyyy,mm/dd/aaaa apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Parolă Invalidă: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Parolă Invalidă: DocType: Print Settings,Send document web view link in email,Link-ul de documente a trimite web vizualizare în e-mail apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Feedback-ul pentru documentul {0} este salvat cu succes apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Precedenta -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} randuri pentru {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-valută. De exemplu ""Cent """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Selectați Fișier încărcat @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,Legătura apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nici un fișier atașat DocType: Version,Version,Versiune DocType: User,Fill Screen,Umple ecranul -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Imposibil de afișat acest raport copac, din cauza datelor lipsă. Cel mai probabil, acesta este filtrat din cauza permisiuni." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configurați implicit contul de e-mail din Configurare> Email> Cont email +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Imposibil de afișat acest raport copac, din cauza datelor lipsă. Cel mai probabil, acesta este filtrat din cauza permisiuni." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Selectați Fișier apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edita prin Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","tip de document ..., de exemplu, client" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","tip de document ..., de exemplu, client" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Situației "{0}" este nevalidă DocType: Workflow State,barcode,Cod de bare apps/frappe/frappe/config/setup.py +232,Add your own translations,Adăugați propriile traduceri @@ -425,7 +425,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Miercuri apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Exceptând regulile de permisiune bazate pe roluri, aveți posibilitatea să aplicați permisiuni utilizator bazate pe tipuri de documete.." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Aceste permisiuni se vor aplica pentru toate tranzacțiile în care înregistrarea este permis legate. De exemplu, dacă firma C se adaugă la permisiunile utilizatorului de utilizator X, X utilizatorul va putea vedea tranzacții pe care le are firma C ca o valoare legată numai." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,câmp de imagine trebuie să fie un numele_campului valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,câmp de imagine trebuie să fie un numele_campului valid DocType: OAuth Client,Token,Jeton DocType: Property Setter,ID (name) of the entity whose property is to be set,ID-ul (numele) a entității ale cărei proprietate este să fie stabilite apps/frappe/frappe/limits.py +82,"To renew, {0}.","Pentru a reînnoi, {0}." @@ -434,7 +434,7 @@ DocType: Web Form,Sidebar Items,Articole Sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} deja instalat DocType: Workflow State,exclamation-sign,semn de exclamare apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,afişează permisiuni -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,câmp Cronologie trebuie să fie o legătură sau Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,câmp Cronologie trebuie să fie o legătură sau Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Interval de date apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} din {1} @@ -442,7 +442,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Introd apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Cheia de criptare nu este validă, verificați site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Până la data DocType: Kanban Board Column,darkgrey,gri inchis -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},De succes: {0} {1} la +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},De succes: {0} {1} la apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nu se pot schimba detaliile utilizatorului în demo. Înscrieți-vă pentru un cont nou la adresa https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Vă rugăm să duplicat acest lucru pentru a face schimbări apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generație PDF a eșuat din cauza link-uri imagine rupte @@ -459,24 +459,24 @@ DocType: DocField,Collapsible,Rabatabil apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Salvat apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,La ce ai nevoie de ajutor? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Opțiuni pentru select. Fiecare opțiune pe o linie nouă. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Anula permanent {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Anula permanent {0}? DocType: Workflow State,music,Muzica DocType: Web Page,Settings,Setări apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Vă rugăm să specificați doctype DocType: Print Format,Style Settings,Setări de stil -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sortare câmp {0} trebuie să fie un numele_campului valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sortare câmp {0} trebuie să fie un numele_campului valid apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mai mult DocType: Contact,Sales Manager,Director De Vânzări apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Redenumire DocType: Print Format,Format Data,Format de date -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Îmi place +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Îmi place DocType: Customize Form Field,Customize Form Field,Particularizarea Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Permiteţi utilizator DocType: OAuth Client,Grant Type,Tipul de grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Verificați care Documentele sunt ușor de citit de către un utilizator apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Nu este permisă înregistrarea aplicației -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,utilizați% ca metacaracter -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail domeniu nu este configurată pentru acest cont, creați una?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,utilizați% ca metacaracter +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domeniu nu este configurată pentru acest cont, creați una?" DocType: User,Reset Password Key,Reset Key Password DocType: Email Account,Enable Auto Reply,Activați Auto Raspunde apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nu a vazut @@ -520,7 +520,7 @@ DocType: DocField,Set Only Once,Setat numai o dată DocType: Email Queue Recipient,Email Queue Recipient,E-mail Coadă Recipient DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Nume {0} există deja -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: nu se poate configura import ca si {1} daca nu se poate importa +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: nu se poate configura import ca si {1} daca nu se poate importa apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Există o eroare în șablon Address {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -532,7 +532,7 @@ DocType: Communication,From Full Name,De la Numele complet apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nu aveți acces la Raport: {0} DocType: User,Send Welcome Email,Trimite e-mail Bine ai venit apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Încărcați fișier CSV care conține toate permisiunile de utilizator în același format ca și Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Eliminați Filtru +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Eliminați Filtru DocType: Address,Daman and Diu,Daman și Diu DocType: Address,Personal,Trader apps/frappe/frappe/config/setup.py +113,Bulk Rename,Redenumire în masă @@ -563,11 +563,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType nu poate avea format de imprimare implicit, utilizați Customize Form" DocType: Report,Query,Interogare DocType: DocType,Sort Order,Ordine de sortare -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""În vizualizare listă"" nu este permisã pentru tipul {0} în rândul {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""În vizualizare listă"" nu este permisã pentru tipul {0} în rândul {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Selectați eticheta după care doriți să inserați câmpul nou. ,Document Share Report,Document Share Raporteaza DocType: User,Last Login,Ultima autentificare -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Nume_camp este necesară în rândul {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Nume_camp este necesară în rândul {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Coloană DocType: Custom Field,Adds a custom field to a DocType,Adaugă un câmp personalizat unui Tip de document DocType: File,Is Home Folder,Este Acasă Folder @@ -593,7 +593,7 @@ DocType: File,Folder,Dosar DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Director apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opțiunea 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,toate posturile de +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} la {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log de eroare în timpul cererilor. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} a fost adaugat cu success la Grupul de Emailuri. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -603,7 +603,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indicator DocType: DocShare,Everyone,Toată lumea DocType: Workflow State,backward,în sens invers -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Doar o regulă permisa cu același rol, nivel și {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Doar o regulă permisa cu același rol, nivel și {1}" DocType: Email Queue,Add Unsubscribe Link,Adăugați Dezabonare Link apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nici un comentariu pana acum. Începe o nouă discuție. DocType: Workflow State,share,Distribuiţi @@ -622,7 +622,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nu est apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Vezi Abonații apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Culoare fundal -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Au fost erori în timp ce trimiterea de e-mail. Încercaţi din nou. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Au fost erori în timp ce trimiterea de e-mail. Încercaţi din nou. DocType: Portal Settings,Portal Settings,Setări portal DocType: Web Page,0 is highest,0 este cel mai mare apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Sunteți sigur că doriți să reconecta această comunicare la {0}? @@ -649,7 +649,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Contactati-ne Setări apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,In cautarea ... DocType: Workflow State,text-width,text cu lățime -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Limita maxima Anexa pentru acest record atins. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Limita maxima Anexa pentru acest record atins. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Următoarele câmpuri obligatorii trebuie completate:
DocType: Email Alert,View Properties (via Customize Form),Vezi Properties (prin Customize Formular) DocType: Note Seen By,Note Seen By,Notă văzut de @@ -659,17 +659,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapoartele raport Builder sunt gestionate direct de către constructor raport. Nimic de-a face. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Confirmați adresa de e-mail apps/frappe/frappe/model/document.py +903,none of,nici unul dintre -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Trimite-mi o copie +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Trimite-mi o copie apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Încărcați Permisiuni utilizator DocType: Dropbox Settings,App Secret Key,Aplicația Secret Key apps/frappe/frappe/config/website.py +7,Web Site,site-ul web apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Bifate vor fi afișate pe desktop -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nu poate fi setat pentru tipuri singulare +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nu poate fi setat pentru tipuri singulare apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} nu există. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} vizualizeazã documentul în acest moment DocType: ToDo,Assigned By Full Name,Atribuit de Numele complet apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} actualizat -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Raportul nu poate fi setat pentru tipuri de single +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Raportul nu poate fi setat pentru tipuri de single apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} zile în urmă DocType: Email Account,Awaiting Password,Asteapta parola DocType: Address,Address Line 1,Adresă Linie 1 @@ -679,7 +679,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Statele de flux de lucru (de exemplu Proiectele, Aprobat, anulat)." DocType: Print Settings,Allow Print for Draft,Se lasă pentru imprimare Proiect apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Cantitate -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Să prezinte acest document pentru a confirma +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Să prezinte acest document pentru a confirma DocType: Contact,Unsubscribed,Nesubscrise apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Set roluri personalizate pentru pagina de raport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Evaluare: @@ -687,7 +687,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Import date Tool DocType: Address,Dadra and Nagar Haveli,Dadra și Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Se încarcă fișierele vă rugăm să așteptați câteva secunde. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Atașați imaginea dvs. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Atașați imaginea dvs. apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Valori rândului a fost modificată DocType: Workflow State,Stop,Oprire DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Link la pagina pe care doriți să îl deschideți. Lăsați necompletat dacă doriți să-l un părinte grup face. @@ -702,7 +702,7 @@ DocType: Print Format,Align Labels to the Left,Se aliniază etichete spre stâng DocType: Help Article,Expert,Expert DocType: Workflow State,circle-arrow-right,cerc-săgeată-dreapta DocType: LDAP Settings,LDAP Server Url,Server LDAP Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Nu se poate deschide exemplu, atunci când sa {0} este deschis" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Nu se poate deschide exemplu, atunci când sa {0} este deschis" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Pentru a instala în coada de așteptare DocType: Custom DocPerm,Custom DocPerm,personalizat DocPerm DocType: Newsletter,Send Unsubscribe Link,Trimite Dezabonare Link @@ -719,7 +719,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} eliminat DocType: Custom DocPerm,Apply User Permissions,Aplicați permisiuni utilizator DocType: User,Modules HTML,Module HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configurare> Manager permisiuni utilizator apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Valorile lipsă necesare DocType: DocType,Other Settings,alte setări DocType: Social Login Keys,Frappe,Frappé @@ -738,7 +737,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Purtător Indicativ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Niciun document selectat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Eveniment -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","La {0}, {1} a scris:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","La {0}, {1} a scris:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nu se poate șterge domeniu dotare standard. Puteți să-l ascunde, dacă doriți" DocType: Top Bar Item,For top bar,Pentru bara de sus apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nu a putut identifica {0} @@ -752,7 +751,7 @@ DocType: Role,Desk Access,birou de acces DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Eroare de server: Vă rugăm să verificați jurnalele dvs. de server sau de suport tehnic de contact. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,E-mailul de bun venit a fost trimis -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Să se pregătească sistemul de prima utilizare. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Să se pregătească sistemul de prima utilizare. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Recomandate apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Deja înregistrat DocType: System Settings,Float Precision,Float de precizie @@ -765,7 +764,7 @@ DocType: Web Form,Allow Print,Se permite Print apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nu Apps Instalat apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Marcați câmpul ca Obligatoriu DocType: Communication,Clicked,Clic pe -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Permisiunea de a '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Permisiunea de a '{0}' {1} DocType: User,Google User ID,Google ID utilizator apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Programată pentru a trimite DocType: DocType,Track Seen,Văzut pe șenile @@ -835,7 +834,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Sesiuni simultane DocType: OAuth Client,Client Credentials,Atestări client -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Deschideți un modul sau instrument +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Deschideți un modul sau instrument DocType: Communication,Delivery Status,Starea de Livrare DocType: Module Def,App Name,Denumirea aplicaţiei apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Dimensiunea maximă a fișierului este permisă {0} MB @@ -847,8 +846,8 @@ DocType: Feedback Request,Reference Communication,Referință Comunicare DocType: Email Queue,Unsubscribe Method,Metoda de dezabonare DocType: GSuite Templates,Related DocType,DocType asociat apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Editați să adaugati continut -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,selectaţi limba -apps/frappe/frappe/__init__.py +510,No permission for {0},Nu permisiune pentru {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,selectaţi limba +apps/frappe/frappe/__init__.py +509,No permission for {0},Nu permisiune pentru {0} DocType: DocType,Advanced,Avansat apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Se pare că cheia API sau API-ul Secret este greșit !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referință: {0} {1} @@ -870,7 +869,7 @@ DocType: Customize Form,Enter Form Type,Introduceți tipul formularului apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nici o inregistrare etichetată. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Eliminare câmp DocType: User,Send Password Update Notification,Solicitare parolă actualizare Notificare -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Permiterea Tip Document, Tip Document. Fiți atent!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Permiterea Tip Document, Tip Document. Fiți atent!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formate personalizate pentru imprimare, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Actualizat la noua versiune DocType: Custom Field,Depends On,Depinde @@ -964,6 +963,7 @@ apps/frappe/frappe/model/document.py +902,one of,unul dintre apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Selectați fișierul pentru copiere apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Verificarea un moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Arată tag-uri +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Dacă este bifată opțiunea Aplicare permisă de utilizator și Permisiunea utilizatorului este definită pentru un DocType pentru un utilizator, atunci toate documentele în care valoarea linkului este necompletată nu vor fi afișate acelui utilizator" DocType: Address,Billing,Facturare DocType: Email Queue,Not Sent,Nu a fost trimis DocType: Web Form,Actions,Acțiuni @@ -993,6 +993,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,clar apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,"În fiecare zi, evenimente ar trebui să termine în aceeași zi." DocType: Communication,User Tags,Tag-uri de utilizator apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Obținerea imaginilor .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configurare> Utilizator DocType: Workflow State,download-alt,descarcati-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Descărcarea Aplicatie {0} DocType: Communication,Feedback Request,Feedback cerere @@ -1010,7 +1011,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Copiile de rezervă apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Adaugă contact DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opțional: trimite întotdeauna la aceste ID-uri. Fiecare adresă de e-mail pe un rând nou -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ascunde detalii +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ascunde detalii DocType: Workflow State,Tasks,Sarcini DocType: Event,Tuesday,Marți DocType: Blog Settings,Blog Settings,Setări blog @@ -1030,9 +1031,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Scrie un fișier Python în același folder în care acest lucru este salvat și a reveni coloană și rezultat. DocType: DocType,Sort Field,Un fel de câmp DocType: Razorpay Settings,Razorpay Settings,Setări Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Editare filtru -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Domeniu {0} de tip {1} nu poate fi obligatorie -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","de exemplu. Dacă aplicați permisiuni de utilizator este verificată pentru Raportul DocType, dar nu Permisiunile de utilizator sunt definite pentru Raportul pentru un utilizator, atunci toate Rapoartele sunt prezentate în acest utilizator" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Editare filtru +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Domeniu {0} de tip {1} nu poate fi obligatorie apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Adăuga mai mult apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Ascundeți diagrama DocType: System Settings,Session Expiry Mobile,Sesiune de expirare Mobile @@ -1047,6 +1047,7 @@ DocType: Communication,Delayed,Întârziat apps/frappe/frappe/config/setup.py +128,List of backups available for download,Listă de backup disponibile pentru descărcare apps/frappe/frappe/www/login.html +89,Sign up,Inscrie-te DocType: Test Runner,Output,producție +DocType: Email Alert,Set Property After Alert,Setați proprietatea după alertă apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Adăugați câmpuri formularelor apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Se pare că ceva nu este în neregulă cu configurația PayPal a acestui site. DocType: File,rgt,RGT @@ -1054,6 +1055,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,frunze DocType: Portal Menu Item,Portal Menu Item,Meniu portal Articol DocType: User Email,Email ID,Id Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Dacă este selectată opțiunea Aplicare permisiuni de utilizator pentru Report DocType, dar nu sunt definite Permisiuni utilizator pentru raportul pentru un utilizator, atunci toate rapoartele sunt afișate acelui utilizator" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"O listă de resurse pe care App Clientul va avea acces la după ce utilizatorul permite acest lucru.
de exemplu, proiect" DocType: Translation,Translated Text,Textul tradus DocType: Contact Us Settings,Query Options,Opțiuni de interogare @@ -1071,7 +1073,7 @@ DocType: Address,Contacts,Persoane de Contact DocType: System Settings,Setup Complete,Configurare complet apps/frappe/frappe/config/setup.py +66,Report of all document shares,Raportul de toate acțiunile de documente apps/frappe/frappe/www/update-password.html +18,New Password,Parola nouă -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtru {0} lipsă +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtru {0} lipsă apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Ne pare rău! Nu puteți șterge comentariile generate automat DocType: Website Theme,Style using CSS,Stil folosind CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType referință @@ -1126,7 +1128,7 @@ DocType: User,Block Modules,Module de blocare apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Revenirea lungime {0} pentru "{1} 'in' {2} '; Setarea lungimii ca {3} va determina trunchierea datelor. DocType: Print Format,Custom CSS,CSS personalizat apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Adăugaţi un comentariu -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorat: {0} {1} la +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorat: {0} {1} la DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log de eroare cu privire la evenimentele automate (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Nu este un valabil valoare separate prin virgulă (CSV File) @@ -1135,7 +1137,7 @@ DocType: Email Account,Default Incoming,Implicit intrare DocType: Workflow State,repeat,repeta DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Dacă este dezactivată, acest rol va fi eliminat de la toți utilizatorii." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Ajutor pe Cautare +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Ajutor pe Cautare apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Înregistrat dar dezactivat DocType: DocType,Hide Copy,Ascunde Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Șterge toate rolurile @@ -1167,7 +1169,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Ţară apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adrese DocType: Communication,Shared,partajat -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Atașați document imprimat +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Atașați document imprimat DocType: Bulk Update,Field,Camp DocType: Communication,Received,Primita DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1188,12 +1190,12 @@ DocType: Report,Query Report,Raport de interogare DocType: User,Set New Password,Set New Password DocType: User,Github User ID,ID utilizator Github apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Dacă Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nu se poate șterge sau anula , deoarece {0} {1} este legat cu {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nu se poate șterge sau anula , deoarece {0} {1} este legat cu {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},App necunoscut {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s formatul raportului nu este valid. Formatul raportului poate fi unul \unele dintre urmatoarele %s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Nume câmp {0} apare de mai multe ori în rânduri {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Nume câmp {0} apare de mai multe ori în rânduri {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} de la{1} pana la {2} in rand #{3} DocType: Communication,Expired,Expirat DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numărul de coloane pentru un câmp într-o grilă (Coloanele din Total într-o grilă trebuie să fie mai mic de 11) @@ -1203,30 +1205,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Ai un cont? Conecta apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Necunoscut Print Format: {0} DocType: Workflow State,arrow-down,săgeată-în jos apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Restrange -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Utilizatorul nu este permis pentru a șterge {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Utilizatorul nu este permis pentru a șterge {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Ultima actualizare pe DocType: Help Article,Likes,Au apreciat DocType: Website Settings,Top Bar,Top Bara DocType: GSuite Settings,Script Code,Cod Script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Creați e-mail de utilizator apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Creați e-mail de utilizator -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nu sunt specificate anumite permisiuni +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nu sunt specificate anumite permisiuni apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Setări globale: Utilizatorii vor avea posibilitatea de a alege pictogramele verificate apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nu a fost găsit DocType: Custom Role,Custom Role,Rolul personalizat apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Prima / Folder Testul 2 DocType: System Settings,Ignore User Permissions If Missing,Ignoră Permisiunile utilizatorului Dacă Lipsește -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Vă rugăm să salvați documentul înainte de a încărca. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vă rugăm să salvați documentul înainte de a încărca. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Introduceți parola DocType: Dropbox Settings,Dropbox Access Secret,Secret pentru Acces Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Adăuga un alt comentariu apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,edita DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Dezabonat de la Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Fold trebuie să vină în fața unei secțiuni Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Fold trebuie să vină în fața unei secțiuni Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Modificat ultima dată de DocType: Workflow State,hand-down,mână-jos DocType: Address,GST State,Statul GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: nu se poate configura anulați fără introduceți +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: nu se poate configura anulați fără introduceți DocType: Website Theme,Theme,Temă apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Au fost erori. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI legat la Codul Aut @@ -1245,7 +1247,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Setă DocType: Website Theme,Text Color,Culoare text DocType: Desktop Icon,Force Show,Afișare forță apps/frappe/frappe/auth.py +78,Invalid Request,Cerere nevalid -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Acest formular nu are nici o intrare +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Acest formular nu are nici o intrare apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesiune de expirare trebuie să fie în format {0} DocType: Website Sidebar Item,Group,Grup DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Selectați target = ""_blank"" pentru a deschide într-o nouă pagină." @@ -1254,7 +1256,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignoră codifică erori. DocType: Workflow State,wrench,cheie apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nu a fost setat -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Configurare> Utilizator DocType: Authentication Log,Date,Date DocType: Website Settings,Disable Signup,Dezactivați Inregistreaza-te apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Stai bine în timp ce sistemul este în curs de instalare. Acest lucru poate dura câteva momente. @@ -1265,7 +1266,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Adauga comentariu DocType: DocField,Mandatory,Obligatoriu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul de a exporta -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Nici o permisiune de bază nu a fost configurată +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Nici o permisiune de bază nu a fost configurată apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Abonamentul dvs. va expira pe {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Descarcă link-ul pentru backup-ul va fi trimis pe adresa de e-mail: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Înțeles Trimiteti, anula, modifică" @@ -1278,11 +1279,11 @@ DocType: Desktop Icon,query-report,interogare raport apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Atribuit {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtre salvate DocType: DocField,Percent,La sută -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Vă rugăm să setați filtre +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Vă rugăm să setați filtre apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Inlănțuit cu DocType: Workflow State,book,carte DocType: Website Settings,Landing Page,Landing Page -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Eroare în script personalizat +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Eroare în script personalizat apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Nume apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Cerere Queued. Acest lucru poate dura câteva momente, vă rugăm să aveți răbdare." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Permisiuni stabilit pentru acest criteriu. @@ -1294,7 +1295,7 @@ DocType: System Settings,Allow Login using Mobile Number,Permiteți conectarea u apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nu aveți suficiente permisiuni pentru a accesa această resursă. Vă rugăm să contactați managerul pentru a obține acces. DocType: Custom Field,Custom,Personalizat apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup E-mail Alert bazat pe diverse criterii. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Posturile de depusă în conformitate cu {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Posturile de depusă în conformitate cu {0} DocType: Email Alert,Send alert if date matches this field's value,Trimite alertă în cazul în care data meciurile valoarea acestui câmp DocType: Workflow,Transitions,Tranziții apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Eliminați {0} și ștergeți toate datele? @@ -1303,9 +1304,8 @@ DocType: User,Login After,Autentifică-te După DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tipărire DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Nu se configurează contul de e-mail. Creați un nou cont de e-mail din Configurare> Email> Cont email DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precizie trebuie să fie între 1 și 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precizie trebuie să fie între 1 și 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,și DocType: Error Snapshot,Frames,Rame @@ -1314,7 +1314,7 @@ DocType: About Us Team Member,Image Link,Imagine Link DocType: Auto Email Report,Report Filters,Filtre de raport apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,acum DocType: Workflow State,step-backward,pas-înapoi -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Vă rugăm să setați tastele de acces Dropbox pe site-ul dvs. de configurare apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Ștergeți acest record, pentru a permite trimiterea de la această adresă de e-mail" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Numai câmpurile obligatorii sunt necesare pentru noi recorduri. Puteți șterge coloane care nu sunt obligatorii, dacă doriți." @@ -1336,8 +1336,7 @@ DocType: File,Is Attachments Folder,Este Folder Accesorii apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Extinde toate apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Valabil Intra id este necesar. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-deschide -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ați anulat plata -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vă rugăm să selectați un fișier csv valid cu date +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vă rugăm să selectați un fișier csv valid cu date apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} a departajat acest document cu {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Starea document de tranziție de la {0} la {1} nu este permis DocType: DocType,"Make ""name"" searchable in Global Search",Asigurați-vă „numele“ căutat în Search Global @@ -1350,7 +1349,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Val DocType: Help Category,Help Category,ajutor Categorie apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Utilizatorul {0} este dezactivat apps/frappe/frappe/www/404.html +8,Page missing or moved,Page lipsă sau deplasate -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Modificați {0} proprietăți DocType: DocType,Route,traseu apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Setări gateway de plată Razorpay DocType: DocField,Name,Nume @@ -1358,8 +1356,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Căutați în docs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Căutați în docs DocType: OAuth Authorization Code,Valid,Valabil -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Deschide link-ul -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Limba ta +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Deschide link-ul +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Limba ta apps/frappe/frappe/desk/form/load.py +46,Did not load,Nu a încărcat apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,adăugaţi un rând DocType: Tag Category,Doctypes,doctypes @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Este cerere F DocType: Address,Lakshadweep Islands,Insulele Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Poate scrie apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Anumite documente, cum ar fi o factură, nu ar trebui să fie schimbat o dată finală. Starea finală pentru astfel de documente este numit Trimis. Puteți restricționa roluri care pot depune." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nu vi se permite să exportați acest raport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nu vi se permite să exportați acest raport apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 element selectat DocType: Newsletter,Test Email Address,Adresa de e-mail de testare DocType: ToDo,Sender,Expeditor @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID-ul de documente DocType: Print Settings,Letter,Scrisoare -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,câmp de imagine trebuie să fie de tip de imagine Atașați +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,câmp de imagine trebuie să fie de tip de imagine Atașați DocType: DocField,Columns,coloane DocType: Async Task,Succeeded,Reușit apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Campuri obligatorii prevăzute în {0} @@ -1459,7 +1457,7 @@ DocType: DocField,Text Editor,Editor de text apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Setările pentru pagina Despre noi. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Eroare Instantaneu -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Î +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Î DocType: Email Alert,Value Change,Valoarea variației DocType: Standard Reply,Standard Reply,Standard Reply apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Lățimea caseta de intrare @@ -1475,12 +1473,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Utilizați acest Nume câmp pentru a genera titlu apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Email la apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Invitați ca utilizator -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Selectați atașate +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Selectați atașate apps/frappe/frappe/model/naming.py +94, for {0},pentru {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Au existat erori. Vă rugăm raportați acest lucru. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nu vi se permite să imprimați acest document +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nu vi se permite să imprimați acest document apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Vă rugăm să setați valoarea filtre în tabelul de rapoarte de filtrare. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Încărcare raport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Încărcare raport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Abonamentul dvs. va expira astazi. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Ataşaţi fişier @@ -1510,7 +1508,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Extensii regionale DocType: LDAP Settings,Base Distinguished Name (DN),Baza de numele distinctiv (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Lasă această conversație -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opțiuni nu este setat pentru câmp legătură {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opțiuni nu este setat pentru câmp legătură {0} DocType: Customize Form,"Must be of type ""Attach Image""",Trebuie să fie de tip "Attach Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Deselectează tot apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Tu nu poate unset "Read Only" pentru domeniu {0} @@ -1552,9 +1550,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Notă apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Eroare Raport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Condițiile de feedback nu se potrivesc -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,câmp Cronologie trebuie să fie un nume_camp validă +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,câmp Cronologie trebuie să fie un nume_camp validă DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Rând # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Rând # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Noua parolă prin e-mail apps/frappe/frappe/auth.py +245,Login not allowed at this time,Autentificare nu este permis în acest moment DocType: Email Account,Email Sync Option,E-mail Opțiunea de sincronizare @@ -1576,7 +1574,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard răspunde la întrebări comune. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Implicit Trimiterea DocType: Workflow State,volume-off,volum-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Plăcut de {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Plăcut de {0} DocType: Footer Item,Footer Item,articol de subsol ,Download Backups,Descarca Backup apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Prima / Folder Testul 1 @@ -1611,7 +1609,7 @@ DocType: Web Page,Text Align,Alinierea textului apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Numele nu poate conține caractere speciale, cum ar fi {0}" DocType: Contact Us Settings,Forward To Email Address,Mai departe la adresa de email apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Afișați toate datele -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Câmp titlu trebuie să fie un fieldname valid +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Câmp titlu trebuie să fie un fieldname valid apps/frappe/frappe/config/core.py +7,Documents,Documente DocType: Email Flag Queue,Is Completed,Este gata apps/frappe/frappe/www/me.html +22,Edit Profile,Editează profilul @@ -1621,7 +1619,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Acest câmp va apărea numai în cazul în care numele_campului definit aici are valoare sau regulile sunt adevărate (exemple): myfield eval: doc.myfield == 'Valoarea mea' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Astăzi +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Astăzi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","După ce ați stabilit acest lucru, utilizatorii vor fi doar documente de acces capabile (ex. Blog post), în cazul în care există link-ul (de exemplu, Blogger)." DocType: Error Log,Log of Scheduler Errors,Log de erori Scheduler DocType: User,Bio,Biografie @@ -1645,6 +1643,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stea fiind cel mai mic si 5 stele fiind cel mai mare rating DocType: Event,Ref Name,Numele Ref DocType: Web Page,Center,Centru +DocType: Email Alert,Value To Be Set,Valoare de setat apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Primul nivel DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezintă statele permise într-un document și rol atribuit pentru a schimba starea. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Actualizează Forma @@ -1665,18 +1664,18 @@ DocType: DocType,Has Web View,Are Vizualizare web apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Numele DocType ar trebui să înceapă cu o literă și poate să conțină numai litere, cifre, spații și subliniere" DocType: Communication,Spam,Spam DocType: Integration Request,Integration Request,cerere de integrare -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Dragă +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Dragă DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Conturi de utilizator DocType: Web Page,HTML for header section. Optional,HTML pentru secțiunea antet. Opţional apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Această caracteristică este brand nou și încă experimental -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maxime {0} rânduri permis +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maxime {0} rânduri permis DocType: Email Unsubscribe,Global Unsubscribe,Global Dezabonare apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Aceasta este o parolă foarte frecvente. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Vedere DocType: Communication,Assigned,atribuit DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Selectați formatul de imprimare +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Selectați formatul de imprimare apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,modele de tastatură scurte sunt ușor de ghicit DocType: Portal Settings,Portal Menu,Meniu portal apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Lungimea de {0} ar trebui să fie între 1 și 1000 @@ -1715,7 +1714,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Utilizatorul nu poate căuta apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Format Ieșire nevalid DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplicați această regulă în cazul în care utilizatorul este proprietarul -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Va fi ID-ul dvs. de conectare +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Va fi ID-ul dvs. de conectare apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Întocmiţi raport DocType: Note,Notify users with a popup when they log in,Notifica utilizatorii cu un pop-up atunci când se autentifică apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} nu există, selectează un nou obiectiv pentru fuzionare" @@ -1734,17 +1733,18 @@ DocType: User Permission for Page and Report,Roles Permission,roluri Permisiunea apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Actualizare DocType: Error Snapshot,Snapshot View,Vizualizare instantaneu apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Vă rugăm să salvați Newsletter înainte de a trimite -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Opțiuni trebuie să fie un DocType valabil pentru domeniu {0} în rândul {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ani în urmă +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Opțiuni trebuie să fie un DocType valabil pentru domeniu {0} în rândul {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Editare proprietăți DocType: Patch Log,List of patches executed,Listă de patch-uri executate apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} deja dezabonat -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Comunicare Mediu +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Comunicare Mediu DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Vă rugăm să selectați o altă metodă de plată. Razorpay nu acceptă tranzacții în valută „{0}“ apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Pentru backup coada de așteptare. Aceasta poate dura câteva minute până la o oră. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Înregistrează-client OAuth App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nu poate fi ""{2}"". Ar trebui să fie unul dintre ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nu poate fi ""{2}"". Ar trebui să fie unul dintre ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} sau {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Afișați sau Ascundere pictograme pentru desktop apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Parola Actualizare @@ -1771,7 +1771,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Afișează sfârșiturile de linie după secțiunile DocType: Blogger,Short Name,Numele scurt apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Pagina {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Sunteți selectați Opțiuni de sincronizare ca toate, va resincronizare toate \ citit ca și mesaj necitit de la server. Acest lucru poate provoca, de asemenea, dublarea \ de comunicare (e-mailuri)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Dimensiune fișiere @@ -1783,6 +1783,7 @@ DocType: Contact,Purchase Manager,Cumpărare Director DocType: Custom Script,Sample,Exemplu apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Tag-uri DocType: Event,Every Week,În fiecare săptămână +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Nu se configurează contul de e-mail. Creați un nou cont de e-mail din Configurare> Email> Cont email apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Apasa aici pentru a verifica utilizarea sau upgrade la un plan superior DocType: Custom Field,Is Mandatory Field,Este câmp obligatoriu DocType: User,Website User,Site-ul utilizatorului @@ -1806,16 +1807,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Meniu personalizat din bara laterală DocType: Workflow State,pencil,creion apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat mesaje și alte notificări. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Introduceți După ce nu poate fi setat ca {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Introduceți După ce nu poate fi setat ca {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Distribuiți {0} cu apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Configurarea contului de e-mail vă rugăm să introduceți parola pentru: DocType: Workflow State,hand-up,mână-sus DocType: Blog Settings,Writers Introduction,Scriitori Introducere DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Eroare în timp ce evaluarea e-mail Alert {0}. Vă rugăm să corectați șablonul. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Eroare în timp ce evaluarea e-mail Alert {0}. Vă rugăm să corectați șablonul. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Selectați Document Type sau Rol pentru a începe. DocType: Contact,Passive,Pasiv DocType: Contact,Accounts Manager,Manager de Conturi +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Plata dvs. este anulată. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Selectați tipul de fișier DocType: Help Article,Knowledge Base Editor,Baza de cunoștințe Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Pagina nu a fost găsită. @@ -1843,6 +1845,7 @@ DocType: Property Setter,Property Type,Tipul de proprietate DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Numai Administratorul poate salva un raport standard. Vă rugăm să redenumi și a salva. DocType: System Settings,Background Workers,Lucrătorii de fundal +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Numele câmpului {0} în conflict cu obiectul meta DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stare Document apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Ați făcut {0} din {1} @@ -1867,7 +1870,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Permisiuni Afișare de utilizare apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Trebuie să fii autentificat și să ai System Manager Rolul a putea accesa backup-uri. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Rămas -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Vă rugăm să salvați înainte de a atașa. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Vă rugăm să salvați înainte de a atașa. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Adăugat {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema implicită este setată în {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FIELDTYPE nu poate fi schimbat de la {0} la {1} în rândul {2} @@ -1888,11 +1891,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesiunea St apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesiunea Start nu a reușit apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Acest e-mail a fost trimis la {0} și copiat la {1} DocType: Workflow State,th,-lea -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Configurați implicit contul de e-mail din Configurare> Email> Cont email -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},A crea un nou {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},A crea un nou {0} DocType: Email Rule,Is Spam,este Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Raport {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Deschide {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Deschide {0} DocType: OAuth Client,Default Redirect URI,Implicit Redirecționarea URI DocType: Email Alert,Recipients,Destinatarii DocType: Workflow State,ok-sign,ok-semn @@ -1910,6 +1912,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Articole de ajutor ,Modules Setup,Module Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tip: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Plata dvs. a eșuat. DocType: Communication,Unshared,unshared DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modulul Nu a fost găsit @@ -1955,7 +1958,7 @@ DocType: Website Settings,Brand Image,Imaginea marcii DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup de bara de navigare de sus, subsol și logo-ul." DocType: Web Form Field,Max Value,Valoarea maximă -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Pentru {0} la nivel {1} din {2} în rândul {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Pentru {0} la nivel {1} din {2} în rândul {3} DocType: Contact,All,Tot DocType: Email Queue,Recipient,Destinatar DocType: Communication,Has Attachment,are Atașament @@ -1972,7 +1975,8 @@ DocType: Workflow State,align-right,aliniați-dreapta DocType: Auto Email Report,Email To,E-mail Pentru a apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} nu este gol DocType: Page,Roles,Roluri -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Domeniu {0} nu este selectabil. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Eroare: Valoarea lipsește pentru {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Domeniu {0} nu este selectabil. DocType: System Settings,Session Expiry,Sesiunea de expirare DocType: Workflow State,ban-circle,cerc-interzicere DocType: Email Flag Queue,Unread,necitită @@ -1987,7 +1991,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Prestabilite de utilizator apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Creeaza Nou DocType: Workflow State,chevron-down,Chevron-jos -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Nu e-mail trimis la {0} (nesubscrise / dezactivat) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Nu e-mail trimis la {0} (nesubscrise / dezactivat) DocType: Async Task,Traceback,Traceback DocType: Currency,Smallest Currency Fraction Value,Cel mai mic valutar Fracțiunea Valoare apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Atribuţi pentru @@ -1998,12 +2002,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,De la DocType: Website Theme,Google Font (Heading),Google Font (rubrica) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Selectați un nod grup prim. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Găsi {0} din {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Găsi {0} din {1} DocType: OAuth Client,Implicit,Implicit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Adăugați ca şi comunicare comparativ acestui tip de document (trebuie să conţină câmpurile, ""stare"", ""subiect"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URIs pentru a primi codul de autorizare de îndată ce utilizatorul permite accesul, precum și răspunsurile defectuozitate. În mod obișnuit un punct final REST expuse de Client App.
de exemplu, http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nu este permis să se schimbe {0} de la depunerea +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nu este permis să se schimbe {0} de la depunerea DocType: Communication,Comment Type,Comentariu Tip DocType: OAuth Client,OAuth Client,client OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Utilizatori @@ -2018,7 +2022,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtrați datele DocType: Auto Email Report,Filter Data,Filtrați datele apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Adaugă o etichetă -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Vă rugăm să atașați un fișier în primul rând. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Vă rugăm să atașați un fișier în primul rând. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Au existat unele erori de stabilire numele, vă rugăm să contactați administratorul" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Contul de e-mail primit nu este corect apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2033,11 +2037,11 @@ DocType: Blog Post,Email Sent,E-mail trimis DocType: DocField,Ignore XSS Filter,Ignore XSS Filtru apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,îndepărtat apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Setări Dropbox de rezervă -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Trimite ca e-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Trimite ca e-mail DocType: Website Theme,Link Color,Culoarea link-ului apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Utilizatorul {0} nu poate fi dezactivat apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Dragă System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tara ta +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tara ta DocType: Event,Sunday,Duminică apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,În Grid View DocType: Address Template,Template,Șablon @@ -2045,7 +2049,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Setări LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Modificând apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Setări gateway de plată PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vor primi trunchiate, ca și caractere maxim permis este {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) vor primi trunchiate, ca și caractere maxim permis este {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resurse Proprietar parolă Atestări DocType: OAuth Client,Response Type,Tip de răspuns apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Utilizatori max @@ -2062,7 +2066,7 @@ DocType: DocField,Table,Tabel DocType: File,File Size,Dimensiune fișier apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Trebuie sa te autentifici pentru a trimite acest formular DocType: User,Background Image,Imagine de fundal -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Selectați țara ta, fusul orar și valutar" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Selectați țara ta, fusul orar și valutar" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Între DocType: Async Task,Queued,Coada de așteptare @@ -2071,6 +2075,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Creează apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filtru invalid: {0} DocType: Email Account,no failed attempts,încercări nereușite nu +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Nu a fost găsit niciun șablon de adresă implicit. Creați unul nou din Setup> Printing and Branding> Template Address. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Aplicația Cheia de acces DocType: OAuth Bearer Token,Access Token,Acces Token @@ -2088,8 +2093,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Nume de utilizator Github DocType: DocType,Image View,Imagine Vizualizare apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Se pare că ceva a mers prost în timpul tranzacției. Din moment ce nu am confirmat plata, Paypal va returna automat această sumă. În caz contrar, vă rugăm să ne trimiteți un e-mail și menționează ID-ul de corespondență: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Includeți simboluri, numere și majuscule în parolă" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","După ce se introduce câmpul '{0}' menționat în Câmpul personalizat '{1}', cu eticheta "{2} ', nu există" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Includeți simboluri, numere și majuscule în parolă" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","După ce se introduce câmpul '{0}' menționat în Câmpul personalizat '{1}', cu eticheta "{2} ', nu există" DocType: Workflow State,signal,semnal DocType: DocType,Show Print First,Arată Print Primul apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter pentru a posta @@ -2120,14 +2125,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Fișier "{0}" nu a fost găsit apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Eliminați Secțiunea DocType: User,Change Password,Schimbaţi parola -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email invalid: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Buna! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email invalid: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Buna! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,End eveniment trebuie să fie după început apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nu aveți permisiunea de a obține un raport cu privire la: {0} +DocType: System Settings,Apply Strict User Permissions,Aplicați Permisiuni stricte pentru utilizatori DocType: DocField,Allow Bulk Edit,Permiteți editarea în bloc DocType: DocField,Allow Bulk Edit,Permiteți editarea în bloc DocType: Blog Post,Blog Post,Postare blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Cautare avansată +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Cautare avansată apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Instrucțiuni de resetare a parolei au fost trimise la adresa dvs. de email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivelul 0 este pentru permisiunile la nivel de document, \ niveluri mai ridicate pentru permisiunile la nivel de câmp." @@ -2146,16 +2152,15 @@ DocType: Web Page,Sidebar and Comments,Bara laterală și Comentarii apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Atunci când modifică un document după anula și salvați-l, acesta va primi un număr nou, care este o versiune a numărului vechi." DocType: Stripe Settings,Publishable Key,Cheia publicabilă DocType: Stripe Settings,Publishable Key,Cheia publicabilă -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ani în urmă DocType: Workflow State,circle-arrow-left,cerc-săgeată stânga- apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis serverul cache nu rulează. Vă rugăm să contactați Administrator / Suport tehnic apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Nume partid -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Face un nou record +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Face un nou record apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,In cautarea apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,In cautarea DocType: Currency,Fraction,Fracțiune DocType: LDAP Settings,LDAP First Name Field,LDAP Nume câmp -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Selectați din atașamente existente +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Selectați din atașamente existente DocType: Custom Field,Field Description,Descriere câmp apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Nume nu a stabilit prin Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Inbox E-mail @@ -2201,11 +2206,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Nivelul de permisiune DocType: User,Send Notifications for Transactions I Follow,Trimite notificări pentru Tranzacții I Follow -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: nu se poate configura trimiteți, anulați, modificați fără scrieți" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: nu se poate configura trimiteți, anulați, modificați fără scrieți" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Sunteţi sigur că doriți ștergerea atașamentului ? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nu se poate șterge sau anula , deoarece {0} {1} este legat cu {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nu s-au găsit rezultate pentru '

-apps/frappe/frappe/__init__.py +1063,Thank you,Mulțumesc +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nu se poate șterge sau anula , deoarece {0} {1} este legat cu {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Mulțumesc apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Se salveaza... DocType: Print Settings,Print Style Preview,Print Preview Style apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2217,10 +2221,10 @@ DocType: DocField,In List View,În Vizualizare listă DocType: Email Account,Use TLS,Utilizați TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Autentificare invalid sau parola apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Adăugaţi javascript personalizat formelor. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr nr +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr nr ,Role Permissions Manager,Permisiunile rol Director apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Numele de noul format de imprimare -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,clar atașamentul +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,clar atașamentul apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatoriu: ,User Permissions Manager,Permisiunile utilizatorului Director DocType: Property Setter,New value to be set,Noua valoare urmează să fie stabilite @@ -2250,26 +2254,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 zile apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Clasifica blog. DocType: Workflow State,Time,Oră DocType: DocField,Attach,Ataşaţi -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nu este un pattern valid pentru câmp. Ar trebui să fie {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nu este un pattern valid pentru câmp. Ar trebui să fie {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Trimite feedback Cerere numai în cazul în care există cel puțin o comunicare este disponibilă pentru document. DocType: Custom Role,Permission Rules,Reguli de permisiune DocType: GSuite Settings,GSuite Settings,Setările GSuite DocType: Address,Links,Link-uri -apps/frappe/frappe/model/base_document.py +428,Value missing for,Valoare lipsă pentru +apps/frappe/frappe/model/base_document.py +427,Value missing for,Valoare lipsă pentru apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Adăugaţi fiu -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Înregistrarea introdusă nu poate fi ștearsă. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Înregistrarea introdusă nu poate fi ștearsă. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Dimensiunea copiei de rezervă DocType: GSuite Templates,Template Name,Numele de șablon -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nou tip de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nou tip de document DocType: Custom DocPerm,Read,Citirea DocType: Role Permission for Page and Report,Role Permission for Page and Report,Permisiunea Rolul pentru pagina și Raport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,align Valoare apps/frappe/frappe/www/update-password.html +14,Old Password,Parola Veche -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Mesajele de {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Mesajele de {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Pentru a formata coloanele, da etichete de coloană în interogare." DocType: Has Domain,Has Domain,Are domeniu apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nu ai cont? Inscrie -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: nu se poate configura alocați modificare dacă nu există posibilitate de introducere +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: nu se poate configura alocați modificare dacă nu există posibilitate de introducere DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Editare permisiuni grupuri de utuilzatori DocType: Communication,Link DocType,link DocType @@ -2369,7 +2373,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Asigurați-vă că profilul dvs. are o adresa de email apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Aveți modificări nesalvate din acest formular. Vă rugăm să salvați înainte de a continua. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Implicit pentru {0} trebuie să fie o opțiune +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Implicit pentru {0} trebuie să fie o opțiune DocType: Tag Doc Category,Tag Doc Category,Eticheta Doc Categorie DocType: User,User Image,Imagine utilizator apps/frappe/frappe/email/queue.py +289,Emails are muted,E-mailuri sunt dezactivate @@ -2402,7 +2406,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Actiuni ur DocType: Workflow State,ok,O.K. DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Aceste valori vor fi actualizate în mod automat în tranzacții și, de asemenea, va fi util pentru a restricționa permisiunile pentru acest utilizator cu privire la tranzacțiile care conțin aceste valori." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Editor -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Eșuat: {0} la {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Eșuat: {0} la {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Obligatoriu selectați apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Parcurgere apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-mailurile trimise @@ -2414,7 +2418,7 @@ DocType: Async Task,Running,Alergare apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Vă rugăm să treceți pentru a adăuga mai mult de {0} abonati DocType: Workflow State,hand-left,mână-stânga -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} pentru {1} nu poate fi unic +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} pentru {1} nu poate fi unic DocType: Email Account,Use SSL,Utilizați SSL DocType: Workflow State,play-circle,play-cerc apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Selectați Print Format de Edit @@ -2469,7 +2473,7 @@ DocType: DocField,No Copy,Nu Copy DocType: Workflow State,qrcode,Cod QR apps/frappe/frappe/www/login.html +34,Login with LDAP,Autentifică-te cu LDAP DocType: Web Form,Breadcrumbs,Pesmet -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Dacă Proprietar +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Dacă Proprietar DocType: OAuth Authorization Code,Expiration time,timp de expirare DocType: Web Page,Website Sidebar,Site-ul din bara laterală DocType: Web Form,Show Sidebar,Afișează bara laterală @@ -2489,7 +2493,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nu s-au găsit {0 apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,"Numele și prenumele, prin ele însele sunt ușor de ghicit." apps/frappe/frappe/config/website.py +93,Knowledge Base,Bază de cunoștințe DocType: Workflow State,briefcase,servietă -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Valoare nu poate fi schimbat pentru {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Valoare nu poate fi schimbat pentru {0} DocType: Feedback Request,Is Manual,este Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil reprezinta culoarea butonului: Succes - verde, Pericol - Red, Inverse - negru, primar - Dark Blue, Info - albastru deschis, de avertizare - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Nici un raport Loaded. Va rugam sa folositi interogare-raport / [Reclama Name] pentru a rula un raport. @@ -2568,7 +2572,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progres apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,prin normă apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Câmpuri lipsă apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,numele_campului nevalid '{0}' în autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Cauta un tip de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Cauta un tip de document apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Permiteți câmpului să rămână editabil chiar și după introducere DocType: Custom DocPerm,Role and Level,Rol și la nivel DocType: File,Thumbnail URL,URL miniatură @@ -2585,19 +2589,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mai multe informatii DocType: Desktop Icon,Desktop Icon,Icon Spațiu de lucru -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Plata a fost acceptată cu succes +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Plata a fost acceptată cu succes apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Ne pare rău! Tu nu sunt permise pentru a vizualiza această pagină. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Sfat: celula clic dublu pentru a edita DocType: Workflow State,bell,Sonerie apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Eroare în alertă prin e-mail apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Eroare în alertă prin e-mail apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Partajați acest document +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Configurare> Manager permisiuni utilizator apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} nu poate fi un nod frunză, deoarece are copii" DocType: Communication,Info,Informatii -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Adauga atasament +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Adauga atasament DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Vă mulțumim pentru mesajul dvs. -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Trimite Confirmările de citire +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Trimite Confirmările de citire DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup prin intermediul site-ului Config @@ -2675,6 +2680,7 @@ DocType: DocType,Web View,Vizualizare web apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Avertisment: Acest format de imprimare este în stil vechi și nu pot fi generate prin intermediul API. DocType: DocField,Print Width,Lățime de imprimare ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,Numărul de stat GST DocType: User,Allow user to login only before this hour (0-24),Permiteţi utilizatorului să se poată loga doar înainte de această oră (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder este obligatorie apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2703,7 +2709,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Mic Text apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administratorul a accesat {0} în data {1} prin adresa IP {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Egal -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link"" tip opțiuni de câmp trebuie să indice un alt Link câmp cu opțiuni precum ""DocType""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link"" tip opțiuni de câmp trebuie să indice un alt Link câmp cu opțiuni precum ""DocType""" DocType: About Us Settings,Team Members Heading,Membrii echipei Rubrică apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Format CSV nevalid apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Număr set de Backupurile @@ -2714,7 +2720,7 @@ DocType: Contact,Contact,Persoana de Contact DocType: User,Third Party Authentication,Autentificare terță parte DocType: Website Settings,Banner is above the Top Menu Bar.,Banner-ul este poziţionat deasupra barei de meniu superior. DocType: Razorpay Settings,API Secret,API-ul Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Raport de export: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Raport de export: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} nu există DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2737,7 +2743,7 @@ DocType: Kanban Board Column,Column Name,Coloana Nume DocType: Language,Based On,Bazat pe apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Face implicit apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Verificați adresa URL frappe Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} pentru {1} nu pot fi indexate +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} pentru {1} nu pot fi indexate DocType: Communication,Email Account,Contul de e-mail DocType: Workflow State,Download,Descărcare fişier DocType: Blog Post,Blog Intro,Intro blog @@ -2748,7 +2754,7 @@ DocType: Web Page,Insert Code,Introduceți codul DocType: ToDo,Low,Scăzut apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Puteți adăuga proprietăți dinamice din documentul cu ajutorul Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Limita nevalidă {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lista de un tip de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lista de un tip de document DocType: Event,Ref Type,Tip Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Dacă încărcați noi recorduri, lăsați martor ""name"" (ID) coloană." DocType: Address,Chattisgarh,Chattisgarh @@ -2770,26 +2776,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Trimite Printeaza ca PDF DocType: Web Form,Amount,Sumă DocType: Workflow Transition,Allowed,Permis -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Nu poate fi decât o turmă într-o formă +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Nu poate fi decât o turmă într-o formă apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nu se poate scrie fișierul pentru {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Restabiliți la setările implicite? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Invalid Home Page apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Autentificare invalid. Încearcă din nou. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opțiunile necesare pentru câmpul Tip sau Legătură {0} pe rând {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opțiunile necesare pentru câmpul Tip sau Legătură {0} pe rând {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opțiunile necesare pentru câmpul Tip sau Legătură {0} pe rând {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opțiunile necesare pentru câmpul Tip sau Legătură {0} pe rând {1} DocType: Auto Email Report,Send only if there is any data,Trimite numai în cazul în care există date apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Reset Filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Permisiunea la nivel 0 trebuie să fie configurată înainte de a configura niveluri mai ridicate +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Permisiunea la nivel 0 trebuie să fie configurată înainte de a configura niveluri mai ridicate apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Alocare finalizată de {0} DocType: Integration Request,Remote,la distanta -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Calculaţi +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Calculaţi apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vă rugăm să selectați DocType primul apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Confirmați Email-ul dvs. apps/frappe/frappe/www/login.html +42,Or login with,Sau Login cu DocType: Error Snapshot,Locals,Localnicii apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Comunicate prin intermediul {0} pe {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} te-a menționat într-un comentariu in {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex (55 + 434) / 4 sau = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ex (55 + 434) / 4 sau = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} este necesar DocType: Integration Request,Integration Type,Tipul de integrare DocType: Newsletter,Send Attachements,Trimite Accesorii si atașamente @@ -2799,15 +2805,15 @@ DocType: DocField,Perm Level,Nivelul Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Evenimente în calendarul de azi DocType: Web Page,Web Page,Pagină web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"În Căutarea globală" nu este permis pentru tipul {0} în rândul {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"În Căutarea globală" nu este permis pentru tipul {0} în rândul {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"În Căutarea globală" nu este permis pentru tipul {0} în rândul {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"În Căutarea globală" nu este permis pentru tipul {0} în rândul {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Vizualizare Listă -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Data trebuie să fie în format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Data trebuie să fie în format: {0} DocType: Workflow,Don't Override Status,Nu Override Stare apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Vă rugăm să dați un rating. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Cerere pentru feedback apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Termen de căutare -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Primul utilizator: +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Primul utilizator: apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Selectați coloane DocType: Translation,Source Text,Text sursă apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parametrii lipsă de autentificare @@ -2829,7 +2835,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importul DocType: ToDo,Assigned By,Atribuit de către apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Puteți folosi Customize formularul pentru a stabili niveluri pe domenii. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Selectați regiunea dvs. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Selectați regiunea dvs. DocType: Custom DocPerm,Level,Nivel DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Suma trebuie să fie mai mare decât 0. @@ -2849,7 +2855,7 @@ DocType: Website Theme,Background,Fundal DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Lista JSON de doctypes folosite pentru a aplica Permisiuni utilizator. Dacă gol, toate doctypes postat vor fi folosite pentru a aplica Permisiuni utilizator." DocType: Report,Ref DocType,DocType Ref apps/frappe/frappe/www/feedback.py +42,Please add a rating,Adăugați o evaluare -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: nu se poate configura modificați fără anulați +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: nu se poate configura modificați fără anulați apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Este masa pentru copii apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} trebuie sa fie unul din {1} @@ -2864,7 +2870,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Acest lucru este valab apps/frappe/frappe/config/setup.py +260,Install Applications.,Instalează aplicații. DocType: Contact,Last Name,Nume DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nu există alerte pentru ziua de azi +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nu există alerte pentru ziua de azi DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Trimite e-mail Print atașate în format PDF (recomandat) DocType: Web Page,Left,Stânga DocType: Event,All Day,Toată ziua @@ -2878,7 +2884,7 @@ DocType: Event,Send an email reminder in the morning,Trimite un memento e-mail DocType: Blog Post,Published On,Publicat în data de DocType: Contact,Gender,Sex apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Informații obligatorii lipsesc: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Câmp "{0}" nu poate fi setat ca unic, deoarece are valori non-unice" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Câmp "{0}" nu poate fi setat ca unic, deoarece are valori non-unice" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Doar 200 inserții permise într-o singură cerere DocType: Footer Item,URL,URL-ul DocType: ToDo,Reference Type,Tipul de referință @@ -2891,7 +2897,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,semn de avertizare DocType: Workflow State,User,Utilizator DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Arată titlu în fereastra browser-ului ca "Prefix - titlu" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text de tip de document +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text de tip de document apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Executați teste apps/frappe/frappe/handler.py +91,Logged Out,Delogat apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mai Mult... @@ -2917,13 +2923,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Se vizualizeaza DocType: DocField,Default,Implicit apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} adăugat -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Căutați pentru '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Căutați pentru '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Vă rugăm să salvați raportul întâi apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonați adăugați apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nu în DocType: Workflow State,star,stea -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,valori separate prin virgule -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Lățimea maximă pentru tipul de valuta este de 100px la rând {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,valori separate prin virgule +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Lățimea maximă pentru tipul de valuta este de 100px la rând {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Vă rugăm să oferiți feedback pentru {0} apps/frappe/frappe/config/website.py +13,Content web page.,Pagina web de conținut. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Adăugaţi un nou rol @@ -2942,7 +2948,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nu un utilizator LDAP valid apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nu este un stat valid apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Vă rugăm să selectați o altă metodă de plată. PayPal nu acceptă tranzacții în valută „{0}“ -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,câmp de căutare {0} nu este validă +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,câmp de căutare {0} nu este validă DocType: Workflow State,ok-circle,ok-cerc apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Poti gasi lucruri întrebând "găsi portocaliu în clienți" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Ne pare rău! Utilizatorul trebuie să aibă acces complet la propriul record. @@ -3004,7 +3010,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filtru Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text de afișat pentru link catre pagina de web în cazul în care acest formular are o pagină web. Link traseu vor fi generate automat pe baza `` page_name` și parent_website_route` DocType: Feedback Request,Feedback Trigger,Feedback declanșare -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Vă rugăm să setați {0} primul +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Vă rugăm să setați {0} primul DocType: Unhandled Email,Message-id,Mesaj id- DocType: Patch Log,Patch,Peticirea DocType: Async Task,Failed,A eșuat diff --git a/frappe/translations/ru.csv b/frappe/translations/ru.csv index aae5ee195e..9fae225a0e 100644 --- a/frappe/translations/ru.csv +++ b/frappe/translations/ru.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Имя пользователя Фейсбук DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Примечание: Несколько сессий будет разрешено в случае мобильного устройства apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Включен электронный почтовый ящик для пользователя {пользователей} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не можете отправить это письмо. Вы перешли лимит отправки {0} писем в этом месяце. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Постоянно провести {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Постоянно провести {0}? DocType: Address,County,округ DocType: Workflow,If Checked workflow status will not override status in list view,Если флажок установлен статус рабочего процесса не отменяет статус в виде списка apps/frappe/frappe/client.py +280,Invalid file path: {0},Неверный путь к файлу: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Пож apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Дерево DocType: User,User Emails,Письма пользователей DocType: User,Username,Имя пользователя -apps/frappe/frappe/model/base_document.py +581,Value too big,Слишком большое значение +apps/frappe/frappe/model/base_document.py +580,Value too big,Слишком большое значение DocType: DocField,DocField,Поле документа DocType: GSuite Settings,Run Script Test,Проверка сценария запуска DocType: Contact,Department,Отдел @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Бревна DocType: Custom DocPerm,This role update User Permissions for a user,Эта роль Разрешения обновление пользователя пользователь apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Переименовать {0} DocType: Workflow State,zoom-out,отдалить -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Не могу открыть {0}, когда его экземпляр открыт" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Не могу открыть {0}, когда его экземпляр открыт" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Таблица {0} не может быть пустым apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,С Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Изображений DocType: Communication,Reference Owner,Ссылка Владелец DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Наименьший циркулирующую фракцию блока (монета). Для например 1 цент на доллар, и он должен быть введен в 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Строка {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Строка {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Пожалуйста, дайте FULLNAME." apps/frappe/frappe/model/document.py +904,Beginning with,начиная с apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Шаблон Импорт данных @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Родитель DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Если включено, сила пароля будет применяться в зависимости от значения минимального пароля. Значение 2 является средним сильным, а 4 - очень сильным." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Если включено, сила пароля будет применяться в зависимости от значения минимального пароля. Значение 2 является средним сильным, а 4 - очень сильным." DocType: About Us Settings,"""Team Members"" or ""Management""","""Члены команды"" или ""Управление""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"По умолчанию для ""Проверка"" тип поля должен быть '0' или '1'" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"По умолчанию для ""Проверка"" тип поля должен быть '0' или '1'" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Вчера DocType: Contact,Designation,Назначение DocType: Test Runner,Test Runner,Тест Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Есть Опубликовано поле DocType: Email Group,Email Group,E-mail Группа DocType: Note,Seen By,Виденный apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Добавить несколько -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Не как +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Не как apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Установите метку дисплея для области apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Неверное значение: {0} должно быть {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть, только для чтения, доступ и т.д.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Наст apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Администратор Записан В DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Параметры контакта, как ""Sales Query, поддержки Query"" и т.д. каждого с новой строки или через запятую." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Скачать -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Вставить +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Вставить apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Выберите {0} DocType: Print Settings,Classic,Классические DocType: Desktop Icon,Color,Цвет @@ -122,7 +122,7 @@ DocType: Translation,Translation,Перевод apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Устанавливать apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Г-н DocType: Custom Script,Client,Клиент -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Эта форма была изменена после загрузки его +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Эта форма была изменена после загрузки его DocType: User Permission for Page and Report,User Permission for Page and Report,Разрешение пользователя для страниц и отчета DocType: Address,Himachal Pradesh,Химачал-Прадеш DocType: System Settings,"If not set, the currency precision will depend on number format","Если не установлено, точность валюты будет зависеть от формата числа" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Причина apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Пожалуйста, сформулируйте пользователя" DocType: Email Unsubscribe,Email Unsubscribe,E-mail Отписаться DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Выберите изображение шириной около 150px с прозрачным фоном для достижения наилучших результатов. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Первый пользователь будет System Manager (вы можете изменить это позже). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Первый пользователь будет System Manager (вы можете изменить это позже). ,App Installer,Установщик Приложения DocType: Workflow State,circle-arrow-up,Круг со стрелкой вверх apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Загрузка... DocType: Email Domain,Email Domain,Домен Email DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Для всех -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Не удается установить Импорт без Создать +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Не удается установить Импорт без Создать apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Событие и другие календари. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Все поля обязательны для отправки комментария. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Перетащите для сортировки столбцов @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Стандартное меню apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Не удается удалить Дома и папки Вложения apps/frappe/frappe/config/desk.py +19,Files,файлы apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Разрешения быть применена на пользователей на основе того, что Роли они назначены." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Вы не можете отправлять письма, связанные с этим документом" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Пожалуйста, выберите по крайней мере 1 столбец {0} для сортировки / групп" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Вы не можете отправлять письма, связанные с этим документом" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Пожалуйста, выберите по крайней мере 1 столбец {0} для сортировки / групп" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Проверьте это, если вы проверяете ваш платеж с помощью API Песочница" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Вы не можете удалить стандартный сайт Стиль DocType: Feedback Trigger,Example,Пример @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Всего Подписчики apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Если Роль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Сохранить как DocType: Communication,Seen,Посещение -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Показать больше информации +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Показать больше информации DocType: System Settings,Run scheduled jobs only if checked,"Запуск запланированных заданий, только если проверяются" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Будет показано, только если заголовки разделов включены" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Архив @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Свернуть Заголовок DocType: Address,Current,Текущий DocType: Address,Current,Текущий -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Связанные документы apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Группы DOCTYPES DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,удалить круга @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,фильтр apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Имя поля {0} не может иметь специальные символы, такие как {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Обновление много значений в одно время. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Ошибка: документ был изменен после того, как вы открыли его" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не найден шаблон шаблона по умолчанию. Создайте новый файл из раздела «Настройка»> «Печать и брендинг»> «Шаблон адреса». apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} сеанс завершен: {1} DocType: Address,West Bengal,Западная Бенгалия -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: Не удается установить Назначить проведение, если не подлежит проведению" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: Не удается установить Назначить проведение, если не подлежит проведению" DocType: Social Login Keys,Facebook,Фэйсбук apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Отфильтровано по "{0}" DocType: Salutation,Administrator,Администратор @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Название блога apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Стандартные роли не могут быть отключены DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Рассылка новостей -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Невозможно использовать подзапрос в порядке +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Невозможно использовать подзапрос в порядке DocType: Web Form,Button Help,Кнопка Помощь DocType: Kanban Board Column,purple,пурпурный DocType: About Us Settings,Team Members,Члены команды @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Получи apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Ваша подписка истекла {0}. Чтобы продлить срок, {1}." DocType: Workflow State,plus-sign,знак плюс apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Установка уже завершена -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Не установлен App {0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Не установлен App {0} DocType: Workflow State,Refresh,Обновить DocType: Event,Public,Публично apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,"Ничего, чтобы показать" @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,В избран apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Поддержка по электронной почте DocType: DocField,Print Hide If No Value,Печать Скрыть Если нет значения DocType: Event,yellow,желтый -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Опубликовано Поле должно быть действительным имя_полем +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Опубликовано Поле должно быть действительным имя_полем apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Добавить вложение DocType: Block Module,Block Module,Блок Модуль apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Экспорт шаблона @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Новая учетная запись была создана для вас в {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Инструкции отправлены по электронной почте apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Инструкции отправлены по электронной почте -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Введите E-mail получателя (ей) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Введите E-mail получателя (ей) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Очередь Флаг Email apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Не удается идентифицировать открытое {0}. Попробуйте что-нибудь другое. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,Идентификатор сообщения DocType: Property Setter,Field Name,Имя поля apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite не настроен. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,или -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Модуль имя ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Продолжать +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Модуль имя ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Продолжать DocType: Custom Field,Fieldname,Имя поля DocType: Workflow State,certificate,сертификат DocType: User,Tile,Плитка @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Показать все версии DocType: Workflow State,Print,печать DocType: User,Restrict IP,Ограничить документ IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Панель приборов apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Невозможно отправить электронную почту в это время apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Поиск либо введите команду DocType: Communication,Timeline Name,Сроки Имя @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Мастер Менеджер по про apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Последний шаг apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Название типа документа (DOCTYPE) вы хотите это поле, чтобы быть связаны с. например клиентов" DocType: User,Roles Assigned,Роли Assigned -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Поиск по справке -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Поиск по справке +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Поиск по справке +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Поиск по справке DocType: Top Bar Item,Parent Label,Родитель Этикетка apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ваш запрос был получен. Мы ответим в ближайшее время. Если у вас есть какая-либо дополнительная информация, пожалуйста, ответьте на это письмо." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Разрешения автоматически переведен на стандартные отчеты и альбом. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Редактировать Заголовок DocType: File,File URL,URL файла DocType: Version,Table HTML,Таблица HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Не найдено результатов для '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Добавить Подписчики apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Предстоящие события на сегодня DocType: Email Alert Recipient,Email By Document Field,E-mail По Field документов @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Сумма На основании по apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Пользователь является обязательным для Поделиться DocType: DocField,Hidden,скрытый DocType: Web Form,Allow Incomplete Forms,Разрешить Неполные формы -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} должен быть установлен первым +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} должен быть установлен первым apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Используйте несколько слов, избегать общих фраз." DocType: Workflow State,plane,самолет -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,К сожалению. Ваш платеж не удался. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Если вы загружаете новые рекорды "", Нейминг серии"" становится обязательным, если они присутствуют." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Виртуальный на сегодняшний день +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Виртуальный на сегодняшний день apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType могут быть переименованы только администратор apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},измененное значение {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Пожалуйста, проверьте свою электронную почту для проверки" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold не может быть в конце виде +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold не может быть в конце виде DocType: Communication,Bounced,Возвращенные DocType: Deleted Document,Deleted Name,Удаляется Имя apps/frappe/frappe/config/setup.py +14,System and Website Users,Пользователи сайта и системы @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Документ Queu DocType: GSuite Templates,Destination ID,Идентификатор назначения DocType: Desktop Icon,List,список DocType: Communication,Link Name,Ссылка Имя -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в строке {1} не может быть скрытым и обязательно без значения по умолчанию +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в строке {1} не может быть скрытым и обязательно без значения по умолчанию DocType: System Settings,mm/dd/yyyy,дд / мм / гггг apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Неверный пароль: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Неверный пароль: DocType: Print Settings,Send document web view link in email,Отправить документ ссылку на веб-просмотра в электронной почте apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ваша обратная связь для документа {0} сохраняется успешно apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Предыдущая -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} строк для {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Суб-валюты. Для например ""Цент """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Выберите загруженный файл @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Ссылка apps/frappe/frappe/utils/file_manager.py +96,No file attached,Нет прикрепленных файлов DocType: Version,Version,Версия DocType: User,Fill Screen,Заполнить экран -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Невозможно отобразить этот отчет дерево, из-за отсутствия данных. Скорее всего, это фильтруется из-за разрешений." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Пожалуйста, настройте учетную запись электронной почты по умолчанию из «Настройка»> «Электронная почта»> «Учетная запись электронной почты»" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Невозможно отобразить этот отчет дерево, из-за отсутствия данных. Скорее всего, это фильтруется из-за разрешений." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Выберите Файл apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Редактировать с помощью Загрузить -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","тип документа ..., например, клиент" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","тип документа ..., например, клиент" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Условие '{0}' является недействительным DocType: Workflow State,barcode,Штрих-код apps/frappe/frappe/config/setup.py +232,Add your own translations,Добавить свои собственные переводы @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Среда apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Помимо ролей на основе разрешений Правил, можно применить разрешений пользователя на основе DOCTYPEs." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Эти разрешения будут применяться для всех сделок, где разрешается запись связаны между собой. Например, если компания C добавляется доступа пользователей пользовательского X, пользователь X будет только в состоянии видеть транзакции, которые имеет компания C в виде связанного значения." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Поле Изображение должно быть допустимым имя_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Поле Изображение должно быть допустимым имя_поля DocType: OAuth Client,Token,знак DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (имя) лица, имущество которого должно быть установлено" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Чтобы продлить срок, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Sidebar товары apps/frappe/frappe/installer.py +125,App {0} already installed,Приложение {0} уже установлено DocType: Workflow State,exclamation-sign,восклицательный знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Показать права Доступа -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Сроки поле должно быть Ссылка или Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Сроки поле должно быть Ссылка или Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Диапазон дат apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Ганта apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Страница {0} из {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Пре apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Ключ шифрования недействителен, проверьте сайт_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,для DocType: Kanban Board Column,darkgrey,темно-серый -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Успешное: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Успешное: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Невозможно изменить данные пользователя в демо. Подпишитесь на новую учетную запись на https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Пожалуйста, дублировать это внести изменения" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Поколение PDF удалось из-за битых ссылок изображения @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Складной apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Сохраненные apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Как я могу вам помочь? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Варианты выбора. Каждый вариант с новой строки. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Постоянно Отменить {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Постоянно Отменить {0}? DocType: Workflow State,music,музыка DocType: Web Page,Settings,Настройки apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Пожалуйста, сформулируйте тип документа" DocType: Print Format,Style Settings,Настройки стилей -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Сортировка поля {0} должен быть действительным имя_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Сортировка поля {0} должен быть действительным имя_поля apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Далее DocType: Contact,Sales Manager,Менеджер по продажам apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Переименовать DocType: Print Format,Format Data,Формат данных -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Мне нравится +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Мне нравится DocType: Customize Form Field,Customize Form Field,Настроить поля формы apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Разрешить пользователю DocType: OAuth Client,Grant Type,Тип гранта apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Проверьте, какие документы могут быть прочитаны Пользователем" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Приложение для листинга не допускается -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,используйте расширение% -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Домен электронной почты не настроен для этой учетной записи, создать один?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,используйте расширение% +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Домен электронной почты не настроен для этой учетной записи, создать один?" DocType: User,Reset Password Key,Сброс пароля ключ DocType: Email Account,Enable Auto Reply,Включить автоматический ответ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не Видел @@ -520,7 +520,7 @@ DocType: DocField,Set Only Once,Установлен только один ра DocType: Email Queue Recipient,Email Queue Recipient,E-mail получателя очереди DocType: Address,Nagaland,Нагаланд apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Имя пользователя {0} уже существует -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Не удается установить импорт как {1} не является ввозу +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Не удается установить импорт как {1} не является ввозу apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Существует ошибка в адресной Шаблон {0} DocType: Footer Item,"target = ""_blank""","целевых = ""_blank""" DocType: Workflow State,hdd,жесткий диск @@ -532,7 +532,7 @@ DocType: Communication,From Full Name,От полного имени apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Вы не имеете доступа к Отчету: {0} DocType: User,Send Welcome Email,Отправить на e-mail Добро пожаловать apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Добавить CSV файл, содержащий все права пользователей в том же формате, Скачать." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Удалить фильтр +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Удалить фильтр DocType: Address,Daman and Diu,Даман и Диу DocType: Address,Personal,Личное apps/frappe/frappe/config/setup.py +113,Bulk Rename,Массовое переименование @@ -563,11 +563,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Стандартный DocType не может иметь формат печати по умолчанию, используйте Настроить форму" DocType: Report,Query,Запрос DocType: DocType,Sort Order,Порядок сортировки -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""Режим Просмотра Списком"" не допускается для типа {0} в строке {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""Режим Просмотра Списком"" не допускается для типа {0} в строке {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Выберите метку, после чего Вы хотите вставить новое поле." ,Document Share Report,Документ Поделиться Пожаловаться DocType: User,Last Login,Последний Войти -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Имя поля обязательно в строке {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Имя поля обязательно в строке {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колонка DocType: Custom Field,Adds a custom field to a DocType,Добавляет настраиваемое поле в DocType DocType: File,Is Home Folder,Является Главная Папка @@ -593,7 +593,7 @@ DocType: File,Folder,Папка DocType: DocField,Index,индекс DocType: Email Group,Newsletter Manager,Рассылка менеджер apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Опция 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Все сообщения +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} - {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Войти ошибки во время запросов. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} был успешно добавлен в эту группу адресов электронной почты. DocType: Address,Uttar Pradesh,Уттар-Прадеш @@ -603,7 +603,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Индикатор DocType: DocShare,Everyone,Все DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: только одно правило допускается для той же роли, уровня и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: только одно правило допускается для той же роли, уровня и {1}" DocType: Email Queue,Add Unsubscribe Link,Добавить ссылку Отказаться apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Пока без коментариев. Начать новое обсуждение. DocType: Workflow State,share,доля @@ -622,7 +622,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,не apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Посмотреть Подписчики apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Госпожа DocType: Website Theme,Background Color,Цвет фона -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Были ошибки при отправке электронной почты. Попробуйте ещё раз. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Были ошибки при отправке электронной почты. Попробуйте ещё раз. DocType: Portal Settings,Portal Settings,портал Настройки DocType: Web Page,0 is highest,0 является самым высоким apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Вы уверены, что хотите перелинковать это сообщение на {0}?" @@ -650,7 +650,7 @@ DocType: Contact Us Settings,Contact Us Settings,Контакты Настрой apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Поиск ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Поиск ... DocType: Workflow State,text-width,Текст ширины -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Максимальная Приложение Лимит на этой записи достигли. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Максимальная Приложение Лимит на этой записи достигли. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Следующие обязательные поля должны быть заполнены:
DocType: Email Alert,View Properties (via Customize Form),Просмотр свойств (через Настроить форме) DocType: Note Seen By,Note Seen By,Примечание увиденных @@ -660,17 +660,17 @@ DocType: Address,Rajasthan,Раджастхан apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Отчеты построителя отчетов управляются непосредственно конструктор отчетов. Действий не требуется. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Пожалуйста, подтвердите свой адрес электронной почты" apps/frappe/frappe/model/document.py +903,none of,ни один из -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Отправить мне копию +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Отправить мне копию apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Загрузить разрешений пользователя DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Веб-сайт apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Отмеченные элементы будут показаны на рабочем столе -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} не может быть установлена для отдельных видов +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} не может быть установлена для отдельных видов apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Совет {0} не существует. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} в настоящее время просматривает этот документ DocType: ToDo,Assigned By Full Name,Присваиваемый Полное имя apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} обновлено -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Сообщить не могут быть установлены для отдельных видов +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Сообщить не могут быть установлены для отдельных видов apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} дней назад DocType: Email Account,Awaiting Password,Ожидание пароля DocType: Address,Address Line 1,Адрес (1-я строка) @@ -680,7 +680,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Состояния для рабочего процесса (например, черновик, опубликован, отменен)." DocType: Print Settings,Allow Print for Draft,Разрешить печать для проекта apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Установите Количество -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Провести этот документ для подтверждения +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Провести этот документ для подтверждения DocType: Contact,Unsubscribed,Отписавшийся apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Набор пользовательских ролей для страницы и отчета apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Рейтинг: @@ -688,7 +688,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Инструмент импорта данных DocType: Address,Dadra and Nagar Haveli,Дадра и Нагар Хавели apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Загрузка файлов, пожалуйста, подождите несколько секунд." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Прикрепите свою фотографию +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Прикрепите свою фотографию apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Значения строк Измененные DocType: Workflow State,Stop,стоп DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Ссылка на страницу, вы хотите, чтобы открыть. Оставьте пустым, если вы хотите, чтобы сделать его группа родителей." @@ -703,7 +703,7 @@ DocType: Print Format,Align Labels to the Left,Выравнивание этик DocType: Help Article,Expert,эксперт DocType: Workflow State,circle-arrow-right,Круг со стрелкой направо DocType: LDAP Settings,LDAP Server Url,Сервер LDAP Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Не могу открыть экземпляр, когда его {0} открыто" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Не могу открыть экземпляр, когда его {0} открыто" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Queued для установки DocType: Custom DocPerm,Custom DocPerm,Пользовательские DocPerm DocType: Newsletter,Send Unsubscribe Link,Отправить ссылку Отказаться @@ -720,7 +720,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Приложение {0} удален DocType: Custom DocPerm,Apply User Permissions,Применить разрешения пользователя DocType: User,Modules HTML,Модули HTML- -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Менеджер разрешений пользователя apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Не заполнены обязательные поля DocType: DocType,Other Settings,Другие настройки DocType: Social Login Keys,Frappe,фраппе @@ -738,7 +737,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Токен apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Не выбрано ни одного документа apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Доктор DocType: Event,Event,Событие -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","На {0}, {1} писал:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} писал:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Не удается удалить стандартное поле. Вы можете скрыть его, если вы хотите" DocType: Top Bar Item,For top bar,Для верхней панели apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Не удалось определить {0} @@ -752,7 +751,7 @@ DocType: Role,Desk Access,Письменный стол Доступ DocType: Workflow State,minus,минус apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Ошибка сервера: Пожалуйста, проверьте логи сервера или в службу технической поддержки." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,"Добро пожаловать Письмо, отправленное" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Давайте подготовить систему для первого использования. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Давайте подготовить систему для первого использования. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Представленные apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Уже регистрировались DocType: System Settings,Float Precision,Float Precision @@ -766,7 +765,7 @@ DocType: Web Form,Allow Print,Разрешить печать apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Нет приложения не установлен apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Отметьте поле Обязательное DocType: Communication,Clicked,Нажал -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Нет доступа для '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Нет доступа для '{0}' {1} DocType: User,Google User ID,Google ID пользователя apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Планируется отправить DocType: DocType,Track Seen,Трек посещение @@ -836,7 +835,7 @@ DocType: Address,Kerala,Керала DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,одновременных сессий DocType: OAuth Client,Client Credentials,Учетные данные клиента -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Открыть модуль или инструмент +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Открыть модуль или инструмент DocType: Communication,Delivery Status,Статус доставки DocType: Module Def,App Name,Имя приложения apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Максимальный размер файла допускается {0} MB @@ -848,8 +847,8 @@ DocType: Feedback Request,Reference Communication,Ссылки Связь DocType: Email Queue,Unsubscribe Method,Метод Отказаться DocType: GSuite Templates,Related DocType,Связанный DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,"Изменить, чтобы добавить содержание" -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Выберите Языки -apps/frappe/frappe/__init__.py +510,No permission for {0},Нет доступа для {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Выберите Языки +apps/frappe/frappe/__init__.py +509,No permission for {0},Нет доступа для {0} DocType: DocType,Advanced,Продвинутый apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Кажется, ключ API или API Секрет неправильно !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Ссылка: {0} {1} @@ -871,7 +870,7 @@ DocType: Customize Form,Enter Form Type,Введите Form Тип apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Записи отсутствуют помечены. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Удалить поле DocType: User,Send Password Update Notification,Отправить Пароль Update Notification -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Осторожно!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Разрешение DocType, DocType. Осторожно!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Индивидуальные форматы для печати, электронной почты" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Обновлено до новой версии DocType: Custom Field,Depends On,Зависит от @@ -965,6 +964,7 @@ apps/frappe/frappe/model/document.py +902,one of,Один из apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Выберите файл для копирования apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Проверка одного момента apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Показать метки +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Если флажок Apply Strict User Permission установлен, а для пользователя DocType для пользователя задано разрешение пользователя, тогда все документы, где значение ссылки пустым, не будут показаны этому пользователю" DocType: Address,Billing,Выставление счетов DocType: Email Queue,Not Sent,Не Отправлено DocType: Web Form,Actions,Действия @@ -995,6 +995,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Каждый день мероприятия должны закончить в тот же день. DocType: Communication,User Tags,Метки пользователя apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Извлечение изображений .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Пользователь DocType: Workflow State,download-alt,скачать-альт apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Скачивается приложение {0} DocType: Communication,Feedback Request,Обратная связь Запрос @@ -1012,7 +1013,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Резервные копии apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Добавить контакт DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Дополнительно: Всегда рассылают по этим идентификаторам. Каждый адрес электронной почты в новой строке -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Скрыть детали +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Скрыть детали DocType: Workflow State,Tasks,задачи DocType: Event,Tuesday,Вторник DocType: Blog Settings,Blog Settings,Настройки Блога @@ -1032,9 +1033,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Написать файл Python в той же папке, где это сохраняется и столбца и результат возвращения." DocType: DocType,Sort Field,Сортировать поле DocType: Razorpay Settings,Razorpay Settings,Настройки Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Изменить фильтр -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Поле {0} типа {1} не может быть обязательным -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","например. Если применения разрешений пользователя проверяется на DocType Сообщить но не права пользователей не определены для отчета для пользователя, то все отчеты представлены в этой пользователем" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Изменить фильтр +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Поле {0} типа {1} не может быть обязательным apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Добавить больше apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Скрыть диаграммы DocType: System Settings,Session Expiry Mobile,Сессия Срок Мобильная @@ -1049,6 +1049,7 @@ DocType: Communication,Delayed,Задерживается apps/frappe/frappe/config/setup.py +128,List of backups available for download,"Список резервных копий, доступных для загрузки" apps/frappe/frappe/www/login.html +89,Sign up,зарегистрироваться DocType: Test Runner,Output,Вывод +DocType: Email Alert,Set Property After Alert,Задать свойство после оповещения apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Похоже, что что-то не так с конфигурацией Paypal этого сайта." DocType: File,rgt,РТГ @@ -1056,6 +1057,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,лист DocType: Portal Menu Item,Portal Menu Item,Портал Пункт меню DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Если для параметра «Документ DocType» установлен флажок «Использовать разрешения пользователя», но для отчета для пользователя не определены разрешения пользователя, тогда все отчеты отображаются этому пользователю" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Список ресурсов, которые Клиент App будет иметь доступ к после того, как пользователь позволяет.
например, проект" DocType: Translation,Translated Text,Переведенный текст DocType: Contact Us Settings,Query Options,Параметры запроса @@ -1073,7 +1075,7 @@ DocType: Address,Contacts,Контакты DocType: System Settings,Setup Complete,Завершение установки apps/frappe/frappe/config/setup.py +66,Report of all document shares,Сообщить всех акций документов apps/frappe/frappe/www/update-password.html +18,New Password,Новый пароль -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Фильтр {0} отсутствует +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Фильтр {0} отсутствует apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Сожалею! Вы не можете удалять автоматически генерируемые комментарии DocType: Website Theme,Style using CSS,Стиль помощью CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Ссылка DocType @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,Блок модули apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,"Возвращаясь длину {0} для '{1}' в '{2}'; Установка длины, как {3} вызовет усечение данных." DocType: Print Format,Custom CSS,Свой CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Добавить комментарий -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Игнорируется: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Игнорируется: {0} до {1} DocType: Address,Gujarat,Гуджарат apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Войти ошибки на автоматизированных событий (планировщик). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),"Не является допустимым значения, разделенные запятыми (CSV-файл)" @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,По умолчанию Входящий DocType: Workflow State,repeat,повторить DocType: Website Settings,Banner,Баннер DocType: Role,"If disabled, this role will be removed from all users.","Если эта функция отключена, эта роль будет удалена от всех пользователей." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Помощь в Поиске +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Помощь в Поиске apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Зарегистрированный но отключен DocType: DocType,Hide Copy,Скрыть Копировать apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Очистите все роли @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Страна apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Адреса DocType: Communication,Shared,Общий -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Прикрепите документе печать +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Прикрепите документе печать DocType: Bulk Update,Field,поле DocType: Communication,Received,Получено DocType: Social Login Keys,Google Client ID,Google ID клиента @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,Запрос Сообщить DocType: User,Set New Password,Установить новый пароль DocType: User,Github User ID,Github ID пользователя apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Если Тип документа -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Невозможно удалить или отменить , так как {0} {1} связан с {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Невозможно удалить или отменить , так как {0} {1} связан с {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Неизвестный приложение {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s не является допустимым форматом отчета. Формат отчета должен быть одним из следующих %s DocType: Communication,Chat,Чат -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Имя поля {0} несколько раз появляется в строках {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Имя поля {0} несколько раз появляется в строках {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} из {1} до {2} в строке № {3} DocType: Communication,Expired,Истек срок действия DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Количество колонок для поля в сетке (Всего столбцов в сетке должно быть не менее 11) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Иметь акка apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Неизвестная Печатная форма : {0} DocType: Workflow State,arrow-down,Стрелка вниз apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Свернуть -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Пользователь не имеет права удалить {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Пользователь не имеет права удалить {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Обновлено DocType: Help Article,Likes,Понравившееся DocType: Website Settings,Top Bar,Верхняя панель DocType: GSuite Settings,Script Code,Код сценария apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Создание электронной почты пользователя apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Создание электронной почты пользователя -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Нет разрешенных разрешений +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Нет разрешенных разрешений apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Глобальные параметры: пользователи смогут только выбрать проверенные иконки apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} не найден DocType: Custom Role,Custom Role,Пользовательские роли apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Главная / Тест Папка 2 DocType: System Settings,Ignore User Permissions If Missing,Игнорировать разрешений пользователя Если пропавших без вести -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Пожалуйста, сохраните документ, прежде чем загружать." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Пожалуйста, сохраните документ, прежде чем загружать." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Введите ваш пароль DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Секретный ключ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Добавить еще один комментарий apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Редактирование DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Отписался из новости -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Сложите должны прийти до перерыва раздел +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Сложите должны прийти до перерыва раздел apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Последнее изменение By DocType: Workflow State,hand-down,ручной вниз DocType: Address,GST State,Государство GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Не удается установить Отмена без отправки +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Не удается установить Отмена без отправки DocType: Website Theme,Theme,Тема apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Были ошибки. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,"Перенаправление URI, связанного с Auth кодекса" @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мо DocType: Website Theme,Text Color,Цвет текста DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Неверный запрос -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Эта форма не имеет никакого вход +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Эта форма не имеет никакого вход apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Время сессии должно быть в формате {0} DocType: Website Sidebar Item,Group,Группа DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Выберите целевых = ""_blank"", чтобы открыть на новой странице." @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Игнорировать кодирования ошибки. DocType: Workflow State,wrench,гаечный ключ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Не указано -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Настройка> Пользователь DocType: Authentication Log,Date,Дата DocType: Website Settings,Disable Signup,Отключение Регистрация apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Подождите пока система настраивается. Это может занять некоторое время. @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Добавить комментарий DocType: DocField,Mandatory,Обязательный apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модуль для экспорта -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Не установлен базовый набор разрешений +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Не установлен базовый набор разрешений apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Ваша подписка истекает {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Ссылка для загрузки резервной копии будет выслан по адресу электронной почты: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значение Провести, Отменить, Изменить" @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,запрос-отчет apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Назначена {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Фильтры сохранены DocType: DocField,Percent,Процент -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Пожалуйста, установите фильтры" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Пожалуйста, установите фильтры" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Связанные с DocType: Workflow State,book,книга DocType: Website Settings,Landing Page,Страница входа -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Ошибка в пользовательской Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Ошибка в пользовательской Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Имя apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Импорт Запрос очереди. Это может занять несколько минут, пожалуйста, будьте терпеливы." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Разрешения не установлен для этого критериев. @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,Разрешить вх apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"У вас нет достаточных прав для доступа к этому ресурсу. Пожалуйста, обратитесь к своему менеджеру, чтобы получить доступ." DocType: Custom Field,Custom,Пользовательские apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Настройка E-mail оповещения на основе различных критериев. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},"Сообщения, поданные в соответствии с {0}" +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},"Сообщения, поданные в соответствии с {0}" DocType: Email Alert,Send alert if date matches this field's value,"Отправить уведомление, если дата соответствует значению этого поля" DocType: Workflow,Transitions,Переходы apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Удалить {0} и удалить все данные? @@ -1304,9 +1305,8 @@ DocType: User,Login After,Введите логин и пароль После DocType: Print Format,Monospace,Моноширинный DocType: Letter Head,Printing,Печать DocType: Workflow State,thumbs-up,палец вверх -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Учетная запись электронной почты не настроена. Создайте новую учетную запись электронной почты из раздела «Настройка»> «Электронная почта»> «Электронная учетная запись» DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Точность должна быть между 1 и 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Точность должна быть между 1 и 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,и DocType: Error Snapshot,Frames,Рамки @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,Ссылка на изображени DocType: Auto Email Report,Report Filters,Фильтры отчетов apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,Теперь DocType: Workflow State,step-backward,шаг назад -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Удалить эту запись, чтобы отправлять на этот адрес" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Только обязательные поля необходимы для новых записей. Вы можете удалить необязательные столбцы, если хотите." @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,Является Вложения Папка apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Расширить все apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Требуется действительный ID логин. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Снова откройте -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Вы отменили оплату -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Пожалуйста, выберите правильный файл CSV с данными" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Пожалуйста, выберите правильный файл CSV с данными" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} закрыл этот документ от {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Статус документа переход от {0} до {1} не допускается DocType: DocType,"Make ""name"" searchable in Global Search",Сделать «имя» для поиска в Глобальном Поиске @@ -1351,7 +1350,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,п DocType: Help Category,Help Category,Помощь Категория apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Пользователь {0} отключен apps/frappe/frappe/www/404.html +8,Page missing or moved,Страница отсутствует или сменила адрес -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Изменение {0} свойства DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Настройки шлюза оплаты Razorpay DocType: DocField,Name,Имя @@ -1359,8 +1357,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Поиск документов apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Поиск документов DocType: OAuth Authorization Code,Valid,действительный -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Открыть ссылку -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Твой язык +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Открыть ссылку +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твой язык apps/frappe/frappe/desk/form/load.py +46,Did not load,Не сработал apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Добавить ряд DocType: Tag Category,Doctypes,DOCTYPEs @@ -1375,7 +1373,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Событи DocType: Address,Lakshadweep Islands,Острова Лакшадвип apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Может Написать apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Некоторые документы, как, например, счета-фактуры, не подлежат изменению, если являются финальными. Конечное состояние для таких документов называется Проведенный. Вы можете ограничить, какие роли имеют право проводить документы." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Вам не разрешено экспортировать этот отчет +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Вам не разрешено экспортировать этот отчет apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 элемент выбран DocType: Newsletter,Test Email Address,Тест E-mail адрес DocType: ToDo,Sender,Отправитель @@ -1410,7 +1408,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Импорт .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Идентификатор документа DocType: Print Settings,Letter,Письмо -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Поле Изображение должно быть типа Присоединить изображения +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Поле Изображение должно быть типа Присоединить изображения DocType: DocField,Columns,Колонны DocType: Async Task,Succeeded,Преемник apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},"Обязательные поля, необходимые в {0}" @@ -1461,7 +1459,7 @@ DocType: DocField,Text Editor,Редактор текста apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Настройки для О нас страницы. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Снимок Ошибка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,В +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,В DocType: Email Alert,Value Change,Стоимость Изменение DocType: Standard Reply,Standard Reply,Стандартный ответ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ширина ввода @@ -1477,12 +1475,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Используйте этот имя_поля генерировать название apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Импорт E-mail С apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Пригласить в пользователя -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Выберите Вложения +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Выберите Вложения apps/frappe/frappe/model/naming.py +94, for {0},для {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Были ошибки. Пожалуйста, сообщите об этом." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Вы не можете распечатать этот документ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Вы не можете распечатать этот документ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Пожалуйста, установите значение фильтров в Report Filter таблицы." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Загрузка Сообщить +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Загрузка Сообщить apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Ваша подписка истекает сегодня. DocType: Page,Standard,Стандартный apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Вложить файл @@ -1512,7 +1510,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Региональные Расширения DocType: LDAP Settings,Base Distinguished Name (DN),Основание различающееся имя (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Оставьте этот разговор -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Опции не установлен поля связи {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опции не установлен поля связи {0} DocType: Customize Form,"Must be of type ""Attach Image""",Должно быть типа "Присоединить изображение" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Снять все apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Вы не можете сбросьте Только чтение "для поля {0} @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Заметка apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Сообщение об ошибке apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Условия обратной связи не совпадают -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Сроки поле должно быть действительным имя_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Сроки поле должно быть действительным имя_поля DocType: Currency,Symbol,Символ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Строка #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Строка #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Новый пароль выслан на email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Войти не допускается в это время DocType: Email Account,Email Sync Option,Электронная почта синхронизации Вариант @@ -1579,7 +1577,7 @@ DocType: DocField,Text,Текст apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Стандартный отвечает на распространенные вопросы. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,По умолчанию Отправка DocType: Workflow State,volume-off,Объем-офф -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},В избранное {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},В избранное {0} DocType: Footer Item,Footer Item,Элемент низа страницы ,Download Backups,Скачать Резервные копии apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Главная / Тест Папка 1 @@ -1614,7 +1612,7 @@ DocType: Web Page,Text Align,Text Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Имя не может содержать специальные символы, такие как {0}" DocType: Contact Us Settings,Forward To Email Address,Вперед на электронный адрес apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Показать все данные -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля apps/frappe/frappe/config/core.py +7,Documents,Документы DocType: Email Flag Queue,Is Completed,Выполнен apps/frappe/frappe/www/me.html +22,Edit Profile,Редактировать профиль @@ -1624,7 +1622,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Это поле появляется только в случае, если имя_поля определено здесь имеет значение или правила являются истинными (примеры): MyField Eval: doc.myfield == 'My Value' Eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Cегодня +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Cегодня apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","После установки, пользователи смогут иметь доступ только к документам (напр. Сообщение в блоге), где есть ссылка (например, Blogger)." DocType: Error Log,Log of Scheduler Errors,Журнал ошибок Scheduler DocType: User,Bio,Ваша Биография @@ -1648,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,"1 звезда является самым низким, а 5 звезд является самым высоким рейтингом" DocType: Event,Ref Name,Лот Имя DocType: Web Page,Center,Центр +DocType: Email Alert,Value To Be Set,"Значение, которое должно быть установлено" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Первый уровень DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Представляет состояния, доступные в одном документе и ролью, отведенной для изменения состояния." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Обновить Форма @@ -1668,18 +1667,18 @@ DocType: DocType,Has Web View,Имеет Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Имя DOCTYPE должно начинаться с буквы и может состоять только из букв, цифр, пробелов и знаков подчеркивания" DocType: Communication,Spam,Спам DocType: Integration Request,Integration Request,Интеграция Запрос -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Уважаемые +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Уважаемые DocType: Address,Maharashtra,Махараштра DocType: Address,Accounts User,Пользователь Учетных записей DocType: Web Page,HTML for header section. Optional,HTML для раздела заголовка. Необязательно apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Эта функция является новой и до сих пор экспериментальная -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Максимальные {0} строк разрешено +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Максимальные {0} строк разрешено DocType: Email Unsubscribe,Global Unsubscribe,Глобальный Отказаться apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Это очень общий пароль. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Посмотреть DocType: Communication,Assigned,назначенный DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Выберите Печатную форму +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Выберите Печатную форму apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Короткие модели клавиатуры легко угадать DocType: Portal Settings,Portal Menu,Меню портала apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Длина {0} должно быть от 1 до 1000 @@ -1718,7 +1717,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Пользователь не может искать apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Неверный формат выходного DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Применить это правило, если Пользователь Владелец" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Будет ли ваш идентификатор входа в систему +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Будет ли ваш идентификатор входа в систему apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Построить отчет DocType: Note,Notify users with a popup when they log in,"Сообщите пользователям всплывающего окна, когда они войти" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} не существует, выберите новую цель для объединения" @@ -1737,17 +1736,18 @@ DocType: User Permission for Page and Report,Roles Permission,Роли Разр apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Обновить DocType: Error Snapshot,Snapshot View,Снимок Посмотреть apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Опции должно быть допустимым DocType для поля {0} в строке {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} год (лет) назад +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опции должно быть допустимым DocType для поля {0} в строке {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Изменить свойства DocType: Patch Log,List of patches executed,Список исправлений выполняется apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} уже отписан -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Связь Средний +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Связь Средний DocType: Website Settings,Banner HTML,HTML Баннер apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Пожалуйста, выберите другой способ оплаты. Razorpay не поддерживает транзакции в валюте «{0}»" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Queued для резервного копирования. Это может занять несколько минут до часа. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Регистрация OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не может быть ""{2}"". Это должно быть одним из ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не может быть ""{2}"". Это должно быть одним из ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} или {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Показать или скрыть значки рабочего стола apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Пароль Update @@ -1774,7 +1774,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Показать разрывы строк после разделов DocType: Blogger,Short Name,Короткое Имя apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Страница {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Вы выбираете вариант синхронизации, как все, он будет пересинхронизироваться все \ чтения, а также непрочитанных сообщений от сервера. Это также может привести к дублированной \ связи (электронная почта)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Размер файлов @@ -1786,6 +1786,7 @@ DocType: Contact,Purchase Manager,Менеджер по закупкам DocType: Custom Script,Sample,Образец apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Теги DocType: Event,Every Week,Еженедельно +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Учетная запись электронной почты не настроена. Создайте новую учетную запись электронной почты из раздела «Настройка»> «Электронная почта»> «Учетная запись электронной почты» apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Нажмите здесь, чтобы проверить использование или перейти на более высокий план" DocType: Custom Field,Is Mandatory Field,Является обязательным поле DocType: User,Website User,Пользователь сайта @@ -1809,16 +1810,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Пользовательские боковой панели меню DocType: Workflow State,pencil,карандаш apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Чат сообщения и другие уведомления. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Вставка После не может быть установлен как {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Вставка После не может быть установлен как {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Поделиться {0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Настройка учетной записи электронной почты, пожалуйста, введите пароль для:" DocType: Workflow State,hand-up,грабитель DocType: Blog Settings,Writers Introduction,Писатели Введение DocType: Address,Phone,Телефон -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Ошибка при оценке оповещение по электронной почте {0}. Исправьте свой шаблон. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Ошибка при оценке оповещение по электронной почте {0}. Исправьте свой шаблон. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,"Выберите тип документа или роль, чтобы начать." DocType: Contact,Passive,Пассивный DocType: Contact,Accounts Manager,Диспетчер учетных записей +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ваш платеж отменен. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Выберите тип файла DocType: Help Article,Knowledge Base Editor,База знаний Редактор apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страница не найдена @@ -1846,6 +1848,7 @@ DocType: Property Setter,Property Type,Тип недвижимости DocType: Workflow State,screenshot,Скриншот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Только администратор может сохранить стандартный отчет. Пожалуйста, переименуйте и сохраните." DocType: System Settings,Background Workers,Фоновые Рабочие +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,"Имя поля {0}, конфликтующее с метаобъектом" DocType: Deleted Document,Data,Данные apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Статус документа apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Вы сделали {0} из {1} @@ -1870,7 +1873,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Разрешения Показать пользователей apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему, и есть роль System Manager, чтобы иметь возможность доступа к резервные копии." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,осталось -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Пожалуйста, сохраните перед установкой." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Пожалуйста, сохраните перед установкой." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Добавлено {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Тема по умолчанию устанавливается в {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Тип поля не может быть изменен с {0} на {1} в строке {2} @@ -1891,11 +1894,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Сбой з apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Сбой запуска сеанса apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Это письмо было отправлено на адрес {0} и скопировать в {1} DocType: Workflow State,th,й -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Пожалуйста, настройте учетную запись электронной почты по умолчанию из «Настройка»> «Электронная почта»> «Электронная учетная запись»" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Создать новый {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Создать новый {0} DocType: Email Rule,Is Spam,Спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Сообщить {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Открыть {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Открыть {0} DocType: OAuth Client,Default Redirect URI,По умолчанию Перенаправление URI DocType: Email Alert,Recipients,Получатели DocType: Workflow State,ok-sign,в порядке-знак @@ -1913,6 +1915,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Помощь Статьи ,Modules Setup,Модули установки apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ваш платеж не удался. DocType: Communication,Unshared,неразделенный DocType: Address,Karnataka,Карнатака apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модуль не найден @@ -1960,7 +1963,7 @@ DocType: Website Settings,Brand Image,Изображение бренда DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Настройка верхней панели, навигации, подвала и логотипа." DocType: Web Form Field,Max Value,Максимальное значение -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Для {0} на уровне {1} в {2} в строке {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Для {0} на уровне {1} в {2} в строке {3} DocType: Contact,All,Все DocType: Email Queue,Recipient,Сторона-реципиент DocType: Communication,Has Attachment,Имеет Вложения @@ -1977,7 +1980,8 @@ DocType: Workflow State,align-right,выровнять правый DocType: Auto Email Report,Email To,E-mail Для apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Папка {0} не пуста DocType: Page,Roles,Роли -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Поле {0} выбрать нельзя. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Ошибка: значение отсутствует для {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Поле {0} выбрать нельзя. DocType: System Settings,Session Expiry,Время сессии DocType: Workflow State,ban-circle,Запрет круга DocType: Email Flag Queue,Unread,Не прочитано @@ -1992,7 +1996,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,По умолчанию пользователя apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Создать новый DocType: Workflow State,chevron-down,шеврона вниз -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail не отправляются {0} (отписался / отключено) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail не отправляются {0} (отписался / отключено) DocType: Async Task,Traceback,Выслеживать DocType: Currency,Smallest Currency Fraction Value,Наименьший валют Фракция Значение apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Назначить @@ -2003,12 +2007,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,От DocType: Website Theme,Google Font (Heading),Google шрифта (товарная) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Выберите узел группы в первую очередь. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Найти {0} в {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Найти {0} в {1} DocType: OAuth Client,Implicit,неявный DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Добавьте в связи с этой DocType (должен иметь поля, ""статус"", ""Тема"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","Идентификаторы URI для получения кода авторизации, как только пользователь разрешает доступ, а также ответы недостаточность. Как правило, конечная точка REST подвергается Клиентом App.
например, HTTP: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Не разрешается менять {0} после подачи +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Не разрешается менять {0} после подачи DocType: Communication,Comment Type,Комментарий Тип DocType: OAuth Client,OAuth Client,Клиент OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Пользователи @@ -2023,7 +2027,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Фильтрация данных DocType: Auto Email Report,Filter Data,Фильтрация данных apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Добавить тег -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Пожалуйста, приложите файл первый." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Пожалуйста, приложите файл первый." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Были некоторые ошибки установки имени, пожалуйста, свяжитесь с администратором" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Неверная учетная запись электронной почты apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2038,11 +2042,11 @@ DocType: Blog Post,Email Sent,E-mail Отправленные DocType: DocField,Ignore XSS Filter,Игнорировать XSS-фильтр apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,удален apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Настройки резервного копирования Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Отправить по электронной почте +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Отправить по электронной почте DocType: Website Theme,Link Color,Цвет ссылки apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Пользователь {0} не может быть отключен apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Уважаемый System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Твоя страна +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Твоя страна DocType: Event,Sunday,Воскресенье apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,В табличном виде DocType: Address Template,Template,Шаблон @@ -2050,7 +2054,7 @@ DocType: Address,Delhi,Дели apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Настройки LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Исправление apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Настройки оплаты шлюз PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) будет обрезано, т.к. допустимое максимальное значение {2} символов" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) будет обрезано, т.к. допустимое максимальное значение {2} символов" DocType: OAuth Client,Resource Owner Password Credentials,Владелец ресурса Пароль учетные данные DocType: OAuth Client,Response Type,Ответ Тип apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Максимальное количество пользователей @@ -2067,7 +2071,7 @@ DocType: DocField,Table,Таблица DocType: File,File Size,Размер файла: apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Вы должны авторизоваться, чтобы представить эту форму" DocType: User,Background Image,Фоновое изображение -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Выберите страну, часовой пояс и валюта" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Выберите страну, часовой пояс и валюта" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Между DocType: Async Task,Queued,В очереди @@ -2076,6 +2080,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Создать apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Неверный Фильтр: {0} DocType: Email Account,no failed attempts,нет неудачных попыток +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Не найден шаблон шаблона по умолчанию. Создайте новый файл из раздела «Настройка»> «Печать и брендинг»> «Шаблон адреса». DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Ключ доступа DocType: OAuth Bearer Token,Access Token,Маркер доступа @@ -2093,8 +2098,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Имя пользователя DocType: DocType,Image View,Просмотр изображения apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Похоже, что-то пошло не так во время сделки. Так как мы не подтвердили оплату, Paypal автоматически вернет вам эту сумму. Если этого не произошло, пожалуйста, пришлите нам по электронной почте и упомянуть Корреляция ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Включить символы, цифры и заглавные буквы в пароле" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","После того, как вставить поле '{0}', упомянутой в настраиваемое поле '{1}', с меткой '{2}', не существует" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Включить символы, цифры и заглавные буквы в пароле" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","После того, как вставить поле '{0}', упомянутой в настраиваемое поле '{1}', с меткой '{2}', не существует" DocType: Workflow State,signal,сигнал DocType: DocType,Show Print First,Показать печатаются в первую очередь apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, чтобы опубликовать" @@ -2125,14 +2130,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Файл '{0}' не найден apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Удалить раздел DocType: User,Change Password,Изменить пароль -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Неверный e-mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Здравствуйте! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Неверный e-mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Здравствуйте! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Конец событие должно быть после старта apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},"Вы не имеете разрешения, чтобы получить отчет о: {0}" +DocType: System Settings,Apply Strict User Permissions,Применение строгих пользовательских разрешений DocType: DocField,Allow Bulk Edit,Разрешить массовое редактирование DocType: DocField,Allow Bulk Edit,Разрешить массовое редактирование DocType: Blog Post,Blog Post,Пост блога -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Расширенный поиск +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Расширенный поиск apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Инструкции по восстановлению пароля были отправлены на ваш email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Уровень 0 - для разрешений уровня документа, \ более высоких уровней для разрешений на уровне поля." @@ -2150,15 +2156,14 @@ DocType: OAuth Bearer Token,Revoked,Revoked DocType: Web Page,Sidebar and Comments,Боковая панель и комментарии apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","При Изменить документ после Отменить и сохранить его, он будет получать новый номер, который является версией старой числа." DocType: Stripe Settings,Publishable Key,Ключ для публикации -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} год (лет) назад DocType: Workflow State,circle-arrow-left,Круг со стрелкой налево apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Кэш-сервер Redis не работает. Пожалуйста, обратитесь к администратору / техническая поддержка" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Название партии -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Создать новую запись +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Создать новую запись apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,поиск DocType: Currency,Fraction,Доля DocType: LDAP Settings,LDAP First Name Field,LDAP Имя поля -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Выберите из существующих вложений +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Выберите из существующих вложений DocType: Custom Field,Field Description,Описание Поля apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Имя не установлено через строки apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Входящие @@ -2204,11 +2209,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Информация: DocType: Custom Field,Permission Level,Уровень доступа DocType: User,Send Notifications for Transactions I Follow,Отправить Уведомления для операций I Follow -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не удается выполнить Провести, Отменить, Изменить без Записать" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Не удается выполнить Провести, Отменить, Изменить без Записать" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Вы уверены, что хотите удалить вложение?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Невозможно удалить или отменить , так как {0} {1} связан с {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Не найдено результатов для '

-apps/frappe/frappe/__init__.py +1063,Thank you,Спасибо +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Невозможно удалить или отменить , так как {0} {1} связан с {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Спасибо apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Сохранение DocType: Print Settings,Print Style Preview,Предварительный просмотр Стиля печати apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2220,10 +2224,10 @@ DocType: DocField,In List View,В виде списка DocType: Email Account,Use TLS,Использовать TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Неверный логин или пароль apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Добавить пользовательские JavaScript в формах. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,С/Н +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,С/Н ,Role Permissions Manager,Роль Разрешения менеджер apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Имя новой Печатной формы -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Очистить Вложение +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Очистить Вложение apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Обязательно: ,User Permissions Manager,Менеджер разрешений пользователей DocType: Property Setter,New value to be set,Новое значение будет установлено @@ -2253,26 +2257,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 дн apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Классифицировать посты блога. DocType: Workflow State,Time,Время DocType: DocField,Attach,Прикрепить -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не является допустимым шаблоном имя_поля. Это должно быть {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не является допустимым шаблоном имя_поля. Это должно быть {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Отправить отзыв Запрос только если есть по крайней мере одна связь доступна для документа. DocType: Custom Role,Permission Rules,Правило доступа DocType: GSuite Settings,GSuite Settings,Настройки GSuite DocType: Address,Links,Связи -apps/frappe/frappe/model/base_document.py +428,Value missing for,Нет значения для +apps/frappe/frappe/model/base_document.py +427,Value missing for,Нет значения для apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Добавить дочерний -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведенная Запись не может быть удалена. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведенная Запись не может быть удалена. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Размер резервной копии DocType: GSuite Templates,Template Name,Имя Шаблона -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,новый тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,новый тип документа DocType: Custom DocPerm,Read,Читать DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роль Разрешение на страницу и отчет apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Align значение apps/frappe/frappe/www/update-password.html +14,Old Password,Старый Пароль -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Сообщений {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Сообщений {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Для форматирования столбцов, дать заголовки столбцов в запросе." DocType: Has Domain,Has Domain,Имеет домен apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Не зарегистрированы? зарегистрироваться -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Не удается установить Назначить изменение, если не подлежит проведению" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Не удается установить Назначить изменение, если не подлежит проведению" DocType: Address,Bihar,Бихар apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Редактировать Разрешения роли DocType: Communication,Link DocType,Ссылка DocType @@ -2372,7 +2376,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Пожалуйста, убедитесь, что ваш профиль имеет адрес электронной почты" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Вы сделали какие-нибудь изменения в этой форме. Пожалуйста, сохраните прежде чем продолжить." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,По умолчанию для {0} должен быть вариант +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,По умолчанию для {0} должен быть вариант DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категория DocType: User,User Image,Изображение пользователя apps/frappe/frappe/email/queue.py +289,Emails are muted,Письма приглушены @@ -2405,7 +2409,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Дальн DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Эти значения будут автоматически обновляться в сделках, а также будет полезна для ограничения разрешений для этого пользователя по операциям, содержащих эти значения." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Издатель -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Не удалось: {0} до {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Не удалось: {0} до {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Выберите Обязательный apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Обзор apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Отправлено писем @@ -2417,7 +2421,7 @@ DocType: Async Task,Running,Бег apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Сбросить пароль apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Пожалуйста, Upgrade, чтобы добавить больше, чем {0} подписчиков" DocType: Workflow State,hand-left,ручной левый -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Тип поля {0} для {1} не может быть уникальным +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Тип поля {0} для {1} не может быть уникальным DocType: Email Account,Use SSL,Использовать SSL DocType: Workflow State,play-circle,играть круга apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Выберите Печатную форму для Редактирование @@ -2472,7 +2476,7 @@ DocType: DocField,No Copy,Без копии DocType: Workflow State,qrcode,QR код apps/frappe/frappe/www/login.html +34,Login with LDAP,Вход с LDAP DocType: Web Form,Breadcrumbs,Панировочные сухари -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Если Владелец +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Если Владелец DocType: OAuth Authorization Code,Expiration time,Время истечения DocType: Web Page,Website Sidebar,Боковая панель Веб-сайт DocType: Web Form,Show Sidebar,Показать боковую панель @@ -2492,7 +2496,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не удалос apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Имена и фамилии сами по себе легко угадать. apps/frappe/frappe/config/website.py +93,Knowledge Base,База знаний DocType: Workflow State,briefcase,портфель -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Значение не может быть изменено для {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Значение не может быть изменено для {0} DocType: Feedback Request,Is Manual,Является Руководство DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Стиль представляет цвет кнопки: Успех - Зеленый, Danger - красный, Обратная - черный, Первичная - темно-синий, информация - светло-голубой, Предупреждение - Оранжевый" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Отчет не загружено. Пожалуйста, используйте запрос-отчет / [Имя Отчет], чтобы запустить отчет." @@ -2571,7 +2575,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Прогре apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,по Роли apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Недостающие поля apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Invalid имя_поля '{0}' в autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Поиск в тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Поиск в тип документа apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Разрешить поле остались доступными для редактирования даже после представления DocType: Custom DocPerm,Role and Level,Роль и уровень DocType: File,Thumbnail URL,Миниатюра URL @@ -2588,19 +2592,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Больше информации DocType: Desktop Icon,Desktop Icon,Иконка рабочего стола -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Ваш платеж был успешно принят +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Ваш платеж был успешно принят apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Извините! Вам не разрешается для просмотра этой страницы. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Совет: Дважды щелкните ячейку для редактирования DocType: Workflow State,bell,Накладная apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Ошибка оповещения по электронной почте apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Ошибка оповещения по электронной почте apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Поделитесь этот документ с +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Настройка> Менеджер разрешений пользователя apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не может быть концевым узлом, так как он имеет потомков" DocType: Communication,Info,Информация -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Добавить приложение +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Добавить приложение DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Спасибо за Ваше сообщение -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Отправить прочтение +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Отправить прочтение DocType: Stripe Settings,Stripe Settings,Настройки полосы DocType: Stripe Settings,Stripe Settings,Настройки полосы DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup с помощью сайта Config @@ -2678,6 +2683,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Предупреждение: Данное печати Формат находится в старом стиле и не может быть создан с помощью API. DocType: DocField,Print Width,Ширина печати ,Setup Wizard,Мастер установки +DocType: Address,GST State Number,Государственный номер GST DocType: User,Allow user to login only before this hour (0-24),Разрешить пользователю войти только до этого часа (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Папка является обязательной apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2706,7 +2712,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Маленьикий текст apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Администратор обращались {0} {1} с помощью IP-адреса {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Равно -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link 'Тип варианты поле должен указывать на другой Link Field с вариантами, как« DocType """ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"""Dynamic Link 'Тип варианты поле должен указывать на другой Link Field с вариантами, как« DocType """ DocType: About Us Settings,Team Members Heading,Члены команды Возглавлять apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Неверный формат CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Установить количество резервных копий @@ -2717,7 +2723,7 @@ DocType: Contact,Contact,Контакты DocType: User,Third Party Authentication,В-третьих Аутентификация партия DocType: Website Settings,Banner is above the Top Menu Bar.,Баннер над верхним меню. DocType: Razorpay Settings,API Secret,API Секретный -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Экспорт отчета: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Экспорт отчета: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} не существует DocType: Email Account,Port,Порт DocType: Print Format,Arial,Arial @@ -2740,7 +2746,7 @@ DocType: Kanban Board Column,Column Name,Имя столбца DocType: Language,Based On,На основании apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Использовать по умолчанию apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Проверьте URL сервера фраппе -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Тип поля {0} для {1} не может быть проиндексирован +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Тип поля {0} для {1} не может быть проиндексирован DocType: Communication,Email Account,Email Account DocType: Workflow State,Download,Скачать DocType: Blog Post,Blog Intro,Блог Intro @@ -2751,7 +2757,7 @@ DocType: Web Page,Insert Code,Вставить код DocType: ToDo,Low,Низкий apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Вы можете добавить динамические свойства из документа с помощью шаблонов дзиндзя. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Недопустимый лимит {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Перечислите тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Перечислите тип документа DocType: Event,Ref Type,Номер заявки Вид apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Если вы загружаете новые рекорды, оставьте колонку ""Наименование"" (ID) пустым." DocType: Address,Chattisgarh,Чаттисгарх @@ -2773,26 +2779,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Отправить Печать в формате PDF DocType: Web Form,Amount,Сумма DocType: Workflow Transition,Allowed,Разрешено -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Там может быть только один Fold в виде +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Там может быть только один Fold в виде apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Невозможно записать формат файла для {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Восстановление настроек по умолчанию? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Неверная главная страница apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Неверный логин. Попробуй еще раз. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Параметры, необходимые для поля ссылки или типа таблицы {0} в строке {1}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Параметры, необходимые для поля ссылки или типа таблицы {0} в строке {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Параметры, необходимые для поля ссылки или типа таблицы {0} в строке {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Параметры, необходимые для поля ссылки или типа таблицы {0} в строке {1}" DocType: Auto Email Report,Send only if there is any data,"Отправить только если есть какие-либо данные," apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Сбросить фильтры -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Резрешение уровня 0 должно быть задано до установки более высоких уровней +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Резрешение уровня 0 должно быть задано до установки более высоких уровней apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Назначение закрыт {0} DocType: Integration Request,Remote,Дистанционный пульт -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Рассчитать +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Рассчитать apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Пожалуйста, выберите DOCTYPE первый" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Подтвердите Ваш Адрес Электронной Почты apps/frappe/frappe/www/login.html +42,Or login with,Или войти в систему с DocType: Error Snapshot,Locals,Местные жители apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Сообщается через {0} {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} упомянул вас в комментарии в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"например, (55 + 434) / 4 = или Math.sin (Math.PI / 2) ..." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"например, (55 + 434) / 4 = или Math.sin (Math.PI / 2) ..." apps/frappe/frappe/model/naming.py +44,{0} is required,{0} требуется DocType: Integration Request,Integration Type,Тип интеграции DocType: Newsletter,Send Attachements,Отправить отсоединяемые @@ -2802,15 +2808,15 @@ DocType: DocField,Perm Level,Пермь Уровень apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,События в сегодняшнем календаре DocType: Web Page,Web Page,Веб-страница DocType: Blog Category,Blogger,Блоггер -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},«В глобальном поиске» не допускается тип {0} в строке {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Просмотр списка -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Дата должна быть в формате: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Дата должна быть в формате: {0} DocType: Workflow,Don't Override Status,Не Переопределение статуса apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Пожалуйста, дайте оценку." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Обратная связь apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Искать термин -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Первый пользователя: Вы +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Первый пользователя: Вы apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Выбрать столбцы DocType: Translation,Source Text,Исходный текст apps/frappe/frappe/www/login.py +55,Missing parameters for login,Недостающие параметры для входа @@ -2832,7 +2838,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Импорт DocType: ToDo,Assigned By,Назначаются apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Вы можете использовать Настроить форму для установки уровней на полях. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Выберите регион +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Выберите регион DocType: Custom DocPerm,Level,Уровень DocType: Custom DocPerm,Report,Отчет apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сумма должна быть больше 0. @@ -2852,7 +2858,7 @@ DocType: Website Theme,Background,Фон DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON список DOCTYPES, используемых для применения разрешений пользователя. Если пусто, все связанные DOCTYPES будет использоваться для применения разрешений пользователя." DocType: Report,Ref DocType,Ссылка DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Пожалуйста, добавьте оценку" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Не удается установить Изменить без Отменить +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Не удается установить Изменить без Отменить apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Полная страница DocType: DocType,Is Child Table,Является дочерней таблице apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} должен быть одним из {1} @@ -2867,7 +2873,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Это идет над apps/frappe/frappe/config/setup.py +260,Install Applications.,Установка приложений. DocType: Contact,Last Name,Фамилия DocType: Event,Private,Личные -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Нет предупреждений на сегодня +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Нет предупреждений на сегодня DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Отправить E-mail Распечатать Вложения как PDF (рекомендуется) DocType: Web Page,Left,Слева DocType: Event,All Day,Весь день @@ -2881,7 +2887,7 @@ DocType: Event,Send an email reminder in the morning,Отправить по э DocType: Blog Post,Published On,Опубликовано на DocType: Contact,Gender,Пол apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Обязательная информация отсутствует: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0}' не может быть отмечено как уникальное, так как содержит не уникальные значения" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0}' не может быть отмечено как уникальное, так как содержит не уникальные значения" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Только 200 вставок допускается в одном запросе DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Тип ссылки @@ -2894,7 +2900,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Внимание-знак DocType: Workflow State,User,Пользователь DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Показать название в окне браузера как "префикс - название" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Текст в документе типа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Текст в документе типа apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Запуск тестов apps/frappe/frappe/handler.py +91,Logged Out,Вышли из apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Больше... @@ -2920,13 +2926,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Сейчас просматривается DocType: DocField,Default,По умолчанию apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} добавлено -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Поиск '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Поиск '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Пожалуйста, сохраните отчет первой" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} подписчики добавлены apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Не В DocType: Workflow State,star,звезда -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,"значения, разделенные запятыми" -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,"значения, разделенные запятыми" +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Пожалуйста, поделитесь своими соображениями для {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Содержимое веб-страницы. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Добавить новую роль @@ -2945,7 +2951,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Не является допустимым пользователем LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} не является допустимым состоянием apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Пожалуйста, выберите другой способ оплаты. PayPal не поддерживает транзакции в валюте «{0}»" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Поле поиска {0} не является действительным +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Поле поиска {0} не является действительным DocType: Workflow State,ok-circle,в порядке круга apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Вы можете найти вещи, спрашивая "найти апельсин клиентов"" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Извините! Пользователь должен иметь полный доступ к своей записи. @@ -3007,7 +3013,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Фильтр Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, отображаемый в течение ссылка на веб-страницу, если эта форма имеет веб-страницу. Маршрут Ссылка будет генерироваться автоматически на основе `page_name` и` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Обратная связь Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Пожалуйста, установите {0} первый" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Пожалуйста, установите {0} первый" DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Исправление (Патч) DocType: Async Task,Failed,Не выполнено diff --git a/frappe/translations/si.csv b/frappe/translations/si.csv index 8d7f0cd01f..ba62cdfa8e 100644 --- a/frappe/translations/si.csv +++ b/frappe/translations/si.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ෆේස්බුක් පරිශීලක DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,සටහන: බහු සැසි ජංගම උපාංගය වූ අවස්ථාවක ඉඩ කඩ ලබා දෙනු ඇත apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},පරිශීලක සඳහා සක්රීය ඊ-තැපැල් එන ලිපි {පරිශීලකයන්} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,මෙම ඊ-තැපැල් යැවිය නොහැක. ඔබ {0} මෙම මාසය සඳහා ඊ-තැපැල් යැවීම සීමාව ඉක්මවා ගොස් ඇත. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,ස්ථිරවම {0} ඉදිරිපත්? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,ස්ථිරවම {0} ඉදිරිපත්? DocType: Address,County,කවුන්ටි DocType: Workflow,If Checked workflow status will not override status in list view,ජීවත්වන ව්යවස්ථාවකි කාර්ය ප්රවාහ තත්ත්වය ලැයිස්තුව දැක්ම තත්ත්වය ප්රතිස්ථාපනය නොහැකි නම් apps/frappe/frappe/client.py +280,Invalid file path: {0},වලංගු නොවන ගොනු වන්න: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,කර apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} රුක් DocType: User,User Emails,පරිශීලක විද්යුත් තැපැල් පණිවුඩ DocType: User,Username,පරිශීලක නාමය -apps/frappe/frappe/model/base_document.py +581,Value too big,අගය ඉතා විශාල +apps/frappe/frappe/model/base_document.py +580,Value too big,අගය ඉතා විශාල DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ධාවනය කේත රචනය ටෙස්ට් DocType: Contact,Department,ෙදපාර්තෙම්න්තුෙව් @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,සටහන් DocType: Custom DocPerm,This role update User Permissions for a user,මෙම භූමිකාව යාවත්කාලීන පරිශීලක සඳහා පරිශීලක අවසර apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},නැවත නම් කරන්න {0} DocType: Workflow State,zoom-out,සූම් අවුට් -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,{0} විවෘත කළ නොහැක එහි උදාහරණයක් විවෘත වන විට +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,{0} විවෘත කළ නොහැක එහි උදාහරණයක් විවෘත වන විට apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,වගුව {0} හිස් විය නොහැක apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,මපොත් සමග apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,රූප DocType: Communication,Reference Owner,විමර්ශන න DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,ලොව කුඩාම සංසරණය භාගය ඒකකය (කාසියක්). ඇමරිකානු ඩොලර් මිලියන සඳහා උදා: 1 සියයට සඳහා සහ එය 0.01 ලෙස දැක්විය යුතුයි DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, ෙරෝ {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, ෙරෝ {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,එය සම්පූර්ණ නම දෙන්න. apps/frappe/frappe/model/document.py +904,Beginning with,පටන් සමග apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,දත්ත ආනයනය සැකිල්ල @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,මව් DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","මෙම පහසුකම සක්රීය කළ විට, මුර පදය ශක්තිය අවම මුරපදය ලකුණු අගය මත පදනම් ක්රියාත්මක කරනු ඇත. 2 ක වටිනාකමින් මධ්ය ශක්තිමත් වීම සහ 4 ඉතා ශක්තිමත් වීම." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","මෙම පහසුකම සක්රීය කළ විට, මුර පදය ශක්තිය අවම මුරපදය ලකුණු අගය මත පදනම් ක්රියාත්මක කරනු ඇත. 2 ක වටිනාකමින් මධ්ය ශක්තිමත් වීම සහ 4 ඉතා ශක්තිමත් වීම." DocType: About Us Settings,"""Team Members"" or ""Management""","කණ්ඩායම මන්ත්රීවරුන්" හෝ "කළමනාකරණය" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',ක්ෂේත්රයේ 'පරීක්ෂා කරන්න' 'වර්ගය විය යුතුයි' 0 'හෝ' 1 'එක්කෝ සඳහා පෙරනිමි +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',ක්ෂේත්රයේ 'පරීක්ෂා කරන්න' 'වර්ගය විය යුතුයි' 0 'හෝ' 1 'එක්කෝ සඳහා පෙරනිමි apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,ඊයේ DocType: Contact,Designation,තනතුර DocType: Test Runner,Test Runner,ටෙස්ට් ස්ථානය දිනා @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ක්ෂේත්ර Published ඇත DocType: Email Group,Email Group,විද්යුත් සමූහ DocType: Note,Seen By,වන විට දැක apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,බහු එකතු -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,වගේ නොවේ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,වගේ නොවේ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ක්ෂේත්රයට ප්රදර්ශනය ලේබලය සකසන්න apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},වැරදි අගය: {0} {1} {2} විය යුතුය apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","වෙනස් ක්ෂේත්ර ගුණ (සැඟවීමට, කියවීම පමණයි, අවසර ආදිය)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,සඳහ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,පරිපාලක ලොගින් වී දී DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",""විකුණුම් විමසුම්, සහාය විමසුම්" ආදිය මෙන් අමතන්න විකල්ප, නව රේඛාවක් එක් එක් හෝ කොමාවකින් වෙන්." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. බාගත -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,ඇතුළු කරන්න +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,ඇතුළු කරන්න apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},තෝරන්න {0} DocType: Print Settings,Classic,සම්භාව්ය DocType: Desktop Icon,Color,වර්ණ @@ -122,7 +122,7 @@ DocType: Translation,Translation,පරිවර්තනය apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ස්ථාපනය apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,මහතා DocType: Custom Script,Client,සේවාලාභියා -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,මෙම ආකෘති පත්රය ඔබ එය පැටවූ පසු විකරණය කොට තිබේ +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,මෙම ආකෘති පත්රය ඔබ එය පැටවූ පසු විකරණය කොට තිබේ DocType: User Permission for Page and Report,User Permission for Page and Report,පිටුව හා වාර්තාව සඳහා පරිශීලක අවසරය DocType: Address,Himachal Pradesh,හිමාචල් ප්රදේශ් DocType: System Settings,"If not set, the currency precision will depend on number format","පිහිටුවා නැත නම්, මුදල් නිරවද්යතාවයකින් අංකය ආකෘතිය මත රඳා පවතී" @@ -153,14 +153,14 @@ DocType: Unhandled Email,Reason,හේතුව apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,පරිශීලක සඳහන් කරන්න DocType: Email Unsubscribe,Email Unsubscribe,"විද්යුත් වනවාද," DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,දළ වශයෙන් පළල 150px හොඳම ප්රතිඵල සඳහා විනිවිද පෙනෙන පසුබිම් සමග රූපයක් තෝරා ගන්න. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,පළමු පරිශීලක පද්ධතිය කළමනාකරු (පසුව ඔබට මෙය වෙනස් කල හැක) බවට පත් වනු ඇත. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,පළමු පරිශීලක පද්ධතිය කළමනාකරු (පසුව ඔබට මෙය වෙනස් කල හැක) බවට පත් වනු ඇත. ,App Installer,යෙදුම ස්ථාපකය DocType: Workflow State,circle-arrow-up,රවුම-ඊතලය-අප් apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,උඩුගත ... DocType: Email Domain,Email Domain,ඊ-තැපැල් වසම් DocType: Workflow State,italic,තද පැහැ ඇළ අකුරු apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,හැමෝම සඳහා -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: සාදන්න නොමැතිව ආනයන සිටුවම් කල නොහැක +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: සාදන්න නොමැතිව ආනයන සිටුවම් කල නොහැක apps/frappe/frappe/config/desk.py +26,Event and other calendars.,සිද්ධියක් හා අනෙකුත් දින දර්ශන. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,සියළු ක්ෂේත්ර එම ප්රකාශය ඉදිරිපත් කිරීමට අවශ්ය වේ. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,තීරු නිරාකරණය කිරීමට අදින්න @@ -172,8 +172,8 @@ DocType: Portal Settings,Standard Sidebar Menu,සම්මත වැඩේට apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,මුල් පිටුව හා ඇමුණුම් ෆෝල්ඩර මකා දැමිය නොහැකි apps/frappe/frappe/config/desk.py +19,Files,ගොනු apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,අවසර අනුයුක්ත දේ භූමිකා මත පදනම් පරිශීලකයන් මත ආලේප කරන්න. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,ඔබ මෙම ලියවිල්ල සම්බන්ධ ඊ-තැපැල් යැවීමට අවසර නැත -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"කරුණාකර / පිරිසක් නිරාකරණය කර ගැනීම සඳහා, {0} සිට කටවත් 1 තීරුව තෝරා" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,ඔබ මෙම ලියවිල්ල සම්බන්ධ ඊ-තැපැල් යැවීමට අවසර නැත +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"කරුණාකර / පිරිසක් නිරාකරණය කර ගැනීම සඳහා, {0} සිට කටවත් 1 තීරුව තෝරා" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,මෙම පරීක්ෂා කරන්න ඔබ සෑන්ඩ්බොක්ස් API භාවිතයෙන් ඔබේ ගෙවීම් පරික්ෂා කරන්නේ නම් apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,ඔබ සම්මත වෙබ් අඩවිය තේමාව ඉවත් කිරීමට අවසර නැත DocType: Feedback Trigger,Example,උදාහරණයක් @@ -204,7 +204,7 @@ DocType: Email Group,Total Subscribers,මුළු පැකේජය apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","භූමිකාවක් 0 පෙළ ප්රවේශ නොමැති නම්, එවිට ඉහල මට්ටමක අර්ථ වේ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,සුරකින්න ලෙස DocType: Communication,Seen,දැක -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,වැඩි විස්තර පෙන්වන්න +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,වැඩි විස්තර පෙන්වන්න DocType: System Settings,Run scheduled jobs only if checked,නියමිත රැකියා ක්රියාත්මක පරීක්ෂා නම් පමණක් apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"කොටස, ශීර්ෂ සක්රීය කරන්නේ නම් පමණි පෙන්වනු ලැබේ" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,සංරක්ෂිත @@ -221,7 +221,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,ශීර්ෂය සඟවන්න DocType: Address,Current,දැනට DocType: Address,Current,දැනට -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,සම්බන්ධ ලිපි ලේඛන apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes කණ්ඩායම් DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,ඉවත්-රවුම @@ -237,10 +236,9 @@ DocType: Workflow State,Filter,පෙරහන apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} {1} විශේෂ අක්ෂර ගත නොහැකි apps/frappe/frappe/config/setup.py +121,Update many values at one time.,එක් අවස්ථාවක බොහෝ වටිනාකම් යාවත්කාලීන කරන්න. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,දෝෂය: ලේඛන ඔබ එය විවෘත කළ පසු විකරණය කොට තිබේ -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපිනය සැකිල්ල සොයා ගත නොහැකි විය. සැකසුම> මුද්රණ හා නාමකරණ> ලිපිනය සැකිල්ල අලුත් එකක් නිර්මාණය කරන්න. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} වරනය: {1} DocType: Address,West Bengal,බටහිර බෙංගාල -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත ඉදිරිපත් සිටුවම් කල නොහැක +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත ඉදිරිපත් සිටුවම් කල නොහැක DocType: Social Login Keys,Facebook,ෆේස්බුක් apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","{0}" පෙරීම DocType: Salutation,Administrator,පරිපාලක @@ -250,7 +248,7 @@ DocType: Blog Settings,Blog Title,බ්ලොග් හිමිකම් apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,සම්මත චරිත අක්රිය කල නොහැකි DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,පුවත් ලිපියක් -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,විසින් නම් උප විමසුම භාවිතා කළ නොහැකි +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,විසින් නම් උප විමසුම භාවිතා කළ නොහැකි DocType: Web Form,Button Help,බොත්තම සහාය DocType: Kanban Board Column,purple,"පාට, දම් පාට" DocType: About Us Settings,Team Members,කණ්ඩායම් සාමාජිකයින් @@ -264,7 +262,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","ඔබේ ග්රාහකත්වය {0} මත අභාවප්රාප්ත විය. , අළුත් කර ගැනීම සඳහා, {1}." DocType: Workflow State,plus-sign,ප්ලස්-ලකුණක් apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup දැනටමත් සම්පූර්ණ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,යෙදුම {0} ස්ථාපනය කර නැත +apps/frappe/frappe/__init__.py +889,App {0} is not installed,යෙදුම {0} ස්ථාපනය කර නැත DocType: Workflow State,Refresh,නැවුම් කරන්න DocType: Event,Public,පොදු apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,පෙන්වන්න දෙයක් @@ -272,7 +270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,වන විට apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,විද්යුත් සහාය DocType: DocField,Print Hide If No Value,මුද්රණය සඟවන්න නම් නෑ අගය DocType: Event,yellow,කහ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Published ඇත ක්ෂේත්ර වලංගු fieldname විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Published ඇත ක්ෂේත්ර වලංගු fieldname විය යුතුය apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,උඩුගත ඇමුණුම් DocType: Block Module,Block Module,වාරණ මොඩියුලය apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,අපනයන සැකිල්ල @@ -293,7 +291,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},{0} ඔබ සඳහා නව ගිණුම තනන ලදි apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,උපදෙස් ඊ-තැපැල් apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,උපදෙස් ඊ-තැපැල් -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),විද්යුත් පලමු වරට පිරිනැමු (ව) ඇතුලත් කරන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),විද්යුත් පලමු වරට පිරිනැමු (ව) ඇතුලත් කරන්න DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ඊ-තැපැල් ධජ පෝලිමේ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,{0} විවෘත හඳුනා ගැනීමට නොහැකි. වෙන දෙයක් කරන්න. @@ -308,8 +306,8 @@ DocType: Communication,Message ID,පණිවුඩය හැඳුනුම් DocType: Property Setter,Field Name,ක්ෂේත්ර නාමය apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,ගූගල් GSuite වින්යාස කර නොමැත. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,හෝ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,මොඩියුලය නම ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,දිගටම +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,මොඩියුලය නම ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,දිගටම DocType: Custom Field,Fieldname,ක්ෂේත්ර නාමය DocType: Workflow State,certificate,සහතිකය DocType: User,Tile,උළු @@ -318,6 +316,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,සියලු සංස්කරණ පෙන්වන්න DocType: Workflow State,Print,මුද්රණය DocType: User,Restrict IP,IP සීමා +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,උපකරණ පුවරුව apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,මේ කාලය වන විට ඊ-තැපැල් යැවීමට නොහැකි විය apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,විධාන සෙවීම හෝ ටයිප් DocType: Communication,Timeline Name,කාල නියමය නම @@ -328,8 +327,8 @@ DocType: Contact,Sales Master Manager,විකුණුම් මාස්ට apps/frappe/frappe/www/complete_signup.html +13,One Last Step,එක් පසුගිය පියවර apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ලිපි වර්ගය නම (DocType) ඔබ මෙම ක්ෂේත්රය සම්බන්ධ විය යුතු අවශ්ය. උදා: පාරිභෝගික DocType: User,Roles Assigned,නොම්මර භූමිකා -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,උදවු -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,උදවු +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,උදවු +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,උදවු DocType: Top Bar Item,Parent Label,මව් ලේබල් apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","ඔබගේ විමසුමට ලැබී ඇත. අපි ටික කලකට ආපසු පිළිතුරු ඇත. ඔබ යම් අමතර තොරතුරු තිබේ නම්, මෙම තැපැල් පිළිතුරු දෙන්න." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,අවසර ස්වයංක්රීයව සම්මත වාර්තා සහ සෙවුම් කිරීමට පරිවර්තනය කර ඇත. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,සංස්කරණය කරන්න ශීර්ෂය DocType: File,File URL,ගොනුව URL එක DocType: Version,Table HTML,මේසය HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'සඳහා ප්රතිඵල සොයාගත

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,පැකේජය එක් කරන්න apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,අද දින ඉදිරියට එන සිද්ධීන් DocType: Email Alert Recipient,Email By Document Field,විද්යුත් ලේඛන ක්ෂේත්ර කිරීම @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,ක්ෂේත්ර මත පදන apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,පරිශීලක මෙම දැන්වීම සඳහා අනිවාර්ය වේ DocType: DocField,Hidden,සඟවා DocType: Web Form,Allow Incomplete Forms,අසම්පූර්ණ ආකෘති පත්ර ඉඩ දෙන්න -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} පළමු සකස් කළ යුතුය +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} පළමු සකස් කළ යුතුය apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",පොදු වාක්ය වැළකී වචන කිහිපයක් භාවිතා කරන්න. DocType: Workflow State,plane,ගුවන් යානය -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,අපොයි. ඔබේ ගෙවීම් අසමත් වී ඇත. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","වත්මන් නම්, ඔබ නව වාර්තා උඩුගත කරන්නේ නම්, "අනුප්රාප්තිකයා නම් කිරීම ශ්රේණි", අනිවාර්ය බවට පත් වෙයි." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,අද දින ඇලර්ට් ලබා ගන්න +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,අද දින ඇලර්ට් ලබා ගන්න apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType පමණක් පරිපාලක විසින් නම් කරන කළ හැකි apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},{0} හි වෙනස් අගය DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,සත්යාපනය සඳහා ඔබගේ ඊ-තැපැල් ලිපිනය පරික්ෂා කර බලන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,ගුණයකින් ස්වරූපයෙන් අවසානයේ විය නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,ගුණයකින් ස්වරූපයෙන් අවසානයේ විය නොහැකි DocType: Communication,Bounced,ගගනගාමියකු DocType: Deleted Document,Deleted Name,මකා දමන ලදී නම apps/frappe/frappe/config/setup.py +14,System and Website Users,පද්ධතිය සහ වෙබ් අඩවිය භාවිතා කරන්නන්ට @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ලේඛන පෙ DocType: GSuite Templates,Destination ID,ගමනාන්තය හැඳුනුම්පත DocType: Desktop Icon,List,ලැයිස්තුව DocType: Communication,Link Name,ලින්ක් නම -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ක්ෂේත්ර {0} පේළියේ {1} ප්රකෘති තොරව සඟවා අනිවාර්ය කළ නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ක්ෂේත්ර {0} පේළියේ {1} ප්රකෘති තොරව සඟවා අනිවාර්ය කළ නොහැකි DocType: System Settings,mm/dd/yyyy,MM / DD / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,වලංගු නොවන මුරපදය: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,වලංගු නොවන මුරපදය: DocType: Print Settings,Send document web view link in email,ඊ-තැපැල් ලියවිල්ල වෙබ් දැක්ම සබැඳිය යවන්න apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,{0} සාර්ථකව සුරකින ලේඛනය සඳහා ඔබේ අදහස් අපවෙත apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,කලින් -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} {1} සඳහා පේළි DocType: Currency,"Sub-currency. For e.g. ""Cent""",උප-ව්යවහාර මුදල්. උදා: "Cent" සඳහා apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,උඩුගත කල ගොනුව තෝරන්න @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,ලින්ක් apps/frappe/frappe/utils/file_manager.py +96,No file attached,ගොනුව මේකේ කිසිම DocType: Version,Version,පිටපත DocType: User,Fill Screen,තිර පුරවන්න -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","නිසා අතුරුදන් දත්ත, මෙම ගස වාර්තාව ප්රදර්ශනය කිරීමට නොහැකි විය. බොහෝ දුරට ඉඩ, එය නිසා අවසර අතරින් ප්රේරණය කොට ඇත." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පිහිටුවීම් පෙරනිමි සැකසුම්> විද්යුත්> විද්යුත් ගිණුමෙන් ඊ-තැපැල් ගිණුම +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","නිසා අතුරුදන් දත්ත, මෙම ගස වාර්තාව ප්රදර්ශනය කිරීමට නොහැකි විය. බොහෝ දුරට ඉඩ, එය නිසා අවසර අතරින් ප්රේරණය කොට ඇත." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ගොනුව තෝරන්න apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,උඩුගත හරහා සංස්කරණය කරන්න -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","ලිපි වර්ගය ..., උදා: පාරිභෝගික" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","ලිපි වර්ගය ..., උදා: පාරිභෝගික" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,මෙම තත්වය '{0}' වලංගු නොවන DocType: Workflow State,barcode,පච්චයක් apps/frappe/frappe/config/setup.py +232,Add your own translations,ඔබේ ම පරිවර්තනය එකතු කරන්න @@ -425,7 +425,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,බදාදා apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","මීට අමතරව කාර්යභාරය පදනම් අවසරය රීති, ඔබ DocTypes මත පදනම් පරිශීලක අවසර අයදුම් කළ හැකිය." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","මෙම අවසර අවසර වාර්තා සම්බන්ධ කරනු ලබන සියලු ගනුදෙනු සඳහා අයදුම් කරනු ඇත. උදාහරණයක් ලෙස, C සමාගම පරිශීලක X හි පරිශීලක අවසර එකතු කරන්නේ නම්, පරිශීලක එක්ස් එකම සමාගම සී සම්බන්ධිත වටිනාකමක් ලෙස ඇති බව ගනුදෙනු කිරීමට හැකි වනු ඇත." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,රූප ක්ෂේත්රයේ වලංගු fieldname විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,රූප ක්ෂේත්රයේ වලංගු fieldname විය යුතුය DocType: OAuth Client,Token,සංකේත DocType: Property Setter,ID (name) of the entity whose property is to be set,හැඳුනුම්පත (නම) තම දේපල සකස් කළ යුතු වන්නේ ඒකකයෙහි apps/frappe/frappe/limits.py +82,"To renew, {0}.",", අළුත් කර ගැනීම සඳහා, {0}." @@ -434,7 +434,7 @@ DocType: Web Form,Sidebar Items,වැඩේටත් අයිතම apps/frappe/frappe/installer.py +125,App {0} already installed,යෙදුම {0} දැනටමත් ස්ථාපනය කර DocType: Workflow State,exclamation-sign,විශ්මයාර්ථ-ලකුණක් apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,අවසර දෙන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,කාල නියමය ක්ෂේත්රය ලින්ක් හෝ ගතික ලින්ක් විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,කාල නියමය ක්ෂේත්රය ලින්ක් හෝ ගතික ලින්ක් විය යුතුය apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,දිනය රංගේ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},පිටුව {0} {1} හි @@ -442,7 +442,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,මෙ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","ගුප්තකේතන යතුරු අවලංගු වන අතර, site_config.json පරීක්ෂා කරන්න" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,දක්වා DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},සාර්ථක: {0} {1} වෙත +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},සාර්ථක: {0} {1} වෙත apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,demo දී පරිශීලක විස්තර වෙනස් කළ නොහැක. https://erpnext.com නව ගිණුම සඳහා ලියාපදිංචි වීමේ කරුණාකර apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,වෙනස්කම් කිරීමට මෙම අනුපිටපත් කරුණාකර apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF පරම්පරාව නිසා කැඩී ගොනු සබැඳි අසාර්ථක @@ -459,24 +459,24 @@ DocType: DocField,Collapsible,කොටසේ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,දිවි ගළවාගත් apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ඔබ කුමක් උදව් අවශ්ය වන්නේ ඇයි? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,තේරීම් සඳහා විකල්පයන්. නව රේඛාවක් මත එක් එක් විකල්පය. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,ස්ථිරවම {0} අවලංගු කරන්න? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,ස්ථිරවම {0} අවලංගු කරන්න? DocType: Workflow State,music,සංගීත DocType: Web Page,Settings,සැකසුම් apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,doctype සඳහන් කරන්න DocType: Print Format,Style Settings,ස්ටයිල් සැකසුම් -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,වර්ග ක්ෂේත්රය {0} වලංගු fieldname විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,වර්ග ක්ෂේත්රය {0} වලංගු fieldname විය යුතුය apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,තව DocType: Contact,Sales Manager,අලෙවි කළමනාකරු apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,නැවත නම් කරන්න DocType: Print Format,Format Data,ආකෘතිය දත්ත -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,මෙන් +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,මෙන් DocType: Customize Form Field,Customize Form Field,ආකෘතිය ක්ෂේත්ර රිසිකරණය apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,පරිශීලක ඉඩ දෙන්න DocType: OAuth Client,Grant Type,ප්රදාන වර්ගය apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,කරන ලියවිලි පරිශීලකයා විසින් කියවිය හැකි වේ පරීක්ෂා කරන්න apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,ලැයිස්තුගත යෙදුම අවසර නැත -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ආදේශක ලෙස% භාවිතා -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","මෙම ගිණුම සඳහා විද්යුත් වසම් සකසා නැත, එක් සාදන්න?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ආදේශක ලෙස% භාවිතා +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","මෙම ගිණුම සඳහා විද්යුත් වසම් සකසා නැත, එක් සාදන්න?" DocType: User,Reset Password Key,මුරපදය කී යළි පිහිටුවන්න DocType: Email Account,Enable Auto Reply,වාහන ඊ-මේල් මගින් පිලිතුරු දෙන්න සක්රිය කරන්න apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,දැක නැත @@ -520,7 +520,7 @@ DocType: DocField,Set Only Once,එක් වරක් පමණක් සකස DocType: Email Queue Recipient,Email Queue Recipient,විද්යුත් පෝලිමේ පලමු වරට පිරිනැමු DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,පරිශීලක නාමය {0} දැනටමත් පවතී -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: ආනයන සිටුවම් කල නොහැක ලෙස {1} importable නොවේ +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: ආනයන සිටුවම් කල නොහැක ලෙස {1} importable නොවේ apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},ඔබගේ ලිපිනය සැකිල්ල {0} දෝෂයක් වේ DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -532,7 +532,7 @@ DocType: Communication,From Full Name,සම්පූර්ණ නම සිට apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},ඔබ වාර්තාව සඳහා ප්රවේශයන් නොමැත: {0} DocType: User,Send Welcome Email,ඔබ සාදරයෙන් පිළිගනිමු විද්යුත් යවන්න apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,බාගත ලෙස එම ආකෘතියෙන් සියලු පරිශීලක අවසර අඩංගු CSV ගොනුවක් උඩුගත කරන්න. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,පෙරහන් ඉවත් කරන්න +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,පෙරහන් ඉවත් කරන්න DocType: Address,Daman and Diu,Daman හා Diu DocType: Address,Personal,පුද්ගලික apps/frappe/frappe/config/setup.py +113,Bulk Rename,තොග ප්රතිනම්කෙරුම් @@ -563,11 +563,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","සම්මත DocType, පෙරනිමි මුද්රිත ආකෘතිය නොහැකි Customize ආකෘති පත්රය භාවිතා කරන්න" DocType: Report,Query,විමසුම් DocType: DocType,Sort Order,වර්ග නියමය -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'ලැයිස්තුව දැක්වීම' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'ලැයිස්තුව දැක්වීම' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} DocType: Custom Field,Select the label after which you want to insert new field.,ඔබට නව ක්ෂේත්ර ඇතුළු කිරීමට අවශ්ය කළ පසු ලේබලය තෝරන්න. ,Document Share Report,ලේඛන මෙම දැන්වීම වාර්තා කරන්න DocType: User,Last Login,පසුගිය ලොගින් වන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname පේළිය {0} අවශ්ය කරන්නේ +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname පේළිය {0} අවශ්ය කරන්නේ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,තීරුව DocType: Custom Field,Adds a custom field to a DocType,එය DocType කිරීමට රිසිකළ ක්ෂේත්රය තවදුරටත් DocType: File,Is Home Folder,මුල් පිටුව ෆෝල්ඩරය වේ @@ -593,7 +593,7 @@ DocType: File,Folder,ෆෝල්ඩරය DocType: DocField,Index,දර්ශකය DocType: Email Group,Newsletter Manager,පුවත් ලිපි කළමනාකරු apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,විකල්ප 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,සියලු තැපැල් +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},"{0} කර ගැනීම සඳහා, {1}" apps/frappe/frappe/config/setup.py +89,Log of error during requests.,ඉල්ලීම් දෝෂයක් පිළිබඳ ලඝු-සටහන. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} සාර්ථකව විද්යුත් සමූහ ද එක් කර ඇත. DocType: Address,Uttar Pradesh,උත්තර් ප්රදේශ් @@ -603,7 +603,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,දර්ශකයක් DocType: DocShare,Everyone,හැමෝම DocType: Workflow State,backward,පසුගාමී -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: පාලනය එකක් පමණක්, පෙළ සහ {1} එම භූමිකාව ඉඩ" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: පාලනය එකක් පමණක්, පෙළ සහ {1} එම භූමිකාව ඉඩ" DocType: Email Queue,Add Unsubscribe Link,"වනවාද, ලින්ක් එකතු කරන්න" apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,තවමත් ප්රතිචාර නොමැත. නව සාකච්ඡාවක් ආරම්භ කරන්න. DocType: Workflow State,share,බෙදාගන්න @@ -622,7 +622,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,අව apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,පැකේජය දැක්ම apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,මෙනෙවිය DocType: Website Theme,Background Color,පසුබිම් වර්ණය -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ඊ-තැපැල් යැවීම අතර දෝෂ ඇතිවිය. කරුණාකර නැවත උත්සාහ කරන්න. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ඊ-තැපැල් යැවීම අතර දෝෂ ඇතිවිය. කරුණාකර නැවත උත්සාහ කරන්න. DocType: Portal Settings,Portal Settings,ද්වාරය සැකසුම් DocType: Web Page,0 is highest,0 ඉහළම apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,ඔබ {0} මෙම සන්නිවේදන relink කිරීමට අවශ්ය බව ඔබට විශ්වාසද? @@ -650,7 +650,7 @@ DocType: Contact Us Settings,Contact Us Settings,අප සැකසුම් apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,සොයමින් ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,සොයමින් ... DocType: Workflow State,text-width,පෙළ-පළල -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,මෙම වාර්තාව සඳහා උපරිම ඇමුණුම් සීමාව විය. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,මෙම වාර්තාව සඳහා උපරිම ඇමුණුම් සීමාව විය. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,පහත සඳහන් අනිවාර්ය ක්ෂේත්ර සම්පූර්ණ කළ යුතුය:
DocType: Email Alert,View Properties (via Customize Form),දැක්ම Properties (Customize ආකෘතිය හරහා) DocType: Note Seen By,Note Seen By,සටහන මගින් දැක @@ -660,17 +660,17 @@ DocType: Address,Rajasthan,රාජස්ථාන් apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,වාර්තාව Builder වාර්තා වාර්තාව තනන්නා විසින් ඍජුව පාලනය වේ. කරන්න දෙයක් නෑ. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,ඔබේ විද්යුත් තැපැල් ලිපිනය තහවුරු කරන්න apps/frappe/frappe/model/document.py +903,none of,කිසිවෙක් -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,මා පිටපතක් යැවීමට +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,මා පිටපතක් යැවීමට apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,පරිශීලක අවසර උඩුගත DocType: Dropbox Settings,App Secret Key,යෙදුම රහස් යතුර apps/frappe/frappe/config/website.py +7,Web Site,වෙබ් අඩවිය apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,පරීක්ෂා භාණ්ඩ ඩෙස්ක්ටොප් එක මත පෙන්වනු ලැබේ -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} තනි වර්ග සඳහා සකස් කළ නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} තනි වර්ග සඳහා සකස් කළ නොහැකි apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban මණ්ඩලය {0} නොපවතියි. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} දැනට මෙම ලියවිල්ල නරඹන DocType: ToDo,Assigned By Full Name,සම්පූර්ණ නම වන විට පවරා apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} යාවත්කාලීන -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,වාර්තාව තනි වර්ග සඳහා සකස් කළ නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,වාර්තාව තනි වර්ග සඳහා සකස් කළ නොහැකි apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,දින {0} කට පෙර DocType: Email Account,Awaiting Password,මුරපදය තෙක් බලා DocType: Address,Address Line 1,ලිපින පේළි 1 @@ -680,7 +680,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","කාර්ය ප්රවාහ සඳහා ජනපදයේ (උදා: කෙටුම්පත්, අනුමත, අහෝසි)." DocType: Print Settings,Allow Print for Draft,කෙටුම්පත් සඳහා මුද්රණය ඉඩ දෙන්න apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,සකසන්න ප්රමාණ -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,තහවුරු කර ගැනීමට මෙම ලේඛනය ඉදිරිපත් කළ +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,තහවුරු කර ගැනීමට මෙම ලේඛනය ඉදිරිපත් කළ DocType: Contact,Unsubscribed,කෙරෙනු apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,පිටුව සහ වාර්තාව සඳහා සකසන්න අභිරුචි භූමිකාවන් apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,ණය ශ්රේණිය: @@ -688,7 +688,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,දත්ත ආයාත මෙවලම DocType: Address,Dadra and Nagar Haveli,Dadra හා නගර් Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ගොනු උඩුගත කරන්න තත්පර කිහිපයක් රැඳී සිටින්න. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,ඔබේ පින්තූරය අමුණන්න +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,ඔබේ පින්තූරය අමුණන්න apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,පේළියේ අගයන් වෙනස් DocType: Workflow State,Stop,නවත්වන්න DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,ඔබ ආරම්භ කිරීමට අවශ්ය පිටුවට ලින්ක් එක. ඔබ එය පිරිසක් මව් කරන්න අවශ්ය නම් ඒ හිස්ව තබන්න. @@ -703,7 +703,7 @@ DocType: Print Format,Align Labels to the Left,වාමාංශික කි DocType: Help Article,Expert,විශේෂඥ DocType: Workflow State,circle-arrow-right,රවුම-ඊතලය දක්ෂිනාංශික DocType: LDAP Settings,LDAP Server Url,LDAP සේවාදායකය අඩවිය -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,එහි {0} විවෘත වන විට විවෘත උදාහරණයක් නොහැක +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,එහි {0} විවෘත වන විට විවෘත උදාහරණයක් නොහැක apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,ස්ථාපනය සඳහා පෙළ ගැසෙනු DocType: Custom DocPerm,Custom DocPerm,අභිරුචි DocPerm DocType: Newsletter,Send Unsubscribe Link,"වනවාද, Link යවන්න" @@ -720,7 +720,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,යෙදුම {0} ඉවත් DocType: Custom DocPerm,Apply User Permissions,පරිශීලක අවසර යොමු කරන්න DocType: User,Modules HTML,මොඩියුල HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,සැකසුම> පරිශීලක අවසර කළමනාකරු apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,අවශ්ය අතුරුදහන් වටිනාකම් DocType: DocType,Other Settings,වෙනත් සැකසුම් DocType: Social Login Keys,Frappe,Frappe @@ -739,7 +738,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth පැතිරෙවූ apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,කිසිදු ලියවිල්ලක් තෝරාගත් apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ආචාර්ය DocType: Event,Event,උත්සවය -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} මත, {1} මෙසේ ලිවීය:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} මත, {1} මෙසේ ලිවීය:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,සම්මත ක්ෂේත්රය මකා නොහැක. ඔබට අවශ්ය නම් ඔබට එය සැඟවීමට හැකි DocType: Top Bar Item,For top bar,ඉහළ බාර් සඳහා apps/frappe/frappe/utils/bot.py +148,Could not identify {0},{0} හඳුනා නොහැක @@ -753,7 +752,7 @@ DocType: Role,Desk Access,මේසය ප්රවේශ DocType: Workflow State,minus,ඍණ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,සේවාදායක දෝෂය: ඔබගේ සේවාදායකයේ ලඝු පරීක්ෂා කරන්න හෝ තාක්ෂණික අනුග්රාහකයා හෝ අමතා කරන්න. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ඔබ සාදරයෙන් පිළිගනිමු ඊ-තැපැල් යවන -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,පළමු භාවිතය සඳහා පද්ධතිය සකස් කරමු. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,පළමු භාවිතය සඳහා පද්ධතිය සකස් කරමු. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,විශේෂාංග apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,මේ වන විටත් ලියාපදිංචි DocType: System Settings,Float Precision,පාවෙන නිරවද්යතාව @@ -767,7 +766,7 @@ DocType: Web Form,Allow Print,මුද්රණය ඉඩ දෙන්න apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,කිසිදු යෙදුම් ප්රාප්ත apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ලකුණ ක්ෂේත්රයක් ලෙස අනිවාර්ය DocType: Communication,Clicked,මත ක්ලික් -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},අවසර නැත කිරීමට '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},අවසර නැත කිරීමට '{0}' {1} DocType: User,Google User ID,ගූගල් පරිශීලක අනන්යාංකය apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,යැවීමට නියමිත DocType: DocType,Track Seen,ධාවන දැක @@ -837,7 +836,7 @@ DocType: Address,Kerala,කේරල DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,සමගාමී සැසිවාරය DocType: OAuth Client,Client Credentials,සේවාලාභියා අක්තපත්ර -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,මොඩියුල මොඩියුල හෝ tool විවෘත +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,මොඩියුල මොඩියුල හෝ tool විවෘත DocType: Communication,Delivery Status,භාරදීම් තත්ත්ව DocType: Module Def,App Name,යෙදුම නම apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,අවසර මැක්ස් ගොනු විශාලත්වය {0} මුස්ලිම් සහෝදරත්වය වන @@ -849,8 +848,8 @@ DocType: Feedback Request,Reference Communication,විමර්ශන සන DocType: Email Queue,Unsubscribe Method,"වනවාද, ක්රමය" DocType: GSuite Templates,Related DocType,සම්බන්ධ DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,සංස්කරණය කරන්න අන්තර්ගත එක් කිරීමට -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,භාෂා තෝරන්න -apps/frappe/frappe/__init__.py +510,No permission for {0},{0} සඳහා කිසිදු අවසරයක් +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,භාෂා තෝරන්න +apps/frappe/frappe/__init__.py +509,No permission for {0},{0} සඳහා කිසිදු අවසරයක් DocType: DocType,Advanced,උසස් apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API යතුර හෝ API රහස් වැරදි පෙනේ !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},විමර්ශන: {0} {1} @@ -872,7 +871,7 @@ DocType: Customize Form,Enter Form Type,වර්ගය ආකෘතිය ඇ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,කිසිදු වාර්තා tagged. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ක්ෂේත්ර ඉවත් කරන්න DocType: User,Send Password Update Notification,මුරපදය යාවත්කාලීන නිවේදනය යවන්න -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DocType, DocType ඉඩ. පරෙස්සම් වෙන්න!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DocType, DocType ඉඩ. පරෙස්සම් වෙන්න!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","මුද්රණ, විද්යුත් පාරිභෝගිකයාට ආකෘති" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,නව වෙළුමට යාවත් DocType: Custom Field,Depends On,මත රඳා පවතී @@ -965,6 +964,7 @@ apps/frappe/frappe/model/document.py +902,one of,එක් apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,කරුණාකර පිටපත් කිරීමට ගොනුවක් තෝරා apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,එක් මොහොතක පරීක්ෂා apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,ඇමිණුම් පෙන්වන්න +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","යොමු කරන්න දැඩි පරිශීලක අවසර පරීක්ෂා කරන අතර පරිශීලක අවසරය සඳහා පරිශීලක වූ DocType සඳහා අර්ථ නම්, එසේ නම් මෙම සබැඳිය වටිනාකම හිස් සිටින සියලු ලිපි ලේඛන, ඒ, පරිශීලක පෙන්වා ඇත කළ නොහැකි වනු ඇත" DocType: Address,Billing,බිල්පත් DocType: Email Queue,Not Sent,යවා නැත DocType: Web Form,Actions,ක්රියා @@ -995,6 +995,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,පැහැ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,සෑම දිනකම සිද්ධීන් එම දිනයේ දී ම අවසන් කළ යුතුය. DocType: Communication,User Tags,පරිශීලක ඇමිණුම් apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,ලබාගනිමින් පින්තූර .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,සැකසුම> පරිශීලක DocType: Workflow State,download-alt,බාගත-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},බාගත යෙදුම් {0} DocType: Communication,Feedback Request,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය ඉල්ලීම් @@ -1012,7 +1013,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,අමතර පිටපත් apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,ඇමතුම් එකතු DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,"විකල්ප: සෑම විටම, මේවා හැඳුනුම් පත් කිරීමට යවන්න. නව පේළියක් එක් එක් විද්යුත් තැපැල් ලිපිනය" -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,විස්තර සඟවන්න +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,විස්තර සඟවන්න DocType: Workflow State,Tasks,කාර්යයන් DocType: Event,Tuesday,අඟහරුවාදා DocType: Blog Settings,Blog Settings,බ්ලොග් සැකසුම් @@ -1032,9 +1033,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,මෙම සුරකින එහිදී එම ෆෝල්ඩරය තුළ පිඹුරා ගොනුවක් ලිවීමට හා තීරු හා ප්රතිඵලය ආපසු යන්න. DocType: DocType,Sort Field,වර්ග ක්ෂේත්ර DocType: Razorpay Settings,Razorpay Settings,Razorpay සැකසුම් -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,සංස්කරණය කරන්න පෙරහන් -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ක්ෂේත්ර {0} වර්ගයේ {1} අනිවාර්ය විය නොහැකි -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","උදා. පරිශීලක අවසර යොමු කරන්න වාර්තාව DocType සඳහා පරීක්ෂා කෙරේ නමුත් සඳහා පරිශීලක වාර්තාව සඳහා කිසිදු පරිශීලක අවසර අර්ථ නිරූපනය කර ඇත, සියලු වාර්තා බව පරිශීලක පෙන්නුම් කෙරේ නම්," +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,සංස්කරණය කරන්න පෙරහන් +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ක්ෂේත්ර {0} වර්ගයේ {1} අනිවාර්ය විය නොහැකි apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,තව එකතු කරන්න apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,සඟවන්න සටහන DocType: System Settings,Session Expiry Mobile,සැසිය කල් ඉකුත් ජංගම @@ -1049,6 +1049,7 @@ DocType: Communication,Delayed,ප්රමාද apps/frappe/frappe/config/setup.py +128,List of backups available for download,බාගත හැකි රක්ෂිත ඇති ලැයිස්තුව apps/frappe/frappe/www/login.html +89,Sign up,ලියාපදිංචි වන්න DocType: Test Runner,Output,නිමැවුම +DocType: Email Alert,Set Property After Alert,ඉඩකඩම් සකසන්න ඇලර්ට් පසු apps/frappe/frappe/config/setup.py +226,Add fields to forms.,ආකෘති වෙත ක්ෂේත්ර එකතු කරන්න. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,යමක් මෙම අඩවියේ පේපෑල් වින්යාස වැරැද්ද වගේ. DocType: File,rgt,rgt @@ -1056,6 +1057,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,කොළ DocType: Portal Menu Item,Portal Menu Item,ද්වාරය මෙනු අයිතමය DocType: User Email,Email ID,ඊ-තැපැල් හැඳුනුම්පත +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","පරිශීලක අවසර කරන්න වාර්තාව DocType සඳහා පරීක්ෂා කරන නමුත් සඳහා පරිශීලක වාර්තාව සඳහා පරිශීලක අවසර අර්ථ නිරූපනය කර ඇත, සියලු වාර්තා බව, පරිශීලක පෙන්වා ඇත නම්" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,පරිශීලක ඉඩ සලසන පසු සේවාලාභියා යෙදුම හැකියාව ලැබේ වන සම්පත් පිළිබඳ ලැයිස්තුවක්.
උදා: ව්යාපෘතිය DocType: Translation,Translated Text,පරිවර්තනය පෙළ DocType: Contact Us Settings,Query Options,විමසුම් විකල්ප @@ -1073,7 +1075,7 @@ DocType: Address,Contacts,අප අමතන්න DocType: System Settings,Setup Complete,setup සම්පූර්ණ apps/frappe/frappe/config/setup.py +66,Report of all document shares,සියලු ලේඛන කොටස් වාර්තාව apps/frappe/frappe/www/update-password.html +18,New Password,නව මුරපදය -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,පෙරහන් {0} අතුරුදහන් +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,පෙරහන් {0} අතුරුදහන් apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,සමාවන්න! ඔබ ස්වයංක්රීය-ජනනය අදහස් මකා දැමිය නොහැකි DocType: Website Theme,Style using CSS,CSS වේ භාවිතා ස්ටයිල් apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,විමර්ශන DocType @@ -1128,7 +1130,7 @@ DocType: User,Block Modules,වාරණ මොඩියුල apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,"'{1}' සඳහා {0} දිග ප්රතිවර්තනය '{2}' ෙකොපමණද; ලෙස, {3} දත්ත කවලම් ඇති කරනු ඇති දිග පිහිටුවීම." DocType: Print Format,Custom CSS,රේගු CSS වේ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,අදහසක් එක් කරන්න -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},නොසලකා: {0} {1} වෙත +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},නොසලකා: {0} {1} වෙත DocType: Address,Gujarat,ගුජරාට් apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,ස්වයංක්රීය සිදුවීම් (කාර්ය සටහන්) මත වරද ලඝු-සටහන. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),"නැත, වලංගු කොමාවෙන් අගය වෙන් වෙන් (CSV ගොනුව)" @@ -1137,7 +1139,7 @@ DocType: Email Account,Default Incoming,පෙරනිමි දියවී DocType: Workflow State,repeat,නැවත DocType: Website Settings,Banner,බැනරය DocType: Role,"If disabled, this role will be removed from all users.","ආබාධිත නම්, මෙම භූමිකාව සියළු පරිශීලකයන් ඉවත් කරනු ඇත." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,සොයන්න උදවු +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,සොයන්න උදවු apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,ලියාපදිංචි නමුත් ආබාධිත DocType: DocType,Hide Copy,පිටපත් සඟවන්න apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,සියලුම භූමිකා ඉවත් @@ -1169,7 +1171,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,රට apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,ලිපින DocType: Communication,Shared,හවුල් -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ලේඛන මුද්රණය අමුණන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ලේඛන මුද්රණය අමුණන්න DocType: Bulk Update,Field,ක්ෂේත්ර DocType: Communication,Received,ලැබී DocType: Social Login Keys,Google Client ID,ගූගල් සේවාලාභී ID @@ -1190,12 +1192,12 @@ DocType: Report,Query Report,විමසුම් වාර්තාව DocType: User,Set New Password,අලුත් රහස් වචනයක් DocType: User,Github User ID,Github පරිශීලක අනන්යාංකය apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ලේඛන වර්ගය නම් -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","මකා දැමීම හෝ අවලංගු කළ නොහැකි {0} නිසා {1} {2} සම්බන්ධ වන {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","මකා දැමීම හෝ අවලංගු කළ නොහැකි {0} නිසා {1} {2} සම්බන්ධ වන {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},නොදන්නා යෙදුම {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S වලංගු වාර්තාවක් ආකෘතිය නොවේ. වාර්තාව ආකෘතිය පහත සඳහන්% s එක් \ යුතු DocType: Communication,Chat,චැට් -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} පේළි {1} තුළ කිහිපවතාවක් පෙනී +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} පේළි {1} තුළ කිහිපවතාවක් පෙනී apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} සිට {2} වෙත පේළිය # තුළ {3} DocType: Communication,Expired,කල් ඉකුත් DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),එය විදුලිබල පද්ධතියට දී ක්ෂේත්ර සඳහා තීරු ගණන (අ විදුලිබල පද්ධතියට මුළු තීර 11 ට වඩා අඩු විය යුතුය) @@ -1205,30 +1207,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ගිණුමක apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},නොදන්නා මුද්රණය ආකෘතිය: {0} DocType: Workflow State,arrow-down,ඊතල පහළ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,බිඳ වැටීම -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},{1}: පරිශීලක {0} මැකීමට අවසර නැත +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},{1}: පරිශීලක {0} මැකීමට අවසර නැත apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,අවසන් වරට යාවත්කාලීන කලේ DocType: Help Article,Likes,වැන්නන් DocType: Website Settings,Top Bar,Top නීතිඥ DocType: GSuite Settings,Script Code,තිර රචනය සංග්රහයේ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,නිර්මාණය පරිශීලක විද්යුත් apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,නිර්මාණය පරිශීලක විද්යුත් -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,අවසර දක්වා නොමැත +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,අවසර දක්වා නොමැත apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,ගෝලීය සැකසුම්: පරිශීලකයන් පමණක් පරීක්ෂා අයිකන තේරීම සදහා හැකි වනු ඇත apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} සොයාගත නොහැකි DocType: Custom Role,Custom Role,අභිරුචි කාර්යභාරය apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,මුල් පිටුව / ටෙස්ට් ෆෝල්ඩරය 2 DocType: System Settings,Ignore User Permissions If Missing,අතුරුදහන් නම් පරිශීලක අවසර නොසලකා -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,upload කිරීමට පෙර ලිපිය සුරැකීම කරන්න. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,upload කිරීමට පෙර ලිපිය සුරැකීම කරන්න. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ඔබගේ මුර පදය ඇතුලත් කරන්න DocType: Dropbox Settings,Dropbox Access Secret,නාමාවලි එකක් ප්රවේශ රහස් apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,එකතු කරන්න තවත් පරිකථනය apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,සංස්කරණය කරන්න DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,පුවත් ඉවත් කෙරෙනු -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ගුණයකින් අංශයක් Break පෙර පැමිණිය යුතුයි +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ගුණයකින් අංශයක් Break පෙර පැමිණිය යුතුයි apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,පසුගිය කිරීම නවීකරණය කරන ලද DocType: Workflow State,hand-down,උරුම කරනවා DocType: Address,GST State,GST රාජ්ය -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ඉදිරිපත් තොරව අවලංගු කරන්න සිටුවම් කල නොහැක +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ඉදිරිපත් තොරව අවලංගු කරන්න සිටුවම් කල නොහැක DocType: Website Theme,Theme,තේමාව apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,දෝෂ ඇතිවිය. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Auth සංග්රහයේ බැඳී URI අන්වර්ථයන් @@ -1247,7 +1249,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ම DocType: Website Theme,Text Color,අකුරු වර්ණය DocType: Desktop Icon,Force Show,හමුදා පෙන්වන්න apps/frappe/frappe/auth.py +78,Invalid Request,වලංගු නොවන ඉල්ලීම් -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,මෙම ආකෘති පත්රය ඕනෑම ආදාන නැහැ +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,මෙම ආකෘති පත්රය ඕනෑම ආදාන නැහැ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},සැසිය කල් ඉකුත් වීමේ ආකෘතිය {0} විය යුතුය DocType: Website Sidebar Item,Group,සමූහය DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",ඉලක්කය තේරීම් = "_blank" නව පිටුවක් විවෘත කිරීමට. @@ -1256,7 +1258,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,කේතන වැරදි නොසලකා හරින්න. DocType: Workflow State,wrench,අඩුවක් apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,සකසා නැත -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,සැකසුම> පරිශීලක DocType: Authentication Log,Date,දිනය DocType: Website Settings,Disable Signup,ගොණුව අක්රීය apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,ඔබේ පද්ධතිය වීම පිහිටුවීම් වන අතර දැඩි වාඩි වෙන්න. මෙය සුළු මොහොතකට ගත විය හැකිය. @@ -1267,7 +1268,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,පරිකථනය එකතු කරන්න DocType: DocField,Mandatory,අනිවාර්ය apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,අපනයන කිරීමට මොඩියුලය -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: මෙයට මූලික අවසර කට්ටලයක් +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: මෙයට මූලික අවසර කට්ටලයක් apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,ඔබේ ග්රාහකත්වය {0} මත කල් ඉකුත් වනු ඇත. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},{0}: ඔබගේ උපස්ථ සඳහා බාගත කිරීමේ සබැඳිය පහත සඳහන් විද්යුත් තැපැල් ලිපිනය මත ඊ-තැපැල් කරනු ඇත apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","අර්ථය පිළිබඳ ඉදිරිපත් කිරීම, අවලංගු කරන්න, සංශෝධනය කරමි" @@ -1280,11 +1281,11 @@ DocType: Desktop Icon,query-report,විමසුම-වාර්තාව apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},{1}: {0} වෙත පවරා apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,පෙරහන් ගැලවීම DocType: DocField,Percent,සියයට -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,පෙරහන් ඇතුළත් කරන්න +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,පෙරහන් ඇතුළත් කරන්න apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,හා සම්බන්ධ DocType: Workflow State,book,පොත DocType: Website Settings,Landing Page,ගොඩ පිටුව -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,රේගු කේත රචනය දෝශයක් +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,රේගු කේත රචනය දෝශයක් apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} නම apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","ආනයන ඉල්ලීම් පේළි. මෙය සුළු මොහොතකට ගත විය හැකිය, ඉවසිලිවන්ත වන්න." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,කිසිදු අවසර මෙම නිර්ණායකයන් සඳහා තැබුවා. @@ -1296,7 +1297,7 @@ DocType: System Settings,Allow Login using Mobile Number,ලොගින් ව apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,ඔබ මෙම සම්පත් ප්රවේශ කිරීමට තරම් අවසර නොමැත. ප්රවේශ ලබා ගැනීමට ඔබගේ කළමනාකරු හා සම්බන්ධ වන්න. DocType: Custom Field,Custom,රේගු apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,විවිධ නිර්ණායක මත පදනම් Setup විද්යුත් ඇලර්ට්. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},{0} යටතේ නඩු තැපැල් +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},{0} යටතේ නඩු තැපැල් DocType: Email Alert,Send alert if date matches this field's value,දිනය මෙම ක්ෂේත්රය වටිනාකම තරග නම් සීරුවෙන් යවන්න DocType: Workflow,Transitions,සංක්රමණය apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,ඉවත් කරන්න {0} සහ සියලු දත්ත මකා? @@ -1305,9 +1306,8 @@ DocType: User,Login After,ලොගින් වන්න පසු DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,මුද්රණ DocType: Workflow State,thumbs-up,තම්බ්ස් අප් -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ඊ-තැපැල් ගිණුම පිහිටුවීම් නැත. සැකසුම> විද්යුත්> විද්යුත් ගිණුමෙන් නව විද්යුත් ගිණුමක් නිර්මාණය කරන්න DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,නිරවද්යතාවයකින් 1 සහ 6 ත් අතර විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,නිරවද්යතාවයකින් 1 සහ 6 ත් අතර විය යුතුය apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,සහ DocType: Error Snapshot,Frames,රාමු @@ -1316,7 +1316,7 @@ DocType: About Us Team Member,Image Link,රූප ලින්ක් DocType: Auto Email Report,Report Filters,වාර්තාව පෙරහන් apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,දැන් DocType: Workflow State,step-backward,පියවර පසුගාමී -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,ඔබේ වෙබ් අඩවිය config දී හෝ නාමාවලි ප්රවේශ යතුර තබා කරුණාකර apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,මෙම ඊ-තැපැල් ලිපිනය වෙත යැවීමට මෙම වාර්තාව මකන්න apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"නව වාර්තා අනිවාර්ය ක්ෂේත්ර පමණක් අවශ්ය වේ. ඔබ කැමති නම්, ඔබ-අනිවාර්ය නොවන තීරු මකා දැමිය හැකිය." @@ -1338,8 +1338,7 @@ DocType: File,Is Attachments Folder,ඇමුණුම් ෆෝල්ඩරය apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,සියල්ල විහිදුවන්න apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,වලංගු ලොගින් වන්න id අවශ්ය විය. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,නැවත විවෘත -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,ඔබ ගෙවීම් අවලංගු කර ඇත -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,කරුණාකර දත්ත සමඟ වලංගු CSV ගොනුවක් තෝරා +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,කරුණාකර දත්ත සමඟ වලංගු CSV ගොනුවක් තෝරා apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} {1} සමග මෙම ලියවිල්ල එක්සත් ජාතීන්ගේ-හවුල් apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} සිට {1} ඉඩ නැත ලේඛන තත්ත්වය සංක්රමණය DocType: DocType,"Make ""name"" searchable in Global Search",ගෝලීය සොයන්න දී "නම" සොයාගත හැකිවන ලෙස සකස් කරන්න @@ -1352,7 +1351,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ම DocType: Help Category,Help Category,උදවු ප්රවර්ගය apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,පරිශීලක {0} අක්රීය apps/frappe/frappe/www/404.html +8,Page missing or moved,පිටුව අතුරුදන් හෝ ශෝකයක් -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,සංස්කරණය කරන්න {0} ගුණ DocType: DocType,Route,මාර්ග apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ගෙවීම් සැකසුම් DocType: DocField,Name,නම @@ -1360,8 +1358,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,මෙම ලේඛන සොයන්න apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,මෙම ලේඛන සොයන්න DocType: OAuth Authorization Code,Valid,වලංගු -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,විවෘත ලින්ක් -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ඔබගේ භාෂාව +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,විවෘත ලින්ක් +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ඔබගේ භාෂාව apps/frappe/frappe/desk/form/load.py +46,Did not load,පූරණය කළේ නැහැ apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,ෙරෝ එකතු කරන්න DocType: Tag Category,Doctypes,Doctypes @@ -1376,7 +1374,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,ඔබෙන DocType: Address,Lakshadweep Islands,Lakshadweep දූපත් apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,ලියන්න පුළුවන් apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","යම් යම් ලිපි ලේඛණ, ක ඉන්වොයිසිය වගේ, එක් වරක් අවසන් වෙනස් කළ යුතු නැහැ. එම ලිපි ලේඛන සඳහා අවසාන රාජ්ය ඉදිරිපත් හැඳින්වේ. ඔබ චරිත ඉදිරිපත් කළ හැකි සීමා කළ හැකිය." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,ඔබ මෙම වාර්තාව අපනයනය කිරීමට අවසර නැත +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,ඔබ මෙම වාර්තාව අපනයනය කිරීමට අවසර නැත apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 අයිතමය තෝරා DocType: Newsletter,Test Email Address,ටෙස්ට් විද්යුත් තැපැල් ලිපිනය DocType: ToDo,Sender,යවන්නාගේ @@ -1411,7 +1409,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,ආනයන .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ලේඛන හැඳුනුම්පත DocType: Print Settings,Letter,ලිපිය -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,රූප ක්ෂේත්රයේ රූප අමුණන්න වර්ගයේ විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,රූප ක්ෂේත්රයේ රූප අමුණන්න වර්ගයේ විය යුතුය DocType: DocField,Columns,තීරු DocType: Async Task,Succeeded,අනුප්රාප්තිකයා apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},{0} අවශ්ය අනිවාර්ය ක්ෂේත්ර @@ -1461,7 +1459,7 @@ DocType: DocField,Text Editor,පෙළ කර්තෘ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,සඳහා අප ගැන පිටුව සැකසුම් තොරන්න. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,සංස්කරණය කරන්න රේගු HTML DocType: Error Snapshot,Error Snapshot,දෝෂ සැණරුව -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,තුළ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,තුළ DocType: Email Alert,Value Change,අගය වෙනස් DocType: Standard Reply,Standard Reply,සම්මත ඊ-මේල් මගින් පිලිතුරු දෙන්න apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ආදාන කොටුවේ පළල @@ -1477,12 +1475,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,මාතෘකාව නිර්මාණය කිරීමට මෙම fieldname භාවිතා කරන්න apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,සිට ආනයනය විද්යුත් apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,පරිශීලක ලෙස ආරාධනා -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,ඇමුණුම් තෝරන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,ඇමුණුම් තෝරන්න apps/frappe/frappe/model/naming.py +94, for {0},{0} සඳහා apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,දෝෂ ඇතිවිය. මෙම වාර්තා කරන්න. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,ඔබ මෙම ලියවිල්ල මුද්රණය කිරීමට අවසර නැත +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,ඔබ මෙම ලියවිල්ල මුද්රණය කිරීමට අවසර නැත apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,වාර්තාව පෙරහන් වගුවේ පෙරහන් අගය සකස් කරන්න. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,පැටවීම වාර්තාව +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,පැටවීම වාර්තාව apps/frappe/frappe/limits.py +72,Your subscription will expire today.,ඔබේ ග්රාහකත්වය අද කල් ඉකුත් වනු ඇත. DocType: Page,Standard,සම්මත apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ගොනුව අමුණන්න @@ -1512,7 +1510,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ප්රාදේශීය දිගු DocType: LDAP Settings,Base Distinguished Name (DN),මූලික අග්රගණ්ය නම (ඩී.එන්) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,මේ සංවාදය තබන්න -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ලින්ක් ක්ෂේත්රයේ {0} සඳහා පිහිටුවා නැත විකල්ප +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ලින්ක් ක්ෂේත්රයේ {0} සඳහා පිහිටුවා නැත විකල්ප DocType: Customize Form,"Must be of type ""Attach Image""",වර්ගයේ විය යුතුය "රූප අමුණන්න" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,එන්ක්රිප්ට් සියලු apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},ඔබ ශූන්යය කළ නොහැකි 'පමණක් කියවන්න' ක්ෂේත්රය සඳහා {0} @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,සටහන apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,දෝෂ වාර්තාව apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය කොන්දේසි නොගැලපේ -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,කාල නියමය ක්ෂේත්රයේ වලංගු fieldname විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,කාල නියමය ක්ෂේත්රයේ වලංගු fieldname විය යුතුය DocType: Currency,Symbol,සංකේතය -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ෙරෝ # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ෙරෝ # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,නව මුරපදය ඊ-තැපැල් apps/frappe/frappe/auth.py +245,Login not allowed at this time,ලොගින් වන්න මෙම කාලයේ දී අවසර නැත DocType: Email Account,Email Sync Option,ඊ-තැපැල් සමමුහුර්ත කරන්න ඔප්ෂන් @@ -1579,7 +1577,7 @@ DocType: DocField,Text,පෙළ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,සම්මත පොදු විමසුම් උත්තර දෙනවා. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,පෙරනිමි යැවීම DocType: Workflow State,volume-off,පරිමාව ලකුණු -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},{0} විසින් කැමති +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},{0} විසින් කැමති DocType: Footer Item,Footer Item,පාදකය අයිතමය ,Download Backups,බාගත අමතර පිටපත් apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,මුල් පිටුව / ටෙස්ට් ෆෝල්ඩරය 1 @@ -1614,7 +1612,7 @@ DocType: Web Page,Text Align,පෙළ පෙළගස්වන්න apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},නම {0} වැනි විශේෂ අනුලකුණු අඩංගු විය නොහැකිය DocType: Contact Us Settings,Forward To Email Address,ඉදිරි විද්යුත් තැපැල් ලිපිනය කිරීම apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,සියලු දත්ත පෙන්වන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,හිමිකම් ක්ෂේත්රයේ වලංගු fieldname විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,හිමිකම් ක්ෂේත්රයේ වලංගු fieldname විය යුතුය apps/frappe/frappe/config/core.py +7,Documents,ලිපි ලේඛන DocType: Email Flag Queue,Is Completed,අවසන් වේ apps/frappe/frappe/www/me.html +22,Edit Profile,සංස්කරණය කරන්න නරඹන්න @@ -1624,8 +1622,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: doc.myfield == '' මාගේ අගය 'eval: doc.age> 18 මෙතන අර්ථ fieldname වටිනාකමක් නම් පමණක් හෝ නීති රීති (උදාහරණ) සැබෑ මෙම ක්ෂේත්රය දිස් වනු ඇත -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,අද -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,අද +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,අද +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,අද apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","ඔබ මෙම තබා ඇත පසු, එම පරිශීලකයන් පමණක් හැකි ප්රවේශ ලේඛන (උදා. බ්ලොග් පෝස්ට්) සබැඳිය පවතී කොතැන (උදා. Blogger)." DocType: Error Log,Log of Scheduler Errors,නියමාකාරකය පත්රයක වරදක් ලඝු-සටහන DocType: User,Bio,ජෛව @@ -1649,6 +1647,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,තරු 1 අඩුම සහ තරු 5 ඉහළම ශ්රේණිගත වීම වීම DocType: Event,Ref Name,ref නම DocType: Web Page,Center,මධ්යස්ථානය +DocType: Email Alert,Value To Be Set,අගය සකස් කළ යුතු apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,පළමු පෙළ DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,තත්වය වෙනස් කිරීමට පවරා එක් ලේඛනයකට හා භූමිකාව ඉඩ ප්රාන්ත නියෝජනය කරයි. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,ආකෘතිය refresh කරන්න @@ -1669,18 +1668,18 @@ DocType: DocType,Has Web View,වෙබ් දැක්ම ඇත apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType නම ලිපියක් සමග ආරම්භ විය යුත්තේ එය ඇරඹී අකුරු, අංක, ස්ථාන සහ යටි ඉරි වලින් සමන්විත හැක" DocType: Communication,Spam,ආයාචිත තැපැල් DocType: Integration Request,Integration Request,ඒකාබද්ධතා ඉල්ලීම් -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,හිතවත් +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,හිතවත් DocType: Address,Maharashtra,මහාරාෂ්ට්ර DocType: Address,Accounts User,ගිණුම් පරිශීලක DocType: Web Page,HTML for header section. Optional,ශීර්ෂ අංශය සඳහා HTML. විකල්ප apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,මෙම ලක්ෂණය අළුත් හා තවමත් පර්යේෂණාත්මක වේ -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,උපරිම {0} පේළි ඉඩ +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,උපරිම {0} පේළි ඉඩ DocType: Email Unsubscribe,Global Unsubscribe,"ගෝලීය වනවාද," apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,මෙය ඉතා පොදු මුරපදයකි. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,දැක්ම DocType: Communication,Assigned,පවරා DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,මුද්රණය ආකෘතිය තෝරන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,මුද්රණය ආකෘතිය තෝරන්න apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,කෙටි යතුරු පුවරුව රටාවන් අනුමාන කිරීමට පහසුය DocType: Portal Settings,Portal Menu,ද්වාරය මෙනුව apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} දිග 1 සහ 1000 අතර විය යුතුය @@ -1719,7 +1718,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,පරිශීලක සොයන්න නොහැක apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,වලංගු නොවන ප්රතිදාන ආකෘතිය DocType: Custom DocPerm,Apply this rule if the User is the Owner,පරිශීලක අයිතිකරු නම් මෙම නීතිය අදාළ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,ඔබේ පිවිසුම් අංකය වනු ඇත +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,ඔබේ පිවිසුම් අංකය වනු ඇත apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,වාර්තාව ගොඩනගනු DocType: Note,Notify users with a popup when they log in,ඔවුන් login විට උත්පතන ඇති පරිශීලකයන් වෙත දැනුම් apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1}, නොපවතියි නව ඉලක්කය තෝරා ඒකාබද්ධ කිරීමට" @@ -1738,17 +1737,18 @@ DocType: User Permission for Page and Report,Roles Permission,භූමිකා apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,යාවත්කාලීන DocType: Error Snapshot,Snapshot View,සැණරුව දැක්ම apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,යැවීමට පෙර එම පුවත් කරුනාකර -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},විකල්ප ක්ෂේත්ර {0} පේළියේ {1} සඳහා වලංගු DocType විය යුතුය +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} වසරේ (ව) පෙර +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},විකල්ප ක්ෂේත්ර {0} පේළියේ {1} සඳහා වලංගු DocType විය යුතුය apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,සංස්කරණය කරන්න දේපළ DocType: Patch Log,List of patches executed,ක්රියාත්මක වන පැච් එක ලැයිස්තුව apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} දැනටමත් දායකත්වයෙන් ඉවත් -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,සන්නිවේදන මධ්යම +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,සන්නිවේදන මධ්යම DocType: Website Settings,Banner HTML,බැනරය HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',කරුණාකර වෙනත් ගෙවීමේ ක්රමයක් තෝරාගන්න. Razorpay මුදල් ගනුදෙනු සඳහා පහසුකම් සපයන්නේ නැත '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,උපස්ථ සදහා පෙළ ගැසෙනු. එය පැය කිරීම සඳහා විනාඩි කිහිපයක් ගත විය හැකිය. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,රෙජිස්ටර් OAuth සේවාලාභියා යෙදුම -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" විය නොහැක. එය "{3}" එකක් විය යුතුය +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} "{2}" විය නොහැක. එය "{3}" එකක් විය යුතුය apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} හෝ {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,ෂෙයාර් පෙන්වන්න හෝ සඟවන්න apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,මුරපදය යාවත්කාලීන @@ -1775,7 +1775,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,අංශ පසු පෙන්වන්න ලයින් DocType: Blogger,Short Name,කෙටි නම apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},පිටුව {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","ඔබ සියලු දෙනා ම සමමුහුර්ත කරන්න ඔප්ෂන් තෝරා ගැනීම, ඒ සියල්ල කියවා මෙන්ම සේවාදායකය වෙතින් නොකියවූ පණිවුඩය \ resync ඇත. මෙය ද සන්නිවේදන (විද්යුත් තැපැල්) යන අනුපිටපතක් \ හේතු විය හැක." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ගොනු තරම @@ -1787,6 +1787,7 @@ DocType: Contact,Purchase Manager,මිලදී ගැනීම කළමන DocType: Custom Script,Sample,නියැදි apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised ඇමිණුම් DocType: Event,Every Week,සෑම සතියේ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ඊ-තැපැල් ගිණුම පිහිටුවීම් නැත. සැකසුම> විද්යුත්> විද්යුත් ගිණුමෙන් නව විද්යුත් ගිණුමක් නිර්මාණය කරන්න apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,ඔබේ භාවිතය පරීක්ෂා කිරීමට හෝ ඉහළ සැලැස්ම ප්රගමනය සඳහා මෙතන ක්ලික් කරන්න DocType: Custom Field,Is Mandatory Field,අනිවාර්ය ක්ෂේත්ර වේ DocType: User,Website User,වෙබ් අඩවිය පරිශීලක @@ -1810,16 +1811,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,රේගු වැඩේටත් මෙනුව DocType: Workflow State,pencil,පැන්සල් apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,පණිවිඩ සහ වෙනත් දැනුම් දීම් චැට්. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},{0} ලෙස සකසා ගත නොහැකි පසු ඇතුල් කරන්න +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},{0} ලෙස සකසා ගත නොහැකි පසු ඇතුල් කරන්න apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,මෙම දැන්වීම {0} සමග apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ඊ-තැපැල් ගිණුම පිහිටුවීම් සඳහා ඔබගේ මුර පදය ඇතුලත් කරන්න: DocType: Workflow State,hand-up,අත උස්සන්න DocType: Blog Settings,Writers Introduction,ලේඛකයන් හැඳින්වීම DocType: Address,Phone,දුරකථන -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,විද්යුත් ඇලර්ට් {0} ඇගයීමට ලක් කිරීමේදී දෝෂයක්. ඔබේ ටෙම්ප්ලේටය විසින් අදාල කරුණ නිවැරදි කරන්න. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,විද්යුත් ඇලර්ට් {0} ඇගයීමට ලක් කිරීමේදී දෝෂයක්. ඔබේ ටෙම්ප්ලේටය විසින් අදාල කරුණ නිවැරදි කරන්න. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ආරම්භ කිරීමට ලේඛන වර්ගය හෝ කාර්යභාරය තෝරන්න. DocType: Contact,Passive,උදාසීන DocType: Contact,Accounts Manager,ගිණුම් කළමනාකරු +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,ඔබගේ ගෙවීම් අවලංගු කර ඇත. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ගොනුව වර්ගය තෝරන්න DocType: Help Article,Knowledge Base Editor,දැනුම මූලික කර්තෘ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,පිටුව සොයා ගැනීමට නොහැකි විය @@ -1847,6 +1849,7 @@ DocType: Property Setter,Property Type,ඉඩකඩම් වර්ගය DocType: Workflow State,screenshot,තිර පිටපතක් apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,එකම පරිපාලක සම්මත වාර්තාව ඉතිරි කර ගත හැක. යළිනම් කොට ඉතිරි කරන්න. DocType: System Settings,Background Workers,පසුබිම කම්කරු +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} මෙටා වස්තුවක් සමඟ එකිනෙකට පටහැනි DocType: Deleted Document,Data,දත්ත apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ලේඛන තත්ත්වය apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},ඔබ {0} {1} ඇති කර තිබේ @@ -1871,7 +1874,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,පරිශීලක පෙන්වන්න අවසර apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,ඔබ ලොගින් වී කළ යුතු සහ System කළමනාකරු කාර්යභාරය රක්ෂිත ඇති ප්රවේශ වීමට හැකි විය යුතුයි. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ඉතිරි -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,අනුයුක්ත පෙර සුරකින්න. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,අනුයුක්ත පෙර සුරකින්න. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),එකතු {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},පෙරනිමි තේමාව {0} ඇති වන්නේ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype {0} {2} පේළියේ {1} දක්වා වෙනස් කළ නොහැකි @@ -1891,11 +1894,10 @@ DocType: System Settings,System Settings,පද්ධති සැකසීම apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,සැසිය අරඹන්න අසාර්ථක විය apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},මෙම ඊ-තැපෑල {0} වෙත යවන සහ {1} පිටපත් විය DocType: Workflow State,th,වන -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,කරුණාකර පිහිටුවීම් පෙරනිමි සැකසුම්> විද්යුත්> විද්යුත් ගිණුමෙන් ඊ-තැපැල් ගිණුම -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},නව {0} නිර්මාණය +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},නව {0} නිර්මාණය DocType: Email Rule,Is Spam,අයාචිත තැපැල් වේ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},වාර්තාව {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},විවෘත {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},විවෘත {0} DocType: OAuth Client,Default Redirect URI,පෙරනිමි යළි-යොමුවීම් URI DocType: Email Alert,Recipients,ලබන්නන් DocType: Workflow State,ok-sign,හරි-ලකුණක් @@ -1913,6 +1915,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,උදවු ලිපි ,Modules Setup,මොඩියුල Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,වර්ගය: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,ඔබගේ ගෙවීම් අසමත් වී ඇත. DocType: Communication,Unshared,ලබා ගත් එක්ම DocType: Address,Karnataka,කර්නාටක apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,මොඩියුලය සොයාගැනීමට නොහැකි @@ -1960,7 +1963,7 @@ DocType: Website Settings,Brand Image,වෙළඳ නාමය රූප DocType: Print Settings,A4,A4 ප්රමාණයේ apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","ඉහළ සංචලනය බාර්, පාදකය සහ ලාංඡනය Setup." DocType: Web Form Field,Max Value,මැක්ස් අගය -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{0} සඳහා මට්ටමින් {1} {2} පේළියේ {3} තුළ +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{0} සඳහා මට්ටමින් {1} {2} පේළියේ {3} තුළ DocType: Contact,All,සියලු DocType: Email Queue,Recipient,පලමු වරට පිරිනැමු DocType: Communication,Has Attachment,ඇමුණුම් ඇත @@ -1977,7 +1980,8 @@ DocType: Workflow State,align-right,සන්ධානගත දක්ෂින DocType: Auto Email Report,Email To,ඊ-තැපැල් කිරීම apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ෆෝල්ඩරය {0} හිස් නොවේ DocType: Page,Roles,භූමිකා -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ක්ෂේත්ර {0} තේරිය නොවේ. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},දෝෂය: {1}: අගය {0} සඳහා අතුරුදහන් +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ක්ෂේත්ර {0} තේරිය නොවේ. DocType: System Settings,Session Expiry,සැසිය කල් ඉකුත් DocType: Workflow State,ban-circle,තහනම-රවුම DocType: Email Flag Queue,Unread,නොකියවූ @@ -1992,7 +1996,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,පරිශීලක Defaults apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,නව නිර්මාණය DocType: Workflow State,chevron-down,Chevron පහළ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),විද්යුත් {0} (කෙරෙනු / ආබාධිත) යවා නැත +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),විද්යුත් {0} (කෙරෙනු / ආබාධිත) යවා නැත DocType: Async Task,Traceback,traceback DocType: Currency,Smallest Currency Fraction Value,ලොව කුඩාම ව්යවහාර මුදල් භාගය අගය apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,කිරීම සඳහා අනුයුක්ත @@ -2003,12 +2007,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,සිට DocType: Website Theme,Google Font (Heading),ගූගල් අකුරු (ශීර්ෂය) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,පළමු පිරිසක් node එකක් මතම ඊට අදාල තෝරන්න. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} {1} සොයා +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} {1} සොයා DocType: OAuth Client,Implicit,ගම්ය DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","මෙම DocType එරෙහිව සන්නිවේදන ලෙස එකතු (ක්ෂේත්ර තිබිය යුතුය, "තත්වය", "වස්තු")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","පරිශීලක වරක් බලය කේතය ලබාගැනීම සඳහා URIs ප්රවේශ වීමට ඉඩ සලසා, මෙන්ම අසාර්ථක ප්රතිචාර. සේවාලාභී යෙදුම් මගින් හෙලිදරව් සාමාන්යයෙන් බෝපාල් අන්ත ලක්ෂ්යය.
උදා: http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,ඉදිරිපත් කිරීමෙන් පසුව {0} වෙනස් කිරීමට ඉඩ දෙනු නොලැබේ +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,ඉදිරිපත් කිරීමෙන් පසුව {0} වෙනස් කිරීමට ඉඩ දෙනු නොලැබේ DocType: Communication,Comment Type,පරිකථනය වර්ගය DocType: OAuth Client,OAuth Client,OAuth සේවාලාභියා apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,පරිශීලකයන් @@ -2023,7 +2027,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,පෙරහන් දත්ත DocType: Auto Email Report,Filter Data,පෙරහන් දත්ත apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ටැග් එකක් එකතු කරන්න -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,පළමු ගොනුව එවිය යුතුය. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,පළමු ගොනුව එවිය යුතුය. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","නම තැබීම යම් දෝෂ ඇතිවිය, කරුණාකර පරිපාලක සම්බන්ධ කර" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ලැබෙන ඊ-තැපැල් ගිණුම නිවැරදි නැත apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2038,11 +2042,11 @@ DocType: Blog Post,Email Sent,ඊ-තැපැල් යවනු DocType: DocField,Ignore XSS Filter,වු XSS පෙරහන් නොසලකා apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ඉවත් කළා apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,නාමාවලි එකක් උපස්ථ සැකසුම් -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,විද්යුත් වශයෙන් යවන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,විද්යුත් වශයෙන් යවන්න DocType: Website Theme,Link Color,ලින්ක් වර්ණ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,පරිශීලක {0} අක්රීය කළ නොහැකි apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","හිතවත් පද්ධතිය කළමනාකරු," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ඔබගේ රට +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ඔබගේ රට DocType: Event,Sunday,ඉරිදා apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,විදුලි බල පද්ධතියට දැක්වීම DocType: Address Template,Template,සැකිල්ල @@ -2050,7 +2054,7 @@ DocType: Address,Delhi,දිල්ලි apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP සැකසුම් apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,මහසභාවේ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal ගෙවීම් සැකසුම් -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: උපරිම අක්ෂර සඳහා අවසර ලෙස '{1}' ({3}), සීමාව අකුරු ලැබෙනු ඇත {2} වේ" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: උපරිම අක්ෂර සඳහා අවසර ලෙස '{1}' ({3}), සීමාව අකුරු ලැබෙනු ඇත {2} වේ" DocType: OAuth Client,Resource Owner Password Credentials,සම්පත් හිමිකරු මුරපදය අක්තපත්ර DocType: OAuth Client,Response Type,ප්රතිචාර වර්ගය apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,මැක්ස් පරිශීලකයන් @@ -2067,7 +2071,7 @@ DocType: DocField,Table,වගුව DocType: File,File Size,ගොනු විශාලත්වය apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,මෙම ආකෘති පත්රය ඉදිරිපත් කිරීමට ලොගින් යුතුය DocType: User,Background Image,පසුබිම් රූපය -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","ඔබගේ රට, හෝරා කලාපය සහ ව්යවහාර මුදල් තෝරන්න" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","ඔබගේ රට, හෝරා කලාපය සහ ව්යවහාර මුදල් තෝරන්න" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,අතර DocType: Async Task,Queued,පේළි @@ -2076,6 +2080,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,නිර්මාණය apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},වලංගු නොවන පෙරහන: {0} DocType: Email Account,no failed attempts,ප්රයත්නයන් අසාර්ථක කිසිදු +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,පෙරනිමි ලිපිනය සැකිල්ල සොයා ගත නොහැකි විය. සැකසුම> මුද්රණ හා නාමකරණ> ලිපිනය සැකිල්ල අලුත් එකක් නිර්මාණය කරන්න. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,යෙදුම ප්රවේශ යතුර DocType: OAuth Bearer Token,Access Token,ටෝකනය @@ -2093,8 +2098,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github පරිශීලක නාමය DocType: DocType,Image View,රූප දැක්ම apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","යමක් දී ගණුදෙනුවේ වැරදි ගොස් වගේ. අපි ගෙවීම තහවුරු කර ඇති අතර, Paypal ස්වයංක්රීයව ඔබ මෙම මුදල ආපසු ගෙවන ඇත. එය එහි නොමැති නම්, අප වෙත ඊමේල් මෙම සහසම්බන්ධ හැඳුනුම්පත යැවීම හා සඳහන් කරන්න: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","රහස් වචනය තුළ සංකේත, ඉලක්කම් සහ ප්රාග්ධන ලිපි ඇතුළත්" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ලේබලය සහිත රේගු ක්ෂේත්ර සඳහන් ක්ෂේත්ර පසු ඇතුල් කරන්න '{0}' '{1}', '{2}', නොපවතියි" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","රහස් වචනය තුළ සංකේත, ඉලක්කම් සහ ප්රාග්ධන ලිපි ඇතුළත්" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","ලේබලය සහිත රේගු ක්ෂේත්ර සඳහන් ක්ෂේත්ර පසු ඇතුල් කරන්න '{0}' '{1}', '{2}', නොපවතියි" DocType: Workflow State,signal,සංඥා DocType: DocType,Show Print First,පළමු මුද්රණය පෙන්වන්න apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + තනතුරට ඇතුලත් කරන්න @@ -2125,14 +2130,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ගොනුව '{0}' සොයා ගැනීමට නොහැකි apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,වගන්තිය ඉවත් කරන්න DocType: User,Change Password,මුරපදය වෙනස් කරන්න -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},වලංගු නොවන විද්යුත් තැපෑල: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,හෙලෝ! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},වලංගු නොවන විද්යුත් තැපෑල: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,හෙලෝ! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,උත්සවය අවසන් පටන්ගත් පසු විය යුතුය apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},ඔබ පිළිබඳ වාර්තාවක් ලබා ගැනීම සඳහා අවසර නොමැත: {0} +DocType: System Settings,Apply Strict User Permissions,දැඩි පරිශීලක අවසර අදාළ DocType: DocField,Allow Bulk Edit,තොග සංස්කරණය කරන්න ඉඩ දෙන්න DocType: DocField,Allow Bulk Edit,තොග සංස්කරණය කරන්න ඉඩ දෙන්න DocType: Blog Post,Blog Post,බ්ලොග් පෝස්ට් -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,ගැඹුරින් සොයන්න +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,ගැඹුරින් සොයන්න apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,මුරපද යළි උපදෙස් ඔබගේ ඊ-තැපැල් ලිපිනය වෙත යොමු කර ඇති apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","0 මට්ටමේ ක්ෂේත්ර මට්ටමේ අවසර සඳහා ඉහළ මට්ටම් \, ලේඛනය මට්ටමේ අවසර සඳහා වේ." @@ -2151,16 +2157,15 @@ DocType: Web Page,Sidebar and Comments,පැති තීරුවේ සහ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","ඔබට පසු එය අවලංගු කරන්න සහ ඉතිරි ලියවිල්ලක් සංශෝධනය කරමි විට, එය පරණ අංකය වෙළුමක් වන බව නව අංකයක් ලැබෙනු ඇත." DocType: Stripe Settings,Publishable Key,Publishable කී DocType: Stripe Settings,Publishable Key,Publishable කී -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} වසරේ (ව) පෙර DocType: Workflow State,circle-arrow-left,රවුම-ඊතලය වාම apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,ක්රියාත්මක නොවේ Redis පූර්වාපේක්ෂි සේවාදායකය. පරිපාලක / Tech කරුණාකර සහාය සම්බන්ධ කරගන්න apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,පක්ෂය නම -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,නව වාර්තාවක් කරන්න +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,නව වාර්තාවක් කරන්න apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,සොයමින් apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,සොයමින් DocType: Currency,Fraction,භාගය DocType: LDAP Settings,LDAP First Name Field,LDAP මුල් නම ක්ෂේත්ර -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,දැනට පවතින බැඳීම් වලින් තෝරන්න +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,දැනට පවතින බැඳීම් වලින් තෝරන්න DocType: Custom Field,Field Description,ක්ෂේත්ර විස්තරය apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,නම ප්රොම්ප්ට් හරහා පිහිටුවා නැත apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ඊ-තැපැල් එන ලිපි @@ -2206,11 +2211,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,තොරතුරු: DocType: Custom Field,Permission Level,අවසර පෙළ DocType: User,Send Notifications for Transactions I Follow,මම අනුගමනය ගනුදෙනු සඳහා නිෙව්දන යවන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ඉදිරිපත් සිටුවම් කල නොහැක, අවලංගු කරන්න, ලියන්න තොරව සංශෝධනය කරමි" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: ඉදිරිපත් සිටුවම් කල නොහැක, අවලංගු කරන්න, ලියන්න තොරව සංශෝධනය කරමි" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,ඔබ ඇමුණුමක් මැකීමට අවශ්ය බව ඔබට විශ්වාසද? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","මකා දැමීම හෝ අවලංගු කළ නොහැකි {0} නිසා {1} {2} සම්බන්ධ වන {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'සඳහා ප්රතිඵල සොයාගත

-apps/frappe/frappe/__init__.py +1063,Thank you,ඔබට ස්තුතියි +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","මකා දැමීම හෝ අවලංගු කළ නොහැකි {0} නිසා {1} {2} සම්බන්ධ වන {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ඔබට ස්තුතියි apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,සුරකිමින් DocType: Print Settings,Print Style Preview,මුද්රණය ස්ටයිල් පෙරදසුන apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2222,10 +2226,10 @@ DocType: DocField,In List View,ලැයිස්තුව දැක්වීම DocType: Email Account,Use TLS,TLS භාවිතා කරන්න apps/frappe/frappe/email/smtp.py +24,Invalid login or password,වලංගු නොවන පිවිසුම් හෝ මුරපදය apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,ආකෘති වෙත අභිරුචි ජාවාස්ක්රිප්ට් එකතු කරන්න. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,එස්ආර් නොමැත +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,එස්ආර් නොමැත ,Role Permissions Manager,කාර්යභාරය අවසර කළමනාකරු apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,නව මුද්රණය ආකෘතිය නම -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,පැහැදිලි ඇමුණුම් +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,පැහැදිලි ඇමුණුම් apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,අනිවාර්ය: ,User Permissions Manager,පරිශීලක අවසර කළමනාකරු DocType: Property Setter,New value to be set,නව වටිනාකම සකස් කළ යුතු @@ -2255,26 +2259,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ද apps/frappe/frappe/config/website.py +47,Categorize blog posts.,බ්ලොග් කැටගරි. DocType: Workflow State,Time,කාලය DocType: DocField,Attach,අමුණන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} යන්න වලංගු fieldname රටාවක්. එය {{field_name}} විය යුතුය. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} යන්න වලංගු fieldname රටාවක්. එය {{field_name}} විය යුතුය. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය ඉල්ලීම් යවන්න අවම වශයෙන් එක් සන්නිවේදන තිබේ නම් පමණක් ලේඛනය සඳහා ලබා ගත හැකි වේ. DocType: Custom Role,Permission Rules,අවසර රීති DocType: GSuite Settings,GSuite Settings,GSuite සැකසුම් DocType: Address,Links,සබැඳි -apps/frappe/frappe/model/base_document.py +428,Value missing for,අගය සඳහා අතුරුදහන් +apps/frappe/frappe/model/base_document.py +427,Value missing for,අගය සඳහා අතුරුදහන් apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,ළමා එකතු කරන්න -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ඉදිරිපත් වාර්තා ඉවත් කල නොහැක. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: ඉදිරිපත් වාර්තා ඉවත් කල නොහැක. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,උපස්ථ තරම DocType: GSuite Templates,Template Name,සැකිල්ල නම -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ලියවිල්ල නව වර්ගයේ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ලියවිල්ල නව වර්ගයේ DocType: Custom DocPerm,Read,කියවන්න DocType: Role Permission for Page and Report,Role Permission for Page and Report,පිටුව හා වාර්තාව සඳහා භූමිකාව අවසරය apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,අගය පෙළ ගස්වන්න apps/frappe/frappe/www/update-password.html +14,Old Password,පැරණි මුරපදය -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},{0} විසින් තැපැල් +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},{0} විසින් තැපැල් apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ආකෘතිය තීරු ලිපි, විමසුම දී තීරුව ලේබල් දෙන්න." DocType: Has Domain,Has Domain,වසම් ඇත apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ඔබ හට ගිණුමක් නොමැතිද? ලියාපදිංචි වන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත සංශෝධනය කරමි සිටුවම් කල නොහැක +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable නොවේ නම් අනුයුක්ත සංශෝධනය කරමි සිටුවම් කල නොහැක DocType: Address,Bihar,බිහාර් apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,කාර්යභාරය අවසර සංස්කරණය කරන්න DocType: Communication,Link DocType,ලින්ක් DocType @@ -2373,7 +2377,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,ඔබේ පැතිකඩ ඊ-තැපැල් ලිපිනයක් ඇති බව සහතික කරන්න apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,මෙම ආකෘති පත්රය තුළ වෙනස්කිරීම් සුරැකීම ඇත. ඔබ ඉදිරියට යාමට පෙර සුරකින්න. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} සඳහා පෙරනිමි විකල්පයක් විය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} සඳහා පෙරනිමි විකල්පයක් විය යුතුය DocType: Tag Doc Category,Tag Doc Category,ටැග ඩොක් ප්රවර්ගය DocType: User,User Image,පරිශීලක රූප apps/frappe/frappe/email/queue.py +289,Emails are muted,විද්යුත් තැපැල් පණිවුඩ ඇල් මැරුනු වේ @@ -2406,7 +2410,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,ඊළඟ DocType: Workflow State,ok,හරි DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,මෙම අගයන් ස්වයංක්රීයව ගනුදෙනු යාවත්කාලීන කිරීම ද සිදු කරනු ලැබේ ද මෙම අගයන් අඩංගු ගනුදෙනු මත මෙම පරිශීලකයා සඳහා අවසර සීමා කිරීමට ප්රයෝජනවත් වනු ඇත. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ප්රකාශක -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},"** අසාර්ථක විය: {0} කර ගැනීම සඳහා, {1}: {2}" +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},"** අසාර්ථක විය: {0} කර ගැනීම සඳහා, {1}: {2}" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,අනිවාර්ය තෝරන්න apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,ගවේශක apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,යැවූ විද්යුත් තැපැල් පණිවුඩ @@ -2418,7 +2422,7 @@ DocType: Async Task,Running,ධාවන apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,මුරපදය යළි පිහිටුවන්න apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,{0} ග්රාහකයන් වඩා එකතු කිරීමට නවීකරණය කරන්න DocType: Workflow State,hand-left,අත වාම -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} අනන්ය විය නොහැකි නිසා +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} අනන්ය විය නොහැකි නිසා DocType: Email Account,Use SSL,SSL භාවිතා කරන්න DocType: Workflow State,play-circle,නාට්යයේ-රවුම apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,සංස්කරණය කරන්න කිරීමට මුද්රණය ආකෘතිය තෝරන්න @@ -2473,7 +2477,7 @@ DocType: DocField,No Copy,කිසිදු පිටපතක් DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP සමග ලොගින් වන්න DocType: Web Form,Breadcrumbs,පාන් -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,අයිතිකරු නම් +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,අයිතිකරු නම් DocType: OAuth Authorization Code,Expiration time,කල් ඉකුත් වීම් කාලය DocType: Web Page,Website Sidebar,වෙබ් අඩවිය වැඩේටත් DocType: Web Form,Show Sidebar,වැඩේටත් පෙන්වන්න @@ -2493,7 +2497,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{1} තුළ ස apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,තමන් විසින් නම් සහ වාසගම අනුමාන කිරීමට පහසුය. apps/frappe/frappe/config/website.py +93,Knowledge Base,දැනුම මූලික DocType: Workflow State,briefcase,බෑග් -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},අගය {0} සඳහා වෙනස් කළ නොහැකි +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},අගය {0} සඳහා වෙනස් කළ නොහැකි DocType: Feedback Request,Is Manual,ස්වයංක්රීය ගියර් සහිත මෝටර් රථ වේ DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","ස්ටයිල් බොත්තම වර්ණ නියෝජනය: සාර්ථක - හරිත, අනතුරුදායක - රතු, ප්රතිලෝම - කළු, ප්රාථමික - තද නිල්, තොරතුරු - ලා නිල්, අවවාදයයි - ඔරේන්ජ්" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,කිසිදු වාර්තාව ලෝඩඩ්. වාර්තාවක් ක්රියාත්මක කිරීමට විමසුම-වාර්තාව / [වාර්තාව නම] භාවිතා කරන්න. @@ -2571,7 +2575,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ප්රග apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,කාර්යභාරය විසින් apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,අතුරුදහන් ෆීල්ඩ්ස් apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname වලංගු නොවන fieldname '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ලියවිල්ලක් වර්ගය සෝදිසි +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ලියවිල්ලක් වර්ගය සෝදිසි apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ක්ෂේත්රයේ පවා ඉදිරිපත් කිරීමෙන් පසුව සංස්කරණය සිටීමට ඉඩ දෙන්න DocType: Custom DocPerm,Role and Level,කාර්යභාරය සහ පෙළ DocType: File,Thumbnail URL,සිඟිති-රූපය URL එක @@ -2588,19 +2592,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,වැඩිදුර තොරතුරු DocType: Desktop Icon,Desktop Icon,පරිගණක අයිකන -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ඔබේ ගෙවීම් සාර්ථකව පිළිගන්නා ලදී +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ඔබේ ගෙවීම් සාර්ථකව පිළිගන්නා ලදී apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,සමාවන්න! ඔබ විසින් මෙම පිටුව බැලීම සඳහා ඔබට අවසර නැත. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ඉඟිය: ඩබල් ක්ලික් සෛල සංස්කරණය කිරීමට DocType: Workflow State,bell,සීනුව apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,විද්යුත් ඇලර්ට් දෝශයක් apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,විද්යුත් ඇලර්ට් දෝශයක් apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,සමග මෙම ලියවිල්ල Share +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,සැකසුම> පරිශීලක අවසර කළමනාකරු apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} කොළයක් node එකක් මතම ඊට අදාල එය දරුවන් ලෙස විය නොහැක DocType: Communication,Info,තොරතුරු -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,ඇමුණුමක් එක් +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,ඇමුණුමක් එක් DocType: Communication,Email,විද්යුත් තැපෑල apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,ඔබගේ පණිවිඩයට ස්තුතියි -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,රිසිට්පත කියවන්න යවන්න +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,රිසිට්පත කියවන්න යවන්න DocType: Stripe Settings,Stripe Settings,Stripe සැකසුම් DocType: Stripe Settings,Stripe Settings,Stripe සැකසුම් DocType: Dropbox Settings,Dropbox Setup via Site Config,අඩවිය වින්යාස හරහා හෝ නාමාවලි එකක් Setup @@ -2667,6 +2672,7 @@ DocType: DocType,Web View,වෙබ් දැක්ම apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,"අවවාදයයි: මෙම මුද්රණය ආකෘතිය පැරණි ශෛලිය තුල වන අතර, API හරහා උත්පාදනය කළ නොහැක." DocType: DocField,Print Width,මුද්රණය පළල ,Setup Wizard,පිහිටුවීමේ කාර්ය්ය +DocType: Address,GST State Number,GST රාජ්ය අංකය DocType: User,Allow user to login only before this hour (0-24),පරිශීලක පමණක් මෙම පැයකට පෙර ගිණුමට ප්රවිෂ්ට වීමට ඉඩ (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ෆෝල්ඩරය අනිවාර්ය වේ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2695,7 +2701,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,කුඩා පෙළ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,පරිපාලක IP ලිපිනය {2} හරහා {0} පිවිස {1} මත. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,සමාන -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ක්ෂේත්රයේ විකල්ප 'ඩයිනමික් ලින්ක් වර්ගය' DocType 'ලෙස විකල්ප සමග තවත් ලින්ක් ක්ෂේත්ර පෙන්වා දිය යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ක්ෂේත්රයේ විකල්ප 'ඩයිනමික් ලින්ක් වර්ගය' DocType 'ලෙස විකල්ප සමග තවත් ලින්ක් ක්ෂේත්ර පෙන්වා දිය යුතුය DocType: About Us Settings,Team Members Heading,කණ්ඩායම මන්ත්රීවරුන් ශීර්ෂය apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,වලංගු නොවන CSV ආකෘතිය apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,අමතර පිටපත් පිහිටුවන අංකය @@ -2706,7 +2712,7 @@ DocType: Contact,Contact,අමතන්න DocType: User,Third Party Authentication,තුන්වන පක්ෂය තහවුරු කරගැනීමේ DocType: Website Settings,Banner is above the Top Menu Bar.,බැනරය Top Menu Bar ඉහත වේ. DocType: Razorpay Settings,API Secret,API රහස් -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,අපනයන වාර්තාව: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,අපනයන වාර්තාව: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} නොපවතියි DocType: Email Account,Port,වරාය DocType: Print Format,Arial,Arial @@ -2729,7 +2735,7 @@ DocType: Kanban Board Column,Column Name,වැනි තීරුෙවහි DocType: Language,Based On,මත පදනම්ව apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,පෙරනිමි කරන්න apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe සේවාදායකය URL එක පරීක්ෂා කරන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} සඳහා {1} සුචිගත කළ නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} සඳහා {1} සුචිගත කළ නොහැකි DocType: Communication,Email Account,ඊ-තැපැල් ගිණුම DocType: Workflow State,Download,බාගත DocType: Blog Post,Blog Intro,බ්ලොග් හැදින්වීමේ @@ -2740,7 +2746,7 @@ DocType: Web Page,Insert Code,ඇතුළු කරන්න සංග්රහ DocType: ToDo,Low,අඩු apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,ඔබ Jinja templating භාවිතා කරමින් ලියවිල්ල සිට ගතික ගුණ එක් කළ හැකිය. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},වලංගු නොවන සීමාව {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ලියවිල්ලක් වර්ගය ලැයිස්තු +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ලියවිල්ලක් වර්ගය ලැයිස්තු DocType: Event,Ref Type,ref වර්ගය apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","ඔබට නව වාර්තා උඩුගත කරන්නේ නම්, මෙම "නම" (ID) තීරුව හිස්ව තබන්න." DocType: Address,Chattisgarh,Chattisgarh @@ -2762,26 +2768,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDF ලෙස මුද්රණය යවන්න DocType: Web Form,Amount,ප්රමාණය DocType: Workflow Transition,Allowed,අවසර -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,පෝරමයක් එක් ගුණයකින් ඇති විය හැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,පෝරමයක් එක් ගුණයකින් ඇති විය හැකි apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0} සඳහා ගොනු ආකෘතිය ලිවීමට නොහැකි apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,පෙරනිමි සැකසුම් නැවත ස්ථාපිත? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,වලංගු නොවන මුල් පිටුව apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,වැරදි ප්රවේශයක්. නැවත උත්සහා කරන්න. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Link හෝ වගුව වර්ගය ක්ෂේත්රයේ {0} පේළියේ {1} සඳහා අවශ්ය විකල්ප -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Link හෝ වගුව වර්ගය ක්ෂේත්රයේ {0} පේළියේ {1} සඳහා අවශ්ය විකල්ප +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Link හෝ වගුව වර්ගය ක්ෂේත්රයේ {0} පේළියේ {1} සඳහා අවශ්ය විකල්ප +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Link හෝ වගුව වර්ගය ක්ෂේත්රයේ {0} පේළියේ {1} සඳහා අවශ්ය විකල්ප DocType: Auto Email Report,Send only if there is any data,ඕනෑම දත්ත නොමැති නම් පමණක් පෙන්වන්න apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,පෙරහන් යළි පිහිටුවන්න -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: ඉහල මට්ටමක තබා පෙර මට්ටමේ 0 විට අවසරය සකස් කළ යුතුය +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: ඉහල මට්ටමක තබා පෙර මට්ටමේ 0 විට අවසරය සකස් කළ යුතුය apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},පැවරුම {0} විසින් වසා DocType: Integration Request,Remote,දුරස්ථ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,ගණනය +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,ගණනය apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,කරුණාකර DocType පළමු තෝරා apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,ඔබේ විද්යුත් තහවුරු apps/frappe/frappe/www/login.html +42,Or login with,"නැත්නම්," DocType: Error Snapshot,Locals,වාසීන් apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},{1} මත {0} හරහා සන්නිවේදනය: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} {1} තුළ ප්රතිචාරයක් ඔබ සඳහන් -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,උදා: (55 + 434) / 4 හෝ = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,උදා: (55 + 434) / 4 හෝ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} අවශ්ය වේ DocType: Integration Request,Integration Type,ඒකාබද්ධතා වර්ගය DocType: Newsletter,Send Attachements,Attachements යවන්න @@ -2791,15 +2797,15 @@ DocType: DocField,Perm Level,Perm පෙළ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,අද දින දසුන දී සිදුවීම් DocType: Web Page,Web Page,වෙබ් පිටුව DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ගෝලීය සොයන්න දී' පේළිය වර්ගය {0} සඳහා අවසර නැත {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,දැක්ම ලැයිස්තුව -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},දිනය දක්වන විය යුතුය: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},දිනය දක්වන විය යුතුය: {0} DocType: Workflow,Don't Override Status,තත්ත්වය ඉක්මවා යන්න එපා apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ණය වර්ගීකරණ දෙන්න. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය ඉල්ලීම් apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,සොයන්න කාලීන -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,පළමු පරිශීලක: ඔබ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,පළමු පරිශීලක: ඔබ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,තීරු තෝරන්න DocType: Translation,Source Text,මූලාශ්ර පෙළ apps/frappe/frappe/www/login.py +55,Missing parameters for login,පිවිසුම සඳහා අතුරුදහන් පරාමිතීන් @@ -2821,7 +2827,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,ආනයනය DocType: ToDo,Assigned By,විසින් පවරනු apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,ඔබ ක්ෂේත්රවල මට්ටම් ඇති කිරීමට Customize ආකෘතිය භාවිතා කළ හැක. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,ඔබේ ප්රදේශය තෝරා +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,ඔබේ ප්රදේශය තෝරා DocType: Custom DocPerm,Level,මට්ටමින් DocType: Custom DocPerm,Report,වාර්තාව apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,"මුදල, 0 ට වඩා වැඩි විය යුතුය." @@ -2841,7 +2847,7 @@ DocType: Website Theme,Background,පසුබිම DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","පරිශීලක අවසර අයදුම් කිරීම සඳහා භාවිතා DocTypes ක JSON ලැයිස්තුව. හිස් නම්, සියලු සම්බන්ධ DocTypes පරිශීලක අවසර අයදුම් කිරීමට භාවිතා කරනු ඇත." DocType: Report,Ref DocType,ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,ශ්රේණිගත කිරීම සඳහා කරුණාකර -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: අවලංගු කරන්න තොරව සංශෝධනය කරමි සිටුවම් කල නොහැක +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: අවලංගු කරන්න තොරව සංශෝධනය කරමි සිටුවම් කල නොහැක apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,සම්පූර්ණ පිටුවට DocType: DocType,Is Child Table,ළමා වගුව වේ apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} එකක් විය යුතුය @@ -2856,7 +2862,7 @@ DocType: Website Slideshow,This goes above the slideshow.,මෙය අතිබ apps/frappe/frappe/config/setup.py +260,Install Applications.,අයදුම්පත් ස්ථාපනය කරන්න. DocType: Contact,Last Name,අවසන් නම DocType: Event,Private,පුද්ගලික -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,අද ඇඟවීම් කිසිදු +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,අද ඇඟවීම් කිසිදු DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ලෙස විද්යුත් මුද්රණය ඇමුණුම් යවන්න (නිර්දේශිත) DocType: Web Page,Left,වම් DocType: Event,All Day,සියලු දිනය @@ -2870,7 +2876,7 @@ DocType: Event,Send an email reminder in the morning,උදෑසන ඊ-තැ DocType: Blog Post,Published On,දා ප්රකාශයට පත් DocType: Contact,Gender,ස්ත්රී පුරුෂ භාවය apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,අනිවාර්ය තොරතුරු අතුරුදහන්: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,එය-සුවිශේෂී නොවන අගයන් කර ඇති පරිදි අනන්ය ලෙස ක්ෂේත්ර '{0}' සකස් කළ නොහැකි +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,එය-සුවිශේෂී නොවන අගයන් කර ඇති පරිදි අනන්ය ලෙස ක්ෂේත්ර '{0}' සකස් කළ නොහැකි apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,එක ඉල්ලීමක් කිරීමට ඉඩ රැසක් 200 ක් පමණක් DocType: Footer Item,URL,URL එක DocType: ToDo,Reference Type,විමර්ශන වර්ගය @@ -2883,7 +2889,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,අනතුරු ඇඟවීමක්-ලකුණක් DocType: Workflow State,User,පරිශීලක DocType: Website Settings,"Show title in browser window as ""Prefix - title""",බ්රව්සර් කවුළුවක මාතෘකාව ලෙස පෙන්වන්න "උපසර්ගය - මාතෘකාව" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ලිපි වර්ගය පෙළ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ලිපි වර්ගය පෙළ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,ධාවනය ටෙස්ට් තරග apps/frappe/frappe/handler.py +91,Logged Out,න් ලොගින් වී apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,තව... @@ -2909,13 +2915,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,දැනට නැරඹීම DocType: DocField,Default,පෙරනිමි apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} එකතු -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}' සඳහා සොයන්න +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}' සඳහා සොයන්න apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,පළමු වාර්තාව කරුනාකර apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} ග්රාහකයන් එකතු apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,වී නැත DocType: Workflow State,star,තරු -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,කොමාවකින් වෙන් වටිනාකම් -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},වර්ගය ව්යවහාර මුදල් සඳහා උපරිම පළල පේළියේ 100px {0} වේ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,කොමාවකින් වෙන් වටිනාකම් +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},වර්ගය ව්යවහාර මුදල් සඳහා උපරිම පළල පේළියේ 100px {0} වේ apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},{0} සඳහා ඔබේ අදහස් බෙදා හදා කරුණාකර apps/frappe/frappe/config/website.py +13,Content web page.,අන්තර්ගත වෙබ් පිටුව. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,නව කාර්යභාරය එකතු කරන්න @@ -2934,7 +2940,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,වලංගු LDAP පරිශීලක නෑ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} වලංගු රාජ්ය නොවේ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',කරුණාකර වෙනත් ගෙවීමේ ක්රමයක් තෝරාගන්න. පේපෑල් මුදල් ගනුදෙනු සඳහා පහසුකම් සපයන්නේ නැත '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,සොයන්න ක්ෂේත්ර {0} වලංගු නොවේ +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,සොයන්න ක්ෂේත්ර {0} වලංගු නොවේ DocType: Workflow State,ok-circle,හරි-රවුම apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',ඔබ 'පාරිභෝගිකයින් තැඹිලි සොයා' අසමින් දේවල් සොයා ගත හැකි apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,සමාවන්න! පරිශීලක සිය වාර්තාවම වෙත ප්රවේශ විය යුතුය. @@ -2995,7 +3001,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,මෙටා පෙරහන් DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,පෙළ මෙම ආකෘති පත්රය වෙබ් පිටුවක් තිබේ නම් වෙබ් පිටු සබැඳිය සඳහා ප්රදර්ශනය කළ යුතුය. '' Page_name` හා 'parent_website_route` මත පදනම් ලින්ක් මාර්ගයේ ස්වයංක්රීයව නිර්මානය වනු ඇත DocType: Feedback Request,Feedback Trigger,ඔබෙන් ලැබෙන ප්රයෝජනාත්මක ප්රතිචාරය ප්රේරකය -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,කරුණාකර {0} තබා පළමු +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,කරුණාකර {0} තබා පළමු DocType: Unhandled Email,Message-id,පණිවුඩය-id DocType: Patch Log,Patch,පැච් DocType: Async Task,Failed,අසමත් diff --git a/frappe/translations/sk.csv b/frappe/translations/sk.csv index 32878b4edf..c410f569ab 100644 --- a/frappe/translations/sk.csv +++ b/frappe/translations/sk.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook používateľské meno DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Poznámka: Viac relácií budú môcť v prípade mobilného zariadenia apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Povolené e-mailová schránka pre užívateľov {Užívatelia} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nemožno odoslať e-mail. Ste prekročili odosielajúci limit {0} e-mailov pre tento mesiac. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Vložit na trvalo: {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Vložit na trvalo: {0}? DocType: Address,County,grófstva DocType: Workflow,If Checked workflow status will not override status in list view,Ak je zaškrtnuté stav pracovného postupu nebude prepísať stav v zobrazení zoznamu apps/frappe/frappe/client.py +280,Invalid file path: {0},Neplatná cesta k súboru: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Prosím apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Strom DocType: User,User Emails,užívateľské e-maily DocType: User,Username,Užívateľské meno -apps/frappe/frappe/model/base_document.py +581,Value too big,Hodnota príliš veľká +apps/frappe/frappe/model/base_document.py +580,Value too big,Hodnota príliš veľká DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Spustiť test skriptov DocType: Contact,Department,Oddělení @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Záznamy DocType: Custom DocPerm,This role update User Permissions for a user,Tato role aktualizuje uživatelská oprávnění pro uživatele apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Pemenovať: {0} DocType: Workflow State,zoom-out,Zmenšiť -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Nemůžete otevřít: {0} když je otevřena instance +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Nemůžete otevřít: {0} když je otevřena instance apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabuľka: {0} nemôže byť prázdna apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,S deníky apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,snímky DocType: Communication,Reference Owner,referenčnej Vlastník DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmenšia cirkulujúce frakcie jednotka (mince). Pre napríklad 1 cent za USD, a to by malo byť vstúpila ako 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Riadok {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Riadok {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Uveďte celé meno. apps/frappe/frappe/model/document.py +904,Beginning with,počínaje apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Šablona importu dat @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Nadřazeno DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ak je táto možnosť povolená, intenzita hesla sa vynucuje na základe hodnoty skóre minimálneho hesla. Hodnota 2 je stredne silná a 4 sú veľmi silné." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ak je táto možnosť povolená, intenzita hesla sa vynucuje na základe hodnoty skóre minimálneho hesla. Hodnota 2 je stredne silná a 4 sú veľmi silné." DocType: About Us Settings,"""Team Members"" or ""Management""","""Členovia tímu"" alebo ""Vedenie""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro 'zaškrtávací' pole musí být '0' nebo '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Výchozí hodnota pro 'zaškrtávací' pole musí být '0' nebo '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Včera DocType: Contact,Designation,Označení DocType: Test Runner,Test Runner,Testovacie Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Je publikovaný Field DocType: Email Group,Email Group,email Group DocType: Note,Seen By,Videný apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Pridať viac -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Nie ako +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nie ako apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Nastavit zobrazované označení pole apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nesprávná hodnota: {0} musí být {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Změnit vlastnosti pole (skrýt, jen pro čtení, práva atd.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nastaveni apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrátor prihlásený DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Možnosti kontaktu, např.: ""Dotaz prodeje, dotaz podpory"" atd., každý na novém řádku nebo oddělené čárkami." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Download -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Vložit +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Vložit apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Vyberte {0} DocType: Print Settings,Classic,Klasické DocType: Desktop Icon,Color,Barva @@ -122,7 +122,7 @@ DocType: Translation,Translation,preklad apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instalovat apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Pan DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Tento formulár bol zmenený potom, čo ste naložil" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Tento formulár bol zmenený potom, čo ste naložil" DocType: User Permission for Page and Report,User Permission for Page and Report,Užívateľ Privilégiá stránky a správa DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ak nie je nastavená, presnosť meny bude závisieť od formátu čísla" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Důvod apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Prosím specifikujte uživatele DocType: Email Unsubscribe,Email Unsubscribe,Email Odhlásiť DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Zvolte obrázek s šířkou okolo 150px a s transparentním pozadím pro nejlepší výsledek. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Prvý používateľ bude System Manager (toto sa dá neskôr zmeniť). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Prvý používateľ bude System Manager (toto sa dá neskôr zmeniť). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,circle-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Nahrávám... DocType: Email Domain,Email Domain,email Domain DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Pre každého -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Nie je možné nastaviť Import bez vytvorenia +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Nie je možné nastaviť Import bez vytvorenia apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event a iné kalendáre. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Všetky polia sú potrebné na odoslanie komentára. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Přetáhnutím třídit sloupce @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Štandardné Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nemožno odstrániť Domov a prílohy zložky apps/frappe/frappe/config/desk.py +19,Files,súbory apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Práva se aplikují na uživatele na základě přiřazené role. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Prosím vyberte aspon 1 stĺpec z {0} triediť / skupina +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Nemáte povoleno odesílat emaily související s tímto dokumentem +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Prosím vyberte aspon 1 stĺpec z {0} triediť / skupina DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Zaškrtnite, ak sa testuje platby pomocou API Sandbox" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Nemáte povolenie vymazať štandardnú Tému webstránky DocType: Feedback Trigger,Example,Příklad @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Celkom Odberatelia apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Pakliže role nemá přístup na úrovni 0, pak vyšší úrovně nemají efekt." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Uložiť ako DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Zobrazit více podrobností +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Zobrazit více podrobností DocType: System Settings,Run scheduled jobs only if checked,Spouštět plánované operace pouze když je zaškrtnuto apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Sa zobrazí len vtedy, ak sú povolené sekcie nadpisy" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Archív @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Skrýt záhlaví DocType: Address,Current,prúd DocType: Address,Current,prúd -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Súvisiace dokumenty apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Skupiny DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-circle @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,filtr apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} nemôže mať špeciálne znaky ako {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Aktualizujte mnoho hodnôt naraz. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Chyba: Dokument bol upravený potom, ako ste ho otvorili" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Neboli nájdené žiadne predvolené šablóny adries. Vytvorte nový z ponuky Nastavenie> Tlač a branding> Šablóna adresy. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odhlásený: {1} DocType: Address,West Bengal,Západný Bengálsko -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nie je možné nastaviť Pridelené odoslanie, ak nie je Odoslateľné" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: Nie je možné nastaviť Pridelené odoslanie, ak nie je Odoslateľné" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Vyfiltrované podľa "{0}" DocType: Salutation,Administrator,Správce @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Titulek blogu apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Štandardné role nemôže byť zakázaný DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Nemožno použiť sub-query v poradí +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Nemožno použiť sub-query v poradí DocType: Web Form,Button Help,tlačidlo Pomocník DocType: Kanban Board Column,purple,Fialová DocType: About Us Settings,Team Members,Členové týmu @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Kúpte si ce apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaše predplatné vypršalo na {0}. Ak chcete obnoviť, {1}." DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Inštalačný program už dokončená -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nie je nainštalovaný +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nie je nainštalovaný DocType: Workflow State,Refresh,Obnoviť DocType: Event,Public,Veřejné apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nie je čo zobraziť @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Obľúbená apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-mailová podpora DocType: DocField,Print Hide If No Value,Tlač Hide Ak Nie Hodnota DocType: Event,yellow,žltá -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Je publikovaný poľa musí byť platná fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Je publikovaný poľa musí byť platná fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Nahrať prílohu DocType: Block Module,Block Module,Block Module apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Šablona exportu @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Nový účet bol vytvorený pre vás v {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Pokyny odoslané e-mailom apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Pokyny odoslané e-mailom -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Zadajte e-mail príjemcu (ov) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Zadajte e-mail príjemcu (ov) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag fronty apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Nemožno určiť otvorené {0}. Skúsiť niečo iné. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ID správy DocType: Property Setter,Field Name,Názov poľa apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Služba Google GSuite nie je nakonfigurovaná. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,alebo -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,názov modulu ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Pokračovať +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,názov modulu ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Pokračovať DocType: Custom Field,Fieldname,Názov poľa DocType: Workflow State,certificate,certifikát DocType: User,Tile,Dlaždice @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Zobraziť všetky verzie DocType: Workflow State,Print,Tisk DocType: User,Restrict IP,Omezit IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,prístrojová doska apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Nelze odeslat emaily v tomto Čase apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Vyhľadávajte alebo zadajte príkaz DocType: Communication,Timeline Name,Časová os Name @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Sales manažer ve skupině Master apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Jeden Posledný krok apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Název dokumentu typu (DocType) se kterým chcete provázat toto pole. Např.: Zákazník DocType: User,Roles Assigned,Přiřazení rolí -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Pomocník vyhľadávania -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Pomocník vyhľadávania +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Pomocník vyhľadávania +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Pomocník vyhľadávania DocType: Top Bar Item,Parent Label,nadřazený popisek apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaša otázka bol prijatý. Odpovieme Vám čoskoro späť. Ak máte akékoľvek ďalšie informácie, prosím, odpovedzte na tento mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Oprávnění jsou automaticky překládána ve standardních výpisech a vyhledávačích. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Upravit záhlaví DocType: File,File URL,Adresa URL souboru DocType: Version,Table HTML,Tabuľka HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Neboli nájdené žiadne výsledky pre '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Pridať predplatitelia apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Nadcházející události pro dnešek DocType: Email Alert Recipient,Email By Document Field,Email od pole dokumentu @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Suma z terénneho apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Užívateľ je povinný pre Share DocType: DocField,Hidden,skrytý DocType: Web Form,Allow Incomplete Forms,Umožniť Neúplné formuláre -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0}: musí byť najprv nastavené +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0}: musí byť najprv nastavené apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Použite pár slov, vyhnúť obvyklým frázy." DocType: Workflow State,plane,letadlo -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Och. Vaša platba zlyhala. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Pokud nahráváte nové záznamy, ""číselníky"" se stanou povinnými, pakliže jsou zvoleny." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Získajte upozornenie pre dnešný deň +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Získajte upozornenie pre dnešný deň apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE možno premenovať iba užívateľ Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Zmenená hodnota {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Skontrolujte svoj e-mail pre overenie -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold nemůže být na konci formuláře +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold nemůže být na konci formuláře DocType: Communication,Bounced,Odrazené DocType: Deleted Document,Deleted Name,vypúšťa Name apps/frappe/frappe/config/setup.py +14,System and Website Users,Systémový a veřejní uživatelé @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument vo fronte DocType: GSuite Templates,Destination ID,ID miesta určenia DocType: Desktop Icon,List,seznam DocType: Communication,Link Name,link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Pole {0} na řádku {1} nemůže být skryté a povinné bez výchozí hodnoty DocType: System Settings,mm/dd/yyyy,mm/dd/rrrr apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nesprávne heslo: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Nesprávne heslo: DocType: Print Settings,Send document web view link in email,Odoslať dokument odkaz web zobraziť v e-mailu apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Váš názor na dokument {0} bol úspešne uložený apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Predchádzajúci -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} riadky pre {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Sub-měna. Pro např ""Cent """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Vyberte pridaný súbor @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Odkaz apps/frappe/frappe/utils/file_manager.py +96,No file attached,Žádný soubor nepřiložen DocType: Version,Version,Verze DocType: User,Fill Screen,Vyplnit obrazovku -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Prosím, nastavte predvolený e-mailový účet z Setup> Email> Email Account" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nelze zobrazit tento stromový výpis, jelikož chybí data. Pravděpodobně, byla odfiltrována za základě oprávnění." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Vyberte súbor apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Upravená pomocou Vkladanie -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","typ dokumentu ..., napr zákazník" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","typ dokumentu ..., napr zákazník" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Stavom '{0}' je neplatná DocType: Workflow State,barcode,Barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Pridajte svoj vlastný preklady @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Středa apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Kromě pravidel oprávnění založených na rolích, můžete aplikovat uživatelská oprávnění založená na DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Pole Obrázok musí byť platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Pole Obrázok musí byť platný fieldname DocType: OAuth Client,Token,žetón DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (název) entity jejíž vlastnost bude nastavena apps/frappe/frappe/limits.py +82,"To renew, {0}.","Ak chcete obnoviť, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Položky postranního panelu apps/frappe/frappe/installer.py +125,App {0} already installed,Aplikácia {0} už bola nainštalovaná DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,ukázať Oprávnenie -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Časová os poľa musí byť Link alebo Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Časová os poľa musí byť Link alebo Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,časové obdobie apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} z {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Předs apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",Šifrovací kľúč je neplatný. Skontrolujte site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,na DocType: Kanban Board Column,darkgrey,tmavošedý -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Úspešný: {0} až {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Úspešný: {0} až {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nemožno meniť údaje používateľa v demo. Prihláste sa na nový účet na stránke https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Prosím, kopírovat to, aby se změny" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,"Generovanie PDF zlyhalo, pretože zlomených obrázkové odkazy" @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Skladacie apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Uloženo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,S čím potrebujete pomôcť? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Voľby pre vybrané. Každá voľba na nový riadok. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Zrušit natrvalo: {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Zrušit natrvalo: {0}? DocType: Workflow State,music,Hudba DocType: Web Page,Settings,Nastavenia apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Prosím specifikujte doctype DocType: Print Format,Style Settings,Nastavení stylu -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Usporiadať pole {0} musí byť platné fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Usporiadať pole {0} musí byť platné fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Více DocType: Contact,Sales Manager,Manažer prodeje apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Premenovať DocType: Print Format,Format Data,Formát dat -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Jako +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Jako DocType: Customize Form Field,Customize Form Field,Přizpůsobit formulářové pole apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Umožňuje uživateli DocType: OAuth Client,Grant Type,grant Type apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Podívejte se, které dokumenty jsou čitelné uživatelem" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Aplikácia s výpisom nie je povolená -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,použijete % jako zástupný znak -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-mail domény nie je nakonfigurovaný pre tento účet, vytvoriť jeden?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,použijete % jako zástupný znak +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-mail domény nie je nakonfigurovaný pre tento účet, vytvoriť jeden?" DocType: User,Reset Password Key,Obnovit heslo klíče DocType: Email Account,Enable Auto Reply,Povolit automatické odpovědi apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nie Seen @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Nastavit pouze jednou DocType: Email Queue Recipient,Email Queue Recipient,Email Fronta Príjemca DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Užívateľské meno {0} už existuje -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Nie je možné nastaviť Import, pretože {1} nie je importovateľné" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Nie je možné nastaviť Import, pretože {1} nie je importovateľné" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Tam je chyba v adrese šablóne {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Od Celé meno apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nemáte přístup k Reportu: {0} DocType: User,Send Welcome Email,Odoslať uvítací e-mail apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Nahrát (upload) soubor CSV obsahující všechna uživatelská oprávnění ve stejném formatu, v jakém jste je stáhli." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Odebrat filtr +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Odebrat filtr DocType: Address,Daman and Diu,Daman a Diu DocType: Address,Personal,Osobní apps/frappe/frappe/config/setup.py +113,Bulk Rename,Hromadné premenovanie @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Štandardný DocType nemôže mať predvolený formát tlače, použite možnosť Prispôsobiť formulár" DocType: Report,Query,Dotaz DocType: DocType,Sort Order,Pořadí řazení -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'V zozname' nie je dovolené pre typ {0} na riadku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'V zozname' nie je dovolené pre typ {0} na riadku {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Zvolte popisek, za kterým chcete vložit nové pole." ,Document Share Report,Dokument Share Report DocType: User,Last Login,Posledné prihlásenie -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Název pole je vyžadován v řádku: {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sloupec DocType: Custom Field,Adds a custom field to a DocType,Přidá přizpůsobené pole do DocType DocType: File,Is Home Folder,Je Domovská zložka @@ -594,7 +594,7 @@ DocType: File,Folder,Folder DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Newsletter Manažér apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Možnosť 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,všetky príspevky +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} až {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prihlásiť sa chyby počas požiadaviek. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} bol úspešne pridaný do e-mailovej skupiny. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,indikátor DocType: DocShare,Everyone,Všichni DocType: Workflow State,backward,pozpátku -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Len jedno pravidlo povolené s rovnakou Úlohou, Úrovňou a {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Len jedno pravidlo povolené s rovnakou Úlohou, Úrovňou a {1}" DocType: Email Queue,Add Unsubscribe Link,Pridať odkaz pre odhlásenie apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Zatiaľ žiadne komentáre. Začať novú diskusiu. DocType: Workflow State,share,Podíl @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,není apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Zobraziť Odberatelia apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Paní DocType: Website Theme,Background Color,Barva pozadí -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Narazili jsme na problémy při odesílání emailu. Prosím zkuste to znovu. DocType: Portal Settings,Portal Settings,portál Nastavenie DocType: Web Page,0 is highest,0 je najvyššie apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Ste si istí, že chcete znovu zostaviť toto oznámenie {0}?" @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Nastavenie - Kontaktujte nás apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Vyhľadávanie ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Vyhľadávanie ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Bylo dosaženo maximálního limitu příloh pro tento záznam. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Nasledovné povinné údaje musia byť vyplnené:
DocType: Email Alert,View Properties (via Customize Form),Zobrazenie vlastností (cez Vlastné forma) DocType: Note Seen By,Note Seen By,Poznámka videný @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Výpisy konfigurátoru výpisů jsou spravovány přímo konfigurátorem výpisů. Nelze provést žádnou akci. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Skontrolujte prosím e-mailovú adresu apps/frappe/frappe/model/document.py +903,none of,žiadne z -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Odeslat si kopii +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Odeslat si kopii apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Nahrát (upload) uživatelská oprávnění DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Zaškrtnuté položky sa zobrazia na pracovnej ploche -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nemôže byť nastavené pre Samotné typy +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nemôže byť nastavené pre Samotné typy apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban doska {0} neexistuje. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} práve prezerajú tento dokument DocType: ToDo,Assigned By Full Name,Pridelené Celé meno apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0}: aktualizované -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Výpis nemůže být nastaven pro typy osamocené apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dni DocType: Email Account,Awaiting Password,čaká sa Heslo DocType: Address,Address Line 1,Adresní řádek 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stavy toků jako např.: Rozpracováno, Schváleno, Zrušeno." DocType: Print Settings,Allow Print for Draft,Umožňujú tlač pre Draft apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Nastaviť Množstvo -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Predloží dokument potvrdiť +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Predloží dokument potvrdiť DocType: Contact,Unsubscribed,Odhlášen z odběru apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Nastaviť vlastné role pre stránky a správy apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,hodnotenie: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Nástroj importování dat DocType: Address,Dadra and Nagar Haveli,Dadra a Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Nahrávanie súborov, prosím čakajte niekoľko sekúnd." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Pripojiť svoj obrázok +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Pripojiť svoj obrázok apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Riadok Hodnoty Zmenil DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Odkaz na stránku, ktorú chcete otvoriť. Ponechajte prázdne, ak chcete, aby to skupina rodič." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Vyrovnajte štítky k ľavému DocType: Help Article,Expert,odborník DocType: Workflow State,circle-arrow-right,circle-arrow-right DocType: LDAP Settings,LDAP Server Url,LDAP server URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Nelze otevřít instanci když je otevřeno: {0} +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Nelze otevřít instanci když je otevřeno: {0} apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Fronte pre inštaláciu DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Poslať odkaz pre odhlásenie @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} odstránené DocType: Custom DocPerm,Apply User Permissions,Použít oprávnění DocType: User,Modules HTML,Moduly HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavenie> Správca povolení používateľov apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Chybějící hodnoty vyžadovány DocType: DocType,Other Settings,ďalšie nastavenie DocType: Social Login Keys,Frappe,frapé @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Nositeľ Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Nie je označený žiadny dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Událost -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Dne {0}, {1} napsal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Nemožno zmazať štandardné polia. Môžete ju skryť, ak chcete" DocType: Top Bar Item,For top bar,Pro horní panel apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Neboli schopní určiť {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,bezbariérový prístup DocType: Workflow State,minus,mínus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Serverová chyba: Prosím skontrolujte serverové záznamy alebo kontaktujte technickú podporu. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Uvítací email odeslán -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Pripravíme systém pre prvé použitie. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Pripravíme systém pre prvé použitie. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Odporúčané apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Již registrováno DocType: System Settings,Float Precision,Počet desetinných míst @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,umožňujú tlač apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Žádné Apps Instalovaný apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označit pole ako povinné DocType: Communication,Clicked,Clicked -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Bez oprávnění k: '{0}' {1} DocType: User,Google User ID,Google ID uživatele apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,naplánované odosielať DocType: DocType,Track Seen,track Videné @@ -838,7 +837,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,súbežných relácií DocType: OAuth Client,Client Credentials,klientskej poverenia -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Otvoriť modul alebo nástroj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Otvoriť modul alebo nástroj DocType: Communication,Delivery Status,Delivery Status DocType: Module Def,App Name,Názov aplikácie apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Maximálna veľkosť súboru je dovolené {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,referenčnej Komunikácia DocType: Email Queue,Unsubscribe Method,metóda aktuality DocType: GSuite Templates,Related DocType,Súvisiaci DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Upravit pro přidání obsahu -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,zvoľte jazyky -apps/frappe/frappe/__init__.py +510,No permission for {0},Nemáte oprávnenie pre {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,zvoľte jazyky +apps/frappe/frappe/__init__.py +509,No permission for {0},Nemáte oprávnenie pre {0} DocType: DocType,Advanced,Pokročilé apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Zdá sa, že kľúč API alebo API Secret je zle !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referencie: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,Vložte typ formuláře apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Není oštítkován žádný záznam apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,odobrať pole DocType: User,Send Password Update Notification,Poslať heslo Aktualizovať oznámenia -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Povoluji DocType, DocType. Buďte opatrní!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Upravené formáty pre tlač, e-mail" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Aktualizované na novú verziu DocType: Custom Field,Depends On,Závisí na @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,jeden z apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Vyberte súbor, ktorý chcete skopírovať" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrola jeden okamih apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Zobrazit štítky +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ak je začiarknuté oprávnenie na používanie prísneho používateľa a užívateľské oprávnenie je definované pre používateľa DocType, všetky dokumenty, v ktorých hodnota odkazu je prázdna, sa tomuto používateľovi nezobrazia" DocType: Address,Billing,Fakturace DocType: Email Queue,Not Sent,Neodoslané DocType: Web Form,Actions,Akce @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,jasný apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Denní události by měly skončit ve stejný den. DocType: Communication,User Tags,Uživatelské štítky apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Načítavanie obrázkov .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavenie> Užívateľ DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Stiahnutie aplikácie {0} DocType: Communication,Feedback Request,Spätná väzba Request @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,zálohy apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Pridať kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Voliteľné: Vždy posielať tieto identifikátory. Každá e-mailová adresa na nový riadok -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Skrýt podrobnosti +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Skrýt podrobnosti DocType: Workflow State,Tasks,úkoly DocType: Event,Tuesday,Úterý DocType: Blog Settings,Blog Settings,Nastavenie blogu @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Zapíše soubor Pythonu ve stejném adresáři kde je toto uloženo a vrátí sloupec a výsledek. DocType: DocType,Sort Field,Pole řadit dle DocType: Razorpay Settings,Razorpay Settings,nastavenie Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Upravit filtr -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","napr. Ak Použiť užívateľských oprávnení je kontrolovaná Report DOCTYPE, ale žiadny užívateľ Oprávnenia sú definované pre správy za Užívateľa, potom všetky správy sú zobrazené tomuto užívateľovi" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Upravit filtr +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Pole {0} typu {1} nemůže být povinné apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Pridať viac apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,skryť graf DocType: System Settings,Session Expiry Mobile,Session Zánik Mobile @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,Oneskorené apps/frappe/frappe/config/setup.py +128,List of backups available for download,Zoznam záloh k dispozícii na stiahnutie apps/frappe/frappe/www/login.html +89,Sign up,Zaregistrovať sa DocType: Test Runner,Output,Výkon +DocType: Email Alert,Set Property After Alert,Nastaviť vlastnosť po upozornení apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Přidat pole do formulářů. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Zdá sa, že nie je v tejto konfigurácii služby Paypal niečo zlé." DocType: File,rgt,Rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,list DocType: Portal Menu Item,Portal Menu Item,portál Položka DocType: User Email,Email ID,Email Id +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ak je pre aplikáciu Report DocType začiarknuté políčko Používať oprávnenia používateľa, ale pre správu pre používateľa nie sú definované žiadne používateľské oprávnenia, všetky prehľady sa zobrazia tomuto používateľovi" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Zoznam zdrojov, ktoré Klient App bude mať prístup k potom, čo ho užívateľ dovolí.
napríklad projekt" DocType: Translation,Translated Text,preložený Text DocType: Contact Us Settings,Query Options,Možnosti dotazu @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,Kontakty DocType: System Settings,Setup Complete,Nastavenie dokončené apps/frappe/frappe/config/setup.py +66,Report of all document shares,Zpráva ze všech akcií dokumentů apps/frappe/frappe/www/update-password.html +18,New Password,Nové heslo -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} chýba +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} chýba apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Je nám ľúto! Nemožno odstrániť automaticky generovaná komentáre DocType: Website Theme,Style using CSS,Štýl pomocou CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Reference DocType @@ -1128,7 +1130,7 @@ DocType: User,Block Modules,Moduly Blokové apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Návrat dĺžku {0} pre '{1}' do '{2}'; Nastavenie dĺžky ako {3} spôsobí skrátenie dát. DocType: Print Format,Custom CSS,Přizpůsobené CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Pridať komentár -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignorovať: {0} až {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignorovať: {0} až {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Log chyb automatických událostí (plánovač). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Není validní CSV soubor (hodnoty oddělené čárkami) @@ -1137,7 +1139,7 @@ DocType: Email Account,Default Incoming,Výchozí Příchozí DocType: Workflow State,repeat,repeat DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Ak je vypnutá, táto úloha bude odstránený zo všetkých užívateľov." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pomoc s vyhľadávaním +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoc s vyhľadávaním apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Registrovaný užívateľ, ale zakázaný" DocType: DocType,Hide Copy,Skrýt kopii apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Odebrat všechny role @@ -1169,7 +1171,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Krajina apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresy DocType: Communication,Shared,spoločná -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Priložiť výtlačok dokumentu +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Priložiť výtlačok dokumentu DocType: Bulk Update,Field,Lúka DocType: Communication,Received,Přijato DocType: Social Login Keys,Google Client ID,Google ID klienta @@ -1190,12 +1192,12 @@ DocType: Report,Query Report,Report dotazu DocType: User,Set New Password,Nastaviť nové heslo DocType: User,Github User ID,Github ID uživatele apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ak Typ dokumentu -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nemožno zmazať alebo zrušiť, pretože {0} {1} je spojené s {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nemožno zmazať alebo zrušiť, pretože {0} {1} je spojené s {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Neznáma aplikácia {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nie je platný formát správy. Správa formát by mal \ jedným z nasledujúcich spôsobov% s DocType: Communication,Chat,Chat -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Název pole {0} se vyskytuje vícekrát na řádcích {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} z {1} až {2} v rade # {3} DocType: Communication,Expired,Vypršela DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Počet stĺpcov pre pole v mriežke (Celkový počet stĺpcov v mriežke by mala byť menšia ako 11) @@ -1205,30 +1207,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Máte účet? Prihl apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Print Format: {0} DocType: Workflow State,arrow-down,šipka-dolů apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Sbalit -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Uživatel nemá povoleno mazat {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Naposledy Aktualizováno (kdy) DocType: Help Article,Likes,Záľuby DocType: Website Settings,Top Bar,Horní panel DocType: GSuite Settings,Script Code,Skriptový kód apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Vytvoriť e-mail používateľa apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Vytvoriť e-mail používateľa -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nie sú uvedené žiadne povolenia +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nie sú uvedené žiadne povolenia apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globálne nastavenia: Užívatelia budú môcť vybrať kontrolovať ikon apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} sa nenašiel DocType: Custom Role,Custom Role,Custom Role apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Home / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorujú používateľského oprávnenia Ak chýbajúce -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Před nahráním prosím uložení dokumentu. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Před nahráním prosím uložení dokumentu. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Zadajte heslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Access Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Pridať ďalší komentár apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,editovať DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odhlásený z Spravodajcu -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Zložiť musí prísť pred koniec oddielu +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Zložiť musí prísť pred koniec oddielu apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Posledná zmena By DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,Štát GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Nie je možné nastaviť Zrušiť bez odoslania +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Nie je možné nastaviť Zrušiť bez odoslania DocType: Website Theme,Theme,Téma apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Byly tam chyby. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Presmerovanie URI Bound auth zákonníka @@ -1247,7 +1249,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moje DocType: Website Theme,Text Color,Farba textu DocType: Desktop Icon,Force Show,force Show apps/frappe/frappe/auth.py +78,Invalid Request,Neplatný požadavek -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Tento formulář nemá žádný vstup +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Tento formulář nemá žádný vstup apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Vypršení platnosti relace musí být ve formátu {0} DocType: Website Sidebar Item,Group,Skupina DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Zvolte cíl (target) = ""_blank"" pro otevření na nové stránce." @@ -1256,7 +1258,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorovat kódování chyby. DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nenastavené -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavenie> Užívateľ DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Vypnout registrování apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Vydržte, kým sa váš systém nastaví. Môže to pár chvíľ trvať." @@ -1267,7 +1268,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Pridať komentár DocType: DocField,Mandatory,Povinné apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul pre export -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}:Žiadne základné oprávnenia nastavené +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}:Žiadne základné oprávnenia nastavené apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Váš odber vyprší {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link pro zálohování bude zasláno na e-mailovou adresu: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Význam pojmů Vložit, Zrušit, Změnit" @@ -1280,11 +1281,11 @@ DocType: Desktop Icon,query-report,query-report apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Zadal {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtre uložené DocType: DocField,Percent,Procento -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Prosím nastavte filtry +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Prosím nastavte filtry apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Provázáno s DocType: Workflow State,book,kniha DocType: Website Settings,Landing Page,Landing stránka -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Chyba vo vlastnej skript +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Chyba vo vlastnej skript apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Name apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Dovoz Request vo fronte. To môže trvať niekoľko okamihov, prosím, buďte trpezliví." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Žádná oprávnění nastavena pro toto kritérium. @@ -1296,7 +1297,7 @@ DocType: System Settings,Allow Login using Mobile Number,Povoliť prihlásenie p apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Nemáte dostatočné oprávnenia pre prístup k tomuto prostriedku. Obráťte sa na správcu získať prístup. DocType: Custom Field,Custom,Zvyk apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Nastavit emailová upozornění za základě různých kritérií. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Príspevky podané v rámci {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Príspevky podané v rámci {0} DocType: Email Alert,Send alert if date matches this field's value,Odeslat upozornění pokud datum souhlasí s hodnotou tohoto pole DocType: Workflow,Transitions,Přechody apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Odobrať {0} a odstrániť všetky dáta? @@ -1305,9 +1306,8 @@ DocType: User,Login After,Přihlášení po DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tisk DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z Nastavenia> E-mail> E-mailový účet DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,přesnost by měla být mezi 1 a 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,a DocType: Error Snapshot,Frames,Rámy @@ -1316,7 +1316,7 @@ DocType: About Us Team Member,Image Link,Odkaz na obrázok DocType: Auto Email Report,Report Filters,správa Filtre apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,teraz DocType: Workflow State,step-backward,step-backward -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Prosím, nastavení přístupových klíčů Dropbox ve vašem webu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Zmazať tento záznam povoliť odosielanie na túto e-mailovú adresu apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Pouze povinná pole jsou potřeba pro nové záznamy. Můžete smazat nepovinné sloupce přejete-li si. @@ -1338,8 +1338,7 @@ DocType: File,Is Attachments Folder,Je Prílohy Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Rozbaliť všetko apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Validní přihlašovací id je vyžadováno. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Znovu otevřít -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Zrušili ste platbu -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vyberte prosím platný CSV soubor s daty +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vyberte prosím platný CSV soubor s daty apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} už nezdieľa tento dokument s {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Stav dokumentu přechod z {0} na {1} není povolen DocType: DocType,"Make ""name"" searchable in Global Search",Urobiť "name" vyhľadávať v Global Search @@ -1352,7 +1351,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,pô DocType: Help Category,Help Category,help Kategórie apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Uživatel {0} je zakázána apps/frappe/frappe/www/404.html +8,Page missing or moved,Stránka neexistuje alebo bola premiestnená -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Upraviť {0} vlastnosti DocType: DocType,Route,trasa apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay nastavenie platobná brána DocType: DocField,Name,Meno @@ -1360,8 +1358,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Hľadať v dokumentoch apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Hľadať v dokumentoch DocType: OAuth Authorization Code,Valid,platný -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Otevrít odkaz -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tvoj jazyk +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Otevrít odkaz +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jazyk apps/frappe/frappe/desk/form/load.py +46,Did not load,Nebylo nahráno apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Pridať riadok DocType: Tag Category,Doctypes,Doctypes @@ -1376,7 +1374,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Požiadavka F DocType: Address,Lakshadweep Islands,Lakshadweep ostrovy apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Dokáže napísať apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Některé dokumenty, například faktura, nemůže být změněna pokud je dokončena. Finální stav pro takové dokumenty se nazývá Vloženo. Můžete omezit, které role mohou vkládat." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Nemáte povolené exportovať tento report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Nemáte povolené exportovať tento report apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 vybraná položka DocType: Newsletter,Test Email Address,Test E-mailová adresa DocType: ToDo,Sender,Odesilatel @@ -1411,7 +1409,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID dokument DocType: Print Settings,Letter,Dopis -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Pole Obraz musí byť typu Pripojiť obrázok +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Pole Obraz musí byť typu Pripojiť obrázok DocType: DocField,Columns,Stĺpce DocType: Async Task,Succeeded,Uspel apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Povinné pole vyžadované pre {0} @@ -1461,7 +1459,7 @@ DocType: DocField,Text Editor,Editor textu apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Nastavenia stránky O nás. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Upravit vlastní HTML DocType: Error Snapshot,Error Snapshot,Chyba Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,V +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,V DocType: Email Alert,Value Change,Změnit hodnotu DocType: Standard Reply,Standard Reply,Standardní odpověď apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Šířka vstupního pole @@ -1477,12 +1475,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Pomocou tohto fieldname na generovanie názvu apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importovať e-maily z apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Pozvať ako Užívateľ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Vyberte přílohy +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Vyberte přílohy apps/frappe/frappe/model/naming.py +94, for {0},pre {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Došlo k chybám. Ohláste to. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Nemáte povolené tlačiť tento dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Nemáte povolené tlačiť tento dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Prosím nastaviť filtre hodnotu Report filtra tabuľky. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Nahrávám Report +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Nahrávám Report apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaše predplatné vyprší dnes. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priložiť Súbor @@ -1512,7 +1510,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionálne Rozšírenie DocType: LDAP Settings,Base Distinguished Name (DN),Základňa Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Opustiť túto konverzáciu -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Možnosti nejsou nastaveny pro provázané pole {0} DocType: Customize Form,"Must be of type ""Attach Image""",Musí byť typu "Pripojiť Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Zrušiť výber apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Nemôžete odstavenie "len na čítanie" pre pole {0} @@ -1555,9 +1553,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Poznámka apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Error Report apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Podmienky spätnej väzby sa nezhodujú -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Časová os poľa musí byť platný fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Časová os poľa musí byť platný fieldname DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Řádek #{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Řádek #{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nové heslo zaslané emailom apps/frappe/frappe/auth.py +245,Login not allowed at this time,Přihlášení není povoleno v tuto dobu DocType: Email Account,Email Sync Option,E-mail Sync Option @@ -1579,7 +1577,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardní odpovědi na běžné dotazy. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Výchozí Odeslání DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Páčilo sa {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Páčilo sa {0} DocType: Footer Item,Footer Item,zápätie Item ,Download Backups,K stiahnutiu Zálohy apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Home / Test Folder 1 @@ -1614,7 +1612,7 @@ DocType: Web Page,Text Align,Zarovnání textu apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Názov nemôže obsahovať špeciálne znaky ako {0} DocType: Contact Us Settings,Forward To Email Address,Přeposlat na emailovou adresu apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Zobraziť všetky údaje -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Titulek musí být validní název pole +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titulek musí být validní název pole apps/frappe/frappe/config/core.py +7,Documents,Dokumenty DocType: Email Flag Queue,Is Completed,je dokončené apps/frappe/frappe/www/me.html +22,Edit Profile,Upraviť profil @@ -1624,7 +1622,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Toto pole sa objaví len v prípade, že fieldname tu definované má hodnotu OR pravidlá sú pravými (príklady): myfield eval: doc.myfield == "Môj Value 'eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,dnes +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,dnes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pakliže toto nastavíte, uživatelé budou moci přistoupit pouze na dokumenty (např.: příspěvky blogu), kam existují odkazy (např.: blogger)." DocType: Error Log,Log of Scheduler Errors,Log chyb plánovače. DocType: User,Bio,Biografie @@ -1648,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 hviezdička je najnižšia a 5 hviezdičiek je najvyššie hodnotenie DocType: Event,Ref Name,Název reference DocType: Web Page,Center,Střed +DocType: Email Alert,Value To Be Set,"Hodnota, ktorú chcete nastaviť" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Prvá úroveň DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Reprezentuje stavy povolené v jednom dokumentu a přiřazené role pro změnu stavu. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Obnoviť formulár @@ -1668,18 +1667,18 @@ DocType: DocType,Has Web View,Má zobrazovanie z Webu apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Názov DOCTYPE by mala začínať písmenom a môže pozostávať len z písmen, číslic, medzier a podčiarkovníkov" DocType: Communication,Spam,Nevyžiadaná pošta DocType: Integration Request,Integration Request,Žiadosť o integrácii -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Vážený (á) +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Vážený (á) DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Uživatel Účtů DocType: Web Page,HTML for header section. Optional,HTML kód pro záhlaví. Volitelné apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Táto funkcia je úplne nový a doteraz experimentálne -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maximálně {0} řádků povoleno +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maximálně {0} řádků povoleno DocType: Email Unsubscribe,Global Unsubscribe,Globálne aktuality apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Jedná sa o veľmi časté hesla. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Pohľad DocType: Communication,Assigned,pridelených DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Vybrat formát tisku +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Vybrat formát tisku apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Krátke vzory klávesnice možno ľahko uhádnuť DocType: Portal Settings,Portal Menu,portál Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Dĺžka {0} by mala byť medzi 1 a 1000 @@ -1718,7 +1717,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Uživatel nemůže vyhledávat apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Neplatný Výstupný formát DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Použiť toto pravidlo v prípade, že používateľ je vlastníkom" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Bude to vaše prihlasovacie ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bude to vaše prihlasovacie ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Sestav Report DocType: Note,Notify users with a popup when they log in,"Informovať užívateľa s pop-up, keď sa prihlási" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} neexistuje, vyberte nový cieľ pre zlúčenie" @@ -1737,17 +1736,18 @@ DocType: User Permission for Page and Report,Roles Permission,role Oprávnenie apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Aktualizovat DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Uložte Newsletter před odesláním -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok (roky) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Možnosti musí být validní DocType pro pole{0} na řádku {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Upraviť vlastnosti DocType: Patch Log,List of patches executed,Seznam provedených záplat apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} už odhlásený -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikační médium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikační médium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Prosím, vyberte iný spôsob platby. Razorpay nepodporuje transakcií s obeživom, {0} '" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Vo fronte pre zálohovanie. To môže trvať niekoľko minút až hodinu. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrovať OAuth klienta App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemôže byť ""{2}"". Malo by byť jedno z ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} nemôže byť ""{2}"". Malo by byť jedno z ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} alebo {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Ukázať alebo skryť ikony na ploche apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Aktualizovat heslo @@ -1774,7 +1774,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Show konce riadkov po oddieloch DocType: Blogger,Short Name,Skrátené meno apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Stránka {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Volíte Sync Option ako ALL, bude to znova synchronizovať všetky \ čítať rovnako ako neprečítanú správu zo servera. To môže tiež spôsobiť duplikácie \ komunikácie (e-mailov)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,súbory Velikost @@ -1786,6 +1786,7 @@ DocType: Contact,Purchase Manager,Vedoucí nákupu DocType: Custom Script,Sample,Vzorek apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizované Tags DocType: Event,Every Week,Týdně +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-mailový účet nie je nastavený. Vytvorte nový e-mailový účet z Nastavenia> E-mail> E-mailový účet apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliknite tu pre kontrolu využitie alebo upgrade na vyššiu plán DocType: Custom Field,Is Mandatory Field,Je Povinné Pole DocType: User,Website User,Uživatel webu @@ -1809,16 +1810,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,tužka apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat správy a ďalšie oznámenia. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},"Vložiť Potom, čo nie je možné nastaviť ako {0}" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},"Vložiť Potom, čo nie je možné nastaviť ako {0}" apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Podiel {0} s apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Nastavenie e-mailové konto, zadajte svoje heslo pre:" DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Představení přispěvovatelů DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Chyba pri vyhodnocovaní upozornenia e-mailom {0}. Opravte šablónu. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Chyba pri vyhodnocovaní upozornenia e-mailom {0}. Opravte šablónu. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Zvolte DocType nebo roli pro zahájení DocType: Contact,Passive,Pasivní DocType: Contact,Accounts Manager,Manažér účtov +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Vaša platba je zrušená. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Vyberte typ súboru DocType: Help Article,Knowledge Base Editor,Základné Editor znalosti apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stránka nenalezena @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,Typ vlastnosti DocType: Workflow State,screenshot,snímek obrazovky apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Pouze administrátor může uložit standardní výpis. Prosím přejmenujte a uložte. DocType: System Settings,Background Workers,pracovníci pozadia +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,"Názov poľa {0}, ktorý je v konflikte s objektom meta" DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stav dokumentu apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Vykonali ste {0} z {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Zobrazit práva uživatele apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Musíte být přihlášen a mít roli systémového správce, pro přístup k zálohám." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,zostávajúce -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Prosím před přiložením je třeba nejprve uložit. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Pridané: {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Prednastavená téma je zasadený do {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Typ pole nemůže být změněn z {0} na {1} na řádku {2} @@ -1890,11 +1893,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Začiatok r apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Začiatok relácie zlyhal apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Tento e-mail bol odoslaný na adresu {0} a skopírovať do {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Prosím, nastavte predvolený e-mailový účet z Setup> Email> Email Account" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Vytvoriť: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Vytvoriť: {0} DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Správa {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Otevřít {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Otevřít {0} DocType: OAuth Client,Default Redirect URI,Predvolené Presmerovanie URI DocType: Email Alert,Recipients,Příjemci DocType: Workflow State,ok-sign,ok-sign @@ -1912,6 +1914,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,články pomocníka ,Modules Setup,Nastavenie modulov apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typu: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Vaša platba zlyhala. DocType: Communication,Unshared,nerozdelený DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul nenalezen @@ -1959,7 +1962,7 @@ DocType: Website Settings,Brand Image,Logo značky DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Nastavenie horného navigačného panelu, päty a loga." DocType: Web Form Field,Max Value,Max Hodnota -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Pro {0} na úrovni {1} v {2} na řádku {3} DocType: Contact,All,Vše DocType: Email Queue,Recipient,Příjemce DocType: Communication,Has Attachment,má prílohu @@ -1976,7 +1979,8 @@ DocType: Workflow State,align-right,zarovnat-vpravo DocType: Auto Email Report,Email To,E-mail na apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Folder {0} nie je prázdny DocType: Page,Roles,Role -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Pole {0} nemôžete zvoliť. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Chyba: Chýba hodnota pre {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Pole {0} nemôžete zvoliť. DocType: System Settings,Session Expiry,Platnost relace DocType: Workflow State,ban-circle,ban-circle DocType: Email Flag Queue,Unread,neprečítaný @@ -1991,7 +1995,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Výchozí nastavení uživatele apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Vytvořit nový DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email nie je poslaný do {0} (odhlásili / vypnuté) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email nie je poslaný do {0} (odhlásili / vypnuté) DocType: Async Task,Traceback,Vystopovať DocType: Currency,Smallest Currency Fraction Value,Najmenší Mena Frakcia Hodnota apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Priradiť (komu) @@ -2002,12 +2006,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Od DocType: Website Theme,Google Font (Heading),Google Font (okruh) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Vyberte první uzel skupinu. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Hledej: {0} v: {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Hledej: {0} v: {1} DocType: OAuth Client,Implicit,implicitné DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Připojit jako komunikace se proti tomuto DOCTYPE (musí mít pole, ""Status"", ""Předmět"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI pre príjem autorizačný kód, akonáhle užívateľ umožňuje prístup, rovnako ako odpovede zlyhanie. Typicky REST koncový bod vystavená Klientom App.
napr http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Není povoleno změnit {0} po vložení DocType: Communication,Comment Type,Typ komentáře DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Uživatelé @@ -2021,7 +2025,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},Nie je možné prečítať formát súboru pre {0} DocType: Auto Email Report,Filter Data,Filtrovať údaje apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Pridať značku -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Prosím nejdříve přiložte soubor. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Prosím nejdříve přiložte soubor. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Narazili jsme na problémy při nastavování jména, prosím kontaktujte administrátora" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Prichádzajúci e-mailový účet nie je správny apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2036,11 +2040,11 @@ DocType: Blog Post,Email Sent,Email odeslán DocType: DocField,Ignore XSS Filter,Ignorovať XSS filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,odstránený apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Nastavenie zálohovania Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Odeslat jako email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Odeslat jako email DocType: Website Theme,Link Color,Farba odkazu apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Uživatel: {0} nemůže být vypnut apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Vážený System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tvoja krajina +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tvoja krajina DocType: Event,Sunday,Neděle apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,V zobrazení mriežky DocType: Address Template,Template,Šablona @@ -2048,7 +2052,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,nastavenie LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ktorým sa mení apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal nastavenie platobná brána -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane skrátený, pretože max povolenej znaky je {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) dostane skrátený, pretože max povolenej znaky je {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resource hesla vlastníka poverenia DocType: OAuth Client,Response Type,typ Response apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Maximálny počet užívateľov @@ -2065,7 +2069,7 @@ DocType: DocField,Table,Tabuľka DocType: File,File Size,Velikost souboru apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Musíte se přihlásit pro odeslání tohoto formuláře DocType: User,Background Image,Obrázok na pozadí -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Vyberte svoju krajinu, časové pásmo a menu" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Vyberte svoju krajinu, časové pásmo a menu" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,medzi DocType: Async Task,Queued,Vo fronte @@ -2074,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Vytvořit apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Neplatný filtr: {0} DocType: Email Account,no failed attempts,no neúspešných pokusoch +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Neboli nájdené žiadne predvolené adresy. Vytvorte nový z ponuky Nastavenie> Tlač a branding> Šablóna adresy. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Access Key App DocType: OAuth Bearer Token,Access Token,Přístupový Token @@ -2091,8 +2096,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github - používateľské meno DocType: DocType,Image View,Image View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Vyzerá to, že sa niečo počas transakcie zle. Pretože sme nepotvrdili platbu Paypal bude vám automaticky túto čiastku. Ak sa tak nestane, pošlite nám e-mail a uveďte ID korelácia: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Zahrňte do hesla symboly, čísla a veľké písmená" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vložte Po poľa '{0}' uvedenú vo vlastnom poli '{1}', so štítkom '{2}' neexistuje" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Zahrňte do hesla symboly, čísla a veľké písmená" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vložte Po poľa '{0}' uvedenú vo vlastnom poli '{1}', so štítkom '{2}' neexistuje" DocType: Workflow State,signal,signal DocType: DocType,Show Print First,Zobrazit nejdříve tisk apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, aby ste mohli písať" @@ -2123,14 +2128,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Súbor '{0}' nebol nájdený apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Odstranit oddíl DocType: User,Change Password,Zmen heslo -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Neplatný email: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Ahoj! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Neplatný email: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Ahoj! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Konec události musí být po začátku události apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Nemáte práva přistoupit k výpisu: {0} +DocType: System Settings,Apply Strict User Permissions,Používajte prísne oprávnenia používateľa DocType: DocField,Allow Bulk Edit,Povoliť hromadnú úpravu DocType: DocField,Allow Bulk Edit,Povoliť hromadnú úpravu DocType: Blog Post,Blog Post,Příspěvek blogu -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Rozšírené vyhľadávanie +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Rozšírené vyhľadávanie apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Informace o obnově hesla byly zaslány na Váš email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Úroveň 0 je pre oprávnenia na úrovni dokumentu, \ vyššie úrovne pre oprávnenia na úrovni poľa." @@ -2149,15 +2155,14 @@ DocType: Web Page,Sidebar and Comments,Sidebar a Komentáre apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Pokud změníte dokument po jeho zrušení a uložíte ho, dostane přiřazeno nové číslo. Toto je verze starého čísla." DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie DocType: Stripe Settings,Publishable Key,Kľúč na zverejnenie -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} rok (roky) DocType: Workflow State,circle-arrow-left,circle-arrow-left apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,"Redis vyrovnávací server neběží. Prosím, obraťte se na správce / technickou podporu" apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Meno Party -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Vytvoriť nový záznam +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Vytvoriť nový záznam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,vyhľadávanie DocType: Currency,Fraction,Zlomek DocType: LDAP Settings,LDAP First Name Field,LDAP First Name Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Vyberte z existujúcich príloh +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Vyberte z existujúcich príloh DocType: Custom Field,Field Description,Popis pole apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Název není nastaven pomocí prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,e-mailovej schránky @@ -2203,11 +2208,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Informace: DocType: Custom Field,Permission Level,úroveň oprávnění DocType: User,Send Notifications for Transactions I Follow,Posielať oznámenia pre transakcie sledujem -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nie je možné nastaviť Odoslanie, Zrušenie, Zmenu bez zápisu" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nie je možné nastaviť Odoslanie, Zrušenie, Zmenu bez zápisu" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Jste si jisti, že chcete smazat přílohu?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nemožno zmazať alebo zrušiť, pretože {0} {1} je spojené s {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Neboli nájdené žiadne výsledky pre '

-apps/frappe/frappe/__init__.py +1063,Thank you,Děkujeme Vám +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nemožno zmazať alebo zrušiť, pretože {0} {1} je spojené s {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Děkujeme Vám apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Sporenie DocType: Print Settings,Print Style Preview,Náhled stylu tisku apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2219,10 +2223,10 @@ DocType: DocField,In List View,V seznamu DocType: Email Account,Use TLS,Použít TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neplatné heslo či používateľské meno apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Přidat přizpůsobený javascript do formulářů. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Pořadové číslo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Pořadové číslo ,Role Permissions Manager,Správce rolí a oprávnění apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Názov nového tlačového formátu -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,clear Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,clear Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Povinné: ,User Permissions Manager,Správce oprávnění DocType: Property Setter,New value to be set,Nová hodnota k nastavení @@ -2251,26 +2255,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Pred d apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizujte příspěvky blogu. DocType: Workflow State,Time,Čas DocType: DocField,Attach,Priložiť -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nie je platná podoba názvu poľa. Malo by byť {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nie je platná podoba názvu poľa. Malo by byť {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Poslať spätnú väzbu požiadavku len vtedy, ak existuje aspoň jedna komunikácie je k dispozícii pre dokument." DocType: Custom Role,Permission Rules,Pravidla oprávnění DocType: GSuite Settings,GSuite Settings,Nastavenia GSuite DocType: Address,Links,Odkazy -apps/frappe/frappe/model/base_document.py +428,Value missing for,Chybí hodnota pro +apps/frappe/frappe/model/base_document.py +427,Value missing for,Chybí hodnota pro apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Přidat dítě -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odoslaný záznam nemôže byť vymazaný. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Odoslaný záznam nemôže byť vymazaný. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Size DocType: GSuite Templates,Template Name,Názov šablóny -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Nový typ dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nový typ dokumentu DocType: Custom DocPerm,Read,Číst DocType: Role Permission for Page and Report,Role Permission for Page and Report,Oprávnenie role Page a správa apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Porovnajte hodnotu apps/frappe/frappe/www/update-password.html +14,Old Password,Staré heslo -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Príspevky od {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Príspevky od {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Pro formátování sloupců, zadejte označení sloupců v dotazu." DocType: Has Domain,Has Domain,Má doménu apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Ešte nemáte svoj účet? Prihlásiť Se -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Nelze nastavit přiřadit Změny když není Odeslatelné DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Upravit oprávnění rolí DocType: Communication,Link DocType,link DOCTYPE @@ -2370,7 +2374,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Uistite sa, že váš profil má e-mailovú adresu" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"V tomto formuláři máte neuložené změny. Prosím, uložte změny než budete pokračovat." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Predvolený pre {0} musí byť možnosť +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Predvolený pre {0} musí byť možnosť DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategórie DocType: User,User Image,Obrázok užívateľa (avatar) apps/frappe/frappe/email/queue.py +289,Emails are muted,Emaily jsou potlačené (muted) @@ -2403,7 +2407,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Nasledujú DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Tyto hodnoty budou automaticky aktualizovány v transakcích a rovněž bude užitečné omezit oprávnění pro tohoto uživatele v transakcích obsahujících tyto hodnoty. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Vydavatel -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Zlyhalo {0} až {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Zlyhalo {0} až {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,vyberte Povinné apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Prehliadať apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-maily odoslané @@ -2415,7 +2419,7 @@ DocType: Async Task,Running,Beh apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Obnoviť heslo apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Prosím upgrade pridať viac ako {0} predplatiteľov DocType: Workflow State,hand-left,hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemôže byť jedinečné +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} na {1} nemôže byť jedinečné DocType: Email Account,Use SSL,Použít SSL DocType: Workflow State,play-circle,play-circle apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zvolte formát tisku upravit @@ -2470,7 +2474,7 @@ DocType: DocField,No Copy,Žiadna kópia DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Prihlásenie s LDAP DocType: Web Form,Breadcrumbs,Drobečková navigace (Breadcrumbs) -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ak majiteľom +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ak majiteľom DocType: OAuth Authorization Code,Expiration time,doba expirácie DocType: Web Page,Website Sidebar,Webové stránky Sidebar DocType: Web Form,Show Sidebar,show Sidebar @@ -2490,7 +2494,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nemožno nájsť apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Mená a priezviská samy o sebe sú ľahko uhádnuť. apps/frappe/frappe/config/website.py +93,Knowledge Base,Vedomostná základňa DocType: Workflow State,briefcase,kufřík -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Hodnota nemůže být změněna pro {0} DocType: Feedback Request,Is Manual,je Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Styly reprezentující barvy tlačítek: Úspěch - zelená, Nebezpečí - Červená, Inverze - černá, Hlavní – tmavě modrá, Info – světle modrá, Upozornění – oranžová" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Žádný Report nenalezen. Prosím použijte query-report/[název výpisu] pro spuštění výpisu. @@ -2569,7 +2573,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,pokrok apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,Rolou apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,chýbajúce Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Neplatný fieldname '{0}' v autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Hledat v typu dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Hledat v typu dokumentu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Povolit aby pole zůstalo upravovatelné i po vložení DocType: Custom DocPerm,Role and Level,Role a úroveň DocType: File,Thumbnail URL,Thumbnail URL @@ -2586,19 +2590,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Viac informácií DocType: Desktop Icon,Desktop Icon,ikona Desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Vaša platba bola úspešne prijatý +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Vaša platba bola úspešne prijatý apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Je nám líto! Nemáte povoleno zobrazení této stránky. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tip: Poklepaním cell editovať DocType: Workflow State,bell,zvon apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Chyba v upozornení pošty apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Chyba v upozornení pošty apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Zdieľajte tento dokument s +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavenie> Správca povolení používateľov apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} nemôže byť koncový uzol, pretože má dieťa" DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Pridať prílohu +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Pridať prílohu DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Děkujeme Vám za zprávu -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Poslať prečítaní +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Poslať prečítaní DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup cez Site Config @@ -2676,6 +2681,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Upozornění: tento tiskový formát je ve starém stylu a nemůže být generován skrze API. DocType: DocField,Print Width,šířka tisku ,Setup Wizard,Sprievodca nastavením +DocType: Address,GST State Number,Číslo štátu GST DocType: User,Allow user to login only before this hour (0-24),Povolit uživatelům přihlásit pouze před tuto hodinu (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Zložka je povinné apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2704,7 +2710,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Krátký text apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Správca prístupné {0} na {1} pomocou IP adresy {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Je rovno -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Možnosti pole typu 'Dynamický odkaz' musí odkazovat na jiné provázané pole s možnostmi jako 'DocType' DocType: About Us Settings,Team Members Heading,Záhlaví členů týmu apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Neplatný formáte CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Nastaviť počet záloh @@ -2715,7 +2721,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Ověření třetí stranou DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad horní lištou menu. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Vývoz Report: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Vývoz Report: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} neexistuje DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2738,7 +2744,7 @@ DocType: Kanban Board Column,Column Name,Názov stĺpca DocType: Language,Based On,Založeno na apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Nastaviť ako predvolený apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,"Skontrolujte, či URL Frappe Server" -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nemožno indexovať +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} na {1} nemožno indexovať DocType: Communication,Email Account,E-mailový účet DocType: Workflow State,Download,Stáhnout DocType: Blog Post,Blog Intro,Úvod blogu @@ -2749,7 +2755,7 @@ DocType: Web Page,Insert Code,Vložit kód DocType: ToDo,Low,Nízké apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Môžete pridať dynamické vlastnosti z dokumentu pomocou Jinja šablonovacího. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Neplatný limit {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Zoznam dokumentov istého typu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Zoznam dokumentov istého typu DocType: Event,Ref Type,Typ reference apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Pakliže nahráváte nové záznamy, nechte sloupec (ID) ""název/jméno"" prázdný." DocType: Address,Chattisgarh,Chattisgarh @@ -2771,26 +2777,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Odeslat tisk jako PDF DocType: Web Form,Amount,Částka DocType: Workflow Transition,Allowed,Povoleno -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Může být pouze jeden Fold ve formuláři apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Nie je možné zapísať formát súboru pre {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Obnoviť predvolené nastavenia? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neplatná domovská stránka apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Nesprávne prihlásenie. Skúste to znova. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Možnosti požadované pre pole typu odkaz alebo typ tabuľky {0} v riadku {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Možnosti požadované pre pole typu odkaz alebo typ tabuľky {0} v riadku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Možnosti požadované pre pole typu odkaz alebo typ tabuľky {0} v riadku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Možnosti požadované pre pole typu odkaz alebo typ tabuľky {0} v riadku {1} DocType: Auto Email Report,Send only if there is any data,"Zaslať iba vtedy, ak existuje údaje" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Obnoviť filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnenie na úrovni 0 musí být nastavené pred nastavením vyšších úrovní +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Oprávnenie na úrovni 0 musí být nastavené pred nastavením vyšších úrovní apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Úkol uzavřen {0} DocType: Integration Request,Remote,diaľkový -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Vypočítať +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Vypočítať apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Prosím, vyberte první DocType" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potvrdiť Váš e-mail apps/frappe/frappe/www/login.html +42,Or login with,Alebo sa prihláste DocType: Error Snapshot,Locals,Miestne apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Odovzdávané prostredníctvom {0} z {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} sa o vás zmienil v komentári v {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,napríklad (55 + 434) / 4 alebo = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,napríklad (55 + 434) / 4 alebo = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} je potrebné DocType: Integration Request,Integration Type,integrácia Type DocType: Newsletter,Send Attachements,odoslať prílohy @@ -2800,15 +2806,15 @@ DocType: DocField,Perm Level,úroveň oprávnění apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Dnešní události v kalendáři DocType: Web Page,Web Page,Www stránky DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"V globálnom vyhľadávaní" nie je povolený typ {0} v riadku {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"V globálnom vyhľadávaní" nie je povolený typ {0} v riadku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"V globálnom vyhľadávaní" nie je povolený typ {0} v riadku {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"V globálnom vyhľadávaní" nie je povolený typ {0} v riadku {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,zobraziť zoznam -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum musí být ve formátu: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum musí být ve formátu: {0} DocType: Workflow,Don't Override Status,nepotlačí Stav apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Uveďte vyhodnotenie. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} spätnú väzbu Žiadosť apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Hľadaný výraz -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Prvý používateľ: Vy +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Prvý používateľ: Vy apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Vyberte sloupce DocType: Translation,Source Text,zdroj Text apps/frappe/frappe/www/login.py +55,Missing parameters for login,Chýbajúce parametre pre prihlásenie @@ -2830,7 +2836,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Import DocType: ToDo,Assigned By,pridelené (kým) apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Můžete použít Formulář Přizpůsobení pro nastavení úrovní na polích. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Vyberte oblasť +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Vyberte oblasť DocType: Custom DocPerm,Level,Úroveň DocType: Custom DocPerm,Report,Report apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Množstvo musí byť väčšia ako 0 ° C. @@ -2850,7 +2856,7 @@ DocType: Website Theme,Background,Pozadí DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON sezam DocTypes použitých pro aplikování uživatelských oprávnění. Pakliže je prázdný, všechny provázané DocTypes budou použity pro aplikování uživatelských oprávnění." DocType: Report,Ref DocType,Referenční DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Pridajte hodnotenie -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Nie je možné dopĺňať bez zrušenia +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Nie je možné dopĺňať bez zrušenia apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Page DocType: DocType,Is Child Table,Je podtabulka apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} musí byť jedno z {1} @@ -2865,7 +2871,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Toto přijde nad prom apps/frappe/frappe/config/setup.py +260,Install Applications.,Instaluje aplikace DocType: Contact,Last Name,Priezvisko DocType: Event,Private,Soukromé -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Žiadne upozornenie na dnešok +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Žiadne upozornenie na dnešok DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Zvolte tiskové přílohy emailu jako PDF (doporučeno) DocType: Web Page,Left,Vlevo DocType: Event,All Day,Celý den @@ -2879,7 +2885,7 @@ DocType: Event,Send an email reminder in the morning,Ráno odeslat upozornění DocType: Blog Post,Published On,Publikováno (kdy) DocType: Contact,Gender,Pohlavie apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Povinné alebo chýbajúce údaje: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nie je možné nastaviť ako jedinečné, ako to má non-jedinečné hodnoty" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Pole '{0}' nie je možné nastaviť ako jedinečné, ako to má non-jedinečné hodnoty" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Iba 200 vložky povolené v jednej žiadosti DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Typ reference @@ -2892,7 +2898,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Uživatel DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Zobraziť titul v okne prehliadača ako "Predčíslie - nadpis" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text v type dokumentu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text v type dokumentu apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Spustiť testy apps/frappe/frappe/handler.py +91,Logged Out,Odhlasený apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Viac ... @@ -2918,13 +2924,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Práve si prezeráte DocType: DocField,Default,Výchozí apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}: pridané -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Vyhľadať '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Vyhľadať '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Prosím, uložte zostavu ako prvý" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} odberateľov pridaných apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nie V DocType: Workflow State,star,star -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,hodnoty oddělené čárkami -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,hodnoty oddělené čárkami +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max šířka pro typ měny je 100px na řádku {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Prosím, podeľte sa o svoje názory na {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Obsah www stránky. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Přidat novou roli @@ -2943,7 +2949,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nie je platný užívateľ LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nie je platný stav apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Prosím, vyberte iný spôsob platby. PayPal nepodporuje transakcií s obeživom, {0} '" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Vyhľadávacie pole {0} nie je platný +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Vyhľadávacie pole {0} nie je platný DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Môžete nájsť veci tým, že žiada "nájsť oranžovú zákazníkov '" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Je nám líto! Uživatel by měl mít kompletní přístup k vlastnímu záznamu. @@ -3005,7 +3011,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text k zobrazení k prolinkování www stránky pokud má tento formulář www stránku. Cesta odkazu bude automaticky generována na základě `page_name` a `parent_website_route` DocType: Feedback Request,Feedback Trigger,Spätná väzba Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Prosím nejprve nastavte {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Prosím nejprve nastavte {0} DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Záplata DocType: Async Task,Failed,Nepodarilo diff --git a/frappe/translations/sl.csv b/frappe/translations/sl.csv index fc4507641e..949cf68125 100644 --- a/frappe/translations/sl.csv +++ b/frappe/translations/sl.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook ime DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Opomba: Več seje bodo lahko v primeru mobilne naprave apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Omogočeno e-poštni nabiralnik za uporabnika {uporabniki} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Ne more poslati to e-pošto. Da ste prestopili pošiljanje mejo {0} emails v tem mesecu. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Trajno Submit {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Trajno Submit {0}? DocType: Address,County,County DocType: Workflow,If Checked workflow status will not override status in list view,Če Preverjeno stanje poteka dela ne bo spremenil stanje v pogledu seznama apps/frappe/frappe/client.py +280,Invalid file path: {0},Neveljavna datoteka pot: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Prosim apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Drevo DocType: User,User Emails,Uporabniške E-pošta DocType: User,Username,Uporabniško ime -apps/frappe/frappe/model/base_document.py +581,Value too big,Vrednost prevelika +apps/frappe/frappe/model/base_document.py +580,Value too big,Vrednost prevelika DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script test DocType: Contact,Department,Oddelek @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Dnevniki DocType: Custom DocPerm,This role update User Permissions for a user,Ta posodobitev vloga Uporabniške Dovoljenja za uporabnika apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Preimenovanje {0} DocType: Workflow State,zoom-out,Pomanjšaj -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Ne morem odpreti {0}, ko je njen primer odprta" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Ne morem odpreti {0}, ko je njen primer odprta" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} ne more biti prazen apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Pri knjigah apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,slike DocType: Communication,Reference Owner,referenčna lastnika DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Najmanjša obtoku frakcija enota (kovanec). Za primer 1 cent za USD in ga je treba vpisati kot 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, vrstica{1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, vrstica{1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Navedite FULLNAME. apps/frappe/frappe/model/document.py +904,Beginning with,Začenši z apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Predloga za uvoz podatkov @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Parent DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Če je omogočeno, bo moč gesla se izvrši na podlagi Minimalna vrednost Geslo Score. Vrednost 2 je srednje močna in 4 pa zelo močna." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Če je omogočeno, bo moč gesla se izvrši na podlagi Minimalna vrednost Geslo Score. Vrednost 2 je srednje močna in 4 pa zelo močna." DocType: About Us Settings,"""Team Members"" or ""Management""","""Člani skupine"" ali ""Vodstvo""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Privzeto za "Check" tip polja morajo biti bodisi "0" ali "1" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Privzeto za "Check" tip polja morajo biti bodisi "0" ali "1" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Včeraj DocType: Contact,Designation,Imenovanje DocType: Test Runner,Test Runner,Testna Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Je Objavljeno Polje DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,Videno od apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Dodaj več -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,"Ni všeč," +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,"Ni všeč," apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Nastavite oznako zaslona za področje apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Nepravilno vrednost: {0} mora biti {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Lastnosti sprememba polj (hide, samo za branje, dovoljenje itd)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Nastavitv apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administrator prijavljeni DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontakt možnosti, kot so "Sales poizvedbo Podpora Query" itd vsak na novo progo ali ločeni z vejicami." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Prenos -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Insert +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Insert apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Izberite {0} DocType: Print Settings,Classic,Classic DocType: Desktop Icon,Color,Barva @@ -122,7 +122,7 @@ DocType: Translation,Translation,prevod apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Namesti apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,gospod DocType: Custom Script,Client,Client -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,"Ta formular je bil spremenjen, ko ste ga naložili" +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,"Ta formular je bil spremenjen, ko ste ga naložili" DocType: User Permission for Page and Report,User Permission for Page and Report,Uporabnik Dovoljenje za stran in poročila DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Če ni nastavljen, bo natančnost valute odvisna od oblike števil" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Razlog apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Prosimo, navedite uporabnika" DocType: Email Unsubscribe,Email Unsubscribe,Email Odjavi DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Izberite sliko širine cca 150 slikovnih pik s prozornim ozadjem za najboljše rezultate. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Prvi uporabnik bo postala System Manager (lahko spremenite kasneje). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Prvi uporabnik bo postala System Manager (lahko spremenite kasneje). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Krog-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Nalaganje ... DocType: Email Domain,Email Domain,E-pošta domen DocType: Workflow State,italic,ležeče apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Za vsakogar -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Ne morem nastaviti Import brez Ustvari +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Ne morem nastaviti Import brez Ustvari apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Dogodek in drugih koledarjev. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,"Vsa polja so potrebni, da predloži pripombe." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Drag razvrstiti stolpce @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standardna stranska vrstica Meni apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,"Mape ""Dom"" in ""Priponke"" ni mogoče izbrisati" apps/frappe/frappe/config/desk.py +19,Files,datoteke apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Dovoljenja se uporabljajo na uporabnike, ki temelji na tisto, kar Vloge so dodeljeni." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Niste dovoljeno pošiljati e-pošto v zvezi s tem dokumentom -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Izberite atleast 1 stolpec {0} razvrstiti / skupini +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Niste dovoljeno pošiljati e-pošto v zvezi s tem dokumentom +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Izberite atleast 1 stolpec {0} razvrstiti / skupini DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Izberite to, če se testiranje plačilo z API-jem Sandbox" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Niste dovoljeno izbrisati standardnem spletišču Theme DocType: Feedback Trigger,Example,Primer @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Skupaj Naročniki apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Če vloga nima dostopa na ravni 0, nato pa višje ravni so nesmiselne." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Shrani kot DocType: Communication,Seen,Seen -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Prikaži več podrobnosti +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Prikaži več podrobnosti DocType: System Settings,Run scheduled jobs only if checked,"Run rednih delovnih mest, če preverja le" apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Bo prikazan samo, če so omogočene oddelek naslovi" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arhiv @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Skrij Postavka DocType: Address,Current,Trenutna DocType: Address,Current,Trenutna -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Povezani dokumenti apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Skupine DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,odstranite-krog @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filter apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} ne more imeti posebnih znakov kot {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Posodobite veliko vrednosti naenkrat. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Napaka: Dokument je bil spremenjen, po tem ko ste ga odprli" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ne privzeto Naslov Predloga našel. Ustvarite novo od nastavitev> Printing in Branding> Naslov predlogo. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} odjavljeni: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Ne morem nastaviti Določi Oddaj če ne Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Ne morem nastaviti Določi Oddaj če ne Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrira "{0}" DocType: Salutation,Administrator,Administrator @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Blog Naslov apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standardne vloge ni mogoče onemogočiti DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Glasilo -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"ni mogoče uporabiti sub-poizvedbe, da bi ga" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"ni mogoče uporabiti sub-poizvedbe, da bi ga" DocType: Web Form,Button Help,gumb Pomoč DocType: Kanban Board Column,purple,vijolična DocType: About Us Settings,Team Members,Člani ekipe @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,"Spravi svoj apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Vaša naročnina je iztekel {0}. Obnoviti, {1}." DocType: Workflow State,plus-sign,plus-znak apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Nastavitev že končana -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ni nameščen +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ni nameščen DocType: Workflow State,Refresh,Osveži DocType: Event,Public,Javno apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Nič pokazati @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Všeč apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Email podpora DocType: DocField,Print Hide If No Value,Natisni Skrij Če ne Vrednost DocType: Event,yellow,rumena -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Je Objavljeno Polje mora biti veljaven fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Je Objavljeno Polje mora biti veljaven fieldname apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Naloži Attachment DocType: Block Module,Block Module,Block modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Izvoz Predloga @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Nov račun je bil ustvarjen za vas na {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,navodila po e-pošti apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,navodila po e-pošti -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Vnesite Email Prejemnik (i) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Vnesite Email Prejemnik (i) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-pošta Flag čakalne vrste apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ne morejo identificirati odprta {0}. Poskusi kaj drugega. @@ -308,8 +306,8 @@ DocType: Communication,Message ID,sporočilo ID DocType: Property Setter,Field Name,Ime polja apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ni nastavljen. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ali -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Ime modula ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Naprej +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Ime modula ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Naprej DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,Potrdilo DocType: User,Tile,Tile @@ -318,6 +316,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Prikaži vse različice DocType: Workflow State,Print,Natisni DocType: User,Restrict IP,Omeji IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Nadzorna plošča apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,"Ne morem poslati e-pošto, v tem času" apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Iskanje ali vnesite ukaz DocType: Communication,Timeline Name,Časovnica Ime @@ -328,8 +327,8 @@ DocType: Contact,Sales Master Manager,Prodaja Master Manager apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Ime Tip dokumenta (DOCTYPE), ki ga želite na tem področju se povežejo s. npr Stranka" DocType: User,Roles Assigned,Vloge Namenski -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Pomoč pri iskanju -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Pomoč pri iskanju +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Pomoč pri iskanju +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Pomoč pri iskanju DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Vaša poizvedba je bila prejeta. Odgovorili vam bomo spet kmalu. Če imate kakršne koli dodatne informacije, vas prosimo, da odgovorite na to sporočilo." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Dovoljenja se samodejno pretvorijo v standardnih poročil in iskanja. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Uredi Postavka DocType: File,File URL,Datoteka URL DocType: Version,Table HTML,Tabela HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Ni rezultatov za ""Rezultati

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Dodaj naročnikov apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Prihajajoči dogodki za danes DocType: Email Alert Recipient,Email By Document Field,Email z dokumentom Field @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,"Znesek, ki temelji na terenskem" apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Uporabnik je obvezna za delnico DocType: DocField,Hidden,Skrita DocType: Web Form,Allow Incomplete Forms,Dovoli Nepopolne Obrazci -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} je treba nastaviti najprej +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} je treba nastaviti najprej apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Uporabite nekaj besed, se izognili pogoste fraze." DocType: Workflow State,plane,plane -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Ups. Vaše plačilo ni uspelo. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Če ste naložiti nove rekorde, »Imenovanje Series" postane obvezen, če je prisoten." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Get Opozorila za danes +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Get Opozorila za danes apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE lahko preimenovali le Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},Spremenjena vrednost {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Preverite e-pošto za potrditev -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Kratno ne more biti na koncu obliki +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Kratno ne more biti na koncu obliki DocType: Communication,Bounced,Odskočila DocType: Deleted Document,Deleted Name,izbrisan Ime apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistemske in uporabniki spletne strani @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument v vrsti DocType: GSuite Templates,Destination ID,destinacija ID DocType: Desktop Icon,List,Seznam DocType: Communication,Link Name,Link Name -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} v vrstici {1} ni mogoče skriti in obvezno brez privzeto +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Polje {0} v vrstici {1} ni mogoče skriti in obvezno brez privzeto DocType: System Settings,mm/dd/yyyy,mm / dd / llll apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Neveljavno geslo: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Neveljavno geslo: DocType: Print Settings,Send document web view link in email,Pošlji dokument web pogled povezavo v e-pošti apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Vaš Predlogi za dokument {0} je bil uspešno shranjen apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Prejšnja -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} vrstice za {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Sub-valuta. Za primer "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Izberite preneseno datoteko @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,Povezava apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nobena datoteka ni priložena DocType: Version,Version,Različica DocType: User,Fill Screen,Izpolnite zaslon -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ne morem prikazati tega drevesnega poročila zaradi manjkajočih podatkov. Najverjetneje je, da se filtrirajo zaradi dovoljenj." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Prosimo Nastavitev privzetega e-poštnega računa iz nastavitev> E-pošta> Email račun +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Ne morem prikazati tega drevesnega poročila zaradi manjkajočih podatkov. Najverjetneje je, da se filtrirajo zaradi dovoljenj." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Izberite datoteko apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Edit preko Upload -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Vrsta dokumenta ..., na primer stranke" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Vrsta dokumenta ..., na primer stranke" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Pogojem '{0}' je neveljavna DocType: Workflow State,barcode,črtna koda apps/frappe/frappe/config/setup.py +232,Add your own translations,Dodajte svoje prevode @@ -425,7 +425,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Sreda apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Razen iz vloge za dovoljenje pravilnika temelji, lahko uporabite dovoljenja uporabnika, ki temeljijo na DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ta dovoljenja se bodo uporabljale za vse transakcije, v katerih je dovoljena zapis povezane. Na primer, če je družba C dodana Uporabniški Permissions uporabnika X, bo uporabnik X lahko videli posle, ki jih ima podjetje C, kot povezanega vrednosti samo." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Polje Slika mora biti veljaven fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Polje Slika mora biti veljaven fieldname DocType: OAuth Client,Token,token DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (ime) subjekta, katerega lastnost je, da se določi" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Obnoviti, {0}." @@ -434,7 +434,7 @@ DocType: Web Form,Sidebar Items,Sidebar Items apps/frappe/frappe/installer.py +125,App {0} already installed,Aplikacija {0} že nameščen DocType: Workflow State,exclamation-sign,vzklik-znak apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,prikaži Dovoljenja -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Časovnica polje mora biti Link ali Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Časovnica polje mora biti Link ali Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Časovno obdobje apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Ganttov apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Stran {0} od {1} @@ -442,7 +442,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Predst apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","šifrirni ključ ni veljaven, preverite site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Če želite DocType: Kanban Board Column,darkgrey,temno siva -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Uspešna: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Uspešna: {0} do {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"ne more spremeniti podatke o uporabniku na demo. Prosimo, da se prijavite za nov račun na https://erpnext.com" apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Prosimo podvojite dokument da ustvarite spremembe apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Generacija PDF propadla zaradi napačno sliko povezave @@ -459,24 +459,24 @@ DocType: DocField,Collapsible,Zložljiva apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Shranjena apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Kaj potrebujete pomoč? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Možnosti za izberite. Vsaka možnost v novo vrstico. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Trajno Cancel {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Trajno Cancel {0}? DocType: Workflow State,music,glasba DocType: Web Page,Settings,Nastavitve apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Prosimo, navedite doctype" DocType: Print Format,Style Settings,Style Settings -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Polje razvrstitve {0} mora biti veljaven fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Polje razvrstitve {0} mora biti veljaven fieldname apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Več DocType: Contact,Sales Manager,Vodja prodaje apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Preimenovanje DocType: Print Format,Format Data,Oblika podatkov -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Like +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Like DocType: Customize Form Field,Customize Form Field,Prilagodite Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Dovoli Uporabnik DocType: OAuth Client,Grant Type,Vrsta Grant apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Preverite, kateri dokumenti so berljive uporabnik" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Ad aplikacijo ni dovoljeno -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,uporabite% kot nadomestni znak -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-pošta domene ni nastavljen za ta račun, ustvariti enega?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,uporabite% kot nadomestni znak +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-pošta domene ni nastavljen za ta račun, ustvariti enega?" DocType: User,Reset Password Key,Ponastavi geslo Key DocType: Email Account,Enable Auto Reply,Omogoči Auto Odgovori apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Ni videl @@ -519,7 +519,7 @@ DocType: DocField,Set Only Once,Nastavite samo enkrat DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Prejemnik DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Uporabniško ime {0} že obstaja -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Ne morem nastaviti uvoz, kakor je ne uvaža {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Ne morem nastaviti uvoz, kakor je ne uvaža {1}" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Prišlo je do napake v vašem Naslov predlogo {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,hdd @@ -531,7 +531,7 @@ DocType: Communication,From Full Name,Od Polno ime apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Nimate dostopa do Poročilo: {0} DocType: User,Send Welcome Email,Pošlji Welcome Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Naložite datoteko CSV, ki vsebuje vse uporabniške dovoljenja v istem formatu kot Download." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Odstrani filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Odstrani filter DocType: Address,Daman and Diu,Daman in Diu DocType: Address,Personal,Osebni apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -562,11 +562,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standardna DOCTYPE ne more imeti privzeti format tiskanja, uporabite Prilagodi obrazec" DocType: Report,Query,Poizvedba DocType: DocType,Sort Order,Sort Order -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"V pogledu seznama" ni dovoljen za tip {0} v vrstici {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"V pogledu seznama" ni dovoljen za tip {0} v vrstici {1} DocType: Custom Field,Select the label after which you want to insert new field.,"Izberite oznako, po kateri želite vstaviti novo polje." ,Document Share Report,Dokument Share Report DocType: User,Last Login,Zadnja prijava -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname je potrebno v vrstici {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname je potrebno v vrstici {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Stolpec DocType: Custom Field,Adds a custom field to a DocType,Doda polje po meri za parameter DocType DocType: File,Is Home Folder,Je Home Folder @@ -592,7 +592,7 @@ DocType: File,Folder,Mapa DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Upravljalec glasil apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Možnost 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Vse objave +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} in {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Prijava napake med prošenj. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} je bila uspešno dodana v skupine Pošlji. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -602,7 +602,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,kazalnik DocType: DocShare,Everyone,Vsakdo DocType: Workflow State,backward,nazaj -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo eno pravilo dovoljeno z isto vlogo, ravni in {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Samo eno pravilo dovoljeno z isto vlogo, ravni in {1}" DocType: Email Queue,Add Unsubscribe Link,Dodaj povezavo za odjavo apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Ni komentarjev. Začnite novo razpravo. DocType: Workflow State,share,Delež @@ -621,7 +621,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ni dov apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Poglej Naročniki apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,gospa DocType: Website Theme,Background Color,Barva ozadja -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Tam so bile napake pri pošiljanju e-pošte. Prosim poskusi znova. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Tam so bile napake pri pošiljanju e-pošte. Prosim poskusi znova. DocType: Portal Settings,Portal Settings,Portal Nastavitve DocType: Web Page,0 is highest,0 je najvišja apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Ali ste prepričani, da želite znova povezati to sporočilo {0}?" @@ -648,7 +648,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Nastavitve kontakta apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Iskanje ... DocType: Workflow State,text-width,text-širina -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Največja Limit Attachment za ta zapis je dosegel. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Največja Limit Attachment za ta zapis je dosegel. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Naslednja obvezna polja je treba izpolniti:
DocType: Email Alert,View Properties (via Customize Form),Poglejte nepremičnine (via Prilagajanje obliki) DocType: Note Seen By,Note Seen By,Opomba vidijo @@ -658,17 +658,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Poročilo poročila Builder jih poročilo graditelja neposredno upravlja. Nič za početi. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Prosimo, preverite svoj e-poštni naslov" apps/frappe/frappe/model/document.py +903,none of,nobena -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Pošlji mi kopijo +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Pošlji mi kopijo apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Naloži dovoljenja uporabnika DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,spletna stran apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Označene predmete bodo prikazane na namizju -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ni mogoče nastaviti posmaznega tipa +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ni mogoče nastaviti posmaznega tipa apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban odbor {0} ne obstaja. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} Trenutno pregledujejo ta dokument DocType: ToDo,Assigned By Full Name,Namenski Z Polno ime apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} posodobljen -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Poročilo se ne more določiti Single vrste +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Poročilo se ne more določiti Single vrste apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dni nazaj DocType: Email Account,Awaiting Password,Čakanje geslo DocType: Address,Address Line 1,Naslov Line 1 @@ -678,7 +678,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Države za potek dela (npr Osnutek, Odobren, Preklicano)." DocType: Print Settings,Allow Print for Draft,Dovoli Print za osnutek apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Nastavite Količina -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Predloži ta dokument za potrditev +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Predloži ta dokument za potrditev DocType: Contact,Unsubscribed,Odjavljeni apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Nastavitev po meri vloge za stran in poročila apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Ocena: @@ -686,7 +686,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Orodje za uvoz podatkov DocType: Address,Dadra and Nagar Haveli,Dadra in Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Prenašanje datotek, počakajte nekaj sekund." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Priložite svojo sliko +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Priložite svojo sliko apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Vrednosti Spremenjeno DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Povezava na stran, ki jo želite odpreti. Pustite prazno, če želite, da je matična skupina." @@ -701,7 +701,7 @@ DocType: Print Format,Align Labels to the Left,Prilagoditi Nalepke za levico DocType: Help Article,Expert,Strokovnjak DocType: Workflow State,circle-arrow-right,Krog-arrow-desno DocType: LDAP Settings,LDAP Server Url,LDAP Server URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Ne morem odpreti primerek ko {0} je njegova odprta +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Ne morem odpreti primerek ko {0} je njegova odprta apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,V čakalni vrsti za namestitev DocType: Custom DocPerm,Custom DocPerm,meri DocPerm DocType: Newsletter,Send Unsubscribe Link,Pošlji povezavo za odjavo @@ -718,7 +718,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Aplikacija {0} Odstranili DocType: Custom DocPerm,Apply User Permissions,Uporabi dovoljenja uporabnika DocType: User,Modules HTML,Moduli HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavitve> Uporabniške Dovoljenja direktor apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Manjkajoče vrednosti Obvezno DocType: DocType,Other Settings,druge nastavitve DocType: Social Login Keys,Frappe,frape @@ -737,7 +736,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,Nosilec Žeton OAuth apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Izbran ni noben dokument apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Dogodek -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Na {0}, {1} je napisal:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Na {0}, {1} je napisal:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Ne morete izbrisati standardne polje. Lahko ga skrijete, če želite" DocType: Top Bar Item,For top bar,Za zgornji vrstici apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Ni bilo mogoče ugotoviti {0} @@ -751,7 +750,7 @@ DocType: Role,Desk Access,desk dostop DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Server Error: Prosimo, preverite svoje strežniške dnevnike ali se obrnite na tehnično podporo." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Dobrodošli email poslan -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Oglejmo pripraviti sistem za prvo uporabo. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Oglejmo pripraviti sistem za prvo uporabo. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Oblikovan apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Že registrirano DocType: System Settings,Float Precision,Float Precision @@ -765,7 +764,7 @@ DocType: Web Form,Allow Print,Dovoli Natisni apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Ni Apps Nameščeni apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Označite igrišče Obvezno DocType: Communication,Clicked,Kliknil -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},"Ne dovolite, da '{0}' {1}" +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},"Ne dovolite, da '{0}' {1}" DocType: User,Google User ID,Google User ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Načrtovano za pošiljanje DocType: DocType,Track Seen,Track Seen @@ -834,7 +833,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Simultano seje DocType: OAuth Client,Client Credentials,Client akreditivi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Odprite modul ali orodje +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Odprite modul ali orodje DocType: Communication,Delivery Status,Dostava Status DocType: Module Def,App Name,App Name apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Največja velikost datoteke dovoljeno je {0} MB @@ -846,8 +845,8 @@ DocType: Feedback Request,Reference Communication,referenčna Sporočilo DocType: Email Queue,Unsubscribe Method,Odjava Metoda DocType: GSuite Templates,Related DocType,Podobni DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Uredite dodati vsebino -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,izberite jezik -apps/frappe/frappe/__init__.py +510,No permission for {0},Ni dovoljenja za {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,izberite jezik +apps/frappe/frappe/__init__.py +509,No permission for {0},Ni dovoljenja za {0} DocType: DocType,Advanced,Napredno apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Zdi ključ API ali API Secret je narobe !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Reference: {0} {1} @@ -869,7 +868,7 @@ DocType: Customize Form,Enter Form Type,Vnesite Form Type apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Ni zapisov označeni. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Odstrani polje DocType: User,Send Password Update Notification,Pošlji geslo Update Notification -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Dopuščanje DOCTYPE, DOCTYPE. Bodi previden!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Dopuščanje DOCTYPE, DOCTYPE. Bodi previden!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Prilagojene Formati za tiskanje, e-pošte" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Posodobljeno Za novo različico DocType: Custom Field,Depends On,Odvisno od @@ -963,6 +962,7 @@ apps/frappe/frappe/model/document.py +902,one of,eden od apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Izberite datoteko kopirati apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Preverjanje en trenutek apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Prikaži oznake +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Če veljajo strogi Uporabnik dovoljenje preveriti in za uporabo Dovoljenje je določena za parameter DocType za uporabnika, nato pa so vsi dokumenti, kjer je vrednost povezave prazno, ne bodo prikazani na ta uporabnik" DocType: Address,Billing,Zaračunavanje DocType: Email Queue,Not Sent,Ni Poslano DocType: Web Form,Actions,Dejanja @@ -993,6 +993,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,Jasno apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Vsak dan prireditve morala končati na isti dan. DocType: Communication,User Tags,Uporabniške Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Pridobivanje slike .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavitev> Uporabnik DocType: Workflow State,download-alt,Download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Nalaganje App {0} DocType: Communication,Feedback Request,povratne informacije Zahteva @@ -1010,7 +1011,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Varnostne kopije apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Dodaj stik DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Neobvezno: Vedno pošiljanje teh ID-ji. Vsak e-poštni naslov na novo vrstico -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Skrij Podrobnosti +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Skrij Podrobnosti DocType: Workflow State,Tasks,Naloge DocType: Event,Tuesday,Torek DocType: Blog Settings,Blog Settings,Blog Nastavitve @@ -1030,9 +1031,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Napišite datoteko Python v isti mapi, kjer je to shranjeno in se vrne stolpec in rezultat." DocType: DocType,Sort Field,Razvrsti Field DocType: Razorpay Settings,Razorpay Settings,Nastavitve Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Urejanje Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne more biti obvezna -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","npr. Če Uporabi Uporabniške Dovoljenja se preveri za Prijavi parameter DocType vendar ne Uporabniške Dovoljenja so opredeljeni v poročilu za uporabnika, nato pa so vsi Poročila izkazalo, da je ta uporabnik" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Urejanje Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Polje {0} tipa {1} ne more biti obvezna apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Dodaj Več apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Skrij graf DocType: System Settings,Session Expiry Mobile,Potek mobilne seje @@ -1047,6 +1047,7 @@ DocType: Communication,Delayed,Zapoznelo apps/frappe/frappe/config/setup.py +128,List of backups available for download,Seznam varnostnih kopij na voljo za prenos apps/frappe/frappe/www/login.html +89,Sign up,Prijavite se DocType: Test Runner,Output,izhod +DocType: Email Alert,Set Property After Alert,Nastavite Nepremičnine Po Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Dodaj polj na obrazcih. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Izgleda, da je nekaj narobe s konfiguracijo Paypal te spletne strani." DocType: File,rgt,RGT @@ -1054,6 +1055,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,leaf DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,E-pošta ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Če Uporabi uporabniške Dovoljenja se preverja poročila parameter DocType vendar ni uporabniških dovoljenj so opredeljeni v poročilu za uporabnika, nato pa so vsi Poročila izkazalo, da ta uporabnik" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Seznam virov, ki jih bo imela stranka App dostop do ko uporabnik to dovoli.
na primer projekt" DocType: Translation,Translated Text,Prevedeno Besedilo DocType: Contact Us Settings,Query Options,Možnosti poizvedbe @@ -1071,7 +1073,7 @@ DocType: Address,Contacts,Kontakti DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Poročilo o vseh delnic dokumentov apps/frappe/frappe/www/update-password.html +18,New Password,Novo geslo -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} manjka +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} manjka apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,"Žal! Ne, ne moreš brisati samodejno ustvarjena komentarje" DocType: Website Theme,Style using CSS,Style uporabo CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referenčna DOCTYPE @@ -1126,7 +1128,7 @@ DocType: User,Block Modules,Block Moduli apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Vračanje dolžino {0} za '{1}' v '{2}'; Nastavitev dolžine kot {3} povzroči krajšanje podatkov. DocType: Print Format,Custom CSS,Meri CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Dodaj komentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Prezreti: {0} do {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Prezreti: {0} do {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Prijava napake na avtomatiziranih dogodkov (Scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Ni veljaven vrednosti ločene z vejico (CSV datoteke) @@ -1135,7 +1137,7 @@ DocType: Email Account,Default Incoming,Privzeto Dohodni DocType: Workflow State,repeat,Ponavljanje DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Če je onemogočeno, bo to vlogo je treba odstraniti iz vseh uporabnikov." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Pomoč pri iskanju +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Pomoč pri iskanju apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Registrirana, vendar je onemogočeno" DocType: DocType,Hide Copy,Skrij Kopiraj apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Počistite vse vloge @@ -1167,7 +1169,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Država apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Naslovi DocType: Communication,Shared,v skupni rabi -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Priložiti dokument Natisni +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Priložiti dokument Natisni DocType: Bulk Update,Field,field DocType: Communication,Received,Prejetih DocType: Social Login Keys,Google Client ID,Google Client ID @@ -1188,12 +1190,12 @@ DocType: Report,Query Report,Poizvedba Poročilo DocType: User,Set New Password,Nastavi novo geslo DocType: User,Github User ID,GitHub User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Če je vrsta dokumenta -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne morete izbrisati ali preklicati, ker {0} {1} je povezan s {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Ne morete izbrisati ali preklicati, ker {0} {1} je povezan s {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Unknown app {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S ni veljavno obliko poročila. Poročilo format mora \ eno od naslednjih% s DocType: Communication,Chat,Klepet -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} pojavi večkrat v vrsticah {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} pojavi večkrat v vrsticah {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} od {1} do {2} vrstici # {3} DocType: Communication,Expired,Potekel DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Število stolpcev za polja v mreži (Skupaj Stolpci v mreži mora biti manj kot 11) @@ -1203,30 +1205,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Imate račun? Vpiš apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Neznan Print Format: {0} DocType: Workflow State,arrow-down,Puščica navzdol apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Collapse -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Uporabnik ne sme izbrisati {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Uporabnik ne sme izbrisati {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Zadnjič posodobljeno DocType: Help Article,Likes,Likes DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Script koda apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Ustvari uporabniški Email apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Ustvari uporabniški Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Ni Dovoljenja Določene +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Ni Dovoljenja Določene apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globalne nastavitve: Uporabniki bodo lahko izbrali preverjene ikone samo apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nismo našli DocType: Custom Role,Custom Role,Vloga meri apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Domov / Testna Mapa 2 DocType: System Settings,Ignore User Permissions If Missing,Ignoriraj dovoljenja uporabnika Če Manjka -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Prosimo, shranite dokument pred nalaganjem." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Prosimo, shranite dokument pred nalaganjem." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Vnesite geslo DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Dostop Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Dodaj še en komentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Uredi DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Odjavili iz novice -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Zložite mora priti pred oddelkom Break +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Zložite mora priti pred oddelkom Break apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Zadnja sprememba DocType: Workflow State,hand-down,roko navzdol DocType: Address,GST State,DDV država -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Ne morem nastaviti Opusti brez Submit +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Ne morem nastaviti Opusti brez Submit DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Tam so bile napake. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Preusmerjeni URI vezani na avtorizacijski zakonika @@ -1245,7 +1247,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Moje DocType: Website Theme,Text Color,Barva besedila DocType: Desktop Icon,Force Show,Force Prikaži apps/frappe/frappe/auth.py +78,Invalid Request,Neveljavna Zahteva -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ta oblika nima nobenega vnosa +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ta oblika nima nobenega vnosa apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Session izteka mora biti v obliki {0} DocType: Website Sidebar Item,Group,Skupina DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Izberite target = "_blank", da se odpre v novo stran." @@ -1254,7 +1256,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignoriraj kodiranje napake. DocType: Workflow State,wrench,Ključ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Ni nastavljeno -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Nastavitev> Uporabnik DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Onemogoči vpišeš apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Sit tesen, medtem ko je vaš sistem pa nastavitev. To lahko traja nekaj trenutkov." @@ -1265,7 +1266,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Dodaj komentar DocType: DocField,Mandatory,Obvezno apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul za Izvoz -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Ne osnovno dovoljenja set +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Ne osnovno dovoljenja set apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Vaša naročnina bo potekla na {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link za rezervno bo poslano na naslednji elektronski naslov: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Pomen Submit Cancel, Spremeni" @@ -1278,11 +1279,11 @@ DocType: Desktop Icon,query-report,poizvedba-poročilo apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Dodeljena {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filtri shranjene DocType: DocField,Percent,Odstotek -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Prosim nastavite filtre +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Prosim nastavite filtre apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Povezan z DocType: Workflow State,book,knjiga DocType: Website Settings,Landing Page,Ciljna stran -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Napaka v Script meri +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Napaka v Script meri apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Ime apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Uvoz Zahteva čakalni vrsti. To lahko traja nekaj trenutkov, zato bodite potrpežljivi." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,"Ni Pravice, določene za ta merila." @@ -1294,7 +1295,7 @@ DocType: System Settings,Allow Login using Mobile Number,Dovoli Prijava z uporab apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"Nimate dovolj pravic za dostop do tega vira. Obrnite na svojega skrbnika, da bi dobili dostop." DocType: Custom Field,Custom,Po meri apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert temeljijo na različnih merilih. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Prispevkov vložene po {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Prispevkov vložene po {0} DocType: Email Alert,Send alert if date matches this field's value,"Pošlji opozorilo, če datum se ujema z vrednostjo tega področja je" DocType: Workflow,Transitions,Prehodi apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Odstrani {0} in izbrisati vse podatke? @@ -1303,9 +1304,8 @@ DocType: User,Login After,Prijava Po DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tiskanje DocType: Workflow State,thumbs-up,všeč mi je -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-poštni račun ni nastavljen. Prosimo, da ustvarite nov e-poštni račun s Setup> E-pošta> Email račun" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Natančnost mora biti med 1 in 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Natančnost mora biti med 1 in 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,in DocType: Error Snapshot,Frames,Okvirji @@ -1314,7 +1314,7 @@ DocType: About Us Team Member,Image Link,Povezava slike DocType: Auto Email Report,Report Filters,poročilo Filtri apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,zdaj DocType: Workflow State,step-backward,korak nazaj -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Prosim, nastavite tipke za dostop Dropbox v vašem mestu config" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Izbriši ta zapis omogoča pošiljanje na ta e-poštni naslov apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Samo obvezna polja so potrebni za nove zapise. Lahko izbrišete neobvezujočih stolpce, če želite." @@ -1336,8 +1336,7 @@ DocType: File,Is Attachments Folder,Je Priponke Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Razširi vse apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Valid Prijava id potrebno. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re-open -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Preklicali ste plačilo -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Izberite veljavno datoteko CSV s podatki +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Izberite veljavno datoteko CSV s podatki apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0}-un delijo ta dokument z {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Prehod stanja dokumenta od {0} do {1} ni dovoljen. DocType: DocType,"Make ""name"" searchable in Global Search","Poskrbite, "ime" iskati v globalni Iskanje" @@ -1350,7 +1349,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Ori DocType: Help Category,Help Category,Pomoč kategorije apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Uporabnik {0} je onemogočena apps/frappe/frappe/www/404.html +8,Page missing or moved,Page manjka ali premaknjena -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Urejanje {0} lastnosti DocType: DocType,Route,Route apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay nastavitve vplačilo DocType: DocField,Name,Name @@ -1358,8 +1356,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Iskanje docs apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Iskanje docs DocType: OAuth Authorization Code,Valid,Velja -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Odpri povezavo -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Tvoj jezik +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Odpri povezavo +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Tvoj jezik apps/frappe/frappe/desk/form/load.py +46,Did not load,Niso obremenitve apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Dodaj Row DocType: Tag Category,Doctypes,Doctypes @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Se zahteva Po DocType: Address,Lakshadweep Islands,Lakshadweep otoki apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Lahko Pisanje apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Nekateri dokumenti, kot so na računu, ne smemo spreminjati in je dokončna. Končni država takšnih dokumentov se imenuje Submitted. Lahko omejite vloge lahko Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Niste dovoljeno izvažati to poročilo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Niste dovoljeno izvažati to poročilo apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 izbrani element DocType: Newsletter,Test Email Address,Testna e-poštni naslov DocType: ToDo,Sender,Sender @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Uvoz .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ID dokumenta DocType: Print Settings,Letter,Pismo -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Polje Slika mora biti tipa Priložite sliko +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Polje Slika mora biti tipa Priložite sliko DocType: DocField,Columns,stolpci DocType: Async Task,Succeeded,Naslednik apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},"Obvezna polja, ki se zahtevajo v {0}" @@ -1459,7 +1457,7 @@ DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Nastavitve za O podjetju Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Uredi po meri HTML DocType: Error Snapshot,Error Snapshot,Napaka Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,V +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,V DocType: Email Alert,Value Change,Vrednost Spremeni DocType: Standard Reply,Standard Reply,Standardna Odgovori apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Širina vnosno polje @@ -1475,12 +1473,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Uporabite ta fieldname ustvarjati naslov apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Uvoz Email Od apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Povabi kot uporabnik -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Izberite priponke +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Izberite priponke apps/frappe/frappe/model/naming.py +94, for {0},za {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Je prišlo do napak. Javi to. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Niste dovoljeno natisniti dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Niste dovoljeno natisniti dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Prosim nastavite filtre vrednost v poročilo Filter tabeli. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Nalaganje Poročilo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Nalaganje Poročilo apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Vaša naročnina bo potekla danes. DocType: Page,Standard,Standardni apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Priložite datoteko @@ -1510,7 +1508,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionalne Razširitve DocType: LDAP Settings,Base Distinguished Name (DN),Osnovna razločevalno ime (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Pusti ta pogovor -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Možnosti ni nastavljen za povezavo področju {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Možnosti ni nastavljen za povezavo področju {0} DocType: Customize Form,"Must be of type ""Attach Image""",Morajo biti tipa "Pripni sliko" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Počisti vse apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Ne, ne moreš nastavljen "samo za branje" za področje {0}" @@ -1553,9 +1551,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Zapisek apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Prijavi napako apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedback pogoji se ne ujemata -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Časovnica polje mora biti veljaven fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Časovnica polje mora biti veljaven fieldname DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Vrstica # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Vrstica # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Novo geslo po e-pošti apps/frappe/frappe/auth.py +245,Login not allowed at this time,Prijava ni dovoljeno v tem času DocType: Email Account,Email Sync Option,E-pošta Sync Možnost @@ -1577,7 +1575,7 @@ DocType: DocField,Text,Besedilo apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standardni odgovori na skupna vprašanja. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Privzeto Pošiljanje DocType: Workflow State,volume-off,Obseg-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Všeč {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Všeč {0} DocType: Footer Item,Footer Item,Noga Element ,Download Backups,Prenesi Varnostne kopije apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Domov / Testna Mapa 1 @@ -1612,7 +1610,7 @@ DocType: Web Page,Text Align,Besedilo Poravnava apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Ime ne sme vsebovati posebnih znakov, kot je {0}" DocType: Contact Us Settings,Forward To Email Address,Posreduj na elektronski naslov apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Prikaži vse podatke -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Naslov polje mora biti veljaven fieldname +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Naslov polje mora biti veljaven fieldname apps/frappe/frappe/config/core.py +7,Documents,Dokumenti DocType: Email Flag Queue,Is Completed,je končan apps/frappe/frappe/www/me.html +22,Edit Profile,Uredi profil @@ -1622,8 +1620,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","To polje se pojavi le, če ima fieldname tu opredeljena vrednost ALI pravila so prave (primeri): myfield eval: doc.myfield == "Moja vrednost" eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,danes -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,danes +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,danes +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,danes apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Ko ste to nastavljeno, bodo uporabniki lahko le dostop do dokumentov (npr. Blog post), kjer je povezava obstaja (npr. Blogger)." DocType: Error Log,Log of Scheduler Errors,Dnevnik Scheduler Napake DocType: User,Bio,Bio @@ -1647,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 zvezdica pa najnižja in 5 zvezdic predstavlja najvišjo oceno DocType: Event,Ref Name,Ref Name DocType: Web Page,Center,Center +DocType: Email Alert,Value To Be Set,"Vrednost, ki jo določi" apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Prva raven DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Zastopa države dovoljene v enem dokumentu in vlogo, ki spremeni stanje." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Osveži Form @@ -1667,18 +1666,18 @@ DocType: DocType,Has Web View,Ima spletno View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","ime DOCTYPE se mora začeti s črko in je lahko sestavljena samo iz črk, številk, presledkov in podčrtaj" DocType: Communication,Spam,Nezaželena pošta DocType: Integration Request,Integration Request,integracija Zahteva -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Dragi +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Dragi DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Računi uporabnikov DocType: Web Page,HTML for header section. Optional,HTML za oddelek glavi. Neobvezno apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ta funkcija je popolnoma nov in še vedno eksperimentalni -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Največje {0} vrstice dovoljeno +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Največje {0} vrstice dovoljeno DocType: Email Unsubscribe,Global Unsubscribe,Globalno Odjavi apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,To je zelo pogost geslo. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Poglej DocType: Communication,Assigned,Namenski DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Izberite Print Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Izberite Print Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kratke vzorci na tipkovnici je lahko uganiti DocType: Portal Settings,Portal Menu,portal Meni apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Dolžina {0} mora biti med 1 in 1000 @@ -1717,7 +1716,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Uporabnik ne more iskati apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Neveljavna Output Format DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Uporabi to pravilo, če je uporabnik lastnik" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Bo vaša prijava ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Bo vaša prijava ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Zgradite poročilo DocType: Note,Notify users with a popup when they log in,"Obvesti uporabnikom ljudstvo, ko se prijavite" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ne obstaja, izberite nov cilj, da se združijo" @@ -1736,17 +1735,18 @@ DocType: User Permission for Page and Report,Roles Permission,vloge Dovoljenje apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Update DocType: Error Snapshot,Snapshot View,Posnetek View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Prosimo, shranite Newsletter pred pošiljanjem" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Možnosti mora biti veljaven DOCTYPE za področje {0} v vrstici {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} leto (-e) nazaj +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Možnosti mora biti veljaven DOCTYPE za področje {0} v vrstici {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Urejanje lastnosti DocType: Patch Log,List of patches executed,Seznam obliži usmrčen apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} že odjavljeni -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Sporočilo Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Sporočilo Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Izberite drug način plačila. Razorpay ne podpira transakcije v valuti, "{0}"" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Čakalni vrsti za varnostno kopiranje. To lahko traja nekaj minut do ene ure. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Vnos OAuth Client aplikacijo -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ne more biti "{2}". To bi morala biti ena od "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ne more biti "{2}". To bi morala biti ena od "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ali {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Pokaži ali Skrij ikone na namizju apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Geslo Update @@ -1773,7 +1773,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Prikaži Prelomi vrstic po oddelkih DocType: Blogger,Short Name,Kratko ime apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Stran {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Ste izbiro Sync možnost kot VSE, se je RESYNC vse \ brati kot neprebrano sporočilo iz strežnika. To lahko povzroči tudi podvajanje \ komunikacije (e-pošta)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,datoteke Velikost @@ -1785,6 +1785,7 @@ DocType: Contact,Purchase Manager,Nakup Manager DocType: Custom Script,Sample,Vzorec apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorizirane oznake DocType: Event,Every Week,Vsak teden +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"E-poštni račun ni nastavljen. Prosimo, da ustvarite nov e-poštni račun s Setup> E-pošta> Email račun" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Kliknite tukaj, da preverite svojo porabo ali nadgraditi na višjo načrta" DocType: Custom Field,Is Mandatory Field,Je obvezno polje DocType: User,Website User,Spletna stran Uporabnik @@ -1808,16 +1809,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Stranska vrstica po meri Meni DocType: Workflow State,pencil,svinčnik apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Klepetajte sporočila in druga obvestila. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Vstavite Potem ni mogoče nastaviti kot {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Vstavite Potem ni mogoče nastaviti kot {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} z apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Nastavitev e-pošte računa vnesite geslo za: DocType: Workflow State,hand-up,roko gor DocType: Blog Settings,Writers Introduction,Pisatelji Predstavitev DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Napaka pri ocenjevanju Email Alert {0}. Popravite svojo predlogo. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Napaka pri ocenjevanju Email Alert {0}. Popravite svojo predlogo. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,"Izberite Document Type, ali vloga za začetek." DocType: Contact,Passive,Pasivna DocType: Contact,Accounts Manager,Accounts Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Vaše plačilo je odpovedan. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Izberite vrsto datoteke DocType: Help Article,Knowledge Base Editor,Znanje Osnovna Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Stran ni bila najdena @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,Vrsta nepremičnine DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Le Administrator lahko shranite standardno poročilo. Prosimo, preimenovanje in shranite." DocType: System Settings,Background Workers,Opravila v ozadju +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} nasprotju z meta predmetu DocType: Deleted Document,Data,Podatki apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Stanje dokumenta apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Ti so {0} od {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Prikaži User Permissions apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Morate biti prijavljeni in imajo System Manager vlogo, da bi lahko za dostop do varnostnih kopij." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,preostala -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Prosimo, shranite pred namestitvijo." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Prosimo, shranite pred namestitvijo." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Dodana {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Privzeta tema je postavljena v {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype se ne more spremeniti od {0} do {1} v vrstici {2} @@ -1889,11 +1892,10 @@ DocType: System Settings,System Settings,Sistemske nastavitve apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Začetek seje ni uspelo apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ta e-pošta je bila poslana na {0} in kopira na {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Prosimo Nastavitev privzetega e-poštnega računa iz nastavitev> E-pošta> Email račun -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Ustvari nov {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Ustvari nov {0} DocType: Email Rule,Is Spam,je Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Poročilo {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Odpri {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Odpri {0} DocType: OAuth Client,Default Redirect URI,Privzeti Preusmeritev URI DocType: Email Alert,Recipients,Prejemniki DocType: Workflow State,ok-sign,ok-znak @@ -1911,6 +1913,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Članki ,Modules Setup,Moduli Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Tip: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Vaše plačilo ni uspelo. DocType: Communication,Unshared,več razveljaviti DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul Not Found @@ -1958,7 +1961,7 @@ DocType: Website Settings,Brand Image,Brand Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Postavitev zgornji vrstici za krmarjenje, noge in logotip." DocType: Web Form Field,Max Value,Max Vrednost -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Za {0} na ravni {1} v {2} v vrstici {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Za {0} na ravni {1} v {2} v vrstici {3} DocType: Contact,All,Vsi DocType: Email Queue,Recipient,Prejemnik DocType: Communication,Has Attachment,ima prilogo @@ -1975,7 +1978,8 @@ DocType: Workflow State,align-right,uskladiti-desno DocType: Auto Email Report,Email To,E-mail: apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Mapa {0} ni prazna DocType: Page,Roles,Vloge -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Polje {0} ni mogoče izbrati. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Napaka: manjka na vrednost {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Polje {0} ni mogoče izbrati. DocType: System Settings,Session Expiry,Potek seje DocType: Workflow State,ban-circle,ban-krog DocType: Email Flag Queue,Unread,neprebrano @@ -1990,7 +1994,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Uporabniške Privzeto apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Ustvari novo DocType: Workflow State,chevron-down,Chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email ne pošlje na {0} (odjavili / onemogočeno) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email ne pošlje na {0} (odjavili / onemogočeno) DocType: Async Task,Traceback,Izslediti DocType: Currency,Smallest Currency Fraction Value,Najmanjša Valuta Frakcija Vrednost apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Dodeli @@ -2001,12 +2005,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,iz DocType: Website Theme,Google Font (Heading),Google Font (Naslov) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Izberite skupino vozlišče prvi. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Poišči {0} v {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Poišči {0} v {1} DocType: OAuth Client,Implicit,implicitno DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Pripni kot komunikaciji proti tej parameter DocType (mora imeti polja, lahko "status", "Predmet")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI za sprejemanje avtorizacijsko kodo, ko uporabnik dovoljuje dostop, kot tudi odzivi odpovedjo. Običajno REST končna točka izpostavljena s strani naročnika App.
na primer http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ni dovoljeno spreminjati {0} po predložitvi +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ni dovoljeno spreminjati {0} po predložitvi DocType: Communication,Comment Type,Tip komentarja DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Uporabniki @@ -2021,7 +2025,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,filter podatkov DocType: Auto Email Report,Filter Data,filter podatkov apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Dodaj oznako -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Priložite datoteko najprej. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Priložite datoteko najprej. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Bilo je nekaj napak, ki določajo ime, se obrnite na skrbnika" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Dohodni e-poštni račun ni pravilen apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2036,11 +2040,11 @@ DocType: Blog Post,Email Sent,Email Sent DocType: DocField,Ignore XSS Filter,Ignoriraj XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,odstrani apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Nastavitve Dropbox backup -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Pošlji kot e-pošto +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Pošlji kot e-pošto DocType: Website Theme,Link Color,Barva Povezave apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Uporabnik {0} ni mogoče onemogočiti apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Dragi System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Tvoja država +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Tvoja država DocType: Event,Sunday,Nedelja apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,V Grid View DocType: Address Template,Template,Predloga @@ -2048,7 +2052,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Nastavitve LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,O spremembi apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal nastavitve plačilo gateway -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) boste dobili okrnjena, saj največ znakov dovoljene je {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: "{1}" ({3}) boste dobili okrnjena, saj največ znakov dovoljene je {2}" DocType: OAuth Client,Resource Owner Password Credentials,Virov Lastnik Geslo akreditivi DocType: OAuth Client,Response Type,Vrsta odgovor apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,max Uporabniki @@ -2065,7 +2069,7 @@ DocType: DocField,Table,Preglednica DocType: File,File Size,Velikost datoteke apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Morate biti prijavljeni, da predloži ta obrazec" DocType: User,Background Image,Ozadje slike -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Izberite vašo državo, časovni pas in valuto" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Izberite vašo državo, časovni pas in valuto" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,med DocType: Async Task,Queued,V čakalni vrsti @@ -2074,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Ustvari apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Neveljaven Filter: {0} DocType: Email Account,no failed attempts,no neuspešnih poskusov +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ne privzeto Naslov Predloga našel. Ustvarite novo od nastavitev> Printing in Branding> Naslov predlogo. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App ključ za dostop DocType: OAuth Bearer Token,Access Token,Dostopni žeton @@ -2091,8 +2096,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,GitHub ime DocType: DocType,Image View,Image View apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Izgleda, da je šlo nekaj narobe v času transakcije. Ker nismo potrdili plačila, bo Paypal vam samodejno povrne ta znesek. Če se ne, nam pošljite e-pošto in omenil korelacija ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Vključujejo simbole, številke in velike črke v geslom" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vstavite Po področju "{0}", naveden v polju po meri '{1}', z oznako '{2}', ne obstaja" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Vključujejo simbole, številke in velike črke v geslom" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Vstavite Po področju "{0}", naveden v polju po meri '{1}', z oznako '{2}', ne obstaja" DocType: Workflow State,signal,Signal DocType: DocType,Show Print First,Show Print Prva apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter za objavo @@ -2123,14 +2128,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Datoteke '{0}' ni bilo mogoče najti apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Odstrani oddelek DocType: User,Change Password,Spremeni geslo -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Neveljaven e-naslov: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Zdravo! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Neveljaven e-naslov: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Zdravo! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Konec dogodka mora biti po začetku apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},"Nimate dovoljenja, da bi dobili poročilo o: {0}" +DocType: System Settings,Apply Strict User Permissions,Veljajo strogi uporabniških dovoljenj DocType: DocField,Allow Bulk Edit,Dovoli Bulk Uredi DocType: DocField,Allow Bulk Edit,Dovoli Bulk Uredi DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,napredno iskanje +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,napredno iskanje apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Navodila za ponastavitev gesla so bila poslana na vaš email apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Stopnja 0 je za dovoljenja na ravni dokumenta, \ višjih ravneh za dovoljenja ravni polje." @@ -2149,15 +2155,14 @@ DocType: Web Page,Sidebar and Comments,Stranska vrstica in Komentarji apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Ko se spremeni dokument po Cancel in shranite ga bo dobil novo številko, ki je različica staro številko." DocType: Stripe Settings,Publishable Key,za objavo Key DocType: Stripe Settings,Publishable Key,za objavo Key -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} leto (-e) nazaj DocType: Workflow State,circle-arrow-left,Krog-puščico levo apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache strežnik ne teče. Se obrnite na skrbnika / tehnična podpora apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Ime stranka -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Naredite nov rekord +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Naredite nov rekord apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Iskanje DocType: Currency,Fraction,Frakcija DocType: LDAP Settings,LDAP First Name Field,LDAP Ime polja -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Izberite eno od obstoječih priključkov +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Izberite eno od obstoječih priključkov DocType: Custom Field,Field Description,Opis polja apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ime ni nastavljena prek Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-pošta Prejeto @@ -2203,11 +2208,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Dovoljenje Raven DocType: User,Send Notifications for Transactions I Follow,Pošlji Obvestila za transakcije Sledim -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ne morem nastaviti Submit Cancel, spremeni brez Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Ne morem nastaviti Submit Cancel, spremeni brez Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Ali ste prepričani, da želite izbrisati prilogo?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne morete izbrisati ali preklicati, ker {0} {1} je povezan s {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

Ni rezultatov za ""Rezultati

" -apps/frappe/frappe/__init__.py +1063,Thank you,Hvala +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Ne morete izbrisati ali preklicati, ker {0} {1} je povezan s {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Hvala apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Shranjevanje DocType: Print Settings,Print Style Preview,Print Style Predogled apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2219,10 +2223,10 @@ DocType: DocField,In List View,V pogledu seznama DocType: Email Account,Use TLS,Uporabi TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Neveljavna ali geslo apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Dodaj custom javascript za oblike. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Ne +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Ne ,Role Permissions Manager,Role Dovoljenja Manager apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ime novega Print Format -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Počisti priponko +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Počisti priponko apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obvezno: ,User Permissions Manager,Uporabniške Dovoljenja Manager DocType: Property Setter,New value to be set,"Nova vrednost, ki se določi" @@ -2252,26 +2256,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dni apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizirati blog delovnih mest. DocType: Workflow State,Time,Čas DocType: DocField,Attach,Priložite -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ni veljaven fieldname vzorec. To bi moralo biti {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ni veljaven fieldname vzorec. To bi moralo biti {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"Pošljite povratne informacije Zahteva le, če je vsaj ena komunikacija je na voljo v dokumentu." DocType: Custom Role,Permission Rules,Dovoljenje Pravila DocType: GSuite Settings,GSuite Settings,GSuite Nastavitve DocType: Address,Links,Povezave -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vrednost manjka za +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vrednost manjka za apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Dodaj Child -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Objavljenl zapis ni mogoče izbrisati. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Objavljenl zapis ni mogoče izbrisati. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Velikost DocType: GSuite Templates,Template Name,Predloga Ime -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Nova vrsta dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Nova vrsta dokumenta DocType: Custom DocPerm,Read,Preberi DocType: Role Permission for Page and Report,Role Permission for Page and Report,Vloga Dovoljenje za stran in poročila apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Uskladiti vrednost apps/frappe/frappe/www/update-password.html +14,Old Password,staro geslo -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Objav od {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Objav od {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Do formata stolpcev, dobimo oznake stolpcev v poizvedbi." DocType: Has Domain,Has Domain,ima domeno apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Še nimate računa? Prijava -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Ne morem nastaviti Določi se spremeni, če ne Submittable" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Ne morem nastaviti Določi se spremeni, če ne Submittable" DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Uredi Role Dovoljenja DocType: Communication,Link DocType,Link DOCTYPE @@ -2370,7 +2374,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Poskrbite, da ima vaš profil e-poštni naslov" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Imate neshranjene spremembe v tem dokumentu. Prosimo, shranite, preden nadaljujete." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Privzeto za {0} mora biti možnost +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Privzeto za {0} mora biti možnost DocType: Tag Doc Category,Tag Doc Category,Tag Doc Kategorija DocType: User,User Image,Uporabnik slike apps/frappe/frappe/email/queue.py +289,Emails are muted,E-pošta utišani @@ -2403,7 +2407,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Naslednji DocType: Workflow State,ok,v redu DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Te vrednosti se bo samodejno posodobi v transakcijah in tudi bo koristno, da omejijo dovoljenja za tega uporabnika na transakcije, ki vsebujejo te vrednote." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Založnik -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Ni uspelo: {0} do {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Ni uspelo: {0} do {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Izberite Obvezno apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Brskanje apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-pošta poslana @@ -2415,7 +2419,7 @@ DocType: Async Task,Running,Tek apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Ponastavitev gesla apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Prosimo Nadgradnja dodati več kot {0} naročnike DocType: Workflow State,hand-left,ročno levo -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} za {1} ne more biti edinstven +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} za {1} ne more biti edinstven DocType: Email Account,Use SSL,Uporabi SSL DocType: Workflow State,play-circle,play-krog apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Izberite Print Format Uredi @@ -2470,7 +2474,7 @@ DocType: DocField,No Copy,Ne Kopiraj DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Prijava z LDAP DocType: Web Form,Breadcrumbs,Drobtine -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Če lastnika +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Če lastnika DocType: OAuth Authorization Code,Expiration time,izteka čas DocType: Web Page,Website Sidebar,Spletna stran stranska vrstica DocType: Web Form,Show Sidebar,Prikaži stransko vrstico @@ -2490,7 +2494,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Ni bilo mogoče n apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Imena in priimki po sebi je lahko uganiti. apps/frappe/frappe/config/website.py +93,Knowledge Base,Baza znanja DocType: Workflow State,briefcase,aktovka -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vrednost se ne more spremeniti za {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vrednost se ne more spremeniti za {0} DocType: Feedback Request,Is Manual,je Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style predstavlja barvo gumba: Uspeh - zelena, Danger - rdeča, nasprotno - Black, Primary - temno modra, Info - svetlo modra, Pozor - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Ni Poročilo Loaded. Prosimo, uporabite poizvedbo-poročilo / [Prijavi Name], da zaženete poročilo." @@ -2568,7 +2572,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,napredek apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,po vlogi apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,manjkajoče Polja apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Neveljavna fieldname '{0}' v autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Iskanje v vrsti dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Iskanje v vrsti dokumenta apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Dovoli polje ostati urejati tudi po predložitvi DocType: Custom DocPerm,Role and Level,Vloga in stopnja DocType: File,Thumbnail URL,Thumbnail URL @@ -2585,19 +2589,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Več informacij DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Vaše plačilo je bilo uspešno sprejeto +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Vaše plačilo je bilo uspešno sprejeto apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Žal nam je! Niste dovoljeno za ogled te strani. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Nasvet: Dvakrat kliknite celica za urejanje DocType: Workflow State,bell,bell apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Napaka v Email Alert apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Napaka v Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Delite ta dokument s +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Nastavitve> Uporabniške Dovoljenja direktor apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ne more biti Vozel saj ima otroke DocType: Communication,Info,Informacije -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Dodaj prilogo +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Dodaj prilogo DocType: Communication,Email,E-naslov apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Hvala za vaše sporočilo -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Pošlji Preberite listek +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Pošlji Preberite listek DocType: Stripe Settings,Stripe Settings,Nastavitve trak DocType: Stripe Settings,Stripe Settings,Nastavitve trak DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox nastavitev preko strani Config @@ -2664,6 +2669,7 @@ DocType: DocType,Web View,spletna Poglej apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Opozorilo: Ta Print Format je v starem slogu in ne more biti ustvarjena preko API. DocType: DocField,Print Width,Print Širina ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,DDV članica Število DocType: User,Allow user to login only before this hour (0-24),"Dovoli uporabniku, da se prijavite le pred to uro (0-24)" apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Mapa je obvezna apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2690,7 +2696,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Mala Besedilo apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administrator pogledali {0} od {1} preko IP naslov {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Enako -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Možnosti 'Dynamic Link "tip polja mora kazati na drugo Link Polje z možnostmi, kot so" parameter DocType "" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Možnosti 'Dynamic Link "tip polja mora kazati na drugo Link Polje z možnostmi, kot so" parameter DocType "" DocType: About Us Settings,Team Members Heading,Člani ekipe Postavka apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Neveljavna oblika CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Število varnostne kopije @@ -2701,7 +2707,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Third Party Avtentikacija DocType: Website Settings,Banner is above the Top Menu Bar.,Banner je nad zgornji menijski vrstici. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Izvoz Poročilo: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Izvoz Poročilo: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ne obstaja DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2724,7 +2730,7 @@ DocType: Kanban Board Column,Column Name,Stolpec Name DocType: Language,Based On,Temelji na apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Make Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Preverite URL frape Server -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} za {1} ni mogoče indeksirati +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} za {1} ni mogoče indeksirati DocType: Communication,Email Account,Email račun DocType: Workflow State,Download,Prenos DocType: Blog Post,Blog Intro,Blog Intro @@ -2735,7 +2741,7 @@ DocType: Web Page,Insert Code,Vstavite Code DocType: ToDo,Low,Nizka apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Dodate lahko dinamične lastnosti iz dokumenta s pomočjo Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Neveljavna omejitev {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Seznam vrsto dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Seznam vrsto dokumenta DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Če ste naložiti nove rekorde, pustite "ime" (ID) stolpca prazno." DocType: Address,Chattisgarh,Chattisgarh @@ -2757,26 +2763,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Pošlji Print kot PDF DocType: Web Form,Amount,Znesek DocType: Workflow Transition,Allowed,Dovoljeno -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Ne more biti le ena pregibna v obliki +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Ne more biti le ena pregibna v obliki apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Ne morem pisati obliko datoteke za {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Obnovi privzete nastavitve? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Neveljavna Domača stran apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Neveljaven vpis. Poskusi ponovno. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Možnosti, potrebna za povezavo ali polje tipa Tabela {0} zapored {1}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Možnosti, potrebna za povezavo ali polje tipa Tabela {0} zapored {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Možnosti, potrebna za povezavo ali polje tipa Tabela {0} zapored {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Možnosti, potrebna za povezavo ali polje tipa Tabela {0} zapored {1}" DocType: Auto Email Report,Send only if there is any data,"Pošlji le, če obstaja podatki" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Ponastavi filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Dovoljenje na ravni 0, je treba določiti, preden se določi višje ravni" +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,"{0}: Dovoljenje na ravni 0, je treba določiti, preden se določi višje ravni" apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Razporeditev zaprt z {0} DocType: Integration Request,Remote,daljinsko -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Izračunamo +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Izračunamo apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Izberite DOCTYPE najprej apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Potrdite svoj e-poštni apps/frappe/frappe/www/login.html +42,Or login with,Ali pa se prijavite z DocType: Error Snapshot,Locals,Domačini apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Posredujejo preko {0} od {1} {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} vas je omenil v komentarju v {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ali = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,npr (55 + 434) / 4 ali = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} je zahtevano DocType: Integration Request,Integration Type,integracija Type DocType: Newsletter,Send Attachements,Pošlji priponke @@ -2786,15 +2792,15 @@ DocType: DocField,Perm Level,Perm Raven apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Dogodki v današnjem koledarju DocType: Web Page,Web Page,Spletna stran DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"V svetovno iskalno 'ni dovoljena za tip {0} v vrstici {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"V svetovno iskalno 'ni dovoljena za tip {0} v vrstici {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"V svetovno iskalno 'ni dovoljena za tip {0} v vrstici {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"V svetovno iskalno 'ni dovoljena za tip {0} v vrstici {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,pogled seznama -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum mora biti v obliki: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum mora biti v obliki: {0} DocType: Workflow,Don't Override Status,Ne Prepiši Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Prosimo, da oceno." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Predlogi Zahteva apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Iskalni izraz -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Prva Uporabnik: You +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Prva Uporabnik: You apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Izberite stolpce DocType: Translation,Source Text,vir Besedilo apps/frappe/frappe/www/login.py +55,Missing parameters for login,Manjkajoče parametri za prijavo @@ -2816,7 +2822,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Uvažanje DocType: ToDo,Assigned By,Namenski Z apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Lahko uporabite Customize obrazec za določitev stopnje na poljih. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Izberite regijo +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Izberite regijo DocType: Custom DocPerm,Level,Stopnja DocType: Custom DocPerm,Report,Poročilo apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Znesek mora biti večja od 0. @@ -2836,7 +2842,7 @@ DocType: Website Theme,Background,Ozadje DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Seznam JSON od DocTypes uporabljajo uporabljati dovoljenja uporabnika. Če je prazna, bodo vsi povezani DocTypes se uporablja v namene dovoljenja uporabnika." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Navedite oceno -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Ne morem nastaviti Amend brez Prekliči +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Ne morem nastaviti Amend brez Prekliči apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Celotna stran DocType: DocType,Is Child Table,Je Tabela Child apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} mora biti eden od {1} @@ -2851,7 +2857,7 @@ DocType: Website Slideshow,This goes above the slideshow.,To gre predvsem na dia apps/frappe/frappe/config/setup.py +260,Install Applications.,Nameščanje aplikacij. DocType: Contact,Last Name,Priimek DocType: Event,Private,Zasebno -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Brez opozorila za danes +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Brez opozorila za danes DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Pošlji Email Print Priponke obliki PDF (priporočeno) DocType: Web Page,Left,Levo DocType: Event,All Day,Cel dan @@ -2865,7 +2871,7 @@ DocType: Event,Send an email reminder in the morning,Pošlji opomnik e-zjutraj DocType: Blog Post,Published On,Objavljeno On DocType: Contact,Gender,Spol apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obvezno Informacije manjka: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ni mogoče določiti edinstvena kot ga ima non-unikatne vrednosti +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Polje '{0}' ni mogoče določiti edinstvena kot ga ima non-unikatne vrednosti apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Le 200 vložki dovoljeno v eno zahtevo DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referenčna Type @@ -2878,7 +2884,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,opozorilni znak DocType: Workflow State,User,Uporabnik DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Prikaži naslov v oknu brskalnika kot "predpone - naslov" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Besedilo v vrsti dokumenta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Besedilo v vrsti dokumenta apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,preizkuse apps/frappe/frappe/handler.py +91,Logged Out,odjavljeni apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Več ... @@ -2904,13 +2910,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Trenutno Pregled DocType: DocField,Default,Privzeto apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} dodano -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Iskanje '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Iskanje '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Shranite poročilo najprej apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} naročnikov dodane apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Ne v DocType: Workflow State,star,zvezda -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,vrednosti ločene z vejicami -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max širina za tip valuta je 100px v vrstici {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,vrednosti ločene z vejicami +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max širina za tip valuta je 100px v vrstici {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Prosimo, delite svoje mnenje za {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Vsebina spletne strani. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Dodaj novo vlogo @@ -2929,7 +2935,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Ni veljaven uporabnik LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} ni veljavna država apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Izberite drug način plačila. PayPal ne podpira transakcije v valuti, "{0}"" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Iskanje polje {0} ni veljavna +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Iskanje polje {0} ni veljavna DocType: Workflow State,ok-circle,ok-krog apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Tu lahko najdete stvari, ki jih prosi "našli oranžno v kupce"" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Žal nam je! Uporabnik mora imeti popoln dostop do lastne evidence. @@ -2990,7 +2996,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Besedilo, ki se prikaže za Povezava na spletno stran, če ima ta oblika spletne strani. Link Pot se bo samodejno ustvari na podlagi `page_name` in` parent_website_route`" DocType: Feedback Request,Feedback Trigger,povratne informacije Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Prosim, nastavite {0} najprej" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Prosim, nastavite {0} najprej" DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Ni uspelo diff --git a/frappe/translations/sq.csv b/frappe/translations/sq.csv index e42988ce38..890c6c6a38 100644 --- a/frappe/translations/sq.csv +++ b/frappe/translations/sq.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Emri i përdoruesit DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Shënim: seanca të shumëfishta do të lejohet në rast pajisje të lëvizshme apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Enabled Inbox email për përdoruesit {përdoruesit} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Nuk mund të dërgoni këtë email. Ju keni kaluar dërgimin kufirin e {0} mail për këtë muaj. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Përgjithmonë Submit {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Përgjithmonë Submit {0}? DocType: Address,County,qark DocType: Workflow,If Checked workflow status will not override status in list view,Nëse statusi i Kontrolluar ne daten punës nuk do të pranoj statusin në listën e parë apps/frappe/frappe/client.py +280,Invalid file path: {0},Rruga e pavlefshme skedë: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Ju lute apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Tree DocType: User,User Emails,Emails përdoruesit DocType: User,Username,Emri i përdoruesit -apps/frappe/frappe/model/base_document.py +581,Value too big,Vlera shumë të mëdha +apps/frappe/frappe/model/base_document.py +580,Value too big,Vlera shumë të mëdha DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script Test DocType: Contact,Department,Departamenti @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Shkrime DocType: Custom DocPerm,This role update User Permissions for a user,Ky rol përditësimin Drejtat e përdoruesit për një përdorues apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Rename {0} DocType: Workflow State,zoom-out,zoom-out -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Nuk mund të hapni {0}, kur shembull i saj është i hapur" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Nuk mund të hapni {0}, kur shembull i saj është i hapur" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabela {0} nuk mund të jetë bosh apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Me regjistra apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,images DocType: Communication,Reference Owner,Reference Owner DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Më e vogël qarkullojnë pjesë (monedhë). Për shembull 1 për qind USD dhe ajo duhet të regjistrohet si 0.01 DocType: Social Login Keys,GitHub,Github -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Row {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Row {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Ju lutem jepni një fullname. apps/frappe/frappe/model/document.py +904,Beginning with,Duke filluar me apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Të dhënat Import Template @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Prind DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Nëse aktivizohet, forca fjalëkalimi do të zbatohet në bazë të vlerës minimale Password shënuar. Një vlerë e 2 të qenit të mesme të fortë dhe 4 të qenit shumë i fortë." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Nëse aktivizohet, forca fjalëkalimi do të zbatohet në bazë të vlerës minimale Password shënuar. Një vlerë e 2 të qenit të mesme të fortë dhe 4 të qenit shumë i fortë." DocType: About Us Settings,"""Team Members"" or ""Management""","Anëtarët e ekipit" ose "Menaxhimi" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Parazgjedhur për 'Kontrollo' lloji i fushës duhet të jetë ose '0' ose '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Parazgjedhur për 'Kontrollo' lloji i fushës duhet të jetë ose '0' ose '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Dje DocType: Contact,Designation,Përcaktim DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Publikohet Fusha DocType: Email Group,Email Group,Email Group DocType: Note,Seen By,E pare nga apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Shto Multiple -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Jo si +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Jo si apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Vendosni etiketën ekranit për fushën apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Vlera e pasaktë: {0} duhet të jetë {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Pronat ndryshim në terren (të fshehur, Readonly, leje, etj)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Cilësime apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administratori i loguar DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Opsionet e kontaktit, si "Sales Query, Mbështetje Query" etj secili në një linjë të re ose të ndara me presje." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Shkarko -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Fut +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Fut apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Zgjidh {0} DocType: Print Settings,Classic,Klasik DocType: Desktop Icon,Color,Ngjyrë @@ -122,7 +122,7 @@ DocType: Translation,Translation,përkthim apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Instaloj apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Mr DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Kjo formë është ndryshuar pasi që e keni ngarkuar atë +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Kjo formë është ndryshuar pasi që e keni ngarkuar atë DocType: User Permission for Page and Report,User Permission for Page and Report,Leja Përdoruesi për Page dhe Raportin DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Nëse nuk është caktuar, precision monedha do të varet nga format e numrave" @@ -153,14 +153,14 @@ DocType: Unhandled Email,Reason,Arsye apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Ju lutem specifikoni përdorues DocType: Email Unsubscribe,Email Unsubscribe,Email Unsubscribe DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Zgjidh një imazh të gjerësi përafërsisht 150px me një sfond transparente për rezultatet më të mira. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Përdorues i parë do të bëhet i Sistemit Menaxher (ju mund ta ndryshoni këtë më vonë). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Përdorues i parë do të bëhet i Sistemit Menaxher (ju mund ta ndryshoni këtë më vonë). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,rrethi-shigjetë-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Ngarkimi ... DocType: Email Domain,Email Domain,Email Domain DocType: Workflow State,italic,kursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Për të gjithë -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Nuk mund të vënë Import pa Krijo +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Nuk mund të vënë Import pa Krijo apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Ngjarje dhe kalendarët të tjera. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Të gjitha fushat janë të nevojshme për të paraqesë komentin. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Drag për të zgjidhur kolona @@ -172,8 +172,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidebar Menu apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Nuk mund të fshini shtëpi dhe Attachments dosjet apps/frappe/frappe/config/desk.py +19,Files,Files apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Drejtat merrni aplikuar për përdoruesit bazuar në atë që Rolet ata janë të caktuar. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Ju nuk jeni i lejuar për të dërguar email në lidhje me këtë dokument -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Ju lutemi të zgjedhur atleast 1 kolonë nga {0} të lloj / grup +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Ju nuk jeni i lejuar për të dërguar email në lidhje me këtë dokument +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Ju lutemi të zgjedhur atleast 1 kolonë nga {0} të lloj / grup DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kontrolloni këtë në qoftë se ju jeni të testimit pagesën tuaj duke përdorur API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Ju nuk jeni i lejuar për të fshirë një standard Website Theme DocType: Feedback Trigger,Example,Shembull @@ -204,7 +204,7 @@ DocType: Email Group,Total Subscribers,Totali i regjistruar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nëse një Roli nuk ka qasje në nivelin 0, nivelet më të larta atëherë janë të pakuptimta." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Save As DocType: Communication,Seen,Parë -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Trego më shumë detaje +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Trego më shumë detaje DocType: System Settings,Run scheduled jobs only if checked,Run punë të planifikuar vetëm nëse kontrollohen apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Do të tregohet vetëm nëse Titujt seksion janë të aktivizuara apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkivi @@ -221,7 +221,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Hide Kreu DocType: Address,Current,aktual DocType: Address,Current,aktual -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Dokumentet ngjashme apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupet e DocTypes DocType: Auto Email Report,XLSX,Xlsx DocType: Workflow State,remove-circle,hiqni-rrethi @@ -237,10 +236,9 @@ DocType: Workflow State,Filter,Filtër apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} nuk mund të ketë karaktere të veçanta si {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Update shumë vlera në një kohë. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Gabim: Dokumenti është ndryshuar pasi që e keni hapur atë -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No parazgjedhur Adresa Template gjetur. Ju lutem të krijuar një të ri nga Setup> Printime dhe quajtur> Adresa Stampa. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} regjistrohet nga: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Nuk mund të vënë Cakto Submit nëse nuk Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Nuk mund të vënë Cakto Submit nëse nuk Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtruar nga "{0}" DocType: Salutation,Administrator,Administrator @@ -250,7 +248,7 @@ DocType: Blog Settings,Blog Title,Blog Titulli apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,rolet standarde nuk mund të çaktivizohet DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Newsletter -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,"nuk mund të përdorni nën-pyetje, në mënyrë nga" +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,"nuk mund të përdorni nën-pyetje, në mënyrë nga" DocType: Web Form,Button Help,Button Ndihmë DocType: Kanban Board Column,purple,vjollcë DocType: About Us Settings,Team Members,Anëtarët e ekipit @@ -264,7 +262,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Get avatar t apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","abonimin tuaj skaduar për {0}. Për të rinovuar, {1}." DocType: Workflow State,plus-sign,plus-shenjë apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup tashmë i plotë -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} nuk është instaluar +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} nuk është instaluar DocType: Workflow State,Refresh,Freskoj DocType: Event,Public,Publik apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Asgjë për të treguar @@ -272,7 +270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Pëlqyer nga apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Mbështetje Email DocType: DocField,Print Hide If No Value,Shtyp Hide Nëse pa vlerë DocType: Event,yellow,e verdhe -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Publikohet Fusha duhet të jetë një fieldname vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Publikohet Fusha duhet të jetë një fieldname vlefshme apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Ngarko Attachment DocType: Block Module,Block Module,Block Moduli apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Eksporti Template @@ -292,7 +290,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Një llogari e re është krijuar për ju në {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,udhëzimet postuar apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,udhëzimet postuar -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Shkruani Email Marrësi (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Shkruani Email Marrësi (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Flag Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,nuk mund të identifikojë të hapur {0}. Provoni diçka tjetër. @@ -307,8 +305,8 @@ DocType: Communication,Message ID,mesazhi ID DocType: Property Setter,Field Name,Emri Fusha apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite nuk është i konfiguruar. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,ose -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Emri modul ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Vazhdoj +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Emri modul ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Vazhdoj DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,certifikatë DocType: User,Tile,Tjegull @@ -317,6 +315,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Trego të gjitha versionet DocType: Workflow State,Print,Shtyp DocType: User,Restrict IP,Kufizo IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,baltëpritëse apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Në pamundësi për të dërguar postë elektronike në këtë kohë apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Kërko ose shkruani një komandë DocType: Communication,Timeline Name,Emri Timeline @@ -327,8 +326,8 @@ DocType: Contact,Sales Master Manager,Sales Master Menaxher apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Një hap i fundit apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Emri i dokumentit Type (DOCTYPE) ju doni këtë fushë të jetë i lidhur për të. p.sh. Klientit DocType: User,Roles Assigned,Rolet Assigned -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Kërko Ndihmë -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Kërko Ndihmë +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Kërko Ndihmë +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Kërko Ndihmë DocType: Top Bar Item,Parent Label,Prind Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Query juaj është pranuar. Ne do të përgjigjeni përsëri së shpejti. Nëse keni ndonjë informacion shtesë, ju lutem përgjigje për këtë postë." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Drejtat janë përkthyer automatikisht të raporteve standarde dhe Searches. @@ -345,6 +344,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Ndrysho Kreu DocType: File,File URL,Fotografi URL DocType: Version,Table HTML,Tabela HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nuk u gjetën për 'rezultatet

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Shto abonentë apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Ngjarjet e ardhshme për Sot DocType: Email Alert Recipient,Email By Document Field,Email me dokument Field @@ -364,17 +364,16 @@ DocType: Web Form,Amount Based On Field,Shuma bazë On Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Përdoruesi është i detyrueshëm për Share DocType: DocField,Hidden,I fshehur DocType: Web Form,Allow Incomplete Forms,Lejo Format jo i plotë -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} duhet të jetë i vendosur për herë të parë +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} duhet të jetë i vendosur për herë të parë apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Përdorni disa fjalë, për të shmangur fraza të përbashkëta." DocType: Workflow State,plane,aeroplan -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oops. pagesa juaj ka dështuar. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Nëse ju jeni ngarkimi rekorde të reja, "Emërtimi Seria" bëhet e detyrueshme, nëse i pranishëm." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Merr sinjale për Sot +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Merr sinjale për Sot apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE mund të riemërohet vetëm nga Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},vlera e ndryshuar e {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Ju lutem kontrolloni email tuaj për verifikim -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fish nuk mund të jetë në fund të formularit +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fish nuk mund të jetë në fund të formularit DocType: Communication,Bounced,Mori veten DocType: Deleted Document,Deleted Name,Emri i fshirë apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistemit dhe Website Përdoruesit @@ -393,14 +392,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumenti në radhë DocType: GSuite Templates,Destination ID,ID destinacion DocType: Desktop Icon,List,Listë DocType: Communication,Link Name,Link Emri -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Fusha {0} në rresht {1} nuk mund të fshihet dhe i detyrueshëm pa parazgjedhje +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Fusha {0} në rresht {1} nuk mund të fshihet dhe i detyrueshëm pa parazgjedhje DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Fjalëkalim i pavlefshëm: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Fjalëkalim i pavlefshëm: DocType: Print Settings,Send document web view link in email,Dërgo dokument view web lidhjen në email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Feedback juaj për dokumentin {0} është ruajtur me sukses apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,I mëparshëm -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rreshtave për {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Nën-monedhës. Për shembull "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Zgjidhni dosjen ngarkuar së fundi @@ -411,10 +410,11 @@ DocType: Desktop Icon,Link,Lidhje apps/frappe/frappe/utils/file_manager.py +96,No file attached,Nuk ka fotografi bashkangjitur DocType: Version,Version,Version DocType: User,Fill Screen,Plotësoni Screen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Në pamundësi për të shfaqur këtë raport pemë, për shkak të të dhënave të zhdukur. Më shumë gjasa, ai është duke u filtruar jashtë për shkak të lejeve." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi të setup parazgjedhur Email llogarisë nga Setup> Email> Email Llogaria +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Në pamundësi për të shfaqur këtë raport pemë, për shkak të të dhënave të zhdukur. Më shumë gjasa, ai është duke u filtruar jashtë për shkak të lejeve." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Select File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Ndrysho nëpërmjet Ngarko -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Lloji i dokumentit ..., p.sh. konsumatorëve" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Lloji i dokumentit ..., p.sh. konsumatorëve" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Kushti '{0}' është i pavlefshëm DocType: Workflow State,barcode,barcode apps/frappe/frappe/config/setup.py +232,Add your own translations,Shto përkthimet tuaj @@ -424,7 +424,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,E mërkurë apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Përveç rolit Rregullat Leje Ndërtimi të bazuar, ju mund të aplikoni Drejtat përdorues të bazuar në DocTypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Këto leje do të zbatohet për të gjitha transaksionet ku rekordin e lejuar është e lidhur. Për shembull, në qoftë se Kompania C është shtuar për të Drejtat përdorues i përdoruesit X, X përdoruesi do të jetë në gjendje për të parë transaksionet që ka kompani C si një vlerë të lidhura vetëm." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Fusha Image duhet të jetë një fieldname vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Fusha Image duhet të jetë një fieldname vlefshme DocType: OAuth Client,Token,shenjë DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (emri) i subjektit prona e të cilave është që të vendosen apps/frappe/frappe/limits.py +82,"To renew, {0}.","Për të rinovuar, {0}." @@ -433,7 +433,7 @@ DocType: Web Form,Sidebar Items,Items Sidebar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} instaluar DocType: Workflow State,exclamation-sign,thirrje-shenjë apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Shfaq Permissions -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Fusha Timeline duhet të jetë një Link ose Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Fusha Timeline duhet të jetë një Link ose Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Data Gama apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Faqe {0} prej {1} @@ -441,7 +441,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Futur apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","kyç encryption është i pavlefshëm, Ju lutem kontrolloni site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Në DocType: Kanban Board Column,darkgrey,darkgrey -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},I suksesshëm: {0} në {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},I suksesshëm: {0} në {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Nuk mund të ndryshojë të dhënat e përdoruesit në demo. Ju lutemi të regjistroheni për një llogari të re në https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Ju lutemi të kopjuar këtë për të bërë ndryshime apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Gjenerata PDF dështuar për shkak të thyer lidhjet e imazhit @@ -458,24 +458,24 @@ DocType: DocField,Collapsible,Që paloset apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Saved apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Çfarë keni nevojë për ndihmë me? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Mundësitë e zgjedhjes për të zgjedhur. Çdo opsion në një linjë të re. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Përgjithmonë Anulo {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Përgjithmonë Anulo {0}? DocType: Workflow State,music,muzikë DocType: Web Page,Settings,Cilësimet apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Ju lutem specifikoni DOCTYPE DocType: Print Format,Style Settings,Cilësimet style -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Renditur fushë {0} duhet të jetë një fieldname vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Renditur fushë {0} duhet të jetë një fieldname vlefshme apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Më shumë DocType: Contact,Sales Manager,Sales Manager apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Riemërtoj DocType: Print Format,Format Data,Format e të dhënave -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Si +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Si DocType: Customize Form Field,Customize Form Field,Customize Form Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Lejojë përdoruesin DocType: OAuth Client,Grant Type,Grant Lloji apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Kontrolloni cilat Dokumentet janë të lexueshme për anëtarët apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,app Listing nuk lejohet -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,përdorni% si wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email Domain jo konfiguruar për këtë llogari, Krijo një?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,përdorni% si wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email Domain jo konfiguruar për këtë llogari, Krijo një?" DocType: User,Reset Password Key,Fjalëkalimi Key Reset DocType: Email Account,Enable Auto Reply,Aktivizo Auto Përgjigje apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Nuk shihet @@ -518,7 +518,7 @@ DocType: DocField,Set Only Once,Set Vetëm Pasi DocType: Email Queue Recipient,Email Queue Recipient,Email Queue Marrësi DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Emri i përdoruesit {0} tashmë ekziston -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Nuk mund të vënë importin si {1} nuk është i importuar +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Nuk mund të vënë importin si {1} nuk është i importuar apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Ka një gabim në Stampa tuaj Adresa {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -530,7 +530,7 @@ DocType: Communication,From Full Name,Nga Emri i plotë apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Ju nuk keni qasje në Raport: {0} DocType: User,Send Welcome Email,Dërgo Mirë se vini Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Ngarko CSV fotografi që përmban të gjitha lejet e përdoruesit në të njëjtin format si shkarkim. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Hiq Filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Hiq Filter DocType: Address,Daman and Diu,Daman dhe Diu DocType: Address,Personal,Personal apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Rename @@ -561,11 +561,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DOCTYPE nuk mund të ketë format të shtypura të paracaktuar, përdorni Formularin Customize" DocType: Report,Query,Pyetje DocType: DocType,Sort Order,Rendit -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"Në Lista View" nuk lejohet për llojin {0} në rresht {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"Në Lista View" nuk lejohet për llojin {0} në rresht {1} DocType: Custom Field,Select the label after which you want to insert new field.,Zgjidhni etiketën pasi që ju doni të futur fushë të re. ,Document Share Report,Dokumenti Shpërndaj Raporto DocType: User,Last Login,Kycja e fundit -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname është e nevojshme në rresht {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname është e nevojshme në rresht {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Kolonë DocType: Custom Field,Adds a custom field to a DocType,Shton një fushë me porosi për një DOCTYPE DocType: File,Is Home Folder,Është shtëpia Folder @@ -591,7 +591,7 @@ DocType: File,Folder,Dosje DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Newsletter Menaxher apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Opsioni 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Të gjitha Postimet +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} në {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Log e gabimit gjatë kërkesave. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} është shtuar me sukses në Email Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -601,7 +601,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,tregues DocType: DocShare,Everyone,Gjithkush DocType: Workflow State,backward,prapa -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Vetem nje rregull lejohet me të njëjtin rol, nivelin dhe {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Vetem nje rregull lejohet me të njëjtin rol, nivelin dhe {1}" DocType: Email Queue,Add Unsubscribe Link,Shto Unsubscribe Lidhje apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Nuk ka komente ende. Filloni një diskutim të ri. DocType: Workflow State,share,pjesë @@ -620,7 +620,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,nuk le apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Shiko Subscribers apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,Ngjyra Historiku -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Ka pasur gabime ndërsa dërguar një email. Ju lutemi provoni përsëri. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Ka pasur gabime ndërsa dërguar një email. Ju lutemi provoni përsëri. DocType: Portal Settings,Portal Settings,Cilësimet Portal DocType: Web Page,0 is highest,0 është më i lartë apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Jeni te sigurte qe doni te relink këtë komunikim për {0}? @@ -648,7 +648,7 @@ DocType: Contact Us Settings,Contact Us Settings,Na Kontaktoni Settings apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Duke kërkuar ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Duke kërkuar ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Kufiri maksimal Attachment për këtë arkiv të dhënash ka arritur. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Kufiri maksimal Attachment për këtë arkiv të dhënash ka arritur. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Fushat e detyrueshme të mëposhtme duhet të plotësohen:
DocType: Email Alert,View Properties (via Customize Form),Shiko Prona (nëpërmjet Customize Form) DocType: Note Seen By,Note Seen By,Shënim Seen By @@ -658,17 +658,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Raporti raportet Builder menaxhohen drejtpërdrejt nga raporti ndërtues. Asgjë për të bërë. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Ju lutem verifikoni adresën tuaj email apps/frappe/frappe/model/document.py +903,none of,asnjë nga -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Më dërgoni një kopje +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Më dërgoni një kopje apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Ngarko lejet e përdoruesit DocType: Dropbox Settings,App Secret Key,App Key Secret apps/frappe/frappe/config/website.py +7,Web Site,web Site apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Artikuj kontrolluar do të shfaqet në tavolinën e punës -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} nuk mund të vendosen për lloje Beqar +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} nuk mund të vendosen për lloje Beqar apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} nuk ekziston. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} jeni duke shfletuar këtë dokument DocType: ToDo,Assigned By Full Name,Caktuar By Emri i plotë apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} përditësuar -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Raporti nuk mund të vendosen për lloje Beqar +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Raporti nuk mund të vendosen për lloje Beqar apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ditë më parë DocType: Email Account,Awaiting Password,Në pritje Password DocType: Address,Address Line 1,Adresa Line 1 @@ -678,7 +678,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Shtetet për workflow (p.sh. Draft, Miratuar, anuluar)." DocType: Print Settings,Allow Print for Draft,Lejo Print për Projekt- apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Sasia e përcaktuar -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Submit këtë dokument për të konfirmuar +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Submit këtë dokument për të konfirmuar DocType: Contact,Unsubscribed,Unsubscribed apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Rolet e përcaktuara porosi për faqe dhe raporti apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Vleresim: @@ -686,7 +686,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Të dhënat Import Tool DocType: Address,Dadra and Nagar Haveli,Dadra dhe Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Fotografi Ngarkimi ju lutem prisni për disa sekonda. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Bashkangjit foton tuaj +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Bashkangjit foton tuaj apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Vlerat Row Ndryshuar DocType: Workflow State,Stop,Stop DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Lidhje me faqe që dëshironi të hapni. Lini bosh në qoftë se ju doni të bëni atë një prind grup. @@ -701,7 +701,7 @@ DocType: Print Format,Align Labels to the Left,Vendose Etiketa të majtë DocType: Help Article,Expert,ekspert DocType: Workflow State,circle-arrow-right,rrethi-shigjetë djathtë DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Nuk mund të hapni shembull kur e saj {0} është e hapur +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Nuk mund të hapni shembull kur e saj {0} është e hapur apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Në radhë për të instaluar DocType: Custom DocPerm,Custom DocPerm,Custom DocPerm DocType: Newsletter,Send Unsubscribe Link,Dërgo Unsubscribe Lidhje @@ -718,7 +718,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} hequr DocType: Custom DocPerm,Apply User Permissions,Aplikoni lejet e përdoruesit DocType: User,Modules HTML,Modulet HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> lejet e përdoruesit Menaxher apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Vlerave të zhdukur kërkuar DocType: DocType,Other Settings,Cilësimet tjera DocType: Social Login Keys,Frappe,frape @@ -737,7 +736,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Asnjë dokument të zgjedhura apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Ngjarje -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Në {0}, {1} shkroi:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Në {0}, {1} shkroi:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Nuk mund të fshini fushë standarde. Ju mund të fshehin atë në qoftë se ju doni DocType: Top Bar Item,For top bar,Për bar të lartë apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Nuk mund të identifikojë {0} @@ -751,7 +750,7 @@ DocType: Role,Desk Access,Desk Access DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Gabim: Ju lutem kontrolloni shkrimet serverit tuaj ose kontaktoni mbështetjen e teknologjisë. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Mirë se vini email dërguar -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Le të përgatisë sistemin e përdorimit të parë. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Le të përgatisë sistemin e përdorimit të parë. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Të zgjedhura apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,I regjistruar DocType: System Settings,Float Precision,Precision Float @@ -765,7 +764,7 @@ DocType: Web Form,Allow Print,Lejo Printo apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Nuk Apps instaluar apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Mark fushën kur i detyrueshëm DocType: Communication,Clicked,Klikuar -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Nuk ka leje për të '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Nuk ka leje për të '{0}' {1} DocType: User,Google User ID,Google ID i përdoruesit apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planifikuar për të dërguar DocType: DocType,Track Seen,Track Parë @@ -835,7 +834,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,Seancat njëkohshme DocType: OAuth Client,Client Credentials,Kredenciale të klientit -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Hap një modul apo mjet +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Hap një modul apo mjet DocType: Communication,Delivery Status,Ofrimit Statusi DocType: Module Def,App Name,Emri app apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,madhësia e skedës Max lejuar është {0} MB @@ -847,8 +846,8 @@ DocType: Feedback Request,Reference Communication,Referenca Komunikimi DocType: Email Queue,Unsubscribe Method,Metoda Unsubscribe DocType: GSuite Templates,Related DocType,Faqet DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Edit për të shtuar përmbajtje -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Zgjidh Gjuha -apps/frappe/frappe/__init__.py +510,No permission for {0},Nuk ka leje për {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Zgjidh Gjuha +apps/frappe/frappe/__init__.py +509,No permission for {0},Nuk ka leje për {0} DocType: DocType,Advanced,I përparuar apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Duket Key API apo API Secret është e gabuar !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referenca: {0} {1} @@ -870,7 +869,7 @@ DocType: Customize Form,Enter Form Type,Shkruani Form Lloji apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Nuk ka shënime të etiketuar. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Hiq Fusha DocType: User,Send Password Update Notification,Dërgo Password Update Njoftim -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Lejimi DOCTYPE, DOCTYPE. Të jenë të kujdesshëm!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Lejimi DOCTYPE, DOCTYPE. Të jenë të kujdesshëm!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Formate përshtatur për printim, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Përditësuar për versionin e ri DocType: Custom Field,Depends On,Varet nga @@ -964,6 +963,7 @@ apps/frappe/frappe/model/document.py +902,one of,një nga apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Ju lutem, përzgjidhni skedarin për kopje" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontrolluar një moment apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Shfaq Tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Nëse Aplikoni strikte User Leja është i kontrolluar dhe User Leja është përcaktuar për një DOCTYPE për anëtarët, atëherë të gjitha dokumentet ku vlera e lidhjes është bosh, nuk do të tregohet në atë User" DocType: Address,Billing,Faturimi DocType: Email Queue,Not Sent,Jo dërguar DocType: Web Form,Actions,Veprimet @@ -994,6 +994,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,qartë apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Çdo ngjarje ditë duhet të përfundojë në të njëjtën ditë. DocType: Communication,User Tags,User Tags apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Images Duke ngarkuar .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Workflow State,download-alt,Shkarko-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Shkarkim App {0} DocType: Communication,Feedback Request,Feedback Kërkesë @@ -1011,7 +1012,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,backups apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Shto kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Optional: Gjithmonë dërgoni në këto kartat e identitetit. Çdo Adresa Email në një rresht të ri -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Detajet Fshih +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Detajet Fshih DocType: Workflow State,Tasks,Detyrat DocType: Event,Tuesday,E martë DocType: Blog Settings,Blog Settings,Blog Cilësimet @@ -1031,9 +1032,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Shkruani një fotografi Python në të njëjtën dosje ku kjo është e ruajtur dhe kolonë dhe rezultat të kthehen. DocType: DocType,Sort Field,Rendit Fusha DocType: Razorpay Settings,Razorpay Settings,Cilësimet Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Ndrysho Filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Fusha {0} nga lloji {1} nuk mund të jetë i detyrueshëm -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","p.sh.. Nëse Aplikoni lejet e përdoruesit është i kontrolluar për Njoftoni DOCTYPE por nuk lejet e përdoruesit janë të përcaktuara për Raportin për anëtarët, atëherë të gjitha raportet janë treguar të që përdoruesi" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Ndrysho Filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Fusha {0} nga lloji {1} nuk mund të jetë i detyrueshëm apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Shto Më shumë apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Hide Chart DocType: System Settings,Session Expiry Mobile,Sesioni Expiry Mobile @@ -1048,6 +1048,7 @@ DocType: Communication,Delayed,I vonuar apps/frappe/frappe/config/setup.py +128,List of backups available for download,Lista e backups në dispozicion për shkarkim apps/frappe/frappe/www/login.html +89,Sign up,Regjistrohu DocType: Test Runner,Output,prodhim +DocType: Email Alert,Set Property After Alert,Set pasurisë pas Alert apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Shtoni fushat e formave. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Duket si diçka është e gabuar me konfigurimin Paypal kësaj faqeje. DocType: File,rgt,rgt @@ -1055,6 +1056,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,fletë DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Nëse Aplikoni lejet e përdoruesit është i kontrolluar për raportin DOCTYPE por asnjë përdorues Drejtat janë të përcaktuara për Raportin për anëtarët, atëherë të gjitha raportet janë treguar për këtë përdorues" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Një listë e burimeve të cilat Klienti App do të kenë qasje për të, pasi përdoruesit e lejon atë.
p.sh. projekti" DocType: Translation,Translated Text,përkthyer Text DocType: Contact Us Settings,Query Options,Query Options @@ -1072,7 +1074,7 @@ DocType: Address,Contacts,Kontaktet DocType: System Settings,Setup Complete,Setup Complete apps/frappe/frappe/config/setup.py +66,Report of all document shares,Raporti i të gjitha aksioneve dokument apps/frappe/frappe/www/update-password.html +18,New Password,New Fjalëkalimi -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} zhdukur +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} zhdukur apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Na vjen keq! Ju nuk mund të fshini auto-generated komente DocType: Website Theme,Style using CSS,Stil duke përdorur CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DOCTYPE Referenca @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,Modulet Blloku apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Kthehet gjatësi për {0} për '{1}' në '{2}'; Vendosja gjatësinë si {3} do të shkaktojë truncation e të dhënave. DocType: Print Format,Custom CSS,Custom CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Shto një koment -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Injoruar: {0} në {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Injoruar: {0} në {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Identifikohu i gabimit të ngjarjeve të automatizuar (scheduler). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Jo të ndara me presje Vlera e vlefshme (CSV File) @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,Gabim hyrëse DocType: Workflow State,repeat,përsëritje DocType: Website Settings,Banner,Flamur DocType: Role,"If disabled, this role will be removed from all users.","Nëse me aftësi të kufizuara, ky rol do të hiqet nga të gjithë përdoruesit." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Të ndihmojë në Kërko +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Të ndihmojë në Kërko apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Regjistruar por me aftësi të kufizuara DocType: DocType,Hide Copy,Fshih Copy apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Qartë të gjitha rolet @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Vend apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresat DocType: Communication,Shared,përbashkët -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Bashkangjit Document Print +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Bashkangjit Document Print DocType: Bulk Update,Field,fushë DocType: Communication,Received,Marrë DocType: Social Login Keys,Google Client ID,Google Klienti ID @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,Query Raport DocType: User,Set New Password,Set fjalëkalim të ri DocType: User,Github User ID,Github ID i përdoruesit apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Nëse Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nuk mund të fshini ose të anulojë, sepse {0} {1} është e lidhur me {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Nuk mund të fshini ose të anulojë, sepse {0} {1} është e lidhur me {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Aplikacioni i panjohur {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S nuk është një format i vlefshëm raport. Raporti format duhet të \ një nga këto% s DocType: Communication,Chat,Bisedë -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} shfaqet herë të shumta në rreshta {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} shfaqet herë të shumta në rreshta {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} nga {1} për të {2} në rradhë # {3} DocType: Communication,Expired,Skaduar DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Numri i kolonave për një fushë në një Grid (Columns totale në një rrjet duhet të jetë më pak se 11) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Keni një llogari? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Formati Shtyp: {0} DocType: Workflow State,arrow-down,shigjetë-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Shembje -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Përdoruesi nuk lejohet të fshini {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Përdoruesi nuk lejohet të fshini {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Përditësuar Së Fundmi Në DocType: Help Article,Likes,Preferencë DocType: Website Settings,Top Bar,Më Bar DocType: GSuite Settings,Script Code,Kodi script apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Krijo User Email apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Krijo User Email -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Nuk ka leje specifikuara +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Nuk ka leje specifikuara apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Cilësimet globale: Përdoruesit do të jetë në gjendje për të zgjedhur ikona kontrollohet apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} nuk gjendet DocType: Custom Role,Custom Role,Custom roli apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Faqja Kryesore / Test Folder 2 DocType: System Settings,Ignore User Permissions If Missing,Ignore lejet e përdoruesit Nëse Zhdukur -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Ju lutemi ruani dokumentin para se ngarkimi. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Ju lutemi ruani dokumentin para se ngarkimi. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Fusni fjalëkalimin tuaj DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Qasja Sekret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Shto Një tjetër koment apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Edit DOCTYPE apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Çabonuar nga Newsletter -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Dele duhet të vijë para një seksion Pushim +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Dele duhet të vijë para një seksion Pushim apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Last Modified By DocType: Workflow State,hand-down,dorë poshtë DocType: Address,GST State,GST State -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Nuk mund të vënë Cancel pa Submit +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Nuk mund të vënë Cancel pa Submit DocType: Website Theme,Theme,Temë apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Ka pasur gabime. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Redirect URI detyruar të Kodit Auth @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Cilë DocType: Website Theme,Text Color,Tekst Color DocType: Desktop Icon,Force Show,Force Trego apps/frappe/frappe/auth.py +78,Invalid Request,Kërkesë e pavlefshme -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Kjo formë nuk ka asnjë kontribut +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Kjo formë nuk ka asnjë kontribut apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sesioni Expiry duhet të jetë në formatin {0} DocType: Website Sidebar Item,Group,Grup DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Zgjidh target = "_blank" për të hapur në një faqe të re. @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignore encoding gabime. DocType: Workflow State,wrench,pikëllim apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Nuk është caktuar -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Setup> User DocType: Authentication Log,Date,Data DocType: Website Settings,Disable Signup,Disable Regjistrohu apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Uluni të shtrënguar ndërsa sistemi juaj është duke u Setup. Kjo mund të marrë disa momente. @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Shto koment DocType: DocField,Mandatory,I detyrueshëm apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Module të eksportit -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Jo lejet themelore set +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Jo lejet themelore set apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,abonimi juaj do të përfundojë më {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Download link për backup tuaj do të dërgohet në adresën e mëposhtme email: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Kuptimi i Submit, Cancel Ndreqni" @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,query-raporti apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Caktuar për {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filters ruajtur DocType: DocField,Percent,Përqind -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Ju lutemi të vendosur filtra +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Ju lutemi të vendosur filtra apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Linked Në DocType: Workflow State,book,libër DocType: Website Settings,Landing Page,Landing Faqja -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Gabim në Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Gabim në Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Emri apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Importit Kërkesa queued. Kjo mund të marrë një disa momente, ju lutemi të jetë i durueshëm." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Nuk ka leje të vendosur për këtë kriter. @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,Lejo Login duke përdor apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Ju nuk keni leje të mjaftueshme për të hyrë në këtë informacion. Ju lutemi të kontaktoni administratorin tuaj për të marrë qasje. DocType: Custom Field,Custom,Me porosi apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup Email Alert bazuar në kritere të ndryshme. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Postimet e ngritur nën {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Postimet e ngritur nën {0} DocType: Email Alert,Send alert if date matches this field's value,Dërgo alarm në qoftë se data ndeshjet vlerën e kësaj fushe për DocType: Workflow,Transitions,Transitions apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Hiq {0} dhe fshini të gjitha të dhënat? @@ -1304,9 +1305,8 @@ DocType: User,Login After,Identifikohu Pas DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Shtypje DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nuk Llogaria Setup. Ju lutem të krijuar një llogari të re email nga Setup> Email> Email Llogaria DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision duhet të jetë midis 1 dhe 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision duhet të jetë midis 1 dhe 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,dhe DocType: Error Snapshot,Frames,Frames @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,Image Link DocType: Auto Email Report,Report Filters,Raporti Filters apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,tani DocType: Workflow State,step-backward,hap prapa -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Ju lutemi të vendosur çelësat Dropbox akses ne faqen config tuaj apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Fshije këtë rekord për të lejuar dërgimin në këtë adresë e-mail apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Vetëm Fushat e detyrueshme janë të nevojshme për të dhënat e reja. Ju mund të fshini kolona jo-detyrueshme në qoftë se ju dëshironi. @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,Është Attachments Folder apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Hapi te gjitha apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Valid Identifikohu id nevojshme. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Ri-hapur -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ju keni anuluar pagesën -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Ju lutem, përzgjidhni një skedar CSV vlefshme me të dhënat" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Ju lutem, përzgjidhni një skedar CSV vlefshme me të dhënat" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} un-ndarë këtë dokument me {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Tranzicioni dokument Status nga {0} për {1} nuk lejohen DocType: DocType,"Make ""name"" searchable in Global Search",Bëni "name" kërkueshme në Global Kërko @@ -1351,15 +1350,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Vle DocType: Help Category,Help Category,Ndihmë Kategoria apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Përdoruesi {0} është me aftësi të kufizuara apps/frappe/frappe/www/404.html +8,Page missing or moved,Faqe zhdukur ose lëvizur -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Ndrysho {0} pronat DocType: DocType,Route,rrugë apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay settings Pagesa Gateway DocType: DocField,Name,Emër apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Ju kanë tejkaluar hapësirën max e {0} për planin tuaj. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Kërko docs DocType: OAuth Authorization Code,Valid,i vlefshëm -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Lidhje të hapur -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Gjuha jote +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Lidhje të hapur +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Gjuha jote apps/frappe/frappe/desk/form/load.py +46,Did not load,A nuk e ngarkesës apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Shto Row DocType: Tag Category,Doctypes,Doctypes @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Është kërk DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Mund të shkruani apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Disa dokumente, si një faturë, nuk duhet të ndryshohet herë përfundimtar. Shteti i fundit për dokumente të tilla quhet Dërguar. Ju mund të kufizojnë të cilat role mund Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Ju nuk jeni i lejuar për të eksportuar këtë raport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Ju nuk jeni i lejuar për të eksportuar këtë raport apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 pika të zgjedhura DocType: Newsletter,Test Email Address,Test Adresa Email DocType: ToDo,Sender,Dërgues @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,Import zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokumenti ID DocType: Print Settings,Letter,Letër -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Fusha imazhi duhet të jetë e tipit Bashkangjit Image +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Fusha imazhi duhet të jetë e tipit Bashkangjit Image DocType: DocField,Columns,Columns DocType: Async Task,Succeeded,Sukses apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Fushat e detyrueshme të kërkuara në {0} @@ -1459,7 +1457,7 @@ DocType: DocField,Text Editor,Text Editor apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Cilësimet për Rreth Nesh Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Ndrysho Custom HTML DocType: Error Snapshot,Error Snapshot,Gabim Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Në +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Në DocType: Email Alert,Value Change,Vlera Ndryshimi DocType: Standard Reply,Standard Reply,Standard Përgjigje apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Gjerësia e kuti input @@ -1475,12 +1473,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Përdoreni këtë fieldname për të gjeneruar titullin apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Import Email Nga apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Fto si Përdorues -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Zgjidhni Attachments +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Zgjidhni Attachments apps/frappe/frappe/model/naming.py +94, for {0},për {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Ka pasur gabime. Tregojani këtë. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Ju nuk jeni i lejuar për të shtypur këtë dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Ju nuk jeni i lejuar për të shtypur këtë dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Ju lutemi të vendosur vlerën filtra në tabelë Report Filter. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Loading Raport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Loading Raport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,abonimi juaj do të përfundojë sot. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Bashkangjit Skeda @@ -1510,7 +1508,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Zgjerime rajonale DocType: LDAP Settings,Base Distinguished Name (DN),Base nderuar Emri (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Lënë këtë bisedë -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Opsione nuk është caktuar për fushën Lidhje {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Opsione nuk është caktuar për fushën Lidhje {0} DocType: Customize Form,"Must be of type ""Attach Image""",Duhet të jenë të tipit "Bashkangjit Image" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Unselect All apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Ju nuk mund të unset "Lexo vetëm" për fushën e {0} @@ -1553,9 +1551,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Shënim apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Gabim Raport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,kushtet reagime nuk përputhen -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Fusha Timeline duhet të jetë një fieldname vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Fusha Timeline duhet të jetë një fieldname vlefshme DocType: Currency,Symbol,Simbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Row # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Row # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Fjalëkalimi i ri me email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Hyr nuk lejohet në këtë kohë DocType: Email Account,Email Sync Option,Email Option Sync @@ -1577,7 +1575,7 @@ DocType: DocField,Text,Tekst apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard përgjigjet pyetjeve të zakonshme. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Gabim Dërgimi DocType: Workflow State,volume-off,Volumi-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Pëlqyer nga {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Pëlqyer nga {0} DocType: Footer Item,Footer Item,Footer Item ,Download Backups,Shkarko Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Faqja Kryesore / Test Folder 1 @@ -1612,7 +1610,7 @@ DocType: Web Page,Text Align,Tekst Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Emri nuk mund të përmbajë karaktere të veçanta si {0} DocType: Contact Us Settings,Forward To Email Address,Forward Për Email Adresa apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Trego të gjitha të dhënat -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Titulli fushë duhet të jetë një fieldname vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Titulli fushë duhet të jetë një fieldname vlefshme apps/frappe/frappe/config/core.py +7,Documents,Dokumentet DocType: Email Flag Queue,Is Completed,është e përfunduar apps/frappe/frappe/www/me.html +22,Edit Profile,Ndrysho Profilin @@ -1622,8 +1620,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Kjo fushë do të shfaqet vetëm nëse fieldname përcaktuar këtu ka vlerë OR rregullat janë të vërtetë (shembuj): myfield eval: doc.myfield == 'Vlera ime "eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,sot -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,sot +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,sot +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,sot apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Pasi të keni vendosur këtë, përdoruesit do të jetë vetëm dokumente në gjendje qasje (p.sh.. Blog post), ku ekziston lidhja (p.sh.. Blogger)." DocType: Error Log,Log of Scheduler Errors,Identifikohu i Gabimet scheduler DocType: User,Bio,Bio @@ -1647,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 yll qenë më e ulët dhe 5 yje të qenë vlerësimi më i lartë DocType: Event,Ref Name,Emri ref DocType: Web Page,Center,Qendër +DocType: Email Alert,Value To Be Set,Vlera të jetë vendosur apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Niveli i parë DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Përfaqëson shtetet të lejuara në një dokument dhe rolin e caktuar për të ndryshuar gjendjen. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Refresh Form @@ -1667,18 +1666,18 @@ DocType: DocType,Has Web View,Ka Web Shiko apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Emri DOCTYPE duhet të fillojë me një letër dhe ajo vetëm mund të përbëhet nga shkronja, numra, hapësirave dhe nënvizon" DocType: Communication,Spam,Të bllokuara DocType: Integration Request,Integration Request,Kërkesa e integrimit -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,I dashur +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,I dashur DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Llogaritë përdoruesin DocType: Web Page,HTML for header section. Optional,HTML për header seksion. Fakultativ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ky tipar është markë e re dhe ende eksperimentale -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimale {0} rreshtave lejohen +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimale {0} rreshtave lejohen DocType: Email Unsubscribe,Global Unsubscribe,Global Unsubscribe apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Kjo është një fjalëkalim shumë e zakonshme. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Pikëpamje DocType: Communication,Assigned,caktuar DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Zgjidh Printo Format +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Zgjidh Printo Format apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,modelet e tastierës shkurtra janë të lehtë me mend DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Kohëzgjatja e {0} duhet të jetë në mes të 1 dhe 1000 @@ -1716,7 +1715,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Përdoruesi nuk mund të kërkoni apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Invalid Format Output DocType: Custom DocPerm,Apply this rule if the User is the Owner,Aplikoni këtë rregull në qoftë se përdoruesi është pronar -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Do të jetë ID tuaj login +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Do të jetë ID tuaj login apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Të ndërtuar raportin DocType: Note,Notify users with a popup when they log in,Të njoftojë përdoruesit me një popup kur hyni apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} nuk ekziston, zgjidhni një objektiv të ri për të bashkojë" @@ -1735,17 +1734,18 @@ DocType: User Permission for Page and Report,Roles Permission,rolet Leja apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Update DocType: Error Snapshot,Snapshot View,Snapshot Shiko apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Ju lutemi ruani Newsletter para se të dërgonte -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Mundësitë e zgjedhjes duhet të jetë një DOCTYPE e vlefshme për fushën e {0} në rresht {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} vit (e) më parë +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Mundësitë e zgjedhjes duhet të jetë një DOCTYPE e vlefshme për fushën e {0} në rresht {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Ndrysho Prona DocType: Patch Log,List of patches executed,Lista e arna të ekzekutohet apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} tashmë unsubscribed -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Komunikimi Medium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Komunikimi Medium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Ju lutem zgjidhni një tjetër metodë e pagesës. Razorpay nuk e mbështet transaksionet në monedhë të '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Në radhë për backup. Ajo mund të marrë disa minuta në një orë. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Regjistrohu OAuth Klienti App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nuk mund të jetë "{2}". Ajo duhet të jetë një nga "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} nuk mund të jetë "{2}". Ajo duhet të jetë një nga "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} ose {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Shfaq ose fshih Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Fjalëkalimi Update @@ -1772,7 +1772,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Trego Line Breaks pas seksioneve DocType: Blogger,Short Name,Emri i shkurtër apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Ju jeni zgjedhur opsionin Sync si të gjitha, ajo do të Sinkronizo sërish të gjithë \ lexohet si mesazh të palexuar nga serveri. Kjo mund të shkaktojë dyfishimin \ e komunikimit (email)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Files Size @@ -1784,6 +1784,7 @@ DocType: Contact,Purchase Manager,Menaxher Blerje DocType: Custom Script,Sample,Mostër apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,pakategorizueme Tags DocType: Event,Every Week,Çdo javë +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Email nuk Llogaria Setup. Ju lutem të krijuar një llogari të re email nga Setup> Email> Email Llogaria apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Kliko këtu për të kontrolluar përdorimin tuaj ose të përmirësuar në një plan më të lartë DocType: Custom Field,Is Mandatory Field,Është terren i detyrueshëm DocType: User,Website User,Website i përdoruesit @@ -1807,16 +1808,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Menu Sidebar DocType: Workflow State,pencil,laps apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chat mesazhe dhe njoftime të tjera. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Fut Pas nuk mund të vendosen si {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Fut Pas nuk mund të vendosen si {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} me apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email Setup Llogaria ju lutemi shkruani fjalëkalimin tuaj për: DocType: Workflow State,hand-up,dorë-up DocType: Blog Settings,Writers Introduction,Shkrimtarëve Hyrje DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Gabim gjatë vlerësimit Email Alert {0}. Ju lutemi të rregulluar template tuaj. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Gabim gjatë vlerësimit Email Alert {0}. Ju lutemi të rregulluar template tuaj. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Zgjidh Dokumenti Lloji ose Roli për të filluar. DocType: Contact,Passive,Pasiv DocType: Contact,Accounts Manager,Llogaritë Menaxher +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,pagesa juaj është anuluar. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Zgjidh Lloji i Skedarit DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Faqja nuk u gjet @@ -1844,6 +1846,7 @@ DocType: Property Setter,Property Type,Lloji i Pronës DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Vetëm Administratori mund të ruaj një raport standarde. Ju lutemi të riemërtoni dhe për të shpëtuar. DocType: System Settings,Background Workers,Punëtorët Historiku +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} kundërta me objektin meta DocType: Deleted Document,Data,Të dhëna apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumenti Statusi apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Ju keni bërë {0} nga {1} @@ -1868,7 +1871,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Lejet Shfaq User apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Ju duhet të keni hyrë brenda dhe kanë Sistemit Menaxher rol për të të jetë në gjendje për të hyrë në backups. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,mbetur -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Ju lutem kurseni para bashkëngjitur. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Ju lutem kurseni para bashkëngjitur. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Shtuar {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Tema e albumit është vendosur në {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype nuk mund të ndryshohet nga {0} në {1} në rresht {2} @@ -1889,11 +1892,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesioni Fil apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Sesioni Fillimi Dështoi apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Ky email është dërguar {0} për të dhe të kopjohet në {1} DocType: Workflow State,th,-të -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Ju lutemi të setup parazgjedhur Email llogarisë nga Setup> Email> Email Llogaria -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Krijo një të ri {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Krijo një të ri {0} DocType: Email Rule,Is Spam,është Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Raporti {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Hapur {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Hapur {0} DocType: OAuth Client,Default Redirect URI,Default Redirect URI DocType: Email Alert,Recipients,Marrësit DocType: Workflow State,ok-sign,ok-shenjë @@ -1911,6 +1913,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Ndihmë Artikuj ,Modules Setup,Modulet Setup apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Lloji: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,pagesa juaj ka dështuar. DocType: Communication,Unshared,i pandarë DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Moduli Not Found @@ -1958,7 +1961,7 @@ DocType: Website Settings,Brand Image,markë Image DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Setup e navigimit të lartë bar, futboll dhe logo." DocType: Web Form Field,Max Value,Max Vlera -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Për {0} në nivelin {1} në {2} në rresht {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Për {0} në nivelin {1} në {2} në rresht {3} DocType: Contact,All,Të gjithë DocType: Email Queue,Recipient,Marrës DocType: Communication,Has Attachment,ka Attachment @@ -1975,7 +1978,8 @@ DocType: Workflow State,align-right,lidhur djathtë DocType: Auto Email Report,Email To,Email To apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Dosje {0} nuk është bosh DocType: Page,Roles,Rolet -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Fusha {0} nuk është selectable. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Error: Vlera mungon për {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Fusha {0} nuk është selectable. DocType: System Settings,Session Expiry,Sesioni Expiry DocType: Workflow State,ban-circle,ndalim-rrethi DocType: Email Flag Queue,Unread,i palexuar @@ -1990,7 +1994,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Defaults User apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Krijo ri DocType: Workflow State,chevron-down,Chevron-poshtë -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email mos dërguar për {0} (c'regjistruar / aftësi të kufizuara) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email mos dërguar për {0} (c'regjistruar / aftësi të kufizuara) DocType: Async Task,Traceback,Gjurmim DocType: Currency,Smallest Currency Fraction Value,Vogël Valuta Vlera Fraksion apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Cakto Për @@ -2001,12 +2005,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Nga DocType: Website Theme,Google Font (Heading),Google Font (kreu) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Zgjidh një nyje grupi i parë. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Gjej {0} në {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Gjej {0} në {1} DocType: OAuth Client,Implicit,i nënkuptuar DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Append si komunikim kundër këtij DOCTYPE (duhet të ketë fusha, "Statusi", "Subjekti")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI për marrjen kodin autorizim sapo përdoruesi lejon qasje, si dhe përgjigjet e dështimit. Në mënyrë tipike një endpoint REST ekspozuar nga Klienti App.
p.sh. http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Nuk lejohet të ndryshojë {0} pas dorëzimit +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Nuk lejohet të ndryshojë {0} pas dorëzimit DocType: Communication,Comment Type,Koment Type DocType: OAuth Client,OAuth Client,OAuth Client apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Përdoruesit @@ -2021,7 +2025,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filter Data DocType: Auto Email Report,Filter Data,Filter Data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Shto një tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Ju lutemi bashkangjitni një fotografi të parë. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Ju lutemi bashkangjitni një fotografi të parë. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Ka pasur disa gabime vendosja emrin, ju lutem kontaktoni administratorin" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Llogaria Incoming email nuk është e saktë apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2036,11 +2040,11 @@ DocType: Blog Post,Email Sent,Email dërguar DocType: DocField,Ignore XSS Filter,Ignore XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,hequr apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,settings Dropbox backup -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Dërgo me E-mail +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Dërgo me E-mail DocType: Website Theme,Link Color,Link Color apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Përdoruesi {0} nuk mund te me aftësi të kufizuara apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Sistemi Menaxheri i nderuar," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Vendi juaj +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Vendi juaj DocType: Event,Sunday,E diel apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,In Grid View DocType: Address Template,Template,Shabllon @@ -2048,7 +2052,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Cilësimet LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ndryshimin apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal settings portë e pagesës -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) do të cunguar, si karaktere max lejuara është {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) do të cunguar, si karaktere max lejuara është {2}" DocType: OAuth Client,Resource Owner Password Credentials,Burimeve Owner letrat kredenciale Password DocType: OAuth Client,Response Type,Response Lloji apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Përdoruesit @@ -2065,7 +2069,7 @@ DocType: DocField,Table,Tryezë DocType: File,File Size,Madhësia e dokumentit apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Ju duhet të identifikoheni për të paraqitur këtë formular DocType: User,Background Image,Historiku Image -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Zgjidh vendin tuaj, Time Zone dhe monedhës" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Zgjidh vendin tuaj, Time Zone dhe monedhës" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Ndërmjet DocType: Async Task,Queued,Queued @@ -2074,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,R DocType: Custom DocPerm,Create,Krijoj apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Filter pavlefshme: {0} DocType: Email Account,no failed attempts,Përpjekjet e dështuara asnjë +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,No parazgjedhur Adresa Template gjetur. Ju lutem të krijuar një të ri nga Setup> Printime dhe quajtur> Adresa Stampa. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Qasja Token @@ -2091,8 +2096,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Emri i përdoruesit DocType: DocType,Image View,Image Shiko apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Duket si diçka shkoi keq gjatë transaksionit. Që ne nuk e kanë konfirmuar pagesën, Paypal automatikisht do të kthejë këtë shumë. Në qoftë se jo, ju lutem na dërgoni një email dhe përmend ID Treguesi: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Përfshin simbole, numra dhe shkronja kapitale në fjalëkalimin" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Fut Pas fushë '{0}' të përmendur në Custom Field '{1}', me etiketën "{2} ', nuk ekziston" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Përfshin simbole, numra dhe shkronja kapitale në fjalëkalimin" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Fut Pas fushë '{0}' të përmendur në Custom Field '{1}', me etiketën "{2} ', nuk ekziston" DocType: Workflow State,signal,sinjal DocType: DocType,Show Print First,Shfaq Printo pari apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter për të postuar @@ -2122,13 +2127,14 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' nuk u gjet apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Hiq Neni DocType: User,Change Password,Ndrysho fjalekalimin -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email pavlefshme: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Përshëndetje! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email pavlefshme: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Përshëndetje! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Fundi ngjarje duhet të jetë pas fillimit apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Ju nuk keni leje për të marrë një raport mbi: {0} +DocType: System Settings,Apply Strict User Permissions,Aplikoni Permissions rreptë Përdoruesit DocType: DocField,Allow Bulk Edit,Lejo Edit Bulk DocType: Blog Post,Blog Post,Blog Post -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Kërkim i Avancuar +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Kërkim i Avancuar apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Udhëzime Password Reset janë dërguar në email-it tuaj apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Niveli 0 është për lejet e nivelit dokument, \ nivele më të larta për lejet e nivelit fushë." @@ -2146,15 +2152,14 @@ DocType: OAuth Bearer Token,Revoked,revokohet DocType: Web Page,Sidebar and Comments,Sidebar dhe Komente apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Kur ju të ndryshojë një dokument pasi Cancel dhe për të shpëtuar atë, ajo do të merrni një numër të ri që është një version i numrit të vjetër." DocType: Stripe Settings,Publishable Key,Key publikueshme -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} vit (e) më parë DocType: Workflow State,circle-arrow-left,rrethi-shigjetë majtë apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache server nuk running. Ju lutemi te kontaktoni Administrator / mbështetjen e teknologjisë apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Emri Party -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Bëni një rekord të ri +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Bëni një rekord të ri apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,kërkim DocType: Currency,Fraction,Fraksion DocType: LDAP Settings,LDAP First Name Field,LDAP Emri Field -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Zgjidh nga attachments ekzistuese +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Zgjidh nga attachments ekzistuese DocType: Custom Field,Field Description,Fusha Përshkrim apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Emri nuk është caktuar nëpërmjet Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Inbox @@ -2200,11 +2205,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Niveli leje DocType: User,Send Notifications for Transactions I Follow,Dërgo Lajmërimet për transaksionet Unë ndjek -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nuk mund të vënë Submit, Cancel Ndreqni pa Shkruani" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Nuk mund të vënë Submit, Cancel Ndreqni pa Shkruani" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,A jeni i sigurt se doni të fshini shtojcën? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nuk mund të fshini ose të anulojë, sepse {0} {1} është e lidhur me {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Nuk u gjetën për 'rezultatet

-apps/frappe/frappe/__init__.py +1063,Thank you,Faleminderit +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Nuk mund të fshini ose të anulojë, sepse {0} {1} është e lidhur me {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Faleminderit apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Kursim DocType: Print Settings,Print Style Preview,Print Preview Style apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2216,10 +2220,10 @@ DocType: DocField,In List View,Në Shiko listen DocType: Email Account,Use TLS,Përdorimi TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Login pavlefshme apo fjalëkalimin apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Shtoje porosi javascript në forma. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Asnjë +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Asnjë ,Role Permissions Manager,Lejet Roli Menaxher apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Emri i formatit të ri Shtyp -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Attachment Clear +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Attachment Clear apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,E detyrueshme: ,User Permissions Manager,Lejet User Menaxher DocType: Property Setter,New value to be set,Vlera e re të jetë vendosur @@ -2248,26 +2252,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 dit apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorizojnë blog posts. DocType: Workflow State,Time,Kohë DocType: DocField,Attach,Bashkangjit -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nuk është një model i vlefshëm fieldname. Ajo duhet të jetë {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} nuk është një model i vlefshëm fieldname. Ajo duhet të jetë {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Dërgo Reagim kërkesë vetëm në qoftë se ka të paktën një komunikimi është në dispozicion për dokumentin. DocType: Custom Role,Permission Rules,Rregullat leje DocType: GSuite Settings,GSuite Settings,GSuite Cilësimet DocType: Address,Links,Lidhjet -apps/frappe/frappe/model/base_document.py +428,Value missing for,Vlera e humbur për +apps/frappe/frappe/model/base_document.py +427,Value missing for,Vlera e humbur për apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Shto Fëmija -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekordi i Dërguar nuk mund të fshihet. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Rekordi i Dërguar nuk mund të fshihet. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Size backup DocType: GSuite Templates,Template Name,Emri template -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,lloj i ri i dokumentit +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,lloj i ri i dokumentit DocType: Custom DocPerm,Read,Lexoj DocType: Role Permission for Page and Report,Role Permission for Page and Report,Leja rol për Page dhe Raportin apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Vendose Vlera apps/frappe/frappe/www/update-password.html +14,Old Password,Vjetër Fjalëkalimi -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Postime nga {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Postime nga {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Për kolona format, japin etiketat kolonë në pyetje." DocType: Has Domain,Has Domain,ka Domain apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Nuk keni një llogari? Sign up -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Nuk mund të vënë Cakto Ndryshojë nëse nuk Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Nuk mund të vënë Cakto Ndryshojë nëse nuk Submittable DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Lejet Ndrysho Roli DocType: Communication,Link DocType,Link DOCTYPE @@ -2366,7 +2370,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Ju lutemi të siguruar që profili juaj ka një adresë e-mail apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Ju keni ndryshime të paruajtura në këtë formë. Ju lutem kurseni para se të vazhdoni. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Parazgjedhur për {0} duhet të jetë një opsion +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Parazgjedhur për {0} duhet të jetë një opsion DocType: Tag Doc Category,Tag Doc Category,Tag Doc Category DocType: User,User Image,User Image apps/frappe/frappe/email/queue.py +289,Emails are muted,Emails janë mbytur @@ -2399,7 +2403,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Veprimet e DocType: Workflow State,ok,në rregull DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Këto vlera do të rifreskohet automatikisht në transaksione dhe gjithashtu do të jenë të dobishme për të kufizuar lejet për këtë përdorues për transaksionet që përmbajnë këto vlera. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Botues -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Failed: {0} në {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Failed: {0} në {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Zgjidhni detyrueshëm apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Shfletoj apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Emails dërguar @@ -2411,7 +2415,7 @@ DocType: Async Task,Running,Drejtimin apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Reset Password apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Ju lutem Upgrade për të shtuar më shumë se {0} abonentë DocType: Workflow State,hand-left,dorës së majtë -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} për {1} nuk mund të jetë unike +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} për {1} nuk mund të jetë unike DocType: Email Account,Use SSL,Përdorimi SSL DocType: Workflow State,play-circle,play-rrethi apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Zgjidh format të printuar për Edit @@ -2466,7 +2470,7 @@ DocType: DocField,No Copy,Nuk Copy DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Identifikohuni me LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Nëse pronari +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Nëse pronari DocType: OAuth Authorization Code,Expiration time,koha e skadimit DocType: Web Page,Website Sidebar,Website Sidebar DocType: Web Form,Show Sidebar,Trego Sidebar @@ -2486,7 +2490,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Nuk mund të gjej apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Emrat dhe mbiemrat nga ana tjetër janë të lehtë për të guess. apps/frappe/frappe/config/website.py +93,Knowledge Base,Njohuri baze DocType: Workflow State,briefcase,çantë -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Vlera nuk mund të ndryshohet për {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Vlera nuk mund të ndryshohet për {0} DocType: Feedback Request,Is Manual,është Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Style përfaqëson ngjyrën button: Suksesi - Green, Danger - Red, inversi e - Zi, primar - blu të errët, Info - Light Blue, duke paralajmëruar - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Asnjë Raporti Loaded. Ju lutemi përdorni query-raport / [Raporti Emri] për të drejtuar një raport. @@ -2563,7 +2567,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,progres apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,sipas Rolit apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Fushat Pagjetur apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname pavlefshme '{0}' në autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Kërko në një lloj dokument +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Kërko në një lloj dokument apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Lejojnë fushë të mbetet editable edhe pas dorëzimit DocType: Custom DocPerm,Role and Level,Roli dhe Niveli DocType: File,Thumbnail URL,Thumbnail URL @@ -2580,18 +2584,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Me shume informacion DocType: Desktop Icon,Desktop Icon,Desktop Icon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Pagesa juaj u pranua me sukses +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Pagesa juaj u pranua me sukses apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Na vjen keq! Ju nuk jeni i lejuar për të parë këtë faqe. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Këshillë: Double klikoni qelizë për të redaktuar DocType: Workflow State,bell,zile apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Gabim në mail apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Share këtë dokument me +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> lejet e përdoruesit Menaxher apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} nuk mund të jetë një nyje gjethe si ajo ka fëmijë DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Shto Attachment +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Shto Attachment DocType: Communication,Email,Email apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Faleminderit për mesazhin tuaj -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Dërgo Lexo Marrjes +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Dërgo Lexo Marrjes DocType: Stripe Settings,Stripe Settings,Cilësimet shirit DocType: Dropbox Settings,Dropbox Setup via Site Config,Setup Dropbox via Faqes Konfigurimi apps/frappe/frappe/www/login.py +64,Invalid Login Token,Pavlefshme Identifikohu Token @@ -2657,6 +2662,7 @@ DocType: DocType,Web View,web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Kujdes: Kjo Formati Print është në stilin e vjetër dhe nuk mund të gjenerohet nëpërmjet API. DocType: DocField,Print Width,Printo Gjerësia ,Setup Wizard,Setup Wizard +DocType: Address,GST State Number,GST Numri i Shtetit DocType: User,Allow user to login only before this hour (0-24),Lejo përdoruesit të identifikoheni vetëm para në këtë orë (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Dosje është e detyrueshme apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2682,7 +2688,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Tekst i vogël apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administratori arrihen {0} në {1} nëpërmjet IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Është e barabartë me -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Lloj Options 'Dynamic Link' e fushës duhet të vënë në një tjetër terren Link me opsione si "DOCTYPE ' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Lloj Options 'Dynamic Link' e fushës duhet të vënë në një tjetër terren Link me opsione si "DOCTYPE ' DocType: About Us Settings,Team Members Heading,Anëtarët e ekipit Kreu apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Invalid CSV Format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Set Numri i Backups @@ -2693,7 +2699,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Partia e tretë Authentication DocType: Website Settings,Banner is above the Top Menu Bar.,Banner është mbi Top Menu Bar. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Export Raporti: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Export Raporti: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} nuk ekziston DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2716,7 +2722,7 @@ DocType: Kanban Board Column,Column Name,Kolona Emri DocType: Language,Based On,Bazuar në apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Bëni Default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Kontrolloni Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} për {1} nuk mund të indeksuar +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} për {1} nuk mund të indeksuar DocType: Communication,Email Account,Email Llogaria DocType: Workflow State,Download,Shkarko DocType: Blog Post,Blog Intro,Blog Intro @@ -2727,7 +2733,7 @@ DocType: Web Page,Insert Code,Fut Kodi DocType: ToDo,Low,Ulët apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Ju mund të shtoni pronat dinamike nga dokumenti duke përdorur Jinja templating. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},limiti pavlefshme {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lista një lloj dokument +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lista një lloj dokument DocType: Event,Ref Type,Ref Type apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Nëse ju jeni ngarkimi rekorde të reja, të lënë bosh "Emri" (ID) kolonë." DocType: Address,Chattisgarh,Chattisgarh @@ -2749,26 +2755,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Dërgo Printo si PDF DocType: Web Form,Amount,Sasi DocType: Workflow Transition,Allowed,I lejuar -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Nuk mund të jetë vetëm një FOLD në një formë +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Nuk mund të jetë vetëm një FOLD në një formë apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Në pamundësi për të shkruar file format për {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Rivendosur në parametrat e parazgjedhur? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Invalid Faqja Kryesore apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Hyrje e pa vlefshme. Provo përsëri. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opsionet e nevojshme për Link apo fushë Tabela tipit {0} në rresht {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Opsionet e nevojshme për Link apo fushë Tabela tipit {0} në rresht {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opsionet e nevojshme për Link apo fushë Tabela tipit {0} në rresht {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Opsionet e nevojshme për Link apo fushë Tabela tipit {0} në rresht {1} DocType: Auto Email Report,Send only if there is any data,Dërgo vetëm nëse ka të dhëna apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Filters Reset -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Leja në nivel 0 duhet të vendosen para se nivelet më të larta janë vendosur +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Leja në nivel 0 duhet të vendosen para se nivelet më të larta janë vendosur apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Caktimi mbyllur nga {0} DocType: Integration Request,Remote,i largët -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Llogarit +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Llogarit apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Ju lutemi zgjidhni DOCTYPE parë apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Konfirmo Email juaj apps/frappe/frappe/www/login.html +42,Or login with,Ose kyçuni me DocType: Error Snapshot,Locals,Vendorët apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Komunikohet nëpërmjet {0} në {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ju përmendur në një koment në {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p.sh. (55 + 434) / 4 ose = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,p.sh. (55 + 434) / 4 ose = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} është e nevojshme DocType: Integration Request,Integration Type,Lloji i integrimit DocType: Newsletter,Send Attachements,Dërgo attachements @@ -2778,15 +2784,15 @@ DocType: DocField,Perm Level,Niveli Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Ngjarje në kalendarin e sotme DocType: Web Page,Web Page,Faqe interneti DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Në Global Kërko 'nuk lejohet për llojin {0} në rresht {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Në Global Kërko 'nuk lejohet për llojin {0} në rresht {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Në Global Kërko 'nuk lejohet për llojin {0} në rresht {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Në Global Kërko 'nuk lejohet për llojin {0} në rresht {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Shiko Lista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Data duhet të jetë në format: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Data duhet të jetë në format: {0} DocType: Workflow,Don't Override Status,Mos Refuzim Statusi apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Ju lutem jepni një vlerësim. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Kërkesën apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,termi Kërko -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Së pari Përdoruesi: Ju +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Së pari Përdoruesi: Ju apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Zgjidhni Kolumne DocType: Translation,Source Text,burimi Text apps/frappe/frappe/www/login.py +55,Missing parameters for login,Parametrat mungon për hyrje me emrin përkatës @@ -2808,7 +2814,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importimi DocType: ToDo,Assigned By,Caktuar nga apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Ju mund të përdorni Customize Forma për të vendosur nivelet në fushat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Zgjidhni qytetin qe deshironi +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Zgjidhni qytetin qe deshironi DocType: Custom DocPerm,Level,Nivel DocType: Custom DocPerm,Report,Raport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Shuma duhet të jetë më e madhe se 0. @@ -2828,7 +2834,7 @@ DocType: Website Theme,Background,Sfond DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Lista JSON e DocTypes përdoren për të aplikuar lejet e përdoruesit. Nëse bosh, të gjitha DocTypes lidhura do të përdoren për të aplikuar lejet e përdoruesit." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,Ju lutem shtoni një vlerësim -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Nuk mund të vendosur të ndryshojë pa Anulo +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Nuk mund të vendosur të ndryshojë pa Anulo apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Full Faqe DocType: DocType,Is Child Table,Është Tabela e Fëmijëve apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} duhet të jetë një nga {1} @@ -2843,7 +2849,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Kjo shkon mbi Slidesho apps/frappe/frappe/config/setup.py +260,Install Applications.,Install Aplikacione. DocType: Contact,Last Name,Mbiemër DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Nuk ka alarme për sot +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Nuk ka alarme për sot DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Dërgo email attachments Printo si PDF (Recommended) DocType: Web Page,Left,Majtas DocType: Event,All Day,Të gjitha Day @@ -2857,7 +2863,7 @@ DocType: Event,Send an email reminder in the morning,Dërgo një kujtim email n DocType: Blog Post,Published On,Publikuar On DocType: Contact,Gender,Gjini apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Detyrueshme Informacione të humbur: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Fusha '{0}' nuk mund të vendosen si unike si ajo ka vlera jo-unike +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Fusha '{0}' nuk mund të vendosen si unike si ajo ka vlera jo-unike apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Vetëm 200 fut lejohet në një kërkesë DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referenca Type @@ -2870,7 +2876,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,paralajmërim-shenjë DocType: Workflow State,User,Përdorues DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Shfaq Titulli në dritare të shfletuesit si "Parashtesa - Titulli" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Teksti në llojin e dokumentit +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Teksti në llojin e dokumentit apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Testet Run apps/frappe/frappe/handler.py +91,Logged Out,Identifikuar Out apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Më shumë ... @@ -2896,13 +2902,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Aktualisht parë DocType: DocField,Default,Mospagim apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} shtuar -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Zgjeruar per '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Zgjeruar per '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Ju lutemi ruani raportin e parë apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonentë shtuar apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Jo Në DocType: Workflow State,star,yll -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Vlerat ndara me presje -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max width për tip monedhe është 100px në rresht {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Vlerat ndara me presje +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max width për tip monedhe është 100px në rresht {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Ju lutemi të ndajnë përshtypjet tuaja për {0} apps/frappe/frappe/config/website.py +13,Content web page.,Përmbajtja web faqe. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Shto një rol të ri @@ -2921,7 +2927,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Nuk është një përdorues i vlefshëm LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} nuk është një shtet i vlefshëm apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Ju lutem zgjidhni një tjetër metodë e pagesës. PayPal nuk e mbështet transaksionet në monedhë të '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Kërko fushë {0} nuk është e vlefshme +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Kërko fushë {0} nuk është e vlefshme DocType: Workflow State,ok-circle,ok-rrethi apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Ju mund të gjeni gjëra duke pyetur "gjeni portokalli në konsumatorët ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Na vjen keq! Përdoruesi duhet të kenë qasje të plotë në të dhënat e tyre. @@ -2982,7 +2988,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Tekst për t'u shfaqur për Link në web faqe, nëse kjo formë ka një faqe web. Rrugë Link do të jetë e gjeneruar automatikisht bazuar në `page_name` dhe` parent_website_route`" DocType: Feedback Request,Feedback Trigger,Feedback Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Ju lutemi të vendosur {0} parë +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Ju lutemi të vendosur {0} parë DocType: Unhandled Email,Message-id,Message-id DocType: Patch Log,Patch,Copë toke DocType: Async Task,Failed,I dështuar diff --git a/frappe/translations/sr-SP.csv b/frappe/translations/sr-SP.csv index e69de29bb2..26e12213d2 100644 --- a/frappe/translations/sr-SP.csv +++ b/frappe/translations/sr-SP.csv @@ -0,0 +1,42 @@ +apps/frappe/frappe/desk/doctype/todo/todo_list.js +22,Assigned By Me,Dodijelio +apps/frappe/frappe/public/js/frappe/form/toolbar.js +189,New {0} (Ctrl+B),Novi {0} (Ctrl-B) +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +23,Add Filter,Dodaj filter +apps/frappe/frappe/public/js/frappe/model/model.js +26,Assigned To,Dodijeljeno +apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +138,Assign to me,Dodijeljeno meni +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Između +apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Nekategorisani tag-ovi +apps/frappe/frappe/public/js/frappe/form/toolbar.js +163,Customize,Prilagodite +apps/frappe/frappe/desk/reportview.py +253,No Tags,Nema tag-ova +apps/frappe/frappe/public/js/frappe/views/treeview.js +212,New {0},Novi {0} +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +10,Not equals,Nije jednak +apps/frappe/frappe/public/js/frappe/ui/page.html +24,Menu,Meni +apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Status dokumenta +apps/frappe/frappe/config/core.py +27,Script or Query reports,Skripte ili query izvještaji +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +111,Add to Desktop,Dodaj na radnu površinu +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Prava pristupa korisnika +apps/frappe/frappe/public/js/frappe/model/meta.js +186,Created On,Kreirano +apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +107,New,Novi +,User Permissions Manager,Menadžer prava pristupa korisnika +DocType: Workflow State,Refresh,Osvježi +DocType: Contact,Status,Status +apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Dodijeljen {0}: {1} +apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Poslednji put izmijenjeno +DocType: Authentication Log,Full Name,Puno ime +DocType: Custom DocPerm,Import,Uvoz +DocType: Communication,Assigned,Dodijeljeno +apps/frappe/frappe/desk/moduleview.py +94,Standard Reports,Standardni izvještaji +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +49,Assigned To Me,Dodijeljeno meni +,Role Permissions Manager,Menadžer prava pristupa rolama +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +24,Apply,Primijeni +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Kao +DocType: Workflow State,remove,Ukloni +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban +apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Prava pristupa rolama +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Nije u +apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Jednak +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Nije kao +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +10,Reports,Izvještaji +apps/frappe/frappe/public/js/frappe/ui/sort_selector.js +182,Most Used,Najviše korišćeno +DocType: ToDo,Assigned By,Dodijelio +apps/frappe/frappe/desk/report/todo/todo.py +19,ID,ID +DocType: Workflow State,Print,Štampaj diff --git a/frappe/translations/sr.csv b/frappe/translations/sr.csv index 72740bb228..29300fdbac 100644 --- a/frappe/translations/sr.csv +++ b/frappe/translations/sr.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,facebook Имя пользователя DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Напомена: Више седнице ће бити дозвољено у случају мобилном уређају apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Омогућено е пријема за корисника {усерс} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Цан нот сенд ову поруку. Ви сте прешли границу слање {0} е-маилова за овај месец. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Постоянно Представьте {0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Постоянно Представьте {0} ? DocType: Address,County,округ DocType: Workflow,If Checked workflow status will not override status in list view,Ако проверен статуса радни процес неће заменити статус у приказу листе apps/frappe/frappe/client.py +280,Invalid file path: {0},Неисправан пут Филе: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Иза apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Дрво DocType: User,User Emails,усер Емаил DocType: User,Username,Korisničko ime -apps/frappe/frappe/model/base_document.py +581,Value too big,Вредност превелика +apps/frappe/frappe/model/base_document.py +580,Value too big,Вредност превелика DocType: DocField,DocField,ДоцФиелд DocType: GSuite Settings,Run Script Test,Рун Скрипта тест DocType: Contact,Department,Одељење @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Протоколи DocType: Custom DocPerm,This role update User Permissions for a user,Ова улога исправка корисника Дозволе за корисника apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Преименовати {0} DocType: Workflow State,zoom-out,одзумирај -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Не могу открыть {0} , когда его экземпляр открыт" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Не могу открыть {0} , когда его экземпляр открыт" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Таблица {0} не может быть пустым apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,С Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,slike DocType: Communication,Reference Owner,референце Власник DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Најмањи циркулише део јединица (новчић). За пример 1 одсто за УСД и треба да буде уписан као 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Ред" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Ред" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Молимо вас да дате ФУЛЛНАМЕ. apps/frappe/frappe/model/document.py +904,Beginning with,почевши apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Подаци Увоз шаблона @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Родитељ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако је омогућено, снага лозинка ће бити спроведена на основу минималне Лозинка Сцоре вредности. Вредност 2 буде средње јака и 4 бити веома јак." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Ако је омогућено, снага лозинка ће бити спроведена на основу минималне Лозинка Сцоре вредности. Вредност 2 буде средње јака и 4 бити веома јак." DocType: About Us Settings,"""Team Members"" or ""Management""","Чланови тима" или "Манагемент" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Уобичајено за '' Проверите тип терена мора бити или '0' или '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Уобичајено за '' Проверите тип терена мора бити или '0' или '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Јуче DocType: Contact,Designation,Ознака DocType: Test Runner,Test Runner,Тест Руннер @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Је објављен Фиелд DocType: Email Group,Email Group,емаил Група DocType: Note,Seen By,Виђено од apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Додавање више -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Не волим +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Не волим apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Поставите екран ознаку за области apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Неисправна вредност: {0} мора бити {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Изменение свойств поля (скрыть , только для чтения , разрешение и т.д.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Поде apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Модератор Сачувана У DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Контакт опције, као што су "Куери продаје, Подршка упиту" итд сваки на новој линији или раздвојене зарезима." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Преузимање -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Инсерт +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Инсерт apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Изаберите {0} DocType: Print Settings,Classic,Класик DocType: Desktop Icon,Color,Боја @@ -122,7 +122,7 @@ DocType: Translation,Translation,превод apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Инсталирати apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Господин DocType: Custom Script,Client,Клијент -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Овај облик је модификована након што сте га лоадед +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Овај облик је модификована након што сте га лоадед DocType: User Permission for Page and Report,User Permission for Page and Report,Корисник Дозвола за странице и DocType: Address,Himachal Pradesh,Химачал Прадеш DocType: System Settings,"If not set, the currency precision will depend on number format","Ако није подешен, валута прецизност зависиће од броја формата" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Разлог apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Наведите корисника DocType: Email Unsubscribe,Email Unsubscribe,Е-маил Откажи DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Изаберите слику ширине 150пк ца са транспарентном позадином за најбоље резултате. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Први корисник ће постати систем менаџер (можете променити ово касније). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Први корисник ће постати систем менаџер (можете променити ово касније). ,App Installer,Апп Инсталлер DocType: Workflow State,circle-arrow-up,круг-уп арров apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Отпремање ... DocType: Email Domain,Email Domain,емаил Домен DocType: Workflow State,italic,курзиван apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,За свакога -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : Не удается установить Импорт без Создать +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : Не удается установить Импорт без Создать apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Догађаја и других календара. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Сва поља су неопходни да доставе коментаре. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Превуците за сортирање колоне @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Стандард Сидебар apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Не могу да избришем Хоме и прилоге фасцикле apps/frappe/frappe/config/desk.py +19,Files,Фајлови apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Разрешения быть применена на пользователей на основе того, что Роли они назначены." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Није вам дозвољено слање имејлова везаних за овај документ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Молимо одаберите покрвитеља 1 колону од {0} сортирање / групи +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Није вам дозвољено слање имејлова везаних за овај документ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Молимо одаберите покрвитеља 1 колону од {0} сортирање / групи DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Проверите ово ако се тестирају уплате помоћу Сандбок АПИ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Није вам дозвољено брисање стандардне Вебсајт теме DocType: Feedback Trigger,Example,Пример @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Укупно Претплатници apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ЕслиРоль не имеет доступа на уровне 0, то более высокие уровни не имеют смысла ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Сачувај као DocType: Communication,Seen,Сеен -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Схов море детаилс +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Схов море детаилс DocType: System Settings,Run scheduled jobs only if checked,Покрени заказане послове само ако цхецкед apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Ће бити приказан само ако су Одељак Наслови омогућено apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Архива @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Сакриј Хеадинг DocType: Address,Current,Тренутни DocType: Address,Current,Тренутни -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Сродних докумената apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Групе ДоцТипес DocType: Auto Email Report,XLSX,клск DocType: Workflow State,remove-circle,ремове-круг @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,филтер apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},ФИЕЛДНАМЕ {0} не могу да имају посебне карактере као што су {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Упдате многе вредности у једном тренутку. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Грешка: Документ је измењен након што сте је отворили -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Подразумевани Адреса Шаблон фоунд. Креирајте нови из Подешавања> Штампање и брендирања> Адреса Темплате. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} одјављени: {1} DocType: Address,West Bengal,Западни Бенгал -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0} : Не удается установить Назначить Представьте , если не Submittable" +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0} : Не удается установить Назначить Представьте , если не Submittable" DocType: Social Login Keys,Facebook,facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Филтеред би "{0}" DocType: Salutation,Administrator,Администратор @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Наслов блога apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Стандардне улоге не може бити искључена DocType: Address,Mizoram,Прадеш DocType: Newsletter,Newsletter,Билтен -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,не могу користити под-упит како је +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,не могу користити под-упит како је DocType: Web Form,Button Help,дугме Помоћ DocType: Kanban Board Column,purple,љубичаста DocType: About Us Settings,Team Members,Чланови тима @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Гет ио apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Ваша претплата истекао {0}. Да се обнови, {1}." DocType: Workflow State,plus-sign,плус потпише apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Подешавање већ комплетан -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Апп {0} није инсталиран +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Апп {0} није инсталиран DocType: Workflow State,Refresh,Освежити DocType: Event,Public,Јавност apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Ништа да покаже @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Воле apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,емаил Подршка DocType: DocField,Print Hide If No Value,Штампа Сакриј Ако не Вредност DocType: Event,yellow,жут -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Је објављен поље мора бити валидан фиелднаме +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Је објављен поље мора бити валидан фиелднаме apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Уплоад прилог DocType: Block Module,Block Module,Блокирај Модул apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Извоз шаблона @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,СпаркПост apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Нови налог је направљен за вас у {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Упутство е-поштом apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Упутство е-поштом -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Унесите е-маил примаоца (е) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Унесите е-маил примаоца (е) DocType: Print Format,Verdana,Вердана DocType: Email Flag Queue,Email Flag Queue,Емаил Застава редова apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Не може да идентификује отворен {0}. Покушајте нешто друго. @@ -308,8 +306,8 @@ DocType: Communication,Message ID,Мессаге ИД DocType: Property Setter,Field Name,Име поља apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Гоогле ГСуите није подешен. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,или -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Име модул ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Наставити +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Име модул ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Наставити DocType: Custom Field,Fieldname,Имепоља DocType: Workflow State,certificate,потврда DocType: User,Tile,Плочица @@ -318,6 +316,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Погледајте све верзије DocType: Workflow State,Print,штампа DocType: User,Restrict IP,Забранити ИП +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Командна табла apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Невозможно отправить электронную почту в это время apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Потражите или откуцајте команду DocType: Communication,Timeline Name,тимелине Име @@ -328,7 +327,7 @@ DocType: Contact,Sales Master Manager,Продаја Мастер менаџер apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Један Последњи корак apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Назив врсте документа (ДОЦТИПЕ) желиш ово поље да буде повезан са. нпр Кориснички DocType: User,Roles Assigned,Улоге додељују -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,претраживање Помоћ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,претраживање Помоћ DocType: Top Bar Item,Parent Label,Родитељ Лабел apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ваш упит је примио. Ми ћемо одговорити вратити ускоро. Ако имате било какве додатне информације, молимо Вас да одговорите на овај маил." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Разрешения автоматически переведен на стандартные отчеты и альбом . @@ -345,6 +344,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Едит Тарифни DocType: File,File URL,Филе УРЛ DocType: Version,Table HTML,Табела ХТМЛ- +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Но ресултс фоунд фор 'резултата

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Додај претплатника apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Предстојећи догађаји за данас DocType: Email Alert Recipient,Email By Document Field,Е-маил До докумената ратарство @@ -364,17 +364,16 @@ DocType: Web Form,Amount Based On Field,Износ Басед Он Фиелд apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Корисник је обавезан за Подели DocType: DocField,Hidden,сакривен DocType: Web Form,Allow Incomplete Forms,"Дозволи некомплетним, облицима" -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} мора бити први сет +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} мора бити први сет apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Користити неколико речи, избегнете уобичајене фразе." DocType: Workflow State,plane,авион -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Оопс. Ваша уплата није успело. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Ако додајете нове рекорде, ""Именовање Сериес"" постаје обавезан, ако је присутан." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Гет Алертс за данас +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Гет Алертс за данас apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,ДОЦТИПЕ се може преименовати Администратор apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},измењен вредност {0} DocType: Report,JSON,ЈСОН apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Проверите да ли сте за верификацију -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Фолд не може бити на крају обрасца +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Фолд не може бити на крају обрасца DocType: Communication,Bounced,Боунцед DocType: Deleted Document,Deleted Name,deleted Име apps/frappe/frappe/config/setup.py +14,System and Website Users,Системные и сайта Пользователи @@ -393,14 +392,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokument реду з DocType: GSuite Templates,Destination ID,ИД одредишта DocType: Desktop Icon,List,листа DocType: Communication,Link Name,линк Име -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в строке {1} не может быть скрыт и обязательно без умолчанию +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в строке {1} не может быть скрыт и обязательно без умолчанию DocType: System Settings,mm/dd/yyyy,мм / дд / ииии apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Инвалид пассворд: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Инвалид пассворд: DocType: Print Settings,Send document web view link in email,Пошаљи документ Веб Виев везу у е-маил apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ваше повратне информације за документа {0} је успешно сачувана apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,предыдущий -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Ре: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Ре: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} редова за {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Под-валута. За пример "цент" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Изабери додате датотеке @@ -411,10 +410,11 @@ DocType: Desktop Icon,Link,Линк apps/frappe/frappe/utils/file_manager.py +96,No file attached,Нет файла прилагается DocType: Version,Version,версия DocType: User,Fill Screen,Попуните Сцреен -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Није могуће приказати овог дрвета извештај, због недостајућих података. Највероватније, то се филтрира због дозвола." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Молимо Вас да подешавање подразумевани е-маил налог од Сетуп> Емаил> Емаил Аццоунт +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Није могуће приказати овог дрвета извештај, због недостајућих података. Највероватније, то се филтрира због дозвола." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Одаберите Филе apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Едит путем Уплоад -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","Тип документа ..., на пример, купац" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","Тип документа ..., на пример, купац" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Услов '{0}' је неважећи DocType: Workflow State,barcode,баркод apps/frappe/frappe/config/setup.py +232,Add your own translations,Додајте своје преводе @@ -424,7 +424,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Среда apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Осим улогу засновану дозволу правилима , можете да примените дозволе кориснику на основу ДоцТипес ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",Ове дозволе ће се примењивати за све трансакције у којој је дозвољенозапис повезане . -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,поље слика мора бити валидан фиелднаме +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,поље слика мора бити валидан фиелднаме DocType: OAuth Client,Token,знак DocType: Property Setter,ID (name) of the entity whose property is to be set,ИД (име) ентитета чија имовина се подесити apps/frappe/frappe/limits.py +82,"To renew, {0}.","Да се обнови, {0}." @@ -433,7 +433,7 @@ DocType: Web Form,Sidebar Items,Sidebar товары apps/frappe/frappe/installer.py +125,App {0} already installed,Апп {0} већ инсталиран DocType: Workflow State,exclamation-sign,узвик-знак apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Схов Дозволе -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Тимелине поље мора да буде Линк или Динамиц Линк +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Тимелине поље мора да буде Линк или Динамиц Линк apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Датум опсег apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Гантов apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Страна {0} од {1} @@ -441,7 +441,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Пре apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Шифровање кључ је неважећи, проверите сите_цонфиг.јсон" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,на DocType: Kanban Board Column,darkgrey,тамно сива -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Успешно: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Успешно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Не можете да промените информације о кориснику у демо. Молимо Вас да регистрација за нови налог на хттпс://ерпнект.цом apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Молимо вас да дуплирају ово да направи промене apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Пдф генерација није успела због Брокен Имаге линкова @@ -458,24 +458,24 @@ DocType: DocField,Collapsible,Цоллапсибле apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Савед apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,С чиме ти треба помоћ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Опције за изаберите. Свака опција у новом реду. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Постоянно Отменить {0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Постоянно Отменить {0} ? DocType: Workflow State,music,музика DocType: Web Page,Settings,Подешавања apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Молимо наведите тип документа DocType: Print Format,Style Settings,Стиле Подешавања -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Сорт поље {0} мора бити валидан фиелднаме +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Сорт поље {0} мора бити валидан фиелднаме apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Више DocType: Contact,Sales Manager,Менаџер продаје apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Преименовање DocType: Print Format,Format Data,Формат података -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,као +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,као DocType: Customize Form Field,Customize Form Field,Прилагодите поље Форм apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Дозволите кориснику DocType: OAuth Client,Grant Type,грант Тип apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Проверите који су читљиви документи од корисника apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Листинг апликацију није дозвољено -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,користите% као џокер -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Е-маил Домен није подешен за овај налог, Цреате оне?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,користите% као џокер +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Е-маил Домен није подешен за овај налог, Цреате оне?" DocType: User,Reset Password Key,Ресет Пассворд Кеи DocType: Email Account,Enable Auto Reply,Енабле Ауто Одговори apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не види @@ -519,7 +519,7 @@ DocType: DocField,Set Only Once,Установлен только один ра DocType: Email Queue Recipient,Email Queue Recipient,Емаил редова Прималац DocType: Address,Nagaland,Раџадтан apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Корисничко име {0} већ постоји -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} : Не удается установить импорт как {1} не является ввозу +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} : Не удается установить импорт как {1} не является ввозу apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Постоји грешка у вашем Адреса Темплате {0} DocType: Footer Item,"target = ""_blank""",таргет = "_бланк" DocType: Workflow State,hdd,хдд @@ -531,7 +531,7 @@ DocType: Communication,From Full Name,Од Пуно име apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Не морате приступ Пријави: {0} DocType: User,Send Welcome Email,Пошаљи Велцоме Емаил apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Уплоад ЦСВ датотеку која садржи све дозволе корисника у истом формату као Довнлоад. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Ремове Филтер +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Ремове Филтер DocType: Address,Daman and Diu,Даман и Диу DocType: Address,Personal,Лични apps/frappe/frappe/config/setup.py +113,Bulk Rename,Булк Ренаме @@ -562,11 +562,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Стандард ДОЦТИПЕ не може имати подразумевани формат за штампање, користите Цустомизе формулар" DocType: Report,Query,Питање DocType: DocType,Sort Order,сортировку -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},""" В Список"" не допускается для типа {0} в строке {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},""" В Список"" не допускается для типа {0} в строке {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Изаберите ознаку након чега желите да убаците ново поље. ,Document Share Report,Документ Подели Пријави DocType: User,Last Login,Последњи Улазак -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname требуется в строке {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname требуется в строке {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колона DocType: Custom Field,Adds a custom field to a DocType,Додаје прилагођени поље за ДОЦТИПЕ DocType: File,Is Home Folder,Ис Хоме Директоријум @@ -592,7 +592,7 @@ DocType: File,Folder,Фасцикла DocType: DocField,Index,Индекс DocType: Email Group,Newsletter Manager,Билтен директор apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Опција 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,sve Поруке +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Пријава грешке приликом захтјева. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} је успешно додат у Емаил групи. DocType: Address,Uttar Pradesh,Прадеш @@ -602,7 +602,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,индикатор DocType: DocShare,Everyone,Свако DocType: Workflow State,backward,уназад -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Само једно правило дозвољено са истом улогом, нивоу и {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Само једно правило дозвољено са истом улогом, нивоу и {1}" DocType: Email Queue,Add Unsubscribe Link,Додај Унсубсцрибе Линк apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Још увек нема коментара. Започните нову дискусију. DocType: Workflow State,share,удео @@ -621,7 +621,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ниј apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Погледај Претплатници apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Мс DocType: Website Theme,Background Color,Боја позадине -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,"Были ошибки при отправке электронной почты . Пожалуйста, попробуйте еще раз ." +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,"Были ошибки при отправке электронной почты . Пожалуйста, попробуйте еще раз ." DocType: Portal Settings,Portal Settings,Портал Подешавања DocType: Web Page,0 is highest,0 је највиши apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Да ли сте сигурни да желите да поново повежете овај комуникацију {0}? @@ -649,7 +649,7 @@ DocType: Contact Us Settings,Contact Us Settings,Контакт Сеттингс apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Сеарцхинг ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Сеарцхинг ... DocType: Workflow State,text-width,Текст ширине -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Максимална Прилог Граница за овај запис достигао. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Максимална Прилог Граница за овај запис достигао. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Следећи обавезна поља морају бити попуњена:
DocType: Email Alert,View Properties (via Customize Form),Погледајте некретнине (преко Цустомизе форми) DocType: Note Seen By,Note Seen By,Напомена Сеен би @@ -659,17 +659,17 @@ DocType: Address,Rajasthan,Раџастан apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Репорт Буилдер извештаје директно управља Репорт Буилдер. Нема то везе. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Молимо Вас да потврдите Вашу емаил адресу apps/frappe/frappe/model/document.py +903,none of,ни один из -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Пошаљи ми копију +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Пошаљи ми копију apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Уплоад кориснику дозволе DocType: Dropbox Settings,App Secret Key,Апп тајни кључ apps/frappe/frappe/config/website.py +7,Web Site,веб сајт apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Изабраних ставки ће бити приказан на десктопу -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} не може да се подеси за Сингле типове +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} не може да се подеси за Сингле типове apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Канбан одбор {0} не постоји. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} се тренутно прегледају овај документ DocType: ToDo,Assigned By Full Name,Ассигнед пуно име apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} обновляется -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Сообщить не могут быть установлены для отдельных видов +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Сообщить не могут быть установлены для отдельных видов apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,пре {0} дана DocType: Email Account,Awaiting Password,Очекујем Лозинка DocType: Address,Address Line 1,Аддресс Лине 1 @@ -679,7 +679,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Штаты для рабочего процесса (например, проекты , одобрен , Отменено ) ." DocType: Print Settings,Allow Print for Draft,Дозволити штампање за Нацрт apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Сет Количина -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Достави овај документ да потврди +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Достави овај документ да потврди DocType: Contact,Unsubscribed,Отказали apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Сет цустом улоге за стране и извештаја apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Рејтинг: @@ -687,7 +687,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Данные Инструмент импорта DocType: Address,Dadra and Nagar Haveli,Дадра и Нагар Хавели apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Постављање фајлова сачекајте неколико секунди. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Прикрепите свою фотографию +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Прикрепите свою фотографию apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Ров вредности Цхангед DocType: Workflow State,Stop,стани DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Линк на страницу коју желите да отворите. Оставите празно ако желите да се група родитеља се. @@ -702,7 +702,7 @@ DocType: Print Format,Align Labels to the Left,Алигн етикете са л DocType: Help Article,Expert,експерт DocType: Workflow State,circle-arrow-right,круг-стрелица надесно DocType: LDAP Settings,LDAP Server Url,ЛДАП УРЛ сервер -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Не могу открыть экземпляр , когда его {0} открыто" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Не могу открыть экземпляр , когда его {0} открыто" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,У реду за инсталацију DocType: Custom DocPerm,Custom DocPerm,цустом ДоцПерм DocType: Newsletter,Send Unsubscribe Link,Пошаљи Унсубсцрибе Линк @@ -719,7 +719,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Апп {0} Уклонили DocType: Custom DocPerm,Apply User Permissions,Примени корисника дозволе DocType: User,Modules HTML,Модули ХТМЛ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Подешавање> Усер Дозволе директор apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Вредности које недостају Обавезна DocType: DocType,Other Settings,Остала подешавања DocType: Social Login Keys,Frappe,фрапе @@ -738,7 +737,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,ОАутх Носилац ток apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Није изабран документ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Др DocType: Event,Event,Догађај -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","На {0}, {1} је написао:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} је написао:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Не могу да избришем стандардну поље. Можете га сакрити ако желите DocType: Top Bar Item,For top bar,Для верхней панели apps/frappe/frappe/utils/bot.py +148,Could not identify {0},није могла да идентификује {0} @@ -752,7 +751,7 @@ DocType: Role,Desk Access,сто приступа DocType: Workflow State,minus,минус apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Грешка сервера : Молимо проверите сервера или контакт техничку подршку . apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,"Добро пожаловать Письмо, отправленное" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Хајде да припреми систем за прве употребе. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Хајде да припреми систем за прве употребе. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Феатуред apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Већ регистрације DocType: System Settings,Float Precision,Флоат Прецисион @@ -766,7 +765,7 @@ DocType: Web Form,Allow Print,dozvoli Принт apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Но апликације инсталиране apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Означите терен и Обавезно DocType: Communication,Clicked,Кликнуто -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Немате дозволу за ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Немате дозволу за ' {0} ' {1} DocType: User,Google User ID,Google ID пользователя apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Заказана за слање DocType: DocType,Track Seen,трацк Сеен @@ -836,7 +835,7 @@ DocType: Address,Kerala,керала DocType: File,Lft,ЛФТ DocType: User,Simultaneous Sessions,истовремених сесија DocType: OAuth Client,Client Credentials,Цлиент Сведочанства -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Отворите модул или алат +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Отворите модул или алат DocType: Communication,Delivery Status,Статус испоруке DocType: Module Def,App Name,Имя приложения apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Максимална величина датотеке дозвољено је {0} мб @@ -848,8 +847,8 @@ DocType: Feedback Request,Reference Communication,референце Комун DocType: Email Queue,Unsubscribe Method,унсубсцрибе Метод DocType: GSuite Templates,Related DocType,релатед ДОЦТИПЕ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Измените додати садржај -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,изаберите Језици -apps/frappe/frappe/__init__.py +510,No permission for {0},Нема дозвола за {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,изаберите Језици +apps/frappe/frappe/__init__.py +509,No permission for {0},Нема дозвола за {0} DocType: DocType,Advanced,Напредан apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Изгледа АПИ Кеи или АПИ Тајна није у реду !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Референца: {0} {1} @@ -871,7 +870,7 @@ DocType: Customize Form,Enter Form Type,Унесите Тип Форм apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Нема података означени. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ремове Фиелд DocType: User,Send Password Update Notification,Пошаљи лозинку Упдате Нотифицатион -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Разрешение DocType , DocType . Будьте осторожны !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Разрешение DocType , DocType . Будьте осторожны !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Прилагођени формати за штампу, Емаил" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Упдатед на нову верзију DocType: Custom Field,Depends On,Зависи @@ -965,6 +964,7 @@ apps/frappe/frappe/model/document.py +902,one of,Један од apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Молимо одаберите датотеку за копирање apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Провера један тренутак apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Схов ознаке +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Ако Примени Строго Корисник Дозвола се провјерава и Корисник Дозвола је дефинисана за ДОЦТИПЕ за корисника, онда су сви документи у којима вредност линка је празно, неће бити приказан на тог корисника" DocType: Address,Billing,Обрачун DocType: Email Queue,Not Sent,Није Сент DocType: Web Form,Actions,Акције @@ -994,6 +994,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,јасно apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Свакодневно догађаји треба да се заврши истог дана. DocType: Communication,User Tags,Корисник Тагс: apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Преузимање слика .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Сетуп> Корисник DocType: Workflow State,download-alt,довнлоад-алт apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Преузимање апликација {0} DocType: Communication,Feedback Request,феедбацк Упит @@ -1011,7 +1012,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,бацкупс apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Додај контакт DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Опционо: Увек пошаљите ове ИД. Сваки маил адреса на нови ред -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Сакриј Детаљи +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Сакриј Детаљи DocType: Workflow State,Tasks,задаци DocType: Event,Tuesday,Уторак DocType: Blog Settings,Blog Settings,Блог Подешавања @@ -1031,9 +1032,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Напишите питхон фајл у истом фолдер у којем се то и повратка колоне и резултата. DocType: DocType,Sort Field,Сортирај Поље DocType: Razorpay Settings,Razorpay Settings,Разорпаи Подешавања -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Едит филтер -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Поле {0} типа {1} не может быть обязательным -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","na primer. Ако Примени кориснике Дозволе се проверава извештај ДОЦТИПЕ али нема корисника Дозволе су дефинисани за извјештаја за корисника, онда све Извештаји се показало да тог корисника" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Едит филтер +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Поле {0} типа {1} не может быть обязательным apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Додај још apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Сакриј графикон DocType: System Settings,Session Expiry Mobile,Сесија истека Мобилни @@ -1048,6 +1048,7 @@ DocType: Communication,Delayed,Одложен apps/frappe/frappe/config/setup.py +128,List of backups available for download,Листа бацкуп доступних за преузимање apps/frappe/frappe/www/login.html +89,Sign up,Prijavi se DocType: Test Runner,Output,излаз +DocType: Email Alert,Set Property After Alert,Сет имовине након Алерт apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Добавление полей в формах. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Изгледа да нешто није у реду са Паипал конфигурације овог сајта. DocType: File,rgt,ргт @@ -1055,6 +1056,7 @@ DocType: Email Account,Sendgrid,Сендгрид DocType: Workflow State,leaf,лист DocType: Portal Menu Item,Portal Menu Item,Портал Ставка менија DocType: User Email,Email ID,Е-маил ИД +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Ако Примени Усер Дозволе се проверава извештај ДОЦТИПЕ, али нема корисника Дозволе су дефинисани за Извештај за кориснике, онда сви извештаји су приказани на тог корисника" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Листа средстава које ће клијент апликација има приступ након што корисник то дозвољава.
нпр пројекат DocType: Translation,Translated Text,prevedeno Текст DocType: Contact Us Settings,Query Options,Упит Опције @@ -1072,7 +1074,7 @@ DocType: Address,Contacts,связи DocType: System Settings,Setup Complete,Завершение установки apps/frappe/frappe/config/setup.py +66,Report of all document shares,Извештај свих акција докумената apps/frappe/frappe/www/update-password.html +18,New Password,Нова лозинка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Филтер {0} недостаје +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Филтер {0} недостаје apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Жао ми је! Ви не можете брисати ауто-генерисана коментаре DocType: Website Theme,Style using CSS,Стиле користећи ЦСС apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Референтни ДоцТипе @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,Блоцк Модули apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Враћање дужине до {0} за '{1}' у '{2}'; Подешавање дужине као {3} ће изазвати скраћивањем података. DocType: Print Format,Custom CSS,Прилагођени ЦСС apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Додај коментар -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Игноришу: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Игноришу: {0} до {1} DocType: Address,Gujarat,гујарат apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Войти ошибки на автоматизированных событий ( планировщик) . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),"Не является допустимым значения, разделенные запятыми ( CSV-файл )" @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,Уобичајено Долазни DocType: Workflow State,repeat,поновити DocType: Website Settings,Banner,Барјак DocType: Role,"If disabled, this role will be removed from all users.","Ако су искључене, ова улога ће бити уклоњен из свих корисника." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Помоћ на Сеарцх +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Помоћ на Сеарцх apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,"Регистрован, али је онемогућен" DocType: DocType,Hide Copy,Сакриј Цопи apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Очистите все роли @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Земља apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Адресе DocType: Communication,Shared,схаред -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Приложите Принт документа +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Приложите Принт документа DocType: Bulk Update,Field,поље DocType: Communication,Received,примљен DocType: Social Login Keys,Google Client ID,Google ID клиента @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,Извештај упита DocType: User,Set New Password,Сет нову лозинку DocType: User,Github User ID,Github ID пользователя apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Ако Доцумент Типе -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не можете избрисати или отказати јер {0} {1} је повезан са {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Не можете избрисати или отказати јер {0} {1} је повезан са {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Непозната апликација {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% С није валидан формат извештаја. Извештај формат треба \ једну од следећих% с DocType: Communication,Chat,Ћаскање -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} несколько раз появляется в строках {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} несколько раз появляется в строках {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} од {1} до {2} равенства # {3} DocType: Communication,Expired,Истекло DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Број колона за поља у мрежи (Укупно колона у мрежи треба да буде мањи од 11) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Имате кори apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Непознат Штампа Формат {0} DocType: Workflow State,arrow-down,стрелица надоле apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,коллапс -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Корисник није дозвољено да избришете {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Корисник није дозвољено да избришете {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Последња измена На DocType: Help Article,Likes,Ликес DocType: Website Settings,Top Bar,Топ Бар DocType: GSuite Settings,Script Code,сцрипт код apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Створити корисника Емаил apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Створити корисника Емаил -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Нема Дозволе Наведени +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Нема Дозволе Наведени apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Општа подешавања: Корисници ће моћи да бирају проверене иконе apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} није пронађен DocType: Custom Role,Custom Role,цустом Улога apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Почетна / тест фолдера 2 DocType: System Settings,Ignore User Permissions If Missing,Игноре Усер Дозволе Ако Миссинг -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Молимо вас да сачувате документ пре пребацивања. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Молимо вас да сачувате документ пре пребацивања. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Унесите лозинку DocType: Dropbox Settings,Dropbox Access Secret,Дропбок Приступ тајна apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Додати још један коментар apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,едит ДОЦТИПЕ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Одјавили из Невслеттер -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Фолд мора доћи пред Сецтион Бреак +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Фолд мора доћи пред Сецтион Бреак apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Последњи изменио DocType: Workflow State,hand-down,рука-доле DocType: Address,GST State,ПДВ државе -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : Не удается установить Отмена без Отправить +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : Не удается установить Отмена без Отправить DocType: Website Theme,Theme,Тема apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Било је грешака . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Редирецт УРИ Боунд То Аутх Цоде @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мо DocType: Website Theme,Text Color,Боја текста DocType: Desktop Icon,Force Show,форце Покажи apps/frappe/frappe/auth.py +78,Invalid Request,Неважећи Упит -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Овај облик нема улаз +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Овај облик нема улаз apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Заседание Срок должен быть в формате {0} DocType: Website Sidebar Item,Group,Група DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Одаберите таргет = ""_бланк "" отвара нову страницу у ." @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Игноре кодира грешке. DocType: Workflow State,wrench,кључ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Нот Сет -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Сетуп> Корисник DocType: Authentication Log,Date,Датум DocType: Website Settings,Disable Signup,Онемогући Регистрација apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Стрпите се док ваш систем бити подешавање . Ово може да потраје неколико тренутака . @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Додај коментар DocType: DocField,Mandatory,Обавезан apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модул за извоз -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{ Не 0}: Нет базовый набор разрешений +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{ Не 0}: Нет базовый набор разрешений apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Ваша претплата истиче {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Довнлоад линк за ваш бацкуп ће бити послата на следећу адресу: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значење Субмит, Цанцел, Допунити" @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,упит-извештај apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Додељен {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Филтери спасени DocType: DocField,Percent,Проценат -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Молимо поставите филтере +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Молимо поставите филтере apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Повезан са DocType: Workflow State,book,књига DocType: Website Settings,Landing Page,Ландинг Паге -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Грешка у Цустом Сцрипт +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Грешка у Цустом Сцрипт apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Име apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Увоз Упит реду за слање. Ово може потрајати неколико тренутака, молим вас да будете стрпљиви." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Нема Дозволе сет за овим критеријумима. @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,Дозволите Пр apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Немате довољно дозволе за приступ овом садржају. Контактирајте свог менаџера да бисте добили приступ. DocType: Custom Field,Custom,Обичај apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Подешавање Е-маил обавештење на основу различитих критеријума. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Поруке филед ундер {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Поруке филед ундер {0} DocType: Email Alert,Send alert if date matches this field's value,Пошаљи упозорење ако датум утакмице вредност овог поља DocType: Workflow,Transitions,Прелази apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Уклонити {0} и избрисати све податке? @@ -1304,9 +1305,8 @@ DocType: User,Login After,Пријава После DocType: Print Format,Monospace,Моноспаце DocType: Letter Head,Printing,Штампање DocType: Workflow State,thumbs-up,тхумбс уп -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-маил налог није намештаљка. Молимо Вас да креирате нови налог е-поште из Сетуп> Емаил> Емаил Аццоунт DocType: DocPerm,DocPerm,ДоцПерм -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Прецисион треба да буде између 1 и 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Прецисион треба да буде између 1 и 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Фв: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,и DocType: Error Snapshot,Frames,Оквири @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,Слика Линк DocType: Auto Email Report,Report Filters,Репорт Филтери apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,сада DocType: Workflow State,step-backward,корак-назад -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ app_title } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Пожалуйста, установите ключи доступа Dropbox на своем сайте конфигурации" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Обриши овај запис како би се омогућило слање на ову емаил адресу apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Само обавезна поља су неопходни за нове евиденције. Можете обрисати необавезне колоне ако желите. @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,Да ли је Опреме Папка apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Прошири све apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Исправан Пријава ид потребно. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Снова откройте -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ви сте отказали плаћање -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Пожалуйста, выберите правильный файл CSV с данными" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Пожалуйста, выберите правильный файл CSV с данными" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} УН-дели овај документ са {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Статус документа переход от {0} до {1} не допускается DocType: DocType,"Make ""name"" searchable in Global Search",Маке "име" претраживати у Глобал Сеарцх @@ -1351,15 +1350,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,о DocType: Help Category,Help Category,хелп Категорија apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Пользователь {0} отключена apps/frappe/frappe/www/404.html +8,Page missing or moved,Страница не постоји или је преселио -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Едит {0} својства DocType: DocType,Route,Рута apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Разорпаи подешавања Паимент Гатеваи DocType: DocField,Name,Име apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,Прешли сте максималан простор {0} за ваш план. {1}. apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Претражи документе DocType: OAuth Authorization Code,Valid,важи -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Отвори линк -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Твој језик +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Отвори линк +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твој језик apps/frappe/frappe/desk/form/load.py +46,Did not load,Не сработал apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Додај ред DocType: Tag Category,Doctypes,Доцтипес @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Да ли н DocType: Address,Lakshadweep Islands,Лаксхадвееп острва apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Може да напише apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Некоторые документы , как счета-фактуры , должны быть установлены только финал. Конечное состояние для таких документов называется Представленные . Вы можете ограничить , какие роли могут Представьте ." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Није вам дозвољен извоз за овај извештај +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Није вам дозвољен извоз за овај извештај apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 ставка изабрана DocType: Newsletter,Test Email Address,Тест-маил адреса DocType: ToDo,Sender,Пошиљалац @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,импорт .зип apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,документа DocType: Print Settings,Letter,Писмо -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,поље Слика мора бити типа Аттацх Имаге +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,поље Слика мора бити типа Аттацх Имаге DocType: DocField,Columns,kolone DocType: Async Task,Succeeded,Суццеедед apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},"Обязательные поля , необходимые в {0}" @@ -1460,7 +1458,7 @@ DocType: DocField,Text Editor,Текст Уредник apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Подешавања за О нама страна. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Едит Цустом ХТМЛ DocType: Error Snapshot,Error Snapshot,Грешка Снимак -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,у +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,у DocType: Email Alert,Value Change,Вредност Промена DocType: Standard Reply,Standard Reply,Стандардна Одговори apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ширина поље за унос @@ -1476,12 +1474,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Користите ову ФИЕЛДНАМЕ да генерише титулу apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Увоз е-маил Од apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Позови као корисник -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Изаберите прилоге +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Изаберите прилоге apps/frappe/frappe/model/naming.py +94, for {0},за {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Било је грешака. Молимо вас пријавите ово. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Није вам дозвољено штампање овог документа +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Није вам дозвољено штампање овог документа apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Молимо поставите филтере вредност у извештај Филтер табели. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Учитавање извештај +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Учитавање извештај apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Ваша претплата ће истећи данас. DocType: Page,Standard,Стандард apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Аттацх Филе @@ -1511,7 +1509,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Регионални Екстензије DocType: LDAP Settings,Base Distinguished Name (DN),База препознатљивог имена (ДН) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Оставите овај разговор -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Опции не установлен поля связи {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опции не установлен поля связи {0} DocType: Customize Form,"Must be of type ""Attach Image""",Мора бити типа "Аттацх Имаге" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Поништи све apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Не можете унсет 'Реад Онли "за област {0} @@ -1553,9 +1551,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Приметити apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Грешка Извештај apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Услови повратне информације не подударају -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Тимелине поље мора бити валидан фиелднаме +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Тимелине поље мора бити валидан фиелднаме DocType: Currency,Symbol,Симбол -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Ред # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Ред # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Новый пароль по электронной почте apps/frappe/frappe/auth.py +245,Login not allowed at this time,Войти не допускается в это время DocType: Email Account,Email Sync Option,Емаил Синхронизација Опција @@ -1577,7 +1575,7 @@ DocType: DocField,Text,Текст apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Стандардна одговора на заједничке упита. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Уобичајено Слање DocType: Workflow State,volume-off,Обим-офф -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Ликед од {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Ликед од {0} DocType: Footer Item,Footer Item,фоотер артикла ,Download Backups,Довнлоад Бацкуп apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Почетна / тест Папка 1 @@ -1611,7 +1609,7 @@ DocType: Web Page,Text Align,Текст Поравнај apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Име не сме да садржи специјалне знакове као {0} DocType: Contact Us Settings,Forward To Email Address,Нападач на е-адресу apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Схов све податке -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Название поля должно быть допустимым имя_поля apps/frappe/frappe/config/core.py +7,Documents,Документи DocType: Email Flag Queue,Is Completed,Је завршен apps/frappe/frappe/www/me.html +22,Edit Profile,Измена профила @@ -1621,8 +1619,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Ово поље ће се појавити само ако фиелднаме овде дефинисана је вредност или правила су прави (примери): мифиелд ЕВАЛ: доц.мифиелд == 'Мој Вредност' евал: доц.аге> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Данас -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Данас +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Данас +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Данас apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Када сте подесили ово , корисници ће бити у стању само приступ документима ( нпр. блог пост ) где постојивеза ( нпр. Блоггер ) ." DocType: Error Log,Log of Scheduler Errors,Лог од Сцхедулер Грешке DocType: User,Bio,Био @@ -1646,6 +1644,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 звезда је најмањи и 5 звездица је највиши рејтинг DocType: Event,Ref Name,Реф Име DocType: Web Page,Center,Центар +DocType: Email Alert,Value To Be Set,Вредност за подешавање apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Први ниво DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Заступа државе дозвољене у једном документу и улога додељена промијенити стање. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Рефресх Образац @@ -1666,18 +1665,18 @@ DocType: DocType,Has Web View,Има Веб Виев apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Назив ДОЦТИПЕ треба почети словом и може да се састоји само од слова, бројева, простора и доње црте" DocType: Communication,Spam,Спам DocType: Integration Request,Integration Request,integracija Упит -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Драг +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Драг DocType: Address,Maharashtra,Махараштра DocType: Address,Accounts User,Корисничке налоге DocType: Web Page,HTML for header section. Optional,HTML для раздела заголовка . необязательный apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ова функција је потпуно нов и још увек експериментална -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Максимальные {0} строк разрешено +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Максимальные {0} строк разрешено DocType: Email Unsubscribe,Global Unsubscribe,Глобална Откажи apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Ово је веома честа лозинка. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Погледај DocType: Communication,Assigned,Ассигнед DocType: Print Format,Js,јс -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Изаберите формат штампања +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Изаберите формат штампања apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Кратки тастатури су лако погодити DocType: Portal Settings,Portal Menu,портал Мени apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Дужина {0} требало би да буде између 1 и 1000 @@ -1716,7 +1715,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Корисник не можете претраживати apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Неважећи Излазни формат DocType: Custom DocPerm,Apply this rule if the User is the Owner,Примени ово правило ако Усер ис Власник -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Ће бити ваш Логин ИД +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Ће бити ваш Логин ИД apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Буилд Пријави DocType: Note,Notify users with a popup when they log in,Обавештава кориснике са попуп када се пријавите apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} не существует , выберите новую цель объединить" @@ -1735,17 +1734,18 @@ DocType: User Permission for Page and Report,Roles Permission,uloge Дозвол apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Ажурирање DocType: Error Snapshot,Snapshot View,Снимак Погледај apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Пожалуйста, сохраните бюллетень перед отправкой" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Опции должно быть допустимым DocType для поля {0} в строке {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} година (и) +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опции должно быть допустимым DocType для поля {0} в строке {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Едит Некретнине DocType: Patch Log,List of patches executed,Листа закрпа погубљен apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} већ одјавили -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Комуникација средња +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Комуникација средња DocType: Website Settings,Banner HTML,Банер ХТМЛ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Молимо одаберите други начин плаћања. Разорпаи не подржава трансакције у валути '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Чекању за бацкуп. То може потрајати неколико минута до сат времена. DocType: Error Snapshot,Pyver,Пивер apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Регистер ОАутх Цлиент Апп -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бити ""{2}"". Требало би да буде један од ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бити ""{2}"". Требало би да буде један од ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} {1} или apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Приказали или сакрили Десктоп Ицонс apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Лозинка Упдате @@ -1772,7 +1772,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Схов линија Бреакс после члановима DocType: Blogger,Short Name,Кратко Име apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Страна {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Бирате опцију Синц као свега, то ће ресинц све \ читати као непрочитану поруку са сервера. Ово такође може изазвати дуплирање \ комуникације (е-маилова)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,files сизе @@ -1784,6 +1784,7 @@ DocType: Contact,Purchase Manager,Куповина директор DocType: Custom Script,Sample,Узорак apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,некатегорисаних Ознаке DocType: Event,Every Week,Свака недеља +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Е-маил налог није намештаљка. Молимо Вас да креирате нови налог е-поште из Сетуп> Емаил> Емаил Аццоунт apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Кликните овде да проверите употребу или надоградњу на виши план DocType: Custom Field,Is Mandatory Field,Да ли је обавезно поље DocType: User,Website User,Сајт корисника @@ -1807,16 +1808,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Цустом Сидебар Мену DocType: Workflow State,pencil,оловка apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Цхат поруке и друга обавештења. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Убаците После се не може поставити као {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Убаците После се не може поставити као {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Подели {0} с apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Емаил подешавање налога унесите лозинку за: DocType: Workflow State,hand-up,рука-уп DocType: Blog Settings,Writers Introduction,Писци Увод DocType: Address,Phone,Телефон -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Грешка приликом вредновања маил обавештење {0}. Исправите шаблона. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Грешка приликом вредновања маил обавештење {0}. Исправите шаблона. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Изаберите тип документа или улогу за почетак. DocType: Contact,Passive,Пасиван DocType: Contact,Accounts Manager,Рачуни менаџер +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ваша уплата је отказана. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Избор Филе Типе DocType: Help Article,Knowledge Base Editor,База знања Уредник apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Страница није пронађена @@ -1844,6 +1846,7 @@ DocType: Property Setter,Property Type,Тип некретнине DocType: Workflow State,screenshot,сцреенсхот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Само администратор може да спаси стандардног извештаја. Молимо преименовати и сачувати. DocType: System Settings,Background Workers,бацкгроунд Радници +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Фиелднаме {0} у сукобу са мета објектом DocType: Deleted Document,Data,Подаци apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Документ статус apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Направили сте {0} од {1} @@ -1868,7 +1871,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Схов Усер Дозволе apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Вы должны войти в систему, и есть роль System Manager , чтобы иметь возможность доступа к резервные копии." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,остали -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Молимо вас да спаси пре постављања. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Молимо вас да спаси пре постављања. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Додато {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Основна тема је постављена у {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Фиелдтипе не може да се промени из {0} на {1} у {2} редом @@ -1889,11 +1892,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Сесси apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Сессион Почетак Фаилед apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Овај емаил је послат на {0} и копирају на {1} DocType: Workflow State,th,тх -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Молимо Вас да подешавање подразумевани е-маил налог од Сетуп> Емаил> Емаил Аццоунт -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Креирајте нови {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Креирајте нови {0} DocType: Email Rule,Is Spam,је спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Извештај {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Отворено {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Отворено {0} DocType: OAuth Client,Default Redirect URI,Уобичајено Преусмеравање УРИ DocType: Email Alert,Recipients,Примаоци DocType: Workflow State,ok-sign,ок-знак @@ -1911,6 +1913,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Чланци помоћи ,Modules Setup,Модули установки apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ваша уплата није успела. DocType: Communication,Unshared,недељив DocType: Address,Karnataka,карнатака apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модуль не найден @@ -1958,7 +1961,7 @@ DocType: Website Settings,Brand Image,Слика бренда DocType: Print Settings,A4,А4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Подешавање топ навигатион бар, подножје и логотипом." DocType: Web Form Field,Max Value,мак Вредност -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Для {0} на уровне {1} в {2} в строке {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Для {0} на уровне {1} в {2} в строке {3} DocType: Contact,All,Све DocType: Email Queue,Recipient,Прималац DocType: Communication,Has Attachment,ima Аттацхмент @@ -1975,7 +1978,8 @@ DocType: Workflow State,align-right,алигн-десно DocType: Auto Email Report,Email To,Е-маил Да apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Директоријум {0} није празан DocType: Page,Roles,Улоге -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Поле {0} не выбирается . +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Грешка: Вредност недостаје за {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Поле {0} не выбирается . DocType: System Settings,Session Expiry,Седница Истек DocType: Workflow State,ban-circle,бан-круг DocType: Email Flag Queue,Unread,непрочитан @@ -1990,7 +1994,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Профил Дефаултс apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Цреате Нев DocType: Workflow State,chevron-down,Цхеврон-доле -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Емаил није послао {0} (одјавити / онемогућено) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Емаил није послао {0} (одјавити / онемогућено) DocType: Async Task,Traceback,Трацебацк DocType: Currency,Smallest Currency Fraction Value,Најмањи валута фракција Вредност apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Додели @@ -2001,12 +2005,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Из DocType: Website Theme,Google Font (Heading),Гоогле Фонт (тарифни) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Изаберите групу чвор прво. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Пронађи {0} у {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Пронађи {0} у {1} DocType: OAuth Client,Implicit,имплицитан DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Аппенд као комуникацији против овог ДОЦТИПЕ (мора имати поља, ""статус"", ""Предмет"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","УРИ за пријем код за ауторизацију када корисник дозвољава приступ, као и одговора неуспех. Типично одмора крајња тачка изложена од стране клијента Апп.
нпр хттп: //хостнаме//апи/метход/фраппе.ввв.логин.логин_виа_фацебоок" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Не разрешается менять {0} после подачи +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Не разрешается менять {0} после подачи DocType: Communication,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,ОАутх клијента apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Усерс @@ -2021,7 +2025,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,филтер података DocType: Auto Email Report,Filter Data,филтер података apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Додај ознаку -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Молимо приложите прво датотеку. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Молимо приложите прво датотеку. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Било је неких грешака постављање име, контактирајте администратора" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Инцоминг маил налога нису тачни apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2036,11 +2040,11 @@ DocType: Blog Post,Email Sent,Емаил Сент DocType: DocField,Ignore XSS Filter,Игноре КССС Филтер apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,уклоњена apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Подешавања дропбок бацкуп -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Пошаљи као емаил +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Пошаљи као емаил DocType: Website Theme,Link Color,Боја везе apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Пользователь {0} не может быть отключена apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Драги систем директор," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Твоја земља +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Твоја земља DocType: Event,Sunday,Недеља apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Ин Грид Виев DocType: Address Template,Template,Шаблон @@ -2048,7 +2052,7 @@ DocType: Address,Delhi,Делхи apps/frappe/frappe/config/integrations.py +48,LDAP Settings,ЛДАП подешавања apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Изменама и допунама apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,ПаиПал Паимент Гатеваи поставке -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) би био скраћен, као мак знакова дозвољена је {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) би био скраћен, као мак знакова дозвољена је {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ресурса власник лозинку акредитиве DocType: OAuth Client,Response Type,Тип одговора apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,мак корисника @@ -2065,7 +2069,7 @@ DocType: DocField,Table,Табела DocType: File,File Size,Величина apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Морате се пријавити да поднесе овај образац DocType: User,Background Image,Позадина Слика -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Изаберите своју земљу, временску зону и валуту" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Изаберите своју земљу, временску зону и валуту" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,мк apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,између DocType: Async Task,Queued,Куеуед @@ -2074,6 +2078,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Створити apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Неверный Фильтр: {0} DocType: Email Account,no failed attempts,не неуспела покушаја +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Подразумевани Адреса Шаблон фоунд. Креирајте нови из Подешавања> Штампање и брендирања> Адреса Темплате. DocType: GSuite Settings,refresh_token,рефресх_токен DocType: Dropbox Settings,App Access Key,Апп Приступни тастер DocType: OAuth Bearer Token,Access Token,Приступ токен @@ -2091,8 +2096,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Имя пользователя DocType: DocType,Image View,Слика Погледај apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Изгледа да нешто није у реду током трансакције. Пошто нисмо потврдили плаћање, ПаиПал ће вам аутоматски надокнадити тај износ. Ако се то не деси, пошаљите нам е-маил и споменути корелације ИД: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Укључују симболе, бројеве и велика слова у лозинку" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Убаците Након пољу '{0}' помиње у прилагођеном пољу '{1}', са ознаком '{2}', не постоји" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Укључују симболе, бројеве и велика слова у лозинку" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Убаците Након пољу '{0}' помиње у прилагођеном пољу '{1}', са ознаком '{2}', не постоји" DocType: Workflow State,signal,сигнал DocType: DocType,Show Print First,Прикажи Штампање Прво apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Цтрл + Ентер то пост @@ -2123,14 +2128,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Фајл '{0}' није пронађен apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Ремове секцију DocType: User,Change Password,Промена лозинке -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Неверный e-mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Здраво! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Неверный e-mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Здраво! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Конец событие должно быть после старта apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Не дозволу за добијање извештај о: {0} +DocType: System Settings,Apply Strict User Permissions,Нанесите Строгог корисничке дозволе DocType: DocField,Allow Bulk Edit,Дозволи Булк Едит DocType: DocField,Allow Bulk Edit,Дозволи Булк Едит DocType: Blog Post,Blog Post,Блог пост -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Напредна претрага +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Напредна претрага apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Инструкции Восстановление пароля были отправлены на электронную почту apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Ниво 0 је за дозволе на нивоу документа, \ вишим нивоима за дозвола на терену." @@ -2149,15 +2155,14 @@ DocType: Web Page,Sidebar and Comments,Сидебар и Коментари apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","При Изменить документ после Отменить и сохранить его , он будет получать новый номер, который является версией старой числа ." DocType: Stripe Settings,Publishable Key,који се може објавити ključ DocType: Stripe Settings,Publishable Key,који се може објавити ključ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} година (и) DocType: Workflow State,circle-arrow-left,круг-стрелица налево apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Редис кеш сервер не ради. Молимо контактирајте администратора / Тецх подршка apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,парти Име -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Направите нови рекорд +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Направите нови рекорд apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Претраживање DocType: Currency,Fraction,Фракција DocType: LDAP Settings,LDAP First Name Field,ЛДАП-Име поља -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Изаберите неку од постојећих прилога +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Изаберите неку од постојећих прилога DocType: Custom Field,Field Description,Поље Опис apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Име није постављен преко линији apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Е-маил Примљене @@ -2203,11 +2208,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Инфо: DocType: Custom Field,Permission Level,Дозвола Ниво DocType: User,Send Notifications for Transactions I Follow,Пошаљите обавештења за правни промет И Фоллов -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Не удается установить Представьте , Отменить , Изменить без Write" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : Не удается установить Представьте , Отменить , Изменить без Write" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Да ли сте сигурни да желите да избришете прилог? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не можете избрисати или отказати јер {0} {1} је повезан са {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Но ресултс фоунд фор 'резултата

-apps/frappe/frappe/__init__.py +1063,Thank you,Хвала +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Не можете избрисати или отказати јер {0} {1} је повезан са {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Хвала apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Спашавање DocType: Print Settings,Print Style Preview,Штампа Стил Преглед apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Тест_Фолдер @@ -2219,10 +2223,10 @@ DocType: DocField,In List View,У приказу листе DocType: Email Account,Use TLS,Користите тлс apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Неверный Войти или пароль apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Добавить пользовательские JavaScript в формах. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Ср Нема +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Ср Нема ,Role Permissions Manager,Роле Дозволе менаџер apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Име новог Принт Формат -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,јасно Прилог +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,јасно Прилог apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Обавезно: ,User Permissions Manager,Усер Дозволе менаџер DocType: Property Setter,New value to be set,Нова вредност коју треба подесити @@ -2251,26 +2255,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,Пре apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Категоризација постова на блогу. DocType: Workflow State,Time,Време DocType: DocField,Attach,Лепити -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} није валидан ФИЕЛДНАМЕ образац. Требало би да буде {{фиелд_наме}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} није валидан ФИЕЛДНАМЕ образац. Требало би да буде {{фиелд_наме}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Пошаљи повратну информацију захтев само ако постоји бар једна комуникација је доступан за документа. DocType: Custom Role,Permission Rules,Правила дозвола DocType: GSuite Settings,GSuite Settings,ГСуите Подешавања DocType: Address,Links,Линкови -apps/frappe/frappe/model/base_document.py +428,Value missing for,Вредност недостаје за +apps/frappe/frappe/model/base_document.py +427,Value missing for,Вредност недостаје за apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Додај Цхилд -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поставио Рекорд се не може избрисати. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Поставио Рекорд се не може избрисати. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,бацкуп величина DocType: GSuite Templates,Template Name,Име шаблона -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,нови тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,нови тип документа DocType: Custom DocPerm,Read,Читати DocType: Role Permission for Page and Report,Role Permission for Page and Report,Улога Дозвола за странице и apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,алигн вредности apps/frappe/frappe/www/update-password.html +14,Old Password,Старо Лозинка -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Поруке по {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Поруке по {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Да бисте обликовали колоне, дај ознаке колона у упиту." DocType: Has Domain,Has Domain,има домен apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Немате налог? Пријави се -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : Не удается установить Назначить Изменить если не Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : Не удается установить Назначить Изменить если не Submittable DocType: Address,Bihar,бихар apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Едит Роле Дозволе DocType: Communication,Link DocType,линк ДОЦТИПЕ @@ -2370,7 +2374,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Уверите се да ваш профил има емаил адресу apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Имате сачували све промене у овом облику . DocType: Address,Telangana,телангана -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Уобичајено за {0} мора бити опција +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Уобичајено за {0} мора бити опција DocType: Tag Doc Category,Tag Doc Category,Таг Док Категорија DocType: User,User Image,Корисник Слика apps/frappe/frappe/email/queue.py +289,Emails are muted,Письма приглушены @@ -2403,7 +2407,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Следе DocType: Workflow State,ok,у реду DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Ове вредности ће бити аутоматски ажурирају у трансакцијама и такође ће бити корисно да ограничите дозволе за овог корисника о трансакцијама садрже ове вредности. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Издавач -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Фаилед: {0} до {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Фаилед: {0} до {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Изабери Обавезно apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Потражите apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,писем @@ -2415,7 +2419,7 @@ DocType: Async Task,Running,Руннинг apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Ресет Пассворд apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Молим вас Упграде то додати више од {0} претплатника DocType: Workflow State,hand-left,рука-лево -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Фиелдтипе {0} за {1} не може бити јединствена +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Фиелдтипе {0} за {1} не може бити јединствена DocType: Email Account,Use SSL,Користи ССЛ DocType: Workflow State,play-circle,плеј-круг apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Изаберите Принт Формат на Едит @@ -2470,7 +2474,7 @@ DocType: DocField,No Copy,Нема копирања DocType: Workflow State,qrcode,КРЦоде apps/frappe/frappe/www/login.html +34,Login with LDAP,Пријавите се са ЛДАП DocType: Web Form,Breadcrumbs,Бреадцрумбс -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Ако власник +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Ако власник DocType: OAuth Authorization Code,Expiration time,истека времена DocType: Web Page,Website Sidebar,Сајт Бочна трака DocType: Web Form,Show Sidebar,Покажи Сидебар @@ -2490,7 +2494,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Није могу apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Имена и презимена по себи је лако погодити. apps/frappe/frappe/config/website.py +93,Knowledge Base,База знања DocType: Workflow State,briefcase,актенташна -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Значение не может быть изменено для {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Значение не может быть изменено для {0} DocType: Feedback Request,Is Manual,је Ручно DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Стил представља дугме боју: Успех - зелени, опасности - Црвена, Инверсе - црна, Примарни - Тамно Плава, Инфо - светло плава, Упозорење - Оранге" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Не Извештај Лоадед. Молимо Вас да користите упит-извештај / [извештај Име] да покренете извештај. @@ -2569,7 +2573,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,напред apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,по улози apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,миссинг Поља apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Инвалид фиелднаме '{0}' у аутонаме -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Тражи у врсти документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Тражи у врсти документа apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Дозволите поље остане уређивати и након подношења DocType: Custom DocPerm,Role and Level,Роль и уровень DocType: File,Thumbnail URL,Умањени УРЛ адреса @@ -2586,19 +2590,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Цтрл + Г) DocType: Contact,More Information,Више информација DocType: Desktop Icon,Desktop Icon,икона на радној површини -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Ваша уплата је успешно прихватио +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Ваша уплата је успешно прихватио apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Извини! Нисте дозвољено да видите ову страницу. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Савет: Дупли клик ћелија за уређивање DocType: Workflow State,bell,звоно apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка у Емаил Алерт apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Грешка у Емаил Алерт apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Поделите овај документ са +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Подешавање> Усер Дозволе директор apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не может быть листовой узел , как это имеет детей" DocType: Communication,Info,Инфо -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Додај прилог +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Додај прилог DocType: Communication,Email,Е-маил apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Хвала вам на поруку -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Пошаљи потврду читања +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Пошаљи потврду читања DocType: Stripe Settings,Stripe Settings,Стрипе Подешавања DocType: Stripe Settings,Stripe Settings,Стрипе Подешавања DocType: Dropbox Settings,Dropbox Setup via Site Config,Дропбок Подешавање преко сајта Цонфиг @@ -2676,6 +2681,7 @@ DocType: DocType,Web View,веб Погледај apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Упозорење: Овај Принт Формат је у старом стилу и не може да се генерише преко АПИ. DocType: DocField,Print Width,Ширина штампе ,Setup Wizard,Мастер установки +DocType: Address,GST State Number,ПДВ жупаније број DocType: User,Allow user to login only before this hour (0-24),Дозволи кориснику да само пријави пре него што овај час (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Директоријум је обавезно apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2704,7 +2710,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Мала Текст apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Модератор приступити {0} на {1} преко ИП адресе {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Једнак -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Опције 'Динамиц Линк' тип поља мора да указује на другу линкове ратарство са опцијама као 'ДОЦТИПЕ """ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Опције 'Динамиц Линк' тип поља мора да указује на другу линкове ратарство са опцијама као 'ДОЦТИПЕ """ DocType: About Us Settings,Team Members Heading,Чланови тима Хеадинг apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Неважећи ЦСВ формату apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Сет број резервних копија @@ -2715,7 +2721,7 @@ DocType: Contact,Contact,Контакт DocType: User,Third Party Authentication,В-третьих Аутентификация партия DocType: Website Settings,Banner is above the Top Menu Bar.,Банер је изнад горњој траци менија. DocType: Razorpay Settings,API Secret,АПИ за Тајна -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Извештај о извозу: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Извештај о извозу: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} не постоји DocType: Email Account,Port,порт DocType: Print Format,Arial,Ариал @@ -2738,7 +2744,7 @@ DocType: Kanban Board Column,Column Name,Колона Име DocType: Language,Based On,На Дана apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Маке Дефаулт apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Проверите Фрапе Сервер УРЛ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Фиелдтипе {0} за {1} не може бити индексиране +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Фиелдтипе {0} за {1} не може бити индексиране DocType: Communication,Email Account,Емаил рачуна DocType: Workflow State,Download,скачать DocType: Blog Post,Blog Intro,Блог Интро @@ -2749,7 +2755,7 @@ DocType: Web Page,Insert Code,Инсерт Цоде DocType: ToDo,Low,Низак apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Можете да додате динамичке карактеристике из документа помоћу ЈИЊА Темплатинг. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Неважеће ограничење {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Листа тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Листа тип документа DocType: Event,Ref Type,Реф Тип apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Ако додајете нове рекорде, напусти ""име"" (ИД) колону празном." DocType: Address,Chattisgarh,Чатисгар @@ -2771,26 +2777,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Пошаљи Принт ас ПДФ DocType: Web Form,Amount,Износ DocType: Workflow Transition,Allowed,Дозвољен -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Може бити само један Баца у форми +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Може бити само један Баца у форми apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Не могу да пишем формат датотеке за {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Враћање на фабричке поставке? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Неверный Главная страница apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Неважећа лозинка. Покушајте поново. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Опције које су потребне за Линк или типа Табела области {0} у реду {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Опције које су потребне за Линк или типа Табела области {0} у реду {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Опције које су потребне за Линк или типа Табела области {0} у реду {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Опције које су потребне за Линк или типа Табела области {0} у реду {1} DocType: Auto Email Report,Send only if there is any data,Послати само ако постоји било каква подаци apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Ресет Филтери -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} : введенное на уровне 0 должны быть установлены до более высоких уровней устанавливаются +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} : введенное на уровне 0 должны быть установлены до более высоких уровней устанавливаются apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Задатак затворена од {0} DocType: Integration Request,Remote,даљински -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Израчунати +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Израчунати apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Одредите прво ДОЦТИПЕ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Потврди Емаил apps/frappe/frappe/www/login.html +42,Or login with,Или се пријавите са DocType: Error Snapshot,Locals,Мештани apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Комуницирао преко {0} на {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} вас помиње у коментару на {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,например (55 + 434) / 4 или = Матх.син (Матх.ПИ / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,например (55 + 434) / 4 или = Матх.син (Матх.ПИ / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} требуется DocType: Integration Request,Integration Type,integracija Тип DocType: Newsletter,Send Attachements,Пошаљи прикључци @@ -2800,15 +2806,15 @@ DocType: DocField,Perm Level,Перм ниво apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Догађаји у календару данашњем DocType: Web Page,Web Page,Веб страна DocType: Blog Category,Blogger,Блоггер -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Глобал Сеарцх "није дозвољено за тип {0} у реду {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,виев Лист -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Дата должна быть в формате : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Дата должна быть в формате : {0} DocType: Workflow,Don't Override Status,Не замењују Статус apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Молим вас дајте оцену. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Контакт Упит apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Термин за претрагу -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Први Корисник : Ви +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Први Корисник : Ви apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Изаберите Колоне DocType: Translation,Source Text,Извор Текст apps/frappe/frappe/www/login.py +55,Missing parameters for login,Миссинг параметри за пријаву @@ -2830,7 +2836,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Увоз DocType: ToDo,Assigned By,Доделио apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Вы можете использовать Настроить форму для установки уровней на полях . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Изаберите свој регион +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Изаберите свој регион DocType: Custom DocPerm,Level,Ниво DocType: Custom DocPerm,Report,Извештај apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Износ мора бити већи од 0. @@ -2850,7 +2856,7 @@ DocType: Website Theme,Background,Позадина DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","ЈСОН листа ДоцТипес користе да примени кориснику дозволе. Ако празна, све повезане ДоцТипес ће се користити да се пријаве кориснику дозволе." DocType: Report,Ref DocType,Реф ДОЦТИПЕ apps/frappe/frappe/www/feedback.py +42,Please add a rating,Молимо додајте оцену -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : Не удается установить Изменить без Отменить +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : Не удается установить Изменить без Отменить apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Пуна страница DocType: DocType,Is Child Table,Табела је дете apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} должен быть одним из {1} @@ -2865,7 +2871,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Ово иде изна apps/frappe/frappe/config/setup.py +260,Install Applications.,Установка приложений . DocType: Contact,Last Name,Презиме DocType: Event,Private,Приватан -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Нема упозорења за данас +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Нема упозорења за данас DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Пошаљи Емаил Принт прилоге као ПДФ (Рецоммендед) DocType: Web Page,Left,Лево DocType: Event,All Day,Целодневни @@ -2879,7 +2885,7 @@ DocType: Event,Send an email reminder in the morning,Пошаљи е-маил п DocType: Blog Post,Published On,Објављено Дана DocType: Contact,Gender,Пол apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Обавезна Информације недостаје: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Поље '{0}' не може да се подеси као јединствен јер има не-јединствене вредности +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Поље '{0}' не може да се подеси као јединствен јер има не-јединствене вредности apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Само 200 умеће дозвољено у једном захтеву DocType: Footer Item,URL,УРЛ адреса DocType: ToDo,Reference Type,Референтни Тип @@ -2892,7 +2898,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,Упозорење-знак DocType: Workflow State,User,Корисник DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Покажи наслов у прозору прегледача као "префикс - наслов" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,текст у врсти документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,текст у врсти документа apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Рун Тестови apps/frappe/frappe/handler.py +91,Logged Out,Одјављени apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Више... @@ -2918,13 +2924,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Тренутно Преглед DocType: DocField,Default,Уобичајено apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} је додао -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Трагање за '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Трагање за '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Сачувајте извештај први apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} је додао претплатници apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Није У DocType: Workflow State,star,звезда -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,Вредности раздвојене зарезима -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,Вредности раздвојене зарезима +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Максимальная ширина для типа валюта 100px в строке {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Молимо Вас да делите повратне информације за {0} apps/frappe/frappe/config/website.py +13,Content web page.,Садржај веб страница. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Добавить новую роль @@ -2943,7 +2949,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Није важи за ЛДАП корисник apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} није важећидржавни apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Молимо одаберите други начин плаћања. Паипал не подржава трансакције у валути '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,поље за претрагу {0} није важећа +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,поље за претрагу {0} није важећа DocType: Workflow State,ok-circle,ок-круг apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Можете наћи ствари тражећи "наћи наранџасто у купце ' apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Извини! Корисник треба да имају потпуни приступ свом запису. @@ -3005,7 +3011,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Филтер Мета DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Текст који ће бити приказан на Линк то Веб Паге ако овај формулар има веб страницу. Линк рута ће бити аутоматски генерисан на основу `` паге_наме` и парент_вебсите_роуте` DocType: Feedback Request,Feedback Trigger,феедбацк окидач -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Молимо сет {0} први +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Молимо сет {0} први DocType: Unhandled Email,Message-id,Мессаге-Ид DocType: Patch Log,Patch,Закрпа DocType: Async Task,Failed,Није успео diff --git a/frappe/translations/sv.csv b/frappe/translations/sv.csv index 3355e66fa5..0176ac2753 100644 --- a/frappe/translations/sv.csv +++ b/frappe/translations/sv.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook Användarnamn DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Obs: Flera sessioner kommer att tillåtas i fall av mobil enhet apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Aktiverad inkorg för användaren {användare} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Det går inte att skicka det här meddelandet. Du har korsat den sändande gränsen för {0} e-post för den här månaden. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Skicka permanent{0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Skicka permanent{0}? DocType: Address,County,Grevskap DocType: Workflow,If Checked workflow status will not override status in list view,Om markerad arbetsflödesstatus inte kommer att åsidosätta status i listvy apps/frappe/frappe/client.py +280,Invalid file path: {0},Ogiltig sökväg: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Välj e apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Trä DocType: User,User Emails,Användar e-post DocType: User,Username,Användarnamn -apps/frappe/frappe/model/base_document.py +581,Value too big,Värde för stor +apps/frappe/frappe/model/base_document.py +580,Value too big,Värde för stor DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Kör scripttest DocType: Contact,Department,Avdelning @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Stockar DocType: Custom DocPerm,This role update User Permissions for a user,Denna roll uppdatera användarbehörigheter för en användare apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Ändra namn {0} DocType: Workflow State,zoom-out,zooma ut -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Det går inte att öppna {0} när dess exempel är öppen +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Det går inte att öppna {0} när dess exempel är öppen apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tabell {0} kan inte vara tomt apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Med Liggare apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Bilder DocType: Communication,Reference Owner,referens Ägare DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Minsta cirkulerande fraktion enhet (mynt). För t.ex. 1 cent för USD och det bör anges som 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Rad {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Rad {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Vänligen ge en fullname. apps/frappe/frappe/model/document.py +904,Beginning with,Börjar med apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Data Import Mall @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Förälder DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",Om det är aktiverat kommer lösenordsstyrkan att verkställas baserat på värdet Minsta lösenordsvärde. Ett värde av 2 är medelstarkt och 4 är väldigt starkt. DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",Om det är aktiverat kommer lösenordsstyrkan att verkställas baserat på värdet Minsta lösenordsvärde. Ett värde av 2 är medelstarkt och 4 är väldigt starkt. DocType: About Us Settings,"""Team Members"" or ""Management""","""Gruppmedlemmar"" eller ""Ledning""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',"Standard för att Kontrolltyps fältet måste vara antingen ""0"" eller ""1""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',"Standard för att Kontrolltyps fältet måste vara antingen ""0"" eller ""1""" apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,I går DocType: Contact,Designation,Beteckning DocType: Test Runner,Test Runner,Test Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Publiceras Field DocType: Email Group,Email Group,E-postgrupp DocType: Note,Seen By,Ses av apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Lägg till flera -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Inte som +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Inte som apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Ställ in visningsetiketten för fältet apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Felaktigt värde: {0} måste vara {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Ändra fältegenskaper (dölja, skrivskyddad, tillstånd etc.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Inställn apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Administratör inloggad DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Kontaktalternativ, som ""Försäljningsfrågor, Supportfrågor"" etc på en ny rad eller separerade med kommatecken." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Ladda ner -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Infoga +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Infoga apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Välj {0} DocType: Print Settings,Classic,Klassisk DocType: Desktop Icon,Color,Färg @@ -122,7 +122,7 @@ DocType: Translation,Translation,Översättning apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Installera apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Herr DocType: Custom Script,Client,Klient -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Denna form har ändrats efter att du har laddat det +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Denna form har ändrats efter att du har laddat det DocType: User Permission for Page and Report,User Permission for Page and Report,Användar Tillstånd för sida och rapport DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Om den inte är inställd, kommer valutak precisionen att bero på nummerformat" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Anledning apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Ange användare DocType: Email Unsubscribe,Email Unsubscribe,E-post Avsluta DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Välj en bild på ca bredd 150px med en transparent bakgrund för bästa resultat. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Den första användaren blir System Manager (du kan ändra detta senare). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Den första användaren blir System Manager (du kan ändra detta senare). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,cirkel-pil-upp apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Uppladdning ... DocType: Email Domain,Email Domain,e-postdomän DocType: Workflow State,italic,kursiv apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,För alla -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Kan inte ställa in Import utan Skapad +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Kan inte ställa in Import utan Skapad apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Event och andra kalendrar. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Alla fält är nödvändiga för att skicka in kommentaren. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Dra för att sortera kolumner @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standard Sidoradens meny apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Det går inte att ta bort Hem och bilagor mappar apps/frappe/frappe/config/desk.py +19,Files,filer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Behörigheter får tillämpas på användare baserat på vilka roller de tilldelats. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Du får inte skicka e-post i samband med detta dokument -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Välj minst en kolumn från {0} för att sortera / grupp +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Du får inte skicka e-post i samband med detta dokument +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Välj minst en kolumn från {0} för att sortera / grupp DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Markera det här om du testar din betalning med sandlådan API apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Du får inte ta bort en standard webbplats tema DocType: Feedback Trigger,Example,Exempel @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Totalt Medlemmar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Om en roll inte har tillgång på nivå 0, då är högre nivåer är meningslös." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Spara som DocType: Communication,Seen,Sett -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Visa fler detaljer +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Visa fler detaljer DocType: System Settings,Run scheduled jobs only if checked,Kör schemalagda jobb endast om markerad apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Visas bara om avsnittsrubriker är aktiverade apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arkiv @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Dölj Rubrik DocType: Address,Current,Nuvarande DocType: Address,Current,Nuvarande -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Relaterade dokument apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Grupper av DOCTYPE DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,Avlägsna cirkel @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Filtrera apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fältnamn {0} kan inte ha specialtecken som {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Uppdatera många värden på en gång. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Fel: Dokument har ändrats efter det att du har öppnat det -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressmall hittades. Var god skapa en ny från Inställningar> Utskrift och märkning> Adressmall. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} loggas ut: {1} DocType: Address,West Bengal,Västra Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan inte ställa in skickad om inte skickad +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Kan inte ställa in skickad om inte skickad DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Filtrerat på "{0}" DocType: Salutation,Administrator,Administratör @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Bloggrubrik apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Standard roller kan inte inaktiveras DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Nyhetsbrev -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Kan inte använda under fråga i ordning genom +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Kan inte använda under fråga i ordning genom DocType: Web Form,Button Help,KNAPPHJÄLP DocType: Kanban Board Column,purple,lila DocType: About Us Settings,Team Members,Lagmedlemmar @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Hämta en gl apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Din prenumeration löpte på {0}. Att förnya, {1}." DocType: Workflow State,plus-sign,plustecknet apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Setup redan klar -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} är inte installerat +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} är inte installerat DocType: Workflow State,Refresh,Uppdatera DocType: Event,Public,Offentlig apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Inget att visa @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Gillade av apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Email Support DocType: DocField,Print Hide If No Value,Skriv Hide om inget värde DocType: Event,yellow,gul -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Publiceras fält måste vara en giltig fältnamn +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Publiceras fält måste vara en giltig fältnamn apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Ladda upp Attachment DocType: Block Module,Block Module,Block Modul apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Exportmall @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Ett nytt konto har skapats för dig på {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruktioner Emailed apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Instruktioner Emailed -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Ange e-postmottagare (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Ange e-postmottagare (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-post flagga Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Det går inte att identifiera öppna {0}. Prova något annat. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,meddelande-ID DocType: Property Setter,Field Name,Fältnamn apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite är inte konfigurerad. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,eller -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modulnamn ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Fortsätta +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modulnamn ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Fortsätta DocType: Custom Field,Fieldname,Fältnamn DocType: Workflow State,certificate,certifikat DocType: User,Tile,Tile @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Visa alla versioner DocType: Workflow State,Print,Skriv ut DocType: User,Restrict IP,Begränsa IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,instrumentbräda apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Det går inte att skicka e-post vid denna tidpunkt apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Sök eller skriver ett kommando DocType: Communication,Timeline Name,tidslinje Namn @@ -329,7 +328,7 @@ DocType: Contact,Sales Master Manager,Försäljnings master föreståndaren apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Namn på Dokumenttyp (DocType) du vill att området ska kopplas till. t.ex. Kund DocType: User,Roles Assigned,Roller avsatta -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Sök hjälp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Sök hjälp DocType: Top Bar Item,Parent Label,Överordnad märkning apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Din förfrågan har tagits emot. Vi kommer att svara tillbaka inom kort. Om du har någon ytterligare information, vänligen svara på detta mail." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Behörigheter översätts automatiskt till standardrapporter och sökningar. @@ -346,6 +345,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Redigera rubrik DocType: File,File URL,Fil URL DocType: Version,Table HTML,tabell HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Inga resultat funna för '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Lägg till Abonnenter apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Kommande händelser idag DocType: Email Alert Recipient,Email By Document Field,E-post Av dokumentfält @@ -365,17 +365,16 @@ DocType: Web Form,Amount Based On Field,Belopp som baseras på Field apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Användaren är obligatoriskt för Share DocType: DocField,Hidden,Dold DocType: Web Form,Allow Incomplete Forms,Tillåt Ofullständiga Forms -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} måste ställas in först +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} måste ställas in först apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Använda några ord, undvika vanliga fraser." DocType: Workflow State,plane,plan -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Oj då. Din betalning har misslyckats. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Om du laddar upp ny information, ""Namnge Serie"" blir obligatoriskt, om det finns." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Få varningar för dag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Få varningar för dag apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType kan endast döpas av Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},ändrade värdet av {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Kontrollera din e-post för verifiering -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Vikning kan inte vara i slutet av formen +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Vikning kan inte vara i slutet av formen DocType: Communication,Bounced,Studsade DocType: Deleted Document,Deleted Name,raderade Namn apps/frappe/frappe/config/setup.py +14,System and Website Users,System- och webbplatsens användare @@ -394,14 +393,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,dokumentet Queued DocType: GSuite Templates,Destination ID,Destinations-ID DocType: Desktop Icon,List,Lista DocType: Communication,Link Name,länk Namn -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Fältet {0} i rad {1} kan inte döljas och är obligatorisk utan standard +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Fältet {0} i rad {1} kan inte döljas och är obligatorisk utan standard DocType: System Settings,mm/dd/yyyy,mm / dd / åååå apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Felaktigt lösenord: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Felaktigt lösenord: DocType: Print Settings,Send document web view link in email,Skicka dokument webbvy länk i e-post apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Din Feedback för dokument {0} sparats apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Föregående -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} rader för {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",Under valuta. För t.ex. "Cent" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Välj uppladdade fil @@ -412,10 +411,11 @@ DocType: Desktop Icon,Link,Länk apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ingen fil bifogad DocType: Version,Version,Version DocType: User,Fill Screen,Fyll skärmen -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Det går inte att visa detta träd rapport på grund av saknade uppgifter. Troligtvis är det som filtreras bort på grund av behörigheter. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vänligen konfigurera standard E-postkonto från Inställningar> E-post> E-postkonto +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",Det går inte att visa detta träd rapport på grund av saknade uppgifter. Troligtvis är det som filtreras bort på grund av behörigheter. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Välj Arkiv apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Redigera via Överför -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","dokumentstyp ..., t.ex. kund" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","dokumentstyp ..., t.ex. kund" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Tillståndet '{0}' är ogiltig DocType: Workflow State,barcode,streckkod apps/frappe/frappe/config/setup.py +232,Add your own translations,Lägg till dina egna översättningar @@ -425,7 +425,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Onsdag apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Bortsett från Rollbaserade Behörighets regler, kan du ansöka användarbehörigheter som bygger på DOCTYPE." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Dessa behörigheter gäller för alla transaktioner där den tillåtna posten är kopplad. Till exempel, om bolaget C sätts till användarbehörigheter för användare X, användar X kommer bara att kunna se transaktioner som har företag C som en länkad värde." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Bildfältet måste vara en giltig fältnamn +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Bildfältet måste vara en giltig fältnamn DocType: OAuth Client,Token,Tecken DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (namn) på den enhet vars egendom ska ställas in apps/frappe/frappe/limits.py +82,"To renew, {0}.","Att förnya, {0}." @@ -434,7 +434,7 @@ DocType: Web Form,Sidebar Items,Sidebar artiklar apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} är redan installerad DocType: Workflow State,exclamation-sign,utropstecknet apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Visa behörigheter -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Tidslinje fält måste vara en länk eller Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Tidslinje fält måste vara en länk eller Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Datumintervall apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Page {0} av {1} @@ -442,7 +442,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Presen apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Krypteringsnyckeln är ogiltig, kolla site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Till DocType: Kanban Board Column,darkgrey,mörkgrå -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Framgångsrik: {0} till {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Framgångsrik: {0} till {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Kan inte ändra användaruppgifter i demo. Vänligen logga in för ett nytt konto på https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Vänligen kopiera detta för att göra ändringar apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF-generering misslyckades på grund av trasiga bildlänkar @@ -459,24 +459,24 @@ DocType: DocField,Collapsible,Hopfällbar apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Sparad apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Vad behöver du hjälp med? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Alternativ för att välja. Varje alternativ på en ny rad. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Avbryt permanent {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Avbryt permanent {0}? DocType: Workflow State,music,musik DocType: Web Page,Settings,Inställningar apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Ange doctype DocType: Print Format,Style Settings,Style Inställningar -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sorteringsfält {0} måste vara ett giltigt fältnamn +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sorteringsfält {0} måste vara ett giltigt fältnamn apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Mer DocType: Contact,Sales Manager,FÖRSÄLJNINGSCHEF apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Byt namn DocType: Print Format,Format Data,Format Data -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Som +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Som DocType: Customize Form Field,Customize Form Field,Anpassa formulärfält apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Tillåt användaren DocType: OAuth Client,Grant Type,Grant Typ apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Markera vilka dokument som kan läsas av en användare apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listning app är inte tillåtet -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,Använd% som wildcard -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-postdomän inte konfigurerad för detta konto, skapa en?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,Använd% som wildcard +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-postdomän inte konfigurerad för detta konto, skapa en?" DocType: User,Reset Password Key,Återställ lösenord Nyckel DocType: Email Account,Enable Auto Reply,Aktivera autosvar apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Inte Sett @@ -520,7 +520,7 @@ DocType: DocField,Set Only Once,Ställ bara en gång DocType: Email Queue Recipient,Email Queue Recipient,E-post Kö Mottagare DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Användarnamn {0} finns redan -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: Kan inte ställa in import som {1} är inte importerad +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: Kan inte ställa in import som {1} är inte importerad apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Det finns ett fel i adressmallen {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -532,7 +532,7 @@ DocType: Communication,From Full Name,Från Fullständigt namn apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Du har inte tillgång till Rapport: {0} DocType: User,Send Welcome Email,Skicka Välkommen Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Ladda upp CSV-fil som innehåller alla användarbehörigheter i samma format som nedladdning. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Ta bort filter +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Ta bort filter DocType: Address,Daman and Diu,Daman och Diu DocType: Address,Personal,Personligt apps/frappe/frappe/config/setup.py +113,Bulk Rename,Bulk Byt namn @@ -563,11 +563,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standard DocType kan inte ha standardutskriftsformat, använd Anpassa formulär" DocType: Report,Query,Query DocType: DocType,Sort Order,Sorteringsordning -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""I listvy"" inte tillåtet för typ {0} i rad {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""I listvy"" inte tillåtet för typ {0} i rad {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Välj etiketten efter vilken du vill infoga nya fält. ,Document Share Report,Dokument Dela Rapport DocType: User,Last Login,Senaste inloggning -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fältnamn krävs i rad {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fältnamn krävs i rad {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Spalt DocType: Custom Field,Adds a custom field to a DocType,Lägger till ett anpassat fält till en DocType DocType: File,Is Home Folder,Är Home Folder @@ -593,7 +593,7 @@ DocType: File,Folder,Mapp DocType: DocField,Index,Index DocType: Email Group,Newsletter Manager,Nyhetsbrevsansvarig apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Alternativ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,alla inlägg +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} till {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Logga av fel under förfrågningar. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} har lagts till e-post Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -603,7 +603,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Indikator DocType: DocShare,Everyone,Alla DocType: Workflow State,backward,bakåt -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Endast en regel tillåtet med samma roll, nivå och {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Endast en regel tillåtet med samma roll, nivå och {1}" DocType: Email Queue,Add Unsubscribe Link,Lägg avsägandelänken apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Inga kommentarer ännu. Starta en ny diskussion. DocType: Workflow State,share,del @@ -622,7 +622,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,är in apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Se Medlemmar apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Fröken DocType: Website Theme,Background Color,Bakgrundsfärg -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Det fanns fel när du skickar e-post. Var god försök igen. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Det fanns fel när du skickar e-post. Var god försök igen. DocType: Portal Settings,Portal Settings,Portal Settings DocType: Web Page,0 is highest,0 är högst apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Är du säker att du vill länka om den här kommunikationen till {0}? @@ -650,7 +650,7 @@ DocType: Contact Us Settings,Contact Us Settings,Kontakta oss inställningar apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Söker ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Söker ... DocType: Workflow State,text-width,text-bredd -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Maximal Bifogningsgräns för denna post uppnåtts. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Maximal Bifogningsgräns för denna post uppnåtts. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Följande obligatoriska fält måste fyllas:
DocType: Email Alert,View Properties (via Customize Form),Se Egenskaper (via Anpassa Form) DocType: Note Seen By,Note Seen By,Note ses av @@ -660,17 +660,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapportgenerator rapporter hanteras direkt av Rapportgeneratorn. Inget att göra. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Kontrollera din e-postadress apps/frappe/frappe/model/document.py +903,none of,ingen av -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Skicka mig en kopia +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Skicka mig en kopia apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Ladda användarbehörigheter DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Webbsajt apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Markerade objekt kommer att visas på skrivbordet -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} kan inte ställas in för singel typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} kan inte ställas in för singel typer apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} inte existerar. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} är för närvarande tittar på det här dokumentet DocType: ToDo,Assigned By Full Name,Uppdragsgivare Fullständigt namn apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} uppdaterade -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapporten kan inte ställas in för singel typer +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapporten kan inte ställas in för singel typer apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} dagar sedan DocType: Email Account,Awaiting Password,Inväntar Lösenord DocType: Address,Address Line 1,Adress Linje 1 @@ -680,7 +680,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Stater för arbetsflöde (t.ex. Utkast, Godkänd, Inställd)." DocType: Print Settings,Allow Print for Draft,Låt ut för Utkast apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Bestämd kvantitet -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Skicka det här dokumentet för att bekräfta +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Skicka det här dokumentet för att bekräfta DocType: Contact,Unsubscribed,Otecknade apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Ställ anpassade roller för sida och rapport apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Betyg: @@ -688,7 +688,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Data Import Verktyg DocType: Address,Dadra and Nagar Haveli,Dadra och Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Ladda upp filer vänta några sekunder. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Bifoga din bild +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Bifoga din bild apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Row Värden Ändrad DocType: Workflow State,Stop,Stoppa DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Länk till den sida du vill öppna. Lämna tomt om du vill göra det till ett gruppledare. @@ -703,7 +703,7 @@ DocType: Print Format,Align Labels to the Left,Rikta etiketter till vänster DocType: Help Article,Expert,Expert DocType: Workflow State,circle-arrow-right,cirkel-pil-höger DocType: LDAP Settings,LDAP Server Url,LDAP-server webbadress -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Det går inte att öppna exempel när dess {0} är öppen +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Det går inte att öppna exempel när dess {0} är öppen apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Kö för installation DocType: Custom DocPerm,Custom DocPerm,Anpassad DocPerm DocType: Newsletter,Send Unsubscribe Link,Skicka avsägandelänken @@ -720,7 +720,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Appen {0} togs bort DocType: Custom DocPerm,Apply User Permissions,Tillämpa användarbehörigheter DocType: User,Modules HTML,Moduler HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Saknade värden Krävs DocType: DocType,Other Settings,Andra inställningar DocType: Social Login Keys,Frappe,Frappe @@ -739,7 +738,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Inga dokument valda apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Händelse -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",Den {0} {1} skrev: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",Den {0} {1} skrev: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Det går inte att ta bort standard fält. Du kan dölja den om du vill DocType: Top Bar Item,For top bar,För översta fältet apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Det gick inte att identifiera {0} @@ -753,7 +752,7 @@ DocType: Role,Desk Access,skrivbord Tillgång DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Server Error: Kontrollera dina serverloggar eller kontakta teknisk support. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Välkommen e-postmeddelandet -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Låt oss förbereda systemet för första användning. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Låt oss förbereda systemet för första användning. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Utvalda apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Redan Registrerad DocType: System Settings,Float Precision,Flytprecision @@ -767,7 +766,7 @@ DocType: Web Form,Allow Print,Tillåt tryck~~POS=HEADCOMP apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Inga appar Installerad apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Markera fältet som Obligatorisk DocType: Communication,Clicked,Klickade -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Ingen behörighet att "{0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Ingen behörighet att "{0} {1} DocType: User,Google User ID,Google användar-ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Planerad att skicka DocType: DocType,Track Seen,spår Sett @@ -837,7 +836,7 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,samtidiga sessioner DocType: OAuth Client,Client Credentials,klient Credentials -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Öppna en modul eller ett verktyg +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Öppna en modul eller ett verktyg DocType: Communication,Delivery Status,Leveransstatus DocType: Module Def,App Name,App Namn apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max filstorlek tillåten är {0} MB @@ -849,8 +848,8 @@ DocType: Feedback Request,Reference Communication,Referens Communication DocType: Email Queue,Unsubscribe Method,unsubscribe Metod DocType: GSuite Templates,Related DocType,Relaterad DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Redigera för att lägga till innehåll -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Välj språk -apps/frappe/frappe/__init__.py +510,No permission for {0},Inget tillstånd för {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Välj språk +apps/frappe/frappe/__init__.py +509,No permission for {0},Inget tillstånd för {0} DocType: DocType,Advanced,Avancerad apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Verkar API-nyckel eller API Secret är fel !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referens: {0} {1} @@ -872,7 +871,7 @@ DocType: Customize Form,Enter Form Type,Ange Formulärtyp apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Inga poster taggade. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Ta bort fält DocType: User,Send Password Update Notification,Skicka lösenord Update Anmälan -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Att tillåta DocType, DocType. Var försiktig!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Att tillåta DocType, DocType. Var försiktig!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Anpassade format för utskrift, e-post" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Uppdaterad Till ny version DocType: Custom Field,Depends On,Beror På @@ -966,6 +965,7 @@ apps/frappe/frappe/model/document.py +902,one of,en av apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Var god välj fil att kopiera apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kontroll ett ögonblick apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Visa Taggar +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Om Använd Strikt användarbehörighet är markerad och användarbehörighet definierad för en DocType för en användare, visas inte alla dokument där värdet på länken är tomt visas för den användaren" DocType: Address,Billing,Fakturering DocType: Email Queue,Not Sent,Inte Skickade DocType: Web Form,Actions,Åtgärder @@ -996,6 +996,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,Rensa apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Dagliga händelser bör avslutas på samma dag. DocType: Communication,User Tags,Användarnas nyckelord apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Hämtar bilder .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Inställning> Användare DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Nedladdning App {0} DocType: Communication,Feedback Request,Feedback Request @@ -1013,7 +1014,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Säkerhetskopior apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Lägg till kontakt DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Tillval: Skicka alltid dessa ids. Varje e-postadress på en ny rad -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Dölj Detaljer +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Dölj Detaljer DocType: Workflow State,Tasks,Uppgifter DocType: Event,Tuesday,Tisdag DocType: Blog Settings,Blog Settings,Blogginställningar @@ -1033,9 +1034,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Skriv ett Python-fil i samma mapp där det sparas och åter kolumn och resultat. DocType: DocType,Sort Field,Sorteringsfältet DocType: Razorpay Settings,Razorpay Settings,Razorpay Inställningar -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Redigera filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Fältet {0} av typen {1} kan inte vara obligatoriskt -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","t.ex. Om Apply användarbehörigheter kontrolleras för Report DocType men inga användarbehörigheter är definierade för rapport för en användare, kommer alla rapporter visar sig att Användare" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Redigera filter +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Fältet {0} av typen {1} kan inte vara obligatoriskt apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Lägga till mer apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,hide Diagram DocType: System Settings,Session Expiry Mobile,Sessions Upphörande Mobil @@ -1050,6 +1050,7 @@ DocType: Communication,Delayed,Försenad apps/frappe/frappe/config/setup.py +128,List of backups available for download,Förteckning över säkerhetskopior tillgängliga för nedladdning apps/frappe/frappe/www/login.html +89,Sign up,Registrera dig DocType: Test Runner,Output,Produktion +DocType: Email Alert,Set Property After Alert,Ange egenskap efter varning apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Lägg till fält till formulär. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Det verkar som om något är fel med den här webbplatsens Paypal-konfiguration. DocType: File,rgt,RGT @@ -1057,6 +1058,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,blad DocType: Portal Menu Item,Portal Menu Item,Portal Menyobjekt DocType: User Email,Email ID,E-post-ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Om Använd användarbehörigheter är markerad för Report DocType men inga användarbehörigheter definieras för Rapport för en användare, visas alla rapporter till den användaren" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,En lista över resurser som Kunden App kommer att ha tillgång till efter att användaren tillåter det.
t.ex. projektet DocType: Translation,Translated Text,översatt text DocType: Contact Us Settings,Query Options,Fråge Alternativ @@ -1074,7 +1076,7 @@ DocType: Address,Contacts,Kontakter DocType: System Settings,Setup Complete,Installationen är klar apps/frappe/frappe/config/setup.py +66,Report of all document shares,Rapport från alla dokument apps/frappe/frappe/www/update-password.html +18,New Password,Nytt Lösenord -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filter {0} saknas +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filter {0} saknas apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Förlåt! Du kan inte ta bort autogenererade kommentarer DocType: Website Theme,Style using CSS,Style med CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referens DocType @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,Blockmoduler apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Återgå längd {0} för {1} "i" {2} "; Inställning av längden som {3} kommer att orsaka trunkering av data. DocType: Print Format,Custom CSS,Anpassad CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Lägg till en kommentar -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ignoreras: {0} till {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ignoreras: {0} till {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Loggar av fel på automatiserade händelser (schemaläggare). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Inte ett giltigt Comma Separated Value (CSV-fil) @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,Standard Inkommande DocType: Workflow State,repeat,upprepa DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","Om inaktiverat, kommer denna roll tas bort från alla användare." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Hjälp på Sök +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Hjälp på Sök apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Registrerad men inaktiverat DocType: DocType,Hide Copy,Dölj Kopiera apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Rensa alla roller @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Land apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresser DocType: Communication,Shared,Delad -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Fäst dokument Tryck +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Fäst dokument Tryck DocType: Bulk Update,Field,Fält DocType: Communication,Received,Mottagna DocType: Social Login Keys,Google Client ID,Google Kund-ID @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,Frågo Rapport DocType: User,Set New Password,Ange nytt lösenord DocType: User,Github User ID,Github användar-ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Om Document Type -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Det går inte att ta bort eller avbryta eftersom {0} {1} är kopplad till {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Det går inte att ta bort eller avbryta eftersom {0} {1} är kopplad till {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Okänd appen {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S är inte en giltig rapport format. Rapport format ska \ en av följande% s DocType: Communication,Chat,Chatta -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fältnamn {0} visas flera gånger i rader {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fältnamn {0} visas flera gånger i rader {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} från {1} till {2} i rad # {3} DocType: Communication,Expired,Utgånget DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Antal kolumner för ett fält i ett rutnät (Totalt kolumner i ett rutnät bör vara mindre än 11) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Har du ett konto? L apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown Utskriftsformat: {0} DocType: Workflow State,arrow-down,pil ner apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Kollaps -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Användaren får inte ta bort {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Användaren får inte ta bort {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Senast uppdaterad DocType: Help Article,Likes,Gillar DocType: Website Settings,Top Bar,Top Bar DocType: GSuite Settings,Script Code,Skriptkod apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Skapa användar e-post apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Skapa användar e-post -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Inga behörigheter angivna +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Inga behörigheter angivna apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Globala inställningar: Användarna kommer bara att kunna välja kontrolleras ikoner apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} hittades inte DocType: Custom Role,Custom Role,anpassad roll apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Hem / Testa mapp 2 DocType: System Settings,Ignore User Permissions If Missing,Ignorera användarbehörigheter Om Missing -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Vänligen spara dokumentet innan du laddar upp. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vänligen spara dokumentet innan du laddar upp. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Ange ditt lösenord DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Tillträde Secret apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Lägg till en ny kommentar apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Redigera DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Prenumerationen på nyhetsbrev -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Vikning måste komma före en avsnittsbrytning +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Vikning måste komma före en avsnittsbrytning apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Senast ändrad av DocType: Workflow State,hand-down,hand ner DocType: Address,GST State,GST-staten -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Kan inte ställa avbruten utan skickad +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Kan inte ställa avbruten utan skickad DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Det fanns fel. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Omdirigering URI bundet till Auth Code @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Mina DocType: Website Theme,Text Color,TEXTFÄRG DocType: Desktop Icon,Force Show,force Visa apps/frappe/frappe/auth.py +78,Invalid Request,Ogiltig Förfrågan -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Denna form har inte någon ingång +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Denna form har inte någon ingång apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Sessions Upphörande måste vara i formatet {0} DocType: Website Sidebar Item,Group,Grupp DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Välj target = "_blank" för att öppna en ny sida. @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ignorera felkoder. DocType: Workflow State,wrench,skiftnyckel apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Inte Inställd -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Inställning> Användare DocType: Authentication Log,Date,Datum DocType: Website Settings,Disable Signup,Inaktivera Registrering apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Sitt tight medan systemet håller på att installationsprogrammet. Det kan ta en liten stund. @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Lägg till kommentar DocType: DocField,Mandatory,Obligatorisk apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modul för att exportera -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Inga grundläggande behörigheter satta +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Inga grundläggande behörigheter satta apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Din prenumeration upphör att gälla den {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Länken för din säkerhetskopia kommer att skickas på följande e-postadress: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Innebörden av Skicka, Avbryt, Ändra" @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,query-rapport apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Tilldelad till {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,filter sparas DocType: DocField,Percent,Procent -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Ställ filter +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Ställ filter apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Länkad Med DocType: Workflow State,book,bok DocType: Website Settings,Landing Page,Landningssida -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Fel i Custom Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Fel i Custom Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Namn apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Import Begär kö. Detta kan ta en stund, ha tålamod." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Inga Behörigheter fastställts för dessa kriterier. @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,Tillåt inloggning med apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Du har inte tillräckliga behörigheter för att komma åt denna resurs. Vänligen kontakta din chef för att få tillgång. DocType: Custom Field,Custom,Anpassad apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Setup bevakning utifrån olika kriterier. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Inlägg arkiverat {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Inlägg arkiverat {0} DocType: Email Alert,Send alert if date matches this field's value,Skicka varning om dagen matchar detta område värde DocType: Workflow,Transitions,Övergångar apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Ta bort {0} och radera alla data? @@ -1304,9 +1305,8 @@ DocType: User,Login After,Inloggning Efter DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Tryckning DocType: Workflow State,thumbs-up,tummen upp -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte inställt. Skapa ett nytt e-postkonto från Inställningar> E-post> E-postkonto DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision bör vara mellan 1 och 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision bör vara mellan 1 och 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,och DocType: Error Snapshot,Frames,Ramar @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,Bildlänk DocType: Auto Email Report,Report Filters,rapportfilter apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,nu DocType: Workflow State,step-backward,steg bakåt -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Ställ Dropbox snabbtangenter på din sida config apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Radera denna post för att tillåta sändning till denna e-postadress apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Endast obligatoriska fält är nödvändiga för nya register. Du kan ta bort icke-obligatoriska kolumner om du vill. @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,Är Bilagor mapp apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Expandera alla apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Gäller inloggnings-ID krävs. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Återuppta -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Du har avbrutit betalning -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Välj en giltig csv-fil med data +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Välj en giltig csv-fil med data apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} avsluta utdelning av detta dokument med {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Dokumentstatus övergång från {0} till {1} är inte tillåtet DocType: DocType,"Make ""name"" searchable in Global Search",Gör "namn" sökbara i Global sökning @@ -1351,7 +1350,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,urs DocType: Help Category,Help Category,Hjälp Kategori apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Användare {0} är inaktiverad apps/frappe/frappe/www/404.html +8,Page missing or moved,Sida saknas eller flyttats -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Redigera {0} egenskaper DocType: DocType,Route,Rutt apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Betalning gateway inställningar DocType: DocField,Name,Namn @@ -1359,8 +1357,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Sök i dokumenten apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Sök i dokumenten DocType: OAuth Authorization Code,Valid,Giltig -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Öppna länk -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Ditt språk +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Öppna länk +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ditt språk apps/frappe/frappe/desk/form/load.py +46,Did not load,Laddade ej apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Lägg till rad DocType: Tag Category,Doctypes,DOCTYPE @@ -1375,7 +1373,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Är Feedback DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Kan Skriva apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Vissa dokument, som en faktura, bör inte ändras när den slutförts. Den slutliga tillståndet för sådana handlingar kallas Inlämnad. Du kan begränsa vilka roller som kan lämna in." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Du får inte exportera denna rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Du får inte exportera denna rapport apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,En post vald DocType: Newsletter,Test Email Address,Test E-postadress DocType: ToDo,Sender,Avsändare @@ -1410,7 +1408,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,import Zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,dokument-ID DocType: Print Settings,Letter,Brev -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Bildfältet måste vara av typen fast bild +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Bildfältet måste vara av typen fast bild DocType: DocField,Columns,kolumner DocType: Async Task,Succeeded,Efterföljande apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Obligatoriska fält krävs i {0} @@ -1460,7 +1458,7 @@ DocType: DocField,Text Editor,Textredigeraren apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Inställningar för Om oss Page. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Redigera anpassad HTML DocType: Error Snapshot,Error Snapshot,Fel Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,I +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,I DocType: Email Alert,Value Change,Värde Förändring DocType: Standard Reply,Standard Reply,Standard Svara apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Bredd på inmatningsrutan @@ -1476,12 +1474,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Använd denna fältnamn för att generera titel apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Importera e-post från apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Bjud in som Användare -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Välj tillbehör +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Välj tillbehör apps/frappe/frappe/model/naming.py +94, for {0},för {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Det fanns fel. Vänligen rapportera detta. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Du får inte skriva ut dokument +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Du får inte skriva ut dokument apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Ställ filter värde i Rapport Filter tabellen. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Ladda rapport +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Ladda rapport apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Din prenumeration löper ut i dag. DocType: Page,Standard,Standard apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Bifoga Fil @@ -1511,7 +1509,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Regionala Extensions DocType: LDAP Settings,Base Distinguished Name (DN),Bas Distinguished Name (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Lämna denna konversation -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Alternativ inte satt för länk fältet {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Alternativ inte satt för länk fältet {0} DocType: Customize Form,"Must be of type ""Attach Image""",Måste vara av typen "Bifoga bild" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Avmarkera alla apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},Du kan inte frånkopplas "Read Only" för fältet {0} @@ -1554,9 +1552,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Notera apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Felrapport apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Feedback villkor matchar inte -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Tidslinje fält måste vara en giltig fältnamn +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Tidslinje fält måste vara en giltig fältnamn DocType: Currency,Symbol,Symbol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Rad # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Rad # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Nytt lösenord mailat apps/frappe/frappe/auth.py +245,Login not allowed at this time,Inloggning inte tillåtet vid denna tid DocType: Email Account,Email Sync Option,Email Sync Option @@ -1578,7 +1576,7 @@ DocType: DocField,Text,Text apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standard svar på vanliga frågor. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standard Sändning DocType: Workflow State,volume-off,Volym av -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Omtyckt av {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Omtyckt av {0} DocType: Footer Item,Footer Item,footer Punkt ,Download Backups,Hämta säkerhetskopior apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Hem / Testa mapp 1 @@ -1613,7 +1611,7 @@ DocType: Web Page,Text Align,Text Justera apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Namn kan inte innehålla specialtecken som {0} DocType: Contact Us Settings,Forward To Email Address,Framåt Till e-postadress apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Visa alla uppgifter -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Fältet Titel måste vara en giltig fältnamn +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Fältet Titel måste vara en giltig fältnamn apps/frappe/frappe/config/core.py +7,Documents,Dokument DocType: Email Flag Queue,Is Completed,Är klart apps/frappe/frappe/www/me.html +22,Edit Profile,Redigera profil @@ -1623,7 +1621,7 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Detta fält visas endast om fältnamn definieras här har värde eller reglerna är sanna (exempel): myfield eval: doc.myfield == "Min värde" eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,I dag +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,I dag apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",När du har ställt detta kommer användarna bara att kunna komma åt dokument (t.ex.. Blogginlägg) där länken finns (t.ex.. Blogger). DocType: Error Log,Log of Scheduler Errors,Loggar av Planerings fel DocType: User,Bio,Bio @@ -1647,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 stjärna är lägst och 5 stjärnor är högsta betyg DocType: Event,Ref Name,Ref Namn DocType: Web Page,Center,Centrum +DocType: Email Alert,Value To Be Set,Värde som ska ställas in apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Grundnivå DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Representerar tillstånd som tillåts i ett dokument och roll som att ändra tillståndet. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Uppdatera Formulär @@ -1667,18 +1666,18 @@ DocType: DocType,Has Web View,Har Webbvy apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DocType namn bör börja med en bokstav och det kan endast bestå av bokstäver, siffror, mellanslag och understreck" DocType: Communication,Spam,spam DocType: Integration Request,Integration Request,integration Request -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Kära +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Kära DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Användare DocType: Web Page,HTML for header section. Optional,HTML för huvudsektionen. Valfritt apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Den här funktionen är helt ny och fortfarande experimentell -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Max {0} rader tillåts +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Max {0} rader tillåts DocType: Email Unsubscribe,Global Unsubscribe,Globalt Avanmälan apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Detta är ett mycket vanligt lösenord. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Se DocType: Communication,Assigned,delad DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Välj Utskriftsformat +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Välj Utskriftsformat apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Korta tangentbord mönster är lätt att gissa DocType: Portal Settings,Portal Menu,portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Längd {0} ska vara mellan 1 och 1000 @@ -1717,7 +1716,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Användaren kan inte söka apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Ogiltigt Utdataformat DocType: Custom DocPerm,Apply this rule if the User is the Owner,Tillämpa denna regel om användaren är ägare -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Kommer att vara ditt inloggnings-ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Kommer att vara ditt inloggnings-ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Skapa Rapporter DocType: Note,Notify users with a popup when they log in,Meddela användare med en popup när de loggar in apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} existerar inte, välj ett nytt mål att slå samman" @@ -1736,17 +1735,18 @@ DocType: User Permission for Page and Report,Roles Permission,roller Tillstånd apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Uppdatera DocType: Error Snapshot,Snapshot View,Snapshot View apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Spara nyhetsbrevet innan du skickar -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Alternativ måste vara en giltig DocType för fältet {0} i v {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år sedan +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Alternativ måste vara en giltig DocType för fältet {0} i v {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Redigera Egenskaper DocType: Patch Log,List of patches executed,Lista över körda patchar apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} redan otecknade -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Kommunikationsmedium +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Kommunikationsmedium DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Välj en annan betalningsmetod. Razorpay stöder inte transaktioner i valuta '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Kö för säkerhetskopiering. Det kan ta några minuter till en timme. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Registrera OAuth-klient App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan inte vara "{2}". Det bör vara en av "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} kan inte vara "{2}". Det bör vara en av "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} eller {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Visa eller dölj skrivbordsikoner apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Lösenord Uppdatering @@ -1773,7 +1773,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Visa Radbrytningar efter avsnitt DocType: Blogger,Short Name,Kort Namn apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Page {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",Du väljer Sync Option som allt kommer det synkronisera alla \ läsa samt oläst meddelande från servern. Detta kan också leda till att dubbel \ av kommunikation (e-post). apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,filer Storlek @@ -1785,6 +1785,7 @@ DocType: Contact,Purchase Manager,Inköpsansvarig DocType: Custom Script,Sample,Prov apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Ej kategoriserat Taggar DocType: Event,Every Week,Varje Vecka +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-postkonto är inte inställt. Skapa ett nytt e-postkonto från Inställningar> E-post> E-postkonto apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Klicka här för att kontrollera användning eller uppgradera till en högre plan DocType: Custom Field,Is Mandatory Field,Är Obligatoriskt fält DocType: User,Website User,Hemsida Användare @@ -1808,16 +1809,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Custom Sidebar Menu DocType: Workflow State,pencil,blyertspenna apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Chattmeddelanden och andra meddelanden. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Sätt Efter kan inte ställas in som {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Sätt Efter kan inte ställas in som {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Dela {0} med apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Kontoinställningar e-postadress Ange ditt lösenord för: DocType: Workflow State,hand-up,hand upp DocType: Blog Settings,Writers Introduction,Författarna Inledning DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Fel vid utvärdering av bevakning {0}. Rätta din mall. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Fel vid utvärdering av bevakning {0}. Rätta din mall. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Välj dokumenttyp eller roll att starta. DocType: Contact,Passive,Passiv DocType: Contact,Accounts Manager,Account Manager +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Din betalning har avbrutits. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Välj filtyp DocType: Help Article,Knowledge Base Editor,Knowledge Base Editor apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Sidan hittas inte @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,Fastighets typ DocType: Workflow State,screenshot,skärmdump apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Endast Administratören kan spara en standardrapport. Byt namn och spara. DocType: System Settings,Background Workers,bakgrunds Arbetare +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fältnamn {0} stämmer mot metaobjekt DocType: Deleted Document,Data,Data apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Dokumentstatus apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Du har gjort {0} av {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Visa användarbehörigheter apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Du måste vara inloggad och ha System Manager roll för att kunna få tillgång till säkerhetskopior. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Återstående -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Spara innan bifogning. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Spara innan bifogning. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Tillagd {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Standardtemat ligger i {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype kan inte ändras från {0} till {1} i rad {2} @@ -1890,11 +1893,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Sta apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Start misslyckades apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Detta e-postmeddelande skickades till {0} och kopieras till {1} DocType: Workflow State,th,e -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Vänligen konfigurera standard E-postkonto från Inställningar> E-post> E-postkonto -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Skapa en ny {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Skapa en ny {0} DocType: Email Rule,Is Spam,är Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapportera {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Öppna {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Öppna {0} DocType: OAuth Client,Default Redirect URI,Default Omdirigering URI DocType: Email Alert,Recipients,Mottagare DocType: Workflow State,ok-sign,OK-tecken @@ -1912,6 +1914,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Hjälpartiklar ,Modules Setup,Moduler Inställning apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Typ: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Din betalning har misslyckats. DocType: Communication,Unshared,odelade DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modul hittades inte @@ -1959,7 +1962,7 @@ DocType: Website Settings,Brand Image,Märke Bild DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Inställning av övre navigationsfältet, sidfot och logotyp." DocType: Web Form Field,Max Value,max Värde -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},För {0} på nivå {1} i {2} i rad {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},För {0} på nivå {1} i {2} i rad {3} DocType: Contact,All,Allt DocType: Email Queue,Recipient,Mottagare DocType: Communication,Has Attachment,har Attachment @@ -1976,7 +1979,8 @@ DocType: Workflow State,align-right,anpassa högra DocType: Auto Email Report,Email To,E-post till apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Mapp {0} är inte tom DocType: Page,Roles,Roller -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Fältet {0} är inte valbar. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Fel: Värdet saknas för {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Fältet {0} är inte valbar. DocType: System Settings,Session Expiry,Sessions Upphörande DocType: Workflow State,ban-circle,ban-cirkel DocType: Email Flag Queue,Unread,Oläst @@ -1991,7 +1995,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Användarinställningar apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Skapa Ny DocType: Workflow State,chevron-down,Chevron-ner -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-post skickas inte till {0} (otecknade / inaktiverad) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-post skickas inte till {0} (otecknade / inaktiverad) DocType: Async Task,Traceback,Spåra tillbaka DocType: Currency,Smallest Currency Fraction Value,Minsta Valuta Fraktion Värde apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Tilldela till @@ -2002,12 +2006,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,Från DocType: Website Theme,Google Font (Heading),Google Font (rubrik) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Välj en grupp nod först. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Hitta {0} i {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Hitta {0} i {1} DocType: OAuth Client,Implicit,Implicit DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Bifoga som kommunikation mot denna DocType (måste ha fält, "Status", "Ämne")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI för att ta emot behörighetskod när användaren ger tillgång, liksom fel svar. Typiskt en REST slutpunkt exponeras av Kunden App.
t.ex. http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Ej tillåtet att ändra {0} efter inlämnandet +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Ej tillåtet att ändra {0} efter inlämnandet DocType: Communication,Comment Type,Kommentar Typ DocType: OAuth Client,OAuth Client,OAuth-klient apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Användare @@ -2022,7 +2026,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Filtrera data DocType: Auto Email Report,Filter Data,Filtrera data apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Lägg till en tagg -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Bifoga en fil först. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Bifoga en fil först. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Det fanns några fel inställning namn, kontakta administratören" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Inkommande e-postkonto är inte korrekt apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2037,11 +2041,11 @@ DocType: Blog Post,Email Sent,Email Skickat DocType: DocField,Ignore XSS Filter,Ignorera XSS Filter apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,tog bort apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox inställningarna för säkerhetskopiering -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Skicka som e-post +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Skicka som e-post DocType: Website Theme,Link Color,Länkfärg apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Användare {0} kan inte inaktiveras apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Kära Systemansvarig," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Ditt land +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Ditt land DocType: Event,Sunday,Söndag apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,I Grid View DocType: Address Template,Template,Mall @@ -2049,7 +2053,7 @@ DocType: Address,Delhi,delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP-inställningar apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Ändring apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Paypal betalning gateway inställningar -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} ({3}) kommer att få stympad, som max tillåtna tecken är {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} ({3}) kommer att få stympad, som max tillåtna tecken är {2}" DocType: OAuth Client,Resource Owner Password Credentials,Resurs ägaren lösenord Referenser DocType: OAuth Client,Response Type,Typ av svar apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Användare @@ -2066,7 +2070,7 @@ DocType: DocField,Table,Bord DocType: File,File Size,Fil-Storlek apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Du måste logga in för att skicka in detta formulär DocType: User,Background Image,Bakgrundsbild -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Välj ditt land, tidszon och valuta" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Välj ditt land, tidszon och valuta" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Mellan DocType: Async Task,Queued,I kö @@ -2075,6 +2079,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,N DocType: Custom DocPerm,Create,Skapa apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Ogiltig Filter: {0} DocType: Email Account,no failed attempts,ingen misslyckade försök +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Ingen standard adressmall hittades. Var god skapa en ny från Inställningar> Utskrift och märkning> Adressmall. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Tillgång Key DocType: OAuth Bearer Token,Access Token,Tillträde token @@ -2092,8 +2097,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Användarnamn DocType: DocType,Image View,Visa bild apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Ser ut som något gick fel under transaktionen. Eftersom vi inte har bekräftat betalning kommer Paypal automatiskt återbetala dig detta belopp. Om den inte gör det, skicka ett e-post och nämna Korrelation ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Inkludera symboler, siffror och stora bokstäver i lösenordet" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sätt Efter fältet "{0}" som nämns i Custom Field "{1}", med etiketten "{2}", existerar inte" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Inkludera symboler, siffror och stora bokstäver i lösenordet" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Sätt Efter fältet "{0}" som nämns i Custom Field "{1}", med etiketten "{2}", existerar inte" DocType: Workflow State,signal,signalen DocType: DocType,Show Print First,Show Print Första apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter för att lägga @@ -2124,14 +2129,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Arkiv '{0}' hittades inte apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Avlägsna Avsnitt DocType: User,Change Password,Byt lösenord -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Ogiltig E-post: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Hallå! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Ogiltig E-post: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Hallå! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Händelse slut måste vara efter start apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Du har inte behörighet att få en rapport om {0} +DocType: System Settings,Apply Strict User Permissions,Ansök strikta användarbehörigheter DocType: DocField,Allow Bulk Edit,Tillåt Bulk Edit DocType: DocField,Allow Bulk Edit,Tillåt Bulk Edit DocType: Blog Post,Blog Post,Blogginlägg -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Avancerad Sökning +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Avancerad Sökning apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Lösenordsåterställnings instruktioner har skickats till din e-post apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Nivå 0 är för behörigheter på dokumentnivå, \ högre nivåer för behörigheter på fältnivå." @@ -2150,15 +2156,14 @@ DocType: Web Page,Sidebar and Comments,Sidebar och kommentarer apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","När du ändra rett dokument efter Avbryt och spara den, kommer det att bli ett nytt nummer som är en version av det gamla numret." DocType: Stripe Settings,Publishable Key,Publicerbar nyckel DocType: Stripe Settings,Publishable Key,Publicerbar nyckel -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} år sedan DocType: Workflow State,circle-arrow-left,cirkel-pil vänster apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis cache-server funkar inte. Vänligen kontakta administratör / Teknisk support apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Party Namn -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Skapa ett nytt register +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Skapa ett nytt register apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Sökande DocType: Currency,Fraction,Fraktion DocType: LDAP Settings,LDAP First Name Field,LDAP fältet Förnamn -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Välj bland befintliga bilagor +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Välj bland befintliga bilagor DocType: Custom Field,Field Description,Fält Beskrivning apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Namnet inte satt via Prompt apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,inkorg @@ -2204,11 +2209,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Info: DocType: Custom Field,Permission Level,Behörighetsnivå DocType: User,Send Notifications for Transactions I Follow,Skicka meddelanden för Transaktioner Jag Följ -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan inte ställa in skickad, Avbryt, Ändra utan Skriv" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Kan inte ställa in skickad, Avbryt, Ändra utan Skriv" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Är du säker på att du vill ta bort den bifogade filen? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Det går inte att ta bort eller avbryta eftersom {0} {1} är kopplad till {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Inga resultat funna för '

-apps/frappe/frappe/__init__.py +1063,Thank you,Tack +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Det går inte att ta bort eller avbryta eftersom {0} {1} är kopplad till {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Tack apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Spara DocType: Print Settings,Print Style Preview,Se utskriftsformat apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2220,10 +2224,10 @@ DocType: DocField,In List View,I lista DocType: Email Account,Use TLS,Använd TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Ogiltigt användarnamn eller lösenord apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Lägg till anpassade javascript former. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Nej +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Nej ,Role Permissions Manager,Behörighetsansvarig apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Namn på den nya utskriftsformat -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,klar Attachment +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,klar Attachment apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Obligatorisk: ,User Permissions Manager,Användarbehörigheter Chef DocType: Property Setter,New value to be set,Nytt värde som ska ställas in @@ -2253,26 +2257,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 daga apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Kategorisera blogginlägg. DocType: Workflow State,Time,Tid DocType: DocField,Attach,Fäst -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} är inte ett giltigt fältnamn mönster. Det bör vara {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} är inte ett giltigt fältnamn mönster. Det bör vara {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Skicka feedback förfrågan endast om det finns åtminstone en kommunikations är tillgänglig för dokumentet. DocType: Custom Role,Permission Rules,Behörighetsregler DocType: GSuite Settings,GSuite Settings,GSuite Inställningar DocType: Address,Links,Länkar -apps/frappe/frappe/model/base_document.py +428,Value missing for,Värde saknas för +apps/frappe/frappe/model/base_document.py +427,Value missing for,Värde saknas för apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Lägg till underval -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Inskickad information kan inte tas bort. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Inskickad information kan inte tas bort. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,backup Storlek DocType: GSuite Templates,Template Name,Mallnamn -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,nytt typ av dokument +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,nytt typ av dokument DocType: Custom DocPerm,Read,Läs DocType: Role Permission for Page and Report,Role Permission for Page and Report,Roll Tillstånd för sida och rapport apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Justera Värde apps/frappe/frappe/www/update-password.html +14,Old Password,Gammalt Lösenord -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Inlägg av {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Inlägg av {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Till formatera kolumner, ge kolumnetiketter i frågan." DocType: Has Domain,Has Domain,Har domän apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Har du inget konto? Bli Medlem -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan inte ställa tilldelad ändring om inte skickad +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Kan inte ställa tilldelad ändring om inte skickad DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Redigera roll Behörigheter DocType: Communication,Link DocType,länk DocType @@ -2371,7 +2375,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Se till att din profil har en e-postadress apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Du har osparade ändringar i detta formulär. Spara innan du fortsätter. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Standard för {0} måste vara ett alternativ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Standard för {0} måste vara ett alternativ DocType: Tag Doc Category,Tag Doc Category,Tagg Doc Kategori DocType: User,User Image,Användarbild apps/frappe/frappe/email/queue.py +289,Emails are muted,E-post är avstängt @@ -2404,7 +2408,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Nästa åt DocType: Workflow State,ok,OK DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Dessa värden kommer att uppdateras automatiskt i transaktioner och också kommer att vara till nytta för att begränsa behörigheter för användare på transaktioner som innehåller dessa värden. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Utgivare -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Misslyckades: {0} till {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Misslyckades: {0} till {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Välj Obligatorisk apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Bläddra apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,skickade e-postmeddelanden @@ -2416,7 +2420,7 @@ DocType: Async Task,Running,Running apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Återställ Lösenord apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Uppgradera för att lägga till mer än {0} prenumeranter DocType: Workflow State,hand-left,hand vänster -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} för {1} kan inte vara unikt +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} för {1} kan inte vara unikt DocType: Email Account,Use SSL,Använd SSL DocType: Workflow State,play-circle,play-cirkel apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Välj Utskriftsformat att redigera @@ -2471,7 +2475,7 @@ DocType: DocField,No Copy,Ingen Kopiering DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Logga in med LDAP DocType: Web Form,Breadcrumbs,Breadcrumbs -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Om ägaren +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Om ägaren DocType: OAuth Authorization Code,Expiration time,förfallotid DocType: Web Page,Website Sidebar,webbplats Sidebar DocType: Web Form,Show Sidebar,Visa Sidebar @@ -2491,7 +2495,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Kunde inte hitta apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Och efternamn i sig är lätt att gissa. apps/frappe/frappe/config/website.py +93,Knowledge Base,Kunskapsbas DocType: Workflow State,briefcase,portfölj -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Värde kan inte ändras för {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Värde kan inte ändras för {0} DocType: Feedback Request,Is Manual,är Manual DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Stil representerar färgknappen: Framgång - Grön, Fara - röd, Inverse - Svart, Primär - Mörkblå, Info - Ljusblå, Varning - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Ingen rapport laddad. Använd förfrågnings-rapport / [Rapportnamn] för att köra en rapport. @@ -2570,7 +2574,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,Framsteg apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,på Roll apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,saknade Fields apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Ogiltigt fältnamn "{0}" i autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Sök i en dokumenttyp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Sök i en dokumenttyp apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Låt fältet att förbli redigerbart även efter inlämnandet DocType: Custom DocPerm,Role and Level,Roll och nivå DocType: File,Thumbnail URL,Miniatyr webbadress @@ -2587,19 +2591,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Mer information DocType: Desktop Icon,Desktop Icon,Skrivbordsikon -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Betalningen lyckades accepte +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Betalningen lyckades accepte apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Förlåt! Det är inte tillåtet att visa den här sidan. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Tips: Dubbelklicka cell för att redigera DocType: Workflow State,bell,klocka apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fel i e-postvarning apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Fel i e-postvarning apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Dela med dig av dokument med +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Setup> User Permissions Manager apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} inte kan vara en huvud nod då den har undersidor DocType: Communication,Info,Info -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Lägg till bilaga +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Lägg till bilaga DocType: Communication,Email,E-post apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Tack för ditt meddelande -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Skicka Läs Kvitto +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Skicka Läs Kvitto DocType: Stripe Settings,Stripe Settings,Stripe Inställningar DocType: Stripe Settings,Stripe Settings,Stripe Inställningar DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup via Site Config @@ -2666,6 +2671,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Varning: detta Utskriftsformat är i gammal stil och kan inte skapas via API. DocType: DocField,Print Width,Utskriftsbredd ,Setup Wizard,Installationsguiden +DocType: Address,GST State Number,GST-tillståndsnummer DocType: User,Allow user to login only before this hour (0-24),Tillåt användare att logga in endast innan denna timme (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder är obligatoriskt apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2694,7 +2700,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Liten text apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Administratör nås {0} på {1} via IP-adress {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Lika -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alternativ "Dynamic Link" typ av område måste peka på en annan länk Fält med alternativ som "DocType" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alternativ "Dynamic Link" typ av område måste peka på en annan länk Fält med alternativ som "DocType" DocType: About Us Settings,Team Members Heading,Teammedlemmar Rubrik apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Ogiltigt CSV-format apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Visst antal säkerhetskopior @@ -2705,7 +2711,7 @@ DocType: Contact,Contact,Kontakt DocType: User,Third Party Authentication,Tredjeparts autentisering DocType: Website Settings,Banner is above the Top Menu Bar.,Banner är ovanför den övre menyraden. DocType: Razorpay Settings,API Secret,API Secret -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Export Rapport: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Export Rapport: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} existerar inte DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2728,7 +2734,7 @@ DocType: Kanban Board Column,Column Name,Spaltnamn DocType: Language,Based On,Baserat På apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Göra default apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Kolla Frappe Server URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} för kan inte indexeras {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} för kan inte indexeras {1} DocType: Communication,Email Account,Email Konto DocType: Workflow State,Download,Hämta DocType: Blog Post,Blog Intro,Blogg Intro @@ -2739,7 +2745,7 @@ DocType: Web Page,Insert Code,Infoga kod DocType: ToDo,Low,Låg apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Du kan lägga till dynamiska egenskaper från dokumentet med Jinja mall. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Ogiltig gräns {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Lista en dokumenttyp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Lista en dokumenttyp DocType: Event,Ref Type,Referens Beskrivning apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Om du laddar upp nya poster, lämna kolumnen "namn" (ID) tomt." DocType: Address,Chattisgarh,Chattisgarh @@ -2761,26 +2767,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,N DocType: Print Settings,Send Print as PDF,Skicka Skriv ut som PDF DocType: Web Form,Amount,Mängd DocType: Workflow Transition,Allowed,Tillåten -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Det kan bara finnas en Vik i en form +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Det kan bara finnas en Vik i en form apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Det gick inte att skriva filformat för {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Återställa till standardinställningarna? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Ogiltig Hemsida apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Ogiltig inloggning. Försök igen. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Alternativ som krävs för länken eller tabelltypfältet {0} i rad {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Alternativ som krävs för länken eller tabelltypfältet {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Alternativ som krävs för länken eller tabelltypfältet {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Alternativ som krävs för länken eller tabelltypfältet {0} i rad {1} DocType: Auto Email Report,Send only if there is any data,Skicka bara om det finns någon information apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Återställ filter -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Tillstånd på nivå 0 måste ställas in innan högre nivåer ställs in +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Tillstånd på nivå 0 måste ställas in innan högre nivåer ställs in apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Uppdrag avslutad av {0} DocType: Integration Request,Remote,Avlägsen -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Beräkna +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Beräkna apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Välj DocType först apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Bekräfta din e-post apps/frappe/frappe/www/login.html +42,Or login with,Eller logga in med DocType: Error Snapshot,Locals,Lokalbefolkningen apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Kommuniceras via {0} på {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} har nämnt dig i en kommentar i {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,t.ex. (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,t.ex. (55 + 434) / 4 eller = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} krävs DocType: Integration Request,Integration Type,integration Type DocType: Newsletter,Send Attachements,Skicka Attachements @@ -2790,15 +2796,15 @@ DocType: DocField,Perm Level,Perm Nivå apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Händelser I Dagens kalender DocType: Web Page,Web Page,Webbsida DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Global Search" tillåts inte för typ {0} i rad {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"Global Search" tillåts inte för typ {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Global Search" tillåts inte för typ {0} i rad {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"Global Search" tillåts inte för typ {0} i rad {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Visa lista -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Datum måste vara i formatet: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Datum måste vara i formatet: {0} DocType: Workflow,Don't Override Status,Inte Åsido Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Vänligen ge ett betyg. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Feedback Request apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Sökterm -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Den första användaren: Du +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Den första användaren: Du apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Välj kolumner DocType: Translation,Source Text,källtext apps/frappe/frappe/www/login.py +55,Missing parameters for login,Saknade parametrar för inloggning @@ -2820,7 +2826,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Importera DocType: ToDo,Assigned By,Tilldelats av apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Du kan använda Anpassa formulär för att ställa in nivåer på fälten. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Välj din region +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Välj din region DocType: Custom DocPerm,Level,Nivå DocType: Custom DocPerm,Report,Rapport apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Belopp måste vara större än 0. @@ -2840,7 +2846,7 @@ DocType: Website Theme,Background,Bakgrund DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON lista över DOCTYPE som används för att tillämpa användarbehörigheter. Om den är tom, kommer alla länkade DOCTYPE användas för att applicera användarbehörigheter." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Lägg till ett betyg -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Kan inte ställa in ändring utan att avbryta +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Kan inte ställa in ändring utan att avbryta apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Hela sidan DocType: DocType,Is Child Table,Är Undertabell apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} måste vara ett av {1} @@ -2855,7 +2861,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Detta går över spele apps/frappe/frappe/config/setup.py +260,Install Applications.,Installera program. DocType: Contact,Last Name,Efternamn DocType: Event,Private,Privat -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Inga varningar för idag +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Inga varningar för idag DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Skicka Email Print Tillbehör som PDF (rekommenderas) DocType: Web Page,Left,Vänster DocType: Event,All Day,Hela Dagen @@ -2869,7 +2875,7 @@ DocType: Event,Send an email reminder in the morning,Skicka ett mail påminnelse DocType: Blog Post,Published On,Publicerad den DocType: Contact,Gender,Kön apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Obligatorisk information saknas: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Fältet "{0}" kan inte ställas in så unikt som det har icke-unika värden +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Fältet "{0}" kan inte ställas in så unikt som det har icke-unika värden apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Endast 200 skär tillåts i en förfrågan DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referens Typ @@ -2882,7 +2888,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,varningstecken DocType: Workflow State,User,Användare DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Visa titel i webbläsarfönstret som "Prefix - titeln" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,text i dokument typ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,text i dokument typ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Kör test apps/frappe/frappe/handler.py +91,Logged Out,Utloggad apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Mer... @@ -2908,13 +2914,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,För närvarande Kollar DocType: DocField,Default,Standard apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} inlagd -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Sök efter '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Sök efter '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Spara rapporten först apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} abonnenter tillagda apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Inte I DocType: Workflow State,star,stjärna -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,värden separerade med kommatecken -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Max bredd för typ Valuta är 100px i rad {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,värden separerade med kommatecken +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Max bredd för typ Valuta är 100px i rad {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Vänligen dela dina synpunkter för {0} apps/frappe/frappe/config/website.py +13,Content web page.,Innehåll webbsida. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Lägg till en ny roll @@ -2933,7 +2939,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Inte ett giltigt LDAP-användar apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} inte en giltig stat apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Välj en annan betalningsmetod. PayPal stöder inte transaktioner i valuta '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Sökfält {0} är inte giltigt +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Sökfält {0} är inte giltigt DocType: Workflow State,ok-circle,OK-cirkel apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Du kan hitta saker genom att be "hitta orange i kundernas apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Förlåt! Användaren ska ha fullständig tillgång till sin egen post. @@ -2993,7 +2999,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Filter Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Text som ska visas för Länk till webbsida om denna form har en webbsida. Länken kommer att genereras automatiskt baserat på `page_name` och` parent_website_route` DocType: Feedback Request,Feedback Trigger,Feedback Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Ställ in {0} först +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Ställ in {0} först DocType: Unhandled Email,Message-id,Meddelande-id DocType: Patch Log,Patch,Patch DocType: Async Task,Failed,Misslyckades diff --git a/frappe/translations/ta.csv b/frappe/translations/ta.csv index 1427af2586..9aa0dae22c 100644 --- a/frappe/translations/ta.csv +++ b/frappe/translations/ta.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,முகபுத்தகம் பயனர DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,குறிப்பு: பல அமர்வுகள் மொபைல் சாதனத்தில் வழக்கில் அனுமதிக்கப்பட மாட்டாது apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},பயனர் இயக்கப்பட்டது மின்னஞ்சல் இன்பாக்ஸ் {பயனர்கள்} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,இந்த மின்னஞ்சல் அனுப்ப முடியாது. நீங்கள் இந்த மாதம் {0} மின்னஞ்சல்கள் அனுப்பும் எல்லை கடந்து. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,நிரந்தரமாக {0} சமர்ப்பிக்கவும் ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,நிரந்தரமாக {0} சமர்ப்பிக்கவும் ? DocType: Address,County,உள்ளூரில் DocType: Workflow,If Checked workflow status will not override status in list view,உட்புகுதல் முறையை நிலையை பட்டியலில் பார்வையில் நிலையை புறக்கணிக்க மாட்டேன் என்றால் apps/frappe/frappe/client.py +280,Invalid file path: {0},தவறான கோப்பு பாதை: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ஒர apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} மரம் DocType: User,User Emails,பயனர் மின்னஞ்சல்கள் DocType: User,Username,பயனர் பெயர் -apps/frappe/frappe/model/base_document.py +581,Value too big,மிக பெரிய மதிப்பு +apps/frappe/frappe/model/base_document.py +580,Value too big,மிக பெரிய மதிப்பு DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,ரன் ஸ்கிரிப்ட் டெஸ்ட் DocType: Contact,Department,துறை @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,பதிவுகள் DocType: Custom DocPerm,This role update User Permissions for a user,ஒரு பயனர் இந்த பங்கு மேம்படுத்தல் பயனர் அனுமதிகள் apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},மறுபெயரிடு {0} DocType: Workflow State,zoom-out,ஜூம்-அவுட் -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,அதன் உதாரணமாக திறந்த போது {0} திறக்க முடியாது +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,அதன் உதாரணமாக திறந்த போது {0} திறக்க முடியாது apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,அட்டவணை {0} காலியாக இருக்க முடியாது apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,பேரேடுகளும் apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,படங்கள் DocType: Communication,Reference Owner,குறிப்பு உரிமையாளர் DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,மிகச்சிறிய சுற்றும் பகுதியை அலகு (நாணயம்). அது 0.01 உள்ளிட்ட வேண்டும் மற்றும் அமெரிக்க டாலர் எ.கா. 1 சதவீதம் DocType: Social Login Keys,GitHub,மகிழ்ச்சியா -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, வரிசை {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, வரிசை {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,ஒரு முழுப்பெயரைக் கொடுக்க கொள்ளவும். apps/frappe/frappe/model/document.py +904,Beginning with,தொடங்கி apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,தரவு இறக்குமதி அச்சு @@ -56,7 +56,7 @@ DocType: System Settings,"If enabled, the password strength will be enforced bas DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","இயக்கப்பட்டால், கடவுச்சொல்லை வலிமை குறைந்தபட்ச கடவுச்சொல் ஸ்கோர் மதிப்பு அடிப்படையில் வைக்கமுடியும். 2 ஒரு மதிப்பு நடுத்தர வலுவான இருப்பது மற்றும் 4 மிக வலுவான இருப்பது." DocType: About Us Settings,"""Team Members"" or ""Management""",""" குழு உறுப்பினர்கள்"" அல்லது ""நிர்வாகம்""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',துறையில் 'பாருங்கள்' வகை இயல்புநிலை அல்லது '0' அல்லது '1' இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',துறையில் 'பாருங்கள்' வகை இயல்புநிலை அல்லது '0' அல்லது '1' இருக்க வேண்டும் apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,நேற்று DocType: Contact,Designation,பதவி DocType: Test Runner,Test Runner,டெஸ்ட் ரன்னர் @@ -72,7 +72,7 @@ DocType: DocType,Is Published Field,களம் வெளியிடப்ப DocType: Email Group,Email Group,மின்னஞ்சல் குழு DocType: Note,Seen By,பார்க்கப்பட்டது apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,பல சேர் -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,பிடிக்காது +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,பிடிக்காது apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,துறையில் காட்சி லேபிள் அமைக்க apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},தவறான மதிப்பு: {0} இருக்க வேண்டும் {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","மாற்றம் துறையில் பண்புகள் ( மறைக்க , படிக்கமட்டும், அனுமதி முதலியன)" @@ -82,7 +82,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,அமை apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,நிர்வாகி உள்நுழைவு DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","தொடர்பு விருப்பங்கள், ஒரு புதிய பாதையில் ஹிப்ரு ஒவ்வொரு "விற்பனை கேள்வி, வினா ஆதரவு" அல்லது பிரிக்கப்பட்ட." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. பதிவிறக்கம் -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,நுழைக்கவும் +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,நுழைக்கவும் apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},வாய்ப்புகள் {0} DocType: Print Settings,Classic,தரமான DocType: Desktop Icon,Color,நிறம் @@ -123,7 +123,7 @@ DocType: Translation,Translation,மொழிபெயர்ப்பு apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,நிறுவு apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,திரு DocType: Custom Script,Client,வாடிக்கையாளர் -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,நீங்கள் அதை ஏற்ற பிறகு இந்த வடிவம் மாற்றப்பட்டுள்ளது +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,நீங்கள் அதை ஏற்ற பிறகு இந்த வடிவம் மாற்றப்பட்டுள்ளது DocType: User Permission for Page and Report,User Permission for Page and Report,பேஜ் மற்றும் அறிக்கைக்காக பயனர் அனுமதி DocType: Address,Himachal Pradesh,இமாசலப் பிரதேசம் DocType: System Settings,"If not set, the currency precision will depend on number format","அமைக்கவில்லை எனில், நாணய துல்லியம் எண் வடிவத்தை பொறுத்து அமையும்" @@ -155,14 +155,14 @@ DocType: Unhandled Email,Reason,காரணம் apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,பயனர் குறிப்பிடவும் DocType: Email Unsubscribe,Email Unsubscribe,மின்னஞ்சல் சந்தா நீக்கம் DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,சிறந்த முடிவுகளை ஒரு வெளிப்படையான பின்னணி கொண்ட சுமார் அகலம் 150px ஒரு படத்தை தேர்ந்தெடுக்கவும். -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,கணினி மேலாளர் மாறும் முதல் பயனர் (இந்த பிறகு மாற்றலாம்). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,கணினி மேலாளர் மாறும் முதல் பயனர் (இந்த பிறகு மாற்றலாம்). ,App Installer,பயன்பாட்டை நிறுவி DocType: Workflow State,circle-arrow-up,வட்டத்தை-அம்பு அப் apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,பதிவேற்ற ... DocType: Email Domain,Email Domain,மின்னஞ்சல் களம் DocType: Workflow State,italic,(அச்செழுத்துக்கள் வலப்பக்கம்) சாய்ந்துள்ள apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,அனைவருக்கும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} : உருவாக்கு இல்லாமல் இறக்குமதி அமைக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} : உருவாக்கு இல்லாமல் இறக்குமதி அமைக்க முடியாது apps/frappe/frappe/config/desk.py +26,Event and other calendars.,நிகழ்வு மற்றும் பிற நாள்காட்டி. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,அனைத்து துறைகள் கருத்து சமர்ப்பிக்க அவசியமாக இருக்கிறது. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,வகை நெடுவரிசைகள் இழுக்கவும் @@ -174,8 +174,8 @@ DocType: Portal Settings,Standard Sidebar Menu,ஸ்டாண்டர்ட் apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,முகப்பு மற்றும் இணைப்புகள் கோப்புகளை நீக்க முடியாது apps/frappe/frappe/config/desk.py +19,Files,கோப்புகள் apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,அனுமதிகள் அவர்கள் ஒதுக்கப்படும் என்ன பங்களிப்பு அடிப்படையில் பயனர்கள் பயன்படுத்தப்படும். -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,இந்த ஆவணம் தொடர்பான மின்னஞ்சல்களை அனுப்ப அனுமதி இல்லை -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0} வரிசைப்படுத்த / குழுவில் இருந்து குறைந்தது 1 நிரலை தேர்ந்தெடுக்கவும் +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,இந்த ஆவணம் தொடர்பான மின்னஞ்சல்களை அனுப்ப அனுமதி இல்லை +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0} வரிசைப்படுத்த / குழுவில் இருந்து குறைந்தது 1 நிரலை தேர்ந்தெடுக்கவும் DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,நீங்கள் சாண்ட்பாக்ஸ் API ஐ பயன்படுத்தி உங்கள் பணம் பரிசோதித்து வருகின்றனர் இந்த பாருங்கள் apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,நீங்கள் ஒரு நிலையான இணைய தீம் நீக்க நீங்கள் அனுமதிக்கப்படவில்லை DocType: Feedback Trigger,Example,உதாரணம் @@ -206,7 +206,7 @@ DocType: Email Group,Total Subscribers,மொத்த சந்தாதா apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ஒரு பாத்திரத்தில் நிலை 0 அணுகல் இல்லை என்றால் , பின்னர் உயர் மட்டங்களில் பொருளற்றது ." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,சேமி ' DocType: Communication,Seen,ஸீன் -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,மேலும் விவரங்களுக்கு காட்டு +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,மேலும் விவரங்களுக்கு காட்டு DocType: System Settings,Run scheduled jobs only if checked,சோதனை மட்டுமே திட்டமிட்ட வேலைகள் இயக்கவும் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,பிரிவில் தலைப்புகள் செயல்படுத்தப்படும் தான் காட்டப்படும் apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,காப்பகம் @@ -223,7 +223,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,தலைப்பு மறைக்க DocType: Address,Current,தற்போதைய DocType: Address,Current,தற்போதைய -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,தொடர்புடைய ஆவணங்கள் apps/frappe/frappe/config/core.py +17,Groups of DocTypes,ஆவண வகை குழுக்கள் DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,நீக்க-வட்டம் @@ -239,10 +238,9 @@ DocType: Workflow State,Filter,வடிகட்டி apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},புலம் பெயர் {0} போன்ற சிறப்பு எழுத்துக்குறிகள் முடியாது {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ஒரே நேரத்தில் பல மதிப்புகள் புதுப்பிக்கவும். apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,பிழை: நீங்கள் அதை திறந்து பின் ஆவண மாற்றம் -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி டெம்ப்ளேட் கண்டறியப்பட்டது. அமைப்பு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி டெம்ப்ளேட் இருந்து ஒரு புதிய ஒன்றை உருவாக்க கொள்ளவும். apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} வெளியேற்றப்படுவீர்கள்: {1} DocType: Address,West Bengal,மேற்கு வங்காளம் -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} : ஒதுக்கு சமர்ப்பிக்கவும் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} : ஒதுக்கு சமர்ப்பிக்கவும் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் DocType: Social Login Keys,Facebook,முகபுத்தகம் apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""","""{0}"" மூலம் வடிகட்டி" DocType: Salutation,Administrator,நிர்வாகி @@ -252,7 +250,7 @@ DocType: Blog Settings,Blog Title,தலைப்பு apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,ஸ்டாண்டர்ட் வேடங்களில் முடக்க முடியாது DocType: Address,Mizoram,மிசோரம் DocType: Newsletter,Newsletter,செய்தி மடல் -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,மூலம் பொருட்டு துணை கேள்வி பயன்படுத்த முடியாது +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,மூலம் பொருட்டு துணை கேள்வி பயன்படுத்த முடியாது DocType: Web Form,Button Help,பட்டன் உதவி DocType: Kanban Board Column,purple,ஊதா DocType: About Us Settings,Team Members,குழு உறுப்பினர் @@ -266,7 +264,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","உங்கள் சந்தா {0} கிடந்தனர். புதுப்பிக்க, {1}." DocType: Workflow State,plus-sign,பிளஸ்-கையெழுத்திட apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ஏற்கனவே அமைவு -apps/frappe/frappe/__init__.py +890,App {0} is not installed,"{0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,"{0} பயன்பாட்டை நிறுவப்படவில்லை" DocType: Workflow State,Refresh,இளைப்பா (ற்) று DocType: Event,Public,பொது @@ -275,7 +273,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,பிடித apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,மின்னஞ்சல் ஆதரவு DocType: DocField,Print Hide If No Value,அச்சு மறை என்றால் இல்லை மதிப்பு DocType: Event,yellow,மஞ்சள் -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,களம் வேண்டும் வெளியிடப்பட்ட சரியான FIELDNAME இருக்க +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,களம் வேண்டும் வெளியிடப்பட்ட சரியான FIELDNAME இருக்க apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,இணைப்பு பதிவேற்று DocType: Block Module,Block Module,பிளாக் தொகுதி apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ஏற்றுமதி டெம்ப்ளேட் @@ -296,7 +294,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},ஒரு புதிய கணக்கு உங்களுக்கு தொடங்கப்பட்டது {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,வழிமுறைகள் அனுப்பியுள்ளார் apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,வழிமுறைகள் அனுப்பியுள்ளார் -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),உள்ளிடவும் மின்னஞ்சல் பெற்றவர் (கள்) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),உள்ளிடவும் மின்னஞ்சல் பெற்றவர் (கள்) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,மின்னஞ்சல் கொடி கியூ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,திறந்த அடையாளம் முடியாது {0}. வேறு ஏதாவது முயற்சி. @@ -311,8 +309,8 @@ DocType: Communication,Message ID,செய்தி ஐடி DocType: Property Setter,Field Name,புலம் பெயர் apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,கூகிள் GSuite உள்ளமைக்கப்படவில்லை. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,அல்லது -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,தொகுதி பெயர் ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,தொடரவும் +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,தொகுதி பெயர் ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,தொடரவும் DocType: Custom Field,Fieldname,புலம் பெயர் DocType: Workflow State,certificate,சான்றிதழ் DocType: User,Tile,ஓடு @@ -321,6 +319,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,அனைத்து பதிப்புகள் காட்டு DocType: Workflow State,Print,அச்சு DocType: User,Restrict IP,ஐபி கட்டுப்படுத்த +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,டாஷ்போர்டு apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,இந்த நேரத்தில் மின்னஞ்சல்களை அனுப்ப முடியவில்லை apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ஒரு கட்டளை தேடல் தட்டச்சு DocType: Communication,Timeline Name,காலக்கெடு பெயர் @@ -331,8 +330,8 @@ DocType: Contact,Sales Master Manager,விற்பனை மாஸ்டர apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ஒரு கடைசி படி apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,இந்த துறையில் இணைக்கப்பட்ட வேண்டும் ஆவண வகை (DOCTYPE) என்ற பெயர். எ.கா. வாடிக்கையாளர் DocType: User,Roles Assigned,ஒதுக்கப்பட்ட பாத்திரங்கள் -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,தேடல் உதவி -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,தேடல் உதவி +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,தேடல் உதவி +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,தேடல் உதவி DocType: Top Bar Item,Parent Label,பெற்றோர் லேபிள் apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","உங்கள் கேள்வி பெற்றுள்ளது. நாங்கள் விரைவில் பதில். நீங்கள் ஏதேனும் கூடுதல் தகவல் இல்லை என்றால், இந்த மின்னஞ்சல் பதிலனுப்பவும்." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,அனுமதிகள் தானாக நிலையான அறிக்கைகள் தேடல்களையும் மொழிபெயர்க்கப்பட்டுள்ளது . @@ -349,6 +348,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,தலைப்பு திருத்து DocType: File,File URL,கோப்பு URL DocType: Version,Table HTML,"டேபிள், HTML" +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

முடிவுகள் ஏதுமில்லை 'காணப்படவில்லை

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,சந்தாதாரர்கள் சேர்க்கவும் apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,இன்று வரவிருக்கும் நிகழ்வுகள் DocType: Email Alert Recipient,Email By Document Field,ஆவண துறையில் மின்னஞ்சல் @@ -368,17 +368,16 @@ DocType: Web Form,Amount Based On Field,தொகை துறையில் apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,பயனர் பகிர் அத்தியாவசியமானதாகும் DocType: DocField,Hidden,மறைத்து DocType: Web Form,Allow Incomplete Forms,விண்ணப்பங்கள் பாரங்கள் அனுமதி -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} முதல் அமைக்கப்பட வேண்டும் +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} முதல் அமைக்கப்பட வேண்டும் apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","பொதுவான சொற்றொடர்கள் தவிர்க்க, ஒரு சில வார்த்தைகள் பயன்படுத்தவும்." DocType: Workflow State,plane,விமானம் -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,அச்சச்சோ. உங்கள் செலுத்துவது தோல்வியுற்றது. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","நீங்கள் புதிய பதிவுகள் பதிவேற்றுவீர்கள் என்றால் தற்போதைய என்றால் ""தொடர் பெயரிடும்"", கட்டாய ஆகிறது." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,இன்று எச்சரிக்கைகள் பெற +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,இன்று எச்சரிக்கைகள் பெற apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE மட்டுமே நிர்வாகி பெயரிட்டது apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},மாற்றப்பட்டது மதிப்பு {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,சரிபார்ப்புக்காக உங்கள் மின்னஞ்சலைப் பார்க்கவும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,அயல் வடிவம் முடிவில் இருக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,அயல் வடிவம் முடிவில் இருக்க முடியாது DocType: Communication,Bounced,பவுன்ஸ்டு DocType: Deleted Document,Deleted Name,நீக்கப்பட்ட பெயர் apps/frappe/frappe/config/setup.py +14,System and Website Users,கணினி மற்றும் இணைய பயனர்கள் @@ -397,14 +396,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,ஆவண Queued DocType: GSuite Templates,Destination ID,இலக்கு ஐடி DocType: Desktop Icon,List,பட்டியலில் DocType: Communication,Link Name,இணைப்பு பெயர் -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,புலம் {0} வரிசையில் {1} இயல்புநிலை இல்லாமல் மறைத்து மற்றும் கட்டாய முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,புலம் {0} வரிசையில் {1} இயல்புநிலை இல்லாமல் மறைத்து மற்றும் கட்டாய முடியாது DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,தவறான கடவுச்சொல்: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,தவறான கடவுச்சொல்: DocType: Print Settings,Send document web view link in email,மின்னஞ்சல் ஆவணம் வலை காட்சி இணைப்பை அனுப்ப apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ஆவணம் உங்கள் கருத்து {0} வெற்றிகரமாக சேமிக்கப்படும் apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,முந்தைய -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} க்கான வரிசைகள் {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",துணை நாணய. உதாரணமாக "செண்ட்" க்கான apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,பதிவேற்றிய கோப்பு தேர்வு @@ -415,10 +414,11 @@ DocType: Desktop Icon,Link,இணைப்பு apps/frappe/frappe/utils/file_manager.py +96,No file attached,இணைக்கப்பட்ட கோப்பு இல்லை DocType: Version,Version,பதிப்பு DocType: User,Fill Screen,திரை நிரப்பவும் -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","காரணமாக விடுபட்ட தரவு, இந்த மரத்தின் அறிக்கை காட்ட முடியவில்லை. பெரும்பாலும், அதை காரணமாக சட்டப்பிரிவு வடிகட்டப்பட்ட." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,அமைப்பு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து அமைவு இயல்புநிலை மின்னஞ்சல் கணக்கை +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","காரணமாக விடுபட்ட தரவு, இந்த மரத்தின் அறிக்கை காட்ட முடியவில்லை. பெரும்பாலும், அதை காரணமாக சட்டப்பிரிவு வடிகட்டப்பட்ட." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. தேர்வு செய்த கோப்பு apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,பதிவேற்றத்தின் மூலம் திருத்த -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","ஆவண வகை ..., எ.கா. வாடிக்கையாளர்" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","ஆவண வகை ..., எ.கா. வாடிக்கையாளர்" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,நிபந்தனைகள் '{0}' செல்லாதது DocType: Workflow State,barcode,பார்கோடு apps/frappe/frappe/config/setup.py +232,Add your own translations,உங்கள் சொந்த மொழிபெயர்ப்பு சேர் @@ -428,7 +428,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,புதன்கிழமை apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","தவிர பங்கு சார்ந்த அனுமதி விதிகள் இருந்து , நீங்கள் ஆவண வகை அடிப்படையில் பயனர் அனுமதிகள் விண்ணப்பிக்க முடியும் ." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",இந்த அனுமதிகள் அனுமதி சாதனை இணைக்கப்பட்ட அமைந்துள்ள அனைத்து நடவடிக்கைகளையும் விண்ணப்பிக்க வேண்டும். -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,"பட புலத்தில் செல்லுபடியாகும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,"பட புலத்தில் செல்லுபடியாகும் துறையில் பெயர் இருக்க வேண்டும்" DocType: OAuth Client,Token,டோக்கன் DocType: Property Setter,ID (name) of the entity whose property is to be set,அதன் சொத்து அமைக்க வேண்டும் நிறுவனம் ஐடி (பெயர்) @@ -438,7 +438,7 @@ DocType: Web Form,Sidebar Items,பக்கப்பட்டி பொரு apps/frappe/frappe/installer.py +125,App {0} already installed,பயன்பாடு {0} ஏற்கனவே நிறுவப்பட்ட DocType: Workflow State,exclamation-sign,ஆச்சரியக்குறி-அறிகுறி apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,அனுமதிகள் காட்டு -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,காலக்கெடு துறையில் ஒரு இணைப்பு அல்லது டைனமிக் லிங்க் இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,காலக்கெடு துறையில் ஒரு இணைப்பு அல்லது டைனமிக் லிங்க் இருக்க வேண்டும் apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,தேதி வரம்பு apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,காண்ட் apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},பக்கம் {0} {1} @@ -446,7 +446,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,இண apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","குறியாக்க விசை தவறானது, site_config.json சரிபார்க்கவும்" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,செய்ய DocType: Kanban Board Column,darkgrey,அடர் சாம்பல் -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},வெற்றிகரமான: {0} {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},வெற்றிகரமான: {0} {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,டெமோ பயனர் விவரங்களை மாற்ற முடியாது. https://erpnext.com ஒரு புதிய கணக்கிற்கு பதிவு செய்க apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"மாற்றங்களை செய்ய, இந்த போலி தயவு செய்து" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,எம் தலைமுறை ஏனெனில் உடைந்த படத்தை இணைப்புகள் தோல்வியடைந்தது @@ -464,24 +464,24 @@ DocType: DocField,Collapsible,மடக்கு apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,சேமித்த apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,உனக்கு என்ன உதவி வேண்டும்? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,தேர்ந்தெடுக்கப்பட்ட விருப்பங்கள். புதிய வரி ஒவ்வொரு விருப்பத்தை. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,நிரந்தரமாக {0} ரத்து ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,நிரந்தரமாக {0} ரத்து ? DocType: Workflow State,music,இசை DocType: Web Page,Settings,அமைப்புகள் apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE குறிப்பிடவும் DocType: Print Format,Style Settings,உடை அமைப்புகள் -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,வரிசைப்படுத்த துறையில் {0} சரியான FIELDNAME இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,வரிசைப்படுத்த துறையில் {0} சரியான FIELDNAME இருக்க வேண்டும் apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,அதிக DocType: Contact,Sales Manager,விற்பனை மேலாளர் apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,மறுபெயரிடு DocType: Print Format,Format Data,தரவு வடிவமைப்பு -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,போன்ற +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,போன்ற DocType: Customize Form Field,Customize Form Field,படிவம் புலம் தனிப்பயனாக்கு apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,பயனர் அனுமதி DocType: OAuth Client,Grant Type,கிராண்ட் வகை apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ஆவணங்கள் ஒரு பயனர் படிக்க இவை பாருங்கள் apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,பயன்பாடு பட்டியல் அனுமதி இல்லை -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,வைல்டு கார்டு போன்ற% பயன்படுத்த -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",", இந்த கணக்குக்கான மின்னஞ்சல் களம் உள்ளமைக்கப்படவில்லை ஒன்றை உருவாக்கவா?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,வைல்டு கார்டு போன்ற% பயன்படுத்த +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",", இந்த கணக்குக்கான மின்னஞ்சல் களம் உள்ளமைக்கப்படவில்லை ஒன்றை உருவாக்கவா?" DocType: User,Reset Password Key,கடவுச்சொல் முக்கிய மீட்டமை DocType: Email Account,Enable Auto Reply,வாகன பதில் இயக்கு apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,பார்த்ததில்லை @@ -524,7 +524,7 @@ DocType: DocField,Set Only Once,ஒரு முறை மட்டுமே அ DocType: Email Queue Recipient,Email Queue Recipient,மின்னஞ்சல் வரிசை பெறுநரின் DocType: Address,Nagaland,நாகாலாந்து apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,பயனர் பெயர் {0} ஏற்கனவே உள்ளது -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} {1} importable அல்ல இறக்குமதி அமைக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} {1} importable அல்ல இறக்குமதி அமைக்க முடியாது apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},உங்கள் முகவரி டெம்ப்ளேட் பிழை உள்ளது {0} DocType: Footer Item,"target = ""_blank""",இலக்கு = "_blank" DocType: Workflow State,hdd,hdd @@ -536,7 +536,7 @@ DocType: Communication,From Full Name,முழு பெயர் apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},நீங்கள் தெரிவியுங்கள் அணுகல் இல்லை: {0} DocType: User,Send Welcome Email,மின்னஞ்சல் வரவேற்கிறோம் அனுப்பவும் apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,பதிவிறக்க ஒரே வடிவத்தில் அனைத்து பயனர் அனுமதிகள் கொண்ட CSV கோப்பு பதிவேற்ற. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,வடிகட்டி நீக்க +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,வடிகட்டி நீக்க DocType: Address,Daman and Diu,டாமன் மற்றும் டையூ DocType: Address,Personal,தனிப்பட்ட apps/frappe/frappe/config/setup.py +113,Bulk Rename,மொத்த மறுபெயரிடு @@ -566,11 +566,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","ஸ்டாண்டர்ட் DOCTYPE, இயல்புநிலை அச்சு வடிவமைப்பைக் கொண்டிருக்கவில்லை முடியும் தனிப்பயனாக்கு படிவம் பயன்படுத்த" DocType: Report,Query,வினா DocType: DocType,Sort Order,வரிசையை -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},' பட்டியல் பார்வையில் ' அனுமதி இல்லை வகை {0} வரிசையில் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},' பட்டியல் பார்வையில் ' அனுமதி இல்லை வகை {0} வரிசையில் {1} DocType: Custom Field,Select the label after which you want to insert new field.,நீங்கள் புதிய துறையில் சேர்க்க வேண்டும் பின்னர் லேபிள் தேர்வு. ,Document Share Report,ஆவண பகிர் அறிக்கை DocType: User,Last Login,கடைசியாக உட்சென்ற தேதி -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},புலம் பெயர் வரிசையில் தேவைப்படுகிறது {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},புலம் பெயர் வரிசையில் தேவைப்படுகிறது {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,வரிசை DocType: Custom Field,Adds a custom field to a DocType,ஒரு DOCTYPE ஒரு விருப்ப துறையில் சேர்க்கிறது DocType: File,Is Home Folder,முகப்பு அடைவு @@ -596,7 +596,7 @@ DocType: File,Folder,அடைவு DocType: DocField,Index,குறியீட்டெண் DocType: Email Group,Newsletter Manager,செய்திமடல் மேலாளர் apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,விருப்பம் 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,அனைத்து இடுகைகள் +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,கோரிக்கைகளை போது பிழை உள்நுழைய. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} வெற்றிகரமாக மின்னஞ்சல் குழு சேர்க்கப்பட்டுள்ளது. DocType: Address,Uttar Pradesh,உத்தரப் பிரதேசம் @@ -606,7 +606,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,காட்டி DocType: DocShare,Everyone,அனைவரும் DocType: Workflow State,backward,பின்னோக்கி -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: இதே பாத்திரம், நிலை மற்றும் அனுமதி ஒரே ஆட்சி {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: இதே பாத்திரம், நிலை மற்றும் அனுமதி ஒரே ஆட்சி {1}" DocType: Email Queue,Add Unsubscribe Link,குழுவிலகல் இணைப்பு சேர் apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,இதுவரை இல்லை. ஒரு புதிய விவாதத்தை தொடங்க. DocType: Workflow State,share,பங்கு @@ -625,7 +625,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,அன apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,பார்வை சந்தாதாரர்கள் apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms DocType: Website Theme,Background Color,பின்னணி நிறம் -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,மின்னஞ்சல் அனுப்பும் போது பிழைகள் இருந்தன . மீண்டும் முயற்சிக்கவும். +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,மின்னஞ்சல் அனுப்பும் போது பிழைகள் இருந்தன . மீண்டும் முயற்சிக்கவும். DocType: Portal Settings,Portal Settings,போர்டல் அமைப்புகள் DocType: Web Page,0 is highest,0 உயர்ந்து உள்ளது apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,நீங்கள் {0} இந்த தொடர்பு இணைக்கவும் வேண்டும் என்பதில் உறுதியாக இருக்கிறீர்களா? @@ -653,7 +653,7 @@ DocType: Contact Us Settings,Contact Us Settings,எங்களை அமைப apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,தேடி ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,தேடி ... DocType: Workflow State,text-width,உரை அகலம் -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,இந்த பதிவிற்கான அதிகபட்ச இணைப்பு வரம்பை எட்டிவிட்டது. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,இந்த பதிவிற்கான அதிகபட்ச இணைப்பு வரம்பை எட்டிவிட்டது. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,பின்வரும் கட்டாய துறைகள் பூர்த்தி செய்ய வேண்டும்:
DocType: Email Alert,View Properties (via Customize Form),(தனிப்பயனாக்கலாம் படிவம் மூலம்) காட்டு பண்புகள் DocType: Note Seen By,Note Seen By,பார்க்கப்படுகிறது குறிப்பு @@ -663,17 +663,17 @@ DocType: Address,Rajasthan,ராஜஸ்தான் apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,அறிக்கை பில்டர் அறிக்கைகள் அறிக்கை கட்டடம் மூலம் நேரடியாக நிர்வகிக்கப்படுகிறது. இல்லை. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,உங்கள் மின்னஞ்சல் முகவரி சரிபார்க்கவும் apps/frappe/frappe/model/document.py +903,none of,யாரும் -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,என்னை ஒரு நகல் அனுப்ப +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,என்னை ஒரு நகல் அனுப்ப apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,பயனர் அனுமதிகள் பதிவேற்ற DocType: Dropbox Settings,App Secret Key,ஆப் இரகசிய விசை apps/frappe/frappe/config/website.py +7,Web Site,வலைத்தளம் apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,டிக் பொருட்களை டெஸ்க்டாப் காட்டப்படும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ஒற்றை வகையான அமைக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ஒற்றை வகையான அமைக்க முடியாது apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,கான்பன் வாரியம் {0} இல்லை. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} தற்போது இந்த ஆவணத்தைத் DocType: ToDo,Assigned By Full Name,முழு பெயர் ஒதுக்கப்படுகின்றன apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} மேம்படுத்தப்பட்டது -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,அறிக்கை ஒற்றை வகையான அமைக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,அறிக்கை ஒற்றை வகையான அமைக்க முடியாது apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} நாட்கள் முன்பு DocType: Email Account,Awaiting Password,காத்திருக்கிறது கடவுச்சொல் DocType: Address,Address Line 1,முகவரி வரி 1 @@ -683,7 +683,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","திடுக்கிடும் அமெரிக்கா (எ.கா. வரைவு , அங்கீகரிக்கப்பட்ட , ரத்து செய்யப்பட்டது ) ." DocType: Print Settings,Allow Print for Draft,வரைவு அச்சு அனுமதி apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,அமைக்கவும் அளவு -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணம் சமர்ப்பிக்க +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,உறுதிப்படுத்த இந்த ஆவணம் சமர்ப்பிக்க DocType: Contact,Unsubscribed,குழுவிலகப்பட்டது apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,பக்கம் மற்றும் புகாருக்கு விருப்ப வேடங்களில் அமை apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,மதிப்பீடு: @@ -691,7 +691,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,தரவு இறக்குமதி கருவி DocType: Address,Dadra and Nagar Haveli,தாத்ரா மற்றும் நாகர் ஹவேலி apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,பதிவேற்றும் கோப்புகளை ஒரு சில விநாடிகள் வரை காத்திருங்கள். -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,உங்கள் படம் இணைக்கவும் +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,உங்கள் படம் இணைக்கவும் apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ரோ மாறவில்லை DocType: Workflow State,Stop,நிறுத்த DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,நீங்கள் திறக்க வேண்டும் பக்கம் இணையுங்கள். நீங்கள் அதை ஒரு குழு பெற்றோர் செய்ய வேண்டும் என்றால் காலியாக விடவும். @@ -706,7 +706,7 @@ DocType: Print Format,Align Labels to the Left,இடது பகிர் ச DocType: Help Article,Expert,நிபுணர் DocType: Workflow State,circle-arrow-right,வட்டத்தை-அம்பு வலது DocType: LDAP Settings,LDAP Server Url,LDAP சேவையகம் Url ஐ -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,அதன் {0} திறந்த போது உதாரணமாக திறக்க முடியாது +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,அதன் {0} திறந்த போது உதாரணமாக திறக்க முடியாது apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,நிறுவ வரிசைப்படுத்தப்பட்டுள்ளது DocType: Custom DocPerm,Custom DocPerm,விருப்ப DocPerm DocType: Newsletter,Send Unsubscribe Link,அனுப்பவும் குழுவிலகல் இணைப்பு @@ -723,7 +723,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,பயன்பாடு {0} அகற்றப்பட்டது DocType: Custom DocPerm,Apply User Permissions,பயனர் அனுமதிகள் பொருந்தும் DocType: User,Modules HTML,"தொகுதிகள், HTML" -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,அமைப்பு> பயனர் அனுமதிகள் மேலாளர் apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,விட்டுப்போன மதிப்புகள் தேவையான DocType: DocType,Other Settings,மற்ற அமைப்புகள் DocType: Social Login Keys,Frappe,Frappe @@ -741,7 +740,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth பியரின் ட apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,தேர்ந்தெடுக்கப்படவில்லை ஆவணம் apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,டாக்டர் DocType: Event,Event,சம்பவம் -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} இல், {1} எழுதினார்:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} இல், {1} எழுதினார்:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,தரநிலை புல நீக்க முடியாது. நீங்கள் விரும்பினால் நீங்கள் அதை மறைக்க முடியாது DocType: Top Bar Item,For top bar,மேல் பட்டியில் apps/frappe/frappe/utils/bot.py +148,Could not identify {0},அடையாளம் காண முடியவில்லை {0} @@ -755,7 +754,7 @@ DocType: Role,Desk Access,டெஸ்க் அணுகல் DocType: Workflow State,minus,குறைய apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,சர்வர் பிழை: உங்கள் சேவையகம் பதிவுகள் அல்லது தொடர்பு தொழில்நுட்ப ஆதரவு சரிபார்க்கவும். apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,வரவேற்கிறோம் மின்னஞ்சல் அனுப்பி -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,முதல் பயன்படுத்த அமைப்பு தயார் செய்யட்டும். +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,முதல் பயன்படுத்த அமைப்பு தயார் செய்யட்டும். apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,சிறப்பு apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ஏற்கனவே பதிவு DocType: System Settings,Float Precision,துல்லிய மிதப்பதற்கு @@ -769,7 +768,7 @@ DocType: Web Form,Allow Print,அச்சு அனுமதி apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,இல்லை நிறுவிய பயன்பாடுகள் apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,கட்டாய துறையில் குறிக்கவும் DocType: Communication,Clicked,சொடுக்கும் -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},அனுமதி இல்லை ' {0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},அனுமதி இல்லை ' {0}' {1} DocType: User,Google User ID,கூகிள் பயனர் ஐடி apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,அனுப்ப திட்டமிடப்பட்டுள்ளது DocType: DocType,Track Seen,ட்ராக் ஸீன் @@ -839,7 +838,7 @@ DocType: Address,Kerala,கேரளா DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,ஒரே நேரத்தில் அமர்வுகள் DocType: OAuth Client,Client Credentials,வாடிக்கையாளர் சான்றுகளை -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ஒரு தொகுதி அல்லது கருவி திறக்க +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ஒரு தொகுதி அல்லது கருவி திறக்க DocType: Communication,Delivery Status,விநியோக நிலைமை DocType: Module Def,App Name,பயன்பாடு பெயர் apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,அனுமதி கோப்பின் அதிகபட்ச அளவு {0} எம்பி @@ -851,8 +850,8 @@ DocType: Feedback Request,Reference Communication,குறிப்பு த DocType: Email Queue,Unsubscribe Method,சந்தாவிலகு முறை DocType: GSuite Templates,Related DocType,சம்பந்தப்பட்ட DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,உள்ளடக்கத்தை சேர்க்க திருத்தவும் -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,மொழிகள் தேர்வு -apps/frappe/frappe/__init__.py +510,No permission for {0},அனுமதி இல்லை {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,மொழிகள் தேர்வு +apps/frappe/frappe/__init__.py +509,No permission for {0},அனுமதி இல்லை {0} DocType: DocType,Advanced,மேம்பட்ட apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API விசை தெரிகிறது அல்லது API சீக்ரெட் தவறு !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},குறிப்பு: {0} {1} @@ -874,7 +873,7 @@ DocType: Customize Form,Enter Form Type,படிவம் வகை உள் apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,பதிவுகள் எதுவும் குறித்துள்ளார். apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,களம் நீக்க DocType: User,Send Password Update Notification,கடவுச்சொல் மேம்படுத்தல் அறிவிப்பு அனுப்பவும் -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","அனுமதிப்பது DOCTYPE , DOCTYPE . கவனமாக இருங்கள்!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","அனுமதிப்பது DOCTYPE , DOCTYPE . கவனமாக இருங்கள்!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","அச்சு, மின்னஞ்சல் அமைத்துக்கொள்ள வடிவங்கள்" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,புதிய பதிப்பு மேம்படுத்தப்பட்டது DocType: Custom Field,Depends On,பொறுத்தது @@ -969,6 +968,7 @@ apps/frappe/frappe/model/document.py +902,one of,ஒன்று apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,நகலெடுக்க கொள்ளவும் கோப்பை தேர்ந்தெடுக்கவும் apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ஒரு கணம் சரிபார்க்கிறது apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,காட்டு குறிச்சொற்களை +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","விண்ணப்பிக்கவும் கண்டிப்பு பயனர் அனுமதி என்பது தேர்வுசெய்யப்பட்டுள்ளதையும் பயனர் அனுமதி ஒரு பயனர் ஒரு DOCTYPE வரையறுக்கப்படுகிறது என்றால், இணைப்பு மதிப்பு வெற்று, அதில் அனைத்து ஆவணங்கள், என்று பயனர் காண்பிக்கப்பட மாட்டா" DocType: Address,Billing,பட்டியலிடல் DocType: Email Queue,Not Sent,அனுப்பப்படவில்லை. DocType: Web Form,Actions,செயல்கள் @@ -999,6 +999,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,தெளி apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ஒவ்வொரு நாள் நிகழ்வுகளில் ஒரே நாளில் முடிக்க வேண்டும். DocType: Communication,User Tags,பயனர் குறிச்சொற்கள் apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,எடுக்கிறது படங்களை .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,அமைப்பு> பயனர் DocType: Workflow State,download-alt,பதிவிறக்க-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},பதிவிறக்குகிறது ஆப் {0} DocType: Communication,Feedback Request,கருத்து வேண்டுகோள் @@ -1016,7 +1017,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,மறுபிரதிகளை apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,தொடர்பு சேர் DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,விருப்ப: எப்போதும் இந்த ஐடிகள் அனுப்ப. ஒரு புதிய வரிசையில் ஒவ்வொரு மின்னஞ்சல் முகவரி -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,விவரங்களை மறை +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,விவரங்களை மறை DocType: Workflow State,Tasks,பணிகளை DocType: Event,Tuesday,செவ்வாய்க்கிழமை DocType: Blog Settings,Blog Settings,வலைப்பதிவு அமைப்புகள் @@ -1036,9 +1037,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,அதே இந்த சேமிக்கப்பட்ட அமைந்துள்ள அடைவு மற்றும் திரும்ப நிரல் மற்றும் விளைவாக ஒரு பைதான் கோப்பை எழுத. DocType: DocType,Sort Field,அண்மையில் DocType: Razorpay Settings,Razorpay Settings,Razorpay அமைப்புகள் -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,வடிகட்டி திருத்து -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,புலம் {0} வகை {1} கட்டாயமாக இருக்க முடியாது -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","எ.கா.. அறிக்கை DOCTYPE பரிசோதித்து ஆனால் எந்த பயனர் அனுமதிகள் ஒரு பயனர் அறிக்கை குறிக்கப்பட்டுள்ளன பயனர் அனுமதிகள் விண்ணப்பிக்கவும் இருந்தால், அனைத்து அறிக்கைகள் என்று பயனர் காட்டப்படுகின்றன" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,வடிகட்டி திருத்து +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,புலம் {0} வகை {1} கட்டாயமாக இருக்க முடியாது apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,கூடுதலாக சேர் apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,விளக்கப்படம் மறை DocType: System Settings,Session Expiry Mobile,அமர்வு காலாவதியாகும் மொபைல் @@ -1053,6 +1053,7 @@ DocType: Communication,Delayed,தாமதமாக apps/frappe/frappe/config/setup.py +128,List of backups available for download,பதிவிறக்க கிடைக்கிறது காப்பு பட்டியல் apps/frappe/frappe/www/login.html +89,Sign up,பதிவு DocType: Test Runner,Output,வெளியீடு +DocType: Email Alert,Set Property After Alert,எச்சரிக்கை பிறகு குணம் அமைத்தல் apps/frappe/frappe/config/setup.py +226,Add fields to forms.,வடிவங்கள் துறைகளில் சேர்க்க . apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ஏதாவது போல் தெரிகிறது இந்த தளத்தின் பேபால் கட்டமைப்பு தவறு உள்ளது. DocType: File,rgt,rgt @@ -1060,6 +1061,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,இலை DocType: Portal Menu Item,Portal Menu Item,போர்டல் மெனு உருப்படி DocType: User Email,Email ID,மின்னஞ்சல் ஐடி +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","பயனர் அனுமதிகள் விண்ணப்பிக்கவும் என்றால் அறிக்கை DOCTYPE சோதிக்கிறார் ஆனால் எந்த பயனர் அனுமதிகள் ஒரு பயனர் இதற்கான புகார் மூலமாக வரையறுக்கப்படுகின்றன, பின்னர் அனைத்து அறிக்கையில் கூறப்பட்டுள்ளதாவது பயனர் காட்டப்படுகின்றன" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,வாடிக்கையாளர் பயன்பாட்டை பயனர் அதை அனுமதிக்கிறது பின்னர் அணுக வேண்டும் இது வளங்களை பட்டியல்.
எ.கா. திட்டம் DocType: Translation,Translated Text,மொழிபெயர்க்கப்பட்ட உரை DocType: Contact Us Settings,Query Options,கேள்வி விருப்பங்கள் @@ -1077,7 +1079,7 @@ DocType: Address,Contacts,தொடர்புகள் DocType: System Settings,Setup Complete,அமைப்பு முழு apps/frappe/frappe/config/setup.py +66,Report of all document shares,அனைத்து ஆவணம் பங்குகளை அறிக்கை apps/frappe/frappe/www/update-password.html +18,New Password,புதிய கடவுச்சொல் -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,வடிகட்டி {0} காணாமல் +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,வடிகட்டி {0} காணாமல் apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,மன்னிக்கவும்! நீங்கள் தானாக உருவாக்கப்பட்ட கருத்துகளை நீக்க முடியாது DocType: Website Theme,Style using CSS,CSS பயன்படுத்தி உடை apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,குறிப்பு Doctype @@ -1132,7 +1134,7 @@ DocType: User,Block Modules,தொகுதி தொகுதிகள் apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,நீளம் மாற்றியமைக்கிறது {0} க்கு '{1}' ல் '{2}'; நீளத்தை அமைக்கிறது {3} தரவு truncation காரணமாம் என. DocType: Print Format,Custom CSS,தனிப்பயன் CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ஒரு கருத்து -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},புறக்கணிக்கப்பட்ட: {0} {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},புறக்கணிக்கப்பட்ட: {0} {1} DocType: Address,Gujarat,குஜராத் apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,தானியங்கி நிகழ்வுகள் ( திட்டமிடுதலின் ) பிழை பதிவு . apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),செல்லுபடியாகும் கமாவால் பிரிக்கப்பட்ட (CSV கோப்பை) @@ -1141,7 +1143,7 @@ DocType: Email Account,Default Incoming,இயல்புநிலை உள் DocType: Workflow State,repeat,ஒப்பி DocType: Website Settings,Banner,சிறிய கொடி DocType: Role,"If disabled, this role will be removed from all users.","முடக்கப்பட்டுள்ளது என்றால், இந்த பங்கு அனைத்து பயனர்கள் இருந்து நீக்கப்படும்." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,தேடல் உதவி +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,தேடல் உதவி apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,பதிவு ஆனாலும் முடக்கத்தில் DocType: DocType,Hide Copy,நகல் மறைக்க apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,அனைத்து வேடங்களில் அழி @@ -1173,7 +1175,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,நாடு apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,முகவரிகள் DocType: Communication,Shared,பகிரப்பட்ட -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,ஆவணத்தை அச்சிட இணைக்கவும் +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,ஆவணத்தை அச்சிட இணைக்கவும் DocType: Bulk Update,Field,களம் DocType: Communication,Received,பெற்றார் DocType: Social Login Keys,Google Client ID,Google வாடிக்கையாளர் ஐடி @@ -1194,12 +1196,12 @@ DocType: Report,Query Report,கேள்வி அறிக்கை DocType: User,Set New Password,புதிய கடவுச்சொல்லை DocType: User,Github User ID,கிட்ஹப் பயனர் ஐடி apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ஆவண வகை என்றால் -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","நீக்க அல்லது ஏனெனில் {0} ரத்துசெய்ய முடியாது {1} இணைந்தவர் {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","நீக்க அல்லது ஏனெனில் {0} ரத்துசெய்ய முடியாது {1} இணைந்தவர் {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},அறியாத பயன்பாடு {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S செல்லுபடியாகும் அறிக்கை வடிவில் இல்லை. அறிக்கை வடிவம் பின்வரும்% கள் ஒரு \ வேண்டும் DocType: Communication,Chat,அரட்டை -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},புலம் பெயர் {0} வரிசைகளில் பல முறை தோன்றும் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},புலம் பெயர் {0} வரிசைகளில் பல முறை தோன்றும் {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} இலிருந்து {1} {2} இல் வரிசையில் # க்கு {3} DocType: Communication,Expired,காலாவதியான DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ஒரு கட்டம் ஒரு வயலுக்கு பத்திகள் எண்ணிக்கை (ஒரு கட்டம் மொத்த பத்திகள் 11 விட குறைவாக இருக்க வேண்டும்) @@ -1209,30 +1211,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ஒரு கணக apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},தெரியாத அச்சு வடிவம்: {0} DocType: Workflow State,arrow-down,அம்புக்குறி-கீழே apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,சுருக்கு -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},பயனர் நீக்க அனுமதி இல்லை {0} {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},பயனர் நீக்க அனுமதி இல்லை {0} {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,கடைசியாக புதுப்பிக்கப்பட்டது DocType: Help Article,Likes,விருப்பு DocType: Website Settings,Top Bar,மேல் பட்டை DocType: GSuite Settings,Script Code,ஸ்கிரிப்ட் குறியீடு apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,பயனர் மின்னஞ்சல் உருவாக்கவும் apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,பயனர் மின்னஞ்சல் உருவாக்கவும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,அனுமதிகள் எதுவும் குறிப்பிடப்படவில்லை +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,அனுமதிகள் எதுவும் குறிப்பிடப்படவில்லை apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,உலகளாவிய அமைப்புகள்: பயனர்கள் மட்டுமே சோதித்ததில் சின்னங்கள் தேர்வு செய்ய முடியும் apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} காணப்படவில்லை DocType: Custom Role,Custom Role,விருப்ப பங்கு apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,முகப்பு / டெஸ்ட் அடைவு 2 DocType: System Settings,Ignore User Permissions If Missing,காணாமல் என்றால் பயனர் அனுமதிகள் புறக்கணி -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,ஏற்றும் முன் ஆவணத்தை சேமிக்க கொள்ளவும். +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,ஏற்றும் முன் ஆவணத்தை சேமிக்க கொள்ளவும். apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,உங்கள் கடவுச்சொல்லை உள்ளிடவும் DocType: Dropbox Settings,Dropbox Access Secret,டிரா பாக்ஸ் அணுகல் ரகசியம் apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,மற்றொரு கருத்து சேர் apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,ஆவண வகை திருத்து apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,செய்திமடல் இலிருந்து குழுவிலக்கப்பட்டது -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ஒரு பகுதி உடைக்க முன்பு வர வேண்டும் மடி +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ஒரு பகுதி உடைக்க முன்பு வர வேண்டும் மடி apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,மூலம் கடைசியாக மாற்றிய DocType: Workflow State,hand-down,கை கீழே DocType: Address,GST State,ஜிஎஸ்டி மாநிலம் -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} : அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லாமல் ரத்து +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} : அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லாமல் ரத்து DocType: Website Theme,Theme,தீம் apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,பிழைகள் இருந்தன . DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI இனை அங்கீகார குறியீடு திருப்பி கட்டுண்ட @@ -1251,7 +1253,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,எ DocType: Website Theme,Text Color,உரை வண்ணம் DocType: Desktop Icon,Force Show,படை காட்டு apps/frappe/frappe/auth.py +78,Invalid Request,தவறான கோரிக்கை -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,இந்த வடிவம் எந்த உள்ளீடு இல்லை +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,இந்த வடிவம் எந்த உள்ளீடு இல்லை apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},அமர்வு காலாவதியாகும் வடிவமைப்பில் இருக்க வேண்டும் {0} DocType: Website Sidebar Item,Group,குழு DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","தேர்ந்தெடு இலக்கு ஒரு புதிய பக்கம் திறக்க = ""_blank"" ." @@ -1260,7 +1262,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,குறியீட்டு பிழைகள் புறக்கணிக்க DocType: Workflow State,wrench,பிடுங்கு apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,அமைக்கப்படவில்லை -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,அமைப்பு> பயனர் DocType: Authentication Log,Date,தேதி DocType: Website Settings,Disable Signup,பதிவுசெய்தல் முடக்கு apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,உங்கள் கணினி அமைப்பு என்றாலும் அமர்ந்து . இந்த ஒரு சில நிமிடங்கள் ஆகலாம். @@ -1271,7 +1272,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,கருத்து சேர் DocType: DocField,Mandatory,அதிகாரம் சார்ந்த apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,தொகுதி ஏற்றுமதி -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : இல்லை அடிப்படை அனுமதிகளை தொகுப்பு +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : இல்லை அடிப்படை அனுமதிகளை தொகுப்பு apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,உங்கள் சந்தா அன்று காலாவதியாகும் {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},உங்கள் காப்பு இணைப்பு பதிவிறக்க பின்வரும் மின்னஞ்சல் முகவரியை மின்னஞ்சலில் {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","திருத்தி, ரத்து, சமர்ப்பி அர்த்தம்" @@ -1284,11 +1285,11 @@ DocType: Desktop Icon,query-report,கேள்வி-அறிக்கை apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ஒதுக்கப்படுகிறது {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,வடிகட்டிகள் சேமிக்கப்படும் DocType: DocField,Percent,சதவீதம் -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,வடிகட்டிகள் அமைக்க தயவு செய்து +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,வடிகட்டிகள் அமைக்க தயவு செய்து apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,உடன் இணைக்கப்பட்ட DocType: Workflow State,book,புத்தகம் DocType: Website Settings,Landing Page,இறங்கும் பக்கம் -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,விருப்ப ஸ்கிரிப்ட் பிழை +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,விருப்ப ஸ்கிரிப்ட் பிழை apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} பெயர் apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","இறக்குமதி வேண்டுகோள் வரிசையில் நின்றிருந்தோம். இதற்கு ஒரு சில நிமிடங்கள் ஆகலாம், பொறுமை, தயவு செய்து." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,இல்லை அனுமதிகள் இந்த அடிப்படை அமைக்க. @@ -1300,7 +1301,7 @@ DocType: System Settings,Allow Login using Mobile Number,மொபைல் apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,நீங்கள் இந்த ஆதாரத்தை அணுக போதுமான அனுமதிகள் இல்லை. அணுகலை பெற உங்கள் மேலாளரைத் தொடர்பு கொள்ளவும். DocType: Custom Field,Custom,விருப்ப apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,அமைப்பு மின்னஞ்சல் எச்சரிக்கை பல்வேறு அளவுகோல்களை அடிப்படையாக கொண்டது. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},கீழ் தாக்கல் இடுகைகள் {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},கீழ் தாக்கல் இடுகைகள் {0} DocType: Email Alert,Send alert if date matches this field's value,தேதி இந்த துறையில் மதிப்பு பொருந்தும் என்றால் எச்சரிக்கை அனுப்பவும் DocType: Workflow,Transitions,மாற்றங்கள் apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} நீக்கிவிட்டு அனைத்து தரவையும் நீக்க வேண்டுமா? @@ -1309,9 +1310,8 @@ DocType: User,Login After,உள்நுழைவு பின்னர் DocType: Print Format,Monospace,மோனோஸ்பேஸ் DocType: Letter Head,Printing,அச்சிடுதல் DocType: Workflow State,thumbs-up,கட்டைவிரலை அப் -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு இல்லையெனில் அமைப்பு. அமைப்பு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து ஒரு புதிய மின்னஞ்சல் கணக்கை உருவாக்க கொள்ளவும் DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,துல்லிய 1 மற்றும் 6 ம் இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,துல்லிய 1 மற்றும் 6 ம் இருக்க வேண்டும் apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},முன்: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,மற்றும் DocType: Error Snapshot,Frames,சட்டங்கள் @@ -1320,7 +1320,7 @@ DocType: About Us Team Member,Image Link,படம் இணைப்பு DocType: Auto Email Report,Report Filters,அறிக்கை வடிகட்டிகள் apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,இப்பொழுது DocType: Workflow State,step-backward,படி-பின்தங்கிய -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ பயன்பாட்டை தலைப்பு } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ பயன்பாட்டை தலைப்பு } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,உங்கள் தளத்தில் கட்டமைப்பு டிராப்பாக்ஸ் அணுகல் விசைகள் அமைக்கவும் apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,இந்த மின்னஞ்சல் முகவரிக்கு அனுப்பும் அனுமதிக்க இந்தப் பதிவை நீக்கு apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"ஒரே கட்டாய துறைகள், புதிய பதிவுகள் அவசியம். நீங்கள் விரும்பினால் நீங்கள் அல்லாத கட்டாய பத்திகள் நீக்க முடியும்." @@ -1342,8 +1342,7 @@ DocType: File,Is Attachments Folder,இணைப்புகள் அடைவ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,எல்லாவற்றையும் விரிவாக்கு apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,செல்லுபடியாகும் உள்நுழைவு ஐடி தேவைப்படுகிறது. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,மீண்டும் திற -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,நீங்கள் பணம் ரத்து செய்து -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,தரவு ஒரு செல்லுபடியாகும் CSV கோப்பை தேர்ந்தெடுக்கவும் +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,தரவு ஒரு செல்லுபடியாகும் CSV கோப்பை தேர்ந்தெடுக்கவும் apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} இந்த ஆவணத்தில் பகிர்வு இல்லை {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{1} செய்ய {0} ஆவண நிலைமை மாற்றம் அனுமதி இல்லை DocType: DocType,"Make ""name"" searchable in Global Search","பெயர்" மேக் குளோபல் தேடுதல் தேடலுக்குரியதாகி @@ -1356,7 +1355,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,அ DocType: Help Category,Help Category,உதவி பகுப்பு apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,பயனர் {0} முடக்கப்பட்டுள்ளது apps/frappe/frappe/www/404.html +8,Page missing or moved,காணாமல் அல்லது சென்றார் பக்கம் -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,திருத்து {0} பண்புகள் DocType: DocType,Route,பாதை apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay கொடுப்பனவு நுழைவாயில் அமைப்புகளை DocType: DocField,Name,பெயர் @@ -1364,8 +1362,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ஆவணங்களையும் தேட apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ஆவணங்களையும் தேட DocType: OAuth Authorization Code,Valid,செல்லுபடியாகும் -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,இணைப்பைத் திற -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,உங்கள் மொழி +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,இணைப்பைத் திற +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,உங்கள் மொழி apps/frappe/frappe/desk/form/load.py +46,Did not load,ஏற்ற முடியவில்லை apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,வரிசையில் சேர் DocType: Tag Category,Doctypes,டாக்டைப்கள் @@ -1380,7 +1378,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,கருத DocType: Address,Lakshadweep Islands,இலட்சத்தீவுகள் தீவுகள் apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,எழுத முடியும் apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","சில ஆவணங்கள் , ஒரு விலைப்பட்டியல் போன்ற முறை இறுதி மாற்ற கூடாது . அந்த ஆவணங்கள் , இறுதி நிலை Submitted என்று அழைக்கப்படுகிறது. நீங்கள் வேடங்களில் சமர்ப்பிக்கவும் முடியும் கட்டுப்படுத்த முடியும்." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,நீங்கள் இந்த அறிக்கையை ஏற்றுமதி செய்ய அனுமதி இல்லை +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,நீங்கள் இந்த அறிக்கையை ஏற்றுமதி செய்ய அனுமதி இல்லை apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 தேர்ந்தெடுக்கப்பட்டது DocType: Newsletter,Test Email Address,டெஸ்ட் மின்னஞ்சல் முகவரி DocType: ToDo,Sender,அனுப்புபவர் @@ -1415,7 +1413,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,இறக்குமதி .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ஆவண ஐடி DocType: Print Settings,Letter,கடிதம் -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,இணை பட துறையில் வகை இருக்க வேண்டும் பட +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,இணை பட துறையில் வகை இருக்க வேண்டும் பட DocType: DocField,Columns,பத்திகள் DocType: Async Task,Succeeded,முன்னவர் apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},தேவையான கட்டாய துறைகள் {0} @@ -1466,7 +1464,7 @@ DocType: DocField,Text Editor,உரை திருத்தி apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,எங்களை பற்றி பக்கம் அமைப்புகளை. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,திருத்த வழக்கமான HTML DocType: Error Snapshot,Error Snapshot,பிழை நொடிப்பு -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,இல் +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,இல் DocType: Email Alert,Value Change,மதிப்பு மாற்றம் DocType: Standard Reply,Standard Reply,வழக்கமான பதில் apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,உள்ளீடு பெட்டியில் அகலம் @@ -1482,12 +1480,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,தலைப்பு உருவாக்க இந்த FIELDNAME பயன்படுத்தவும் apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,இருந்து இறக்குமதி மின்னஞ்சல் apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,பயனர் அழைக்கவும் -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,இணைப்புகள் தேர்வு +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,இணைப்புகள் தேர்வு apps/frappe/frappe/model/naming.py +94, for {0},இதற்காக {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,பிழைகள் உள்ளன. இது குறித்து புகார் அளியுங்கள். -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,நீங்கள் இந்த ஆவணத்தை அச்சிட அனுமதி இல்லை +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,நீங்கள் இந்த ஆவணத்தை அச்சிட அனுமதி இல்லை apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,அறிக்கை வடிகட்டி அட்டவணையில் வடிகட்டிகள் மதிப்பு அமைக்கவும். -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,ஏற்றுகிறது அறிக்கை +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,ஏற்றுகிறது அறிக்கை apps/frappe/frappe/limits.py +72,Your subscription will expire today.,உங்கள் சந்தா இன்று காலாவதியாகிவிடும். DocType: Page,Standard,நிலையான apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,கோப்பினை இணைக்கவும் @@ -1517,7 +1515,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,பிராந்திய நீட்சிகள் DocType: LDAP Settings,Base Distinguished Name (DN),பேஸ் சிறப்புமிகு பெயர் (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,இந்த உரையாடலிலிருந்து -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},விருப்பங்கள் இணைப்பு துறையில் அமைக்க{0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},விருப்பங்கள் இணைப்பு துறையில் அமைக்க{0} DocType: Customize Form,"Must be of type ""Attach Image""","படத்தை இணைக்கவும்" வகை இருக்க வேண்டும் apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,தேர்வுசெய்ய வேண்டாம் apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},நீங்கள் துறையில் அமைக்காமல் இல்லை 'மட்டும் வாசிக்க' கொள்ளலாம் {0} @@ -1560,9 +1558,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,குறிப்பு apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,பிழை அறிக்கை apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,கருத்து நிலைமைகள் பொருந்தவில்லை -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,காலக்கெடு புலத்தில் செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,காலக்கெடு புலத்தில் செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் DocType: Currency,Symbol,அடையாளம் -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,ரோ # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,ரோ # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,புதிய கடவுச்சொல்லை மின்னஞ்சல் apps/frappe/frappe/auth.py +245,Login not allowed at this time,உள்நுழைய இந்த நேரத்தில் அனுமதி இல்லை DocType: Email Account,Email Sync Option,மின்னஞ்சல் ஒத்திசைவு விருப்பம் @@ -1584,7 +1582,7 @@ DocType: DocField,Text,உரை apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,ஸ்டாண்டர்ட் பொதுவான கேள்விகளுக்கு பதில். apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,இயல்புநிலை அனுப்புகிறது DocType: Workflow State,volume-off,தொகுதி-ஆஃப் -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},விரும்பியது {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},விரும்பியது {0} DocType: Footer Item,Footer Item,அடிக்குறிப்பு பொருள் ,Download Backups,பதிவிறக்க காப்பு apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,முகப்பு / டெஸ்ட் அடைவு 1 @@ -1619,7 +1617,7 @@ DocType: Web Page,Text Align,உரை சீரமை apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},பெயர் போன்ற சிறப்பு எழுத்துக்கள் {0} DocType: Contact Us Settings,Forward To Email Address,முன்னோக்கி மின்னஞ்சல் முகவரியை apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,எல்லா தரவையும் காட்டு -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,தலைப்பு துறையில் ஒரு செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,தலைப்பு துறையில் ஒரு செல்லுபடியாகும் FIELDNAME இருக்க வேண்டும் apps/frappe/frappe/config/core.py +7,Documents,ஆவணங்கள் DocType: Email Flag Queue,Is Completed,நிறைவுபெற்றது apps/frappe/frappe/www/me.html +22,Edit Profile,திருத்து @@ -1629,8 +1627,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",இங்கே வரையறுக்கப்பட்ட FIELDNAME மதிப்பு உள்ளது அல்லது விதிகள் உண்மை (உதாரணங்கள்) இருந்தால் மட்டுமே இந்த துறையில் தோன்றும்: myfield eval: doc.myfield == 'என் வேல்யூ' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,இன்று -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,இன்று +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,இன்று +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,இன்று apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","நீங்கள் இந்த அமைக்க வேண்டும் ஒருமுறை , பயனர்கள் மட்டுமே முடியும் அணுகல் ஆவணங்களை இணைப்பு உள்ளது, அங்கு (எ.கா. வலைப்பதிவு போஸ்ட் ) (எ.கா. Blogger) இருக்கும்." DocType: Error Log,Log of Scheduler Errors,திட்டமிடுதல் பிழைகள் பரிசீலனை DocType: User,Bio,உயிரி @@ -1654,6 +1652,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 பிரபலமானவராக இருப்பது மிக குறைந்த மற்றும் 5 நட்சத்திரங்கள் அதிக தரத்தைப் இருப்பது DocType: Event,Ref Name,Ref பெயர் DocType: Web Page,Center,மையம் +DocType: Email Alert,Value To Be Set,மதிப்பு அமைக்க apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,முதல் நிலை DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,மாநில மாற்ற ஒதுக்கப்படும் ஒரு ஆவணம் மற்றும் பங்கு அனுமதி மாநிலங்களில் குறிக்கிறது. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,புதுப்பி படிவம் @@ -1674,18 +1673,18 @@ DocType: DocType,Has Web View,இணையப் பார்வை உள்ள apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE பெயர் ஒரு கடிதம் தொடங்க வேண்டும் மற்றும் அது எழுத்துக்கள், எண்கள், இடைவெளிகள் மற்றும் அடிக்கோடு கொண்டுள்ளன முடியும்" DocType: Communication,Spam,பழுதான DocType: Integration Request,Integration Request,ஒருங்கிணைப்பு வேண்டுகோள் -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,அன்புக்குரிய +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,அன்புக்குரிய DocType: Address,Maharashtra,மகாராஷ்டிரா DocType: Address,Accounts User,பயனர் கணக்குகள் DocType: Web Page,HTML for header section. Optional,தலைப்பு பகுதியில் HTML ஐ . விருப்ப apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,இந்த அம்சம் புதிய மற்றும் இன்னும் பரிசோதனையில் உள்ளது -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,அதிகபட்ச {0} வரிசைகள் அனுமதி +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,அதிகபட்ச {0} வரிசைகள் அனுமதி DocType: Email Unsubscribe,Global Unsubscribe,குளோபல் குழுவிலகலைப் apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,இந்த ஒரு மிகவும் பொதுவான கடவுச்சொல். apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,காண்க DocType: Communication,Assigned,ஒதுக்கப்படும் DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,அச்சு வடிவம் தேர்வு +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,அச்சு வடிவம் தேர்வு apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,குறுகிய விசைப்பலகை வடிவங்களை எளிதாக யூகிக்கலாம் DocType: Portal Settings,Portal Menu,போர்டல் பட்டி apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} நீளம் 1 மற்றும் 1000 க்கு இடையில் இருக்க வேண்டும் @@ -1724,7 +1723,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,பயனர் தேட முடியாது apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,தவறான வெளியீட்டு வடிவம் DocType: Custom DocPerm,Apply this rule if the User is the Owner,பயனர் உரிமையாளராகவே இருந்தால் இந்த ஆட்சி விண்ணப்பிக்கவும் -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,உங்கள் உள்நுழைவு ஐடி இருக்கும் +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,உங்கள் உள்நுழைவு ஐடி இருக்கும் apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,அறிக்கை கட்ட DocType: Note,Notify users with a popup when they log in,அவர்கள் உள்நுழைந்து போது ஒரு popup பயனர்கள் தெரிவி apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} இல்லை , ஒன்றாக்க ஒரு புதிய இலக்கை தேர்ந்தெடுக்கவும்" @@ -1743,17 +1742,18 @@ DocType: User Permission for Page and Report,Roles Permission,பாத்தி apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,புதுப்பிக்க DocType: Error Snapshot,Snapshot View,நொடிப்பு காண்க apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"அனுப்பும் முன் செய்திமடல் சேமிக்க , தயவு செய்து" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},விருப்பங்கள் {0} வரிசையில் {1} துறையில் ஒரு சரியான DOCTYPE இருக்க வேண்டும் +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},விருப்பங்கள் {0} வரிசையில் {1} துறையில் ஒரு சரியான DOCTYPE இருக்க வேண்டும் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,பண்புகள் தொகு DocType: Patch Log,List of patches executed,இணைப்பினை பட்டியல் தூக்கிலிடப்பட்டார் apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ஏற்கனவே குழுவிலகியுள்ளீர்கள் -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,தொடர்பு மொழி +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,தொடர்பு மொழி DocType: Website Settings,Banner HTML,பதாகை HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',மற்றொரு கட்டண முறையை தேர்ந்தெடுக்கவும். Razorpay நாணய பரிவர்த்தனைகள் ஆதரிக்கவில்லை '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,காப்பு வரிசைப்படுத்தப்பட்டுள்ளது. அது ஒரு மணி நேரம் ஒரு சில நிமிடங்கள் ஆகலாம். DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,பதிவு OAuth கிளையன்ட் ஆப் -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} இருக்க முடியாது ""{2}"". இது ""{3}"" ஒன்றாக இருக்க வேண்டும்" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} இருக்க முடியாது ""{2}"". இது ""{3}"" ஒன்றாக இருக்க வேண்டும்" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} அல்லது {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,காட்டு அல்லது மறை வடிவுகள் apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,கடவுச்சொல் புதுப்பிக்கப்பட்டது @@ -1780,7 +1780,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,பிரிவுகள் பிறகு வரி காட்டு பிரேக்ஸ் DocType: Blogger,Short Name,குறுகிய பெயர் apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},பக்கம் {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",நீங்கள் அனைத்து ஒத்திசைவு விருப்பம் தேர்வு செய்து அது சர்வரில் இருந்து அனைத்து \ படிக்க அத்துடன் படிக்காத செய்தி மீண்டும் ஒத்திசை வேண்டும். இது தொடர்பாடல் (மின்னஞ்சல்கள்) நகல் எடுப்பது \ ஏற்படுத்தலாம். apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,கோப்புகள் அளவு @@ -1792,6 +1792,7 @@ DocType: Contact,Purchase Manager,கொள்முதல் மேலாள DocType: Custom Script,Sample,மாதிரி apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,uncategorised குறிச்சொற்கள் DocType: Event,Every Week,ஒவ்வொரு வாரமும் +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,மின்னஞ்சல் கணக்கு இல்லையெனில் அமைப்பு. அமைப்பு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து ஒரு புதிய மின்னஞ்சல் கணக்கை உருவாக்க கொள்ளவும் apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,உங்கள் பயன்பாடு பார்க்கலாம் அல்லது ஒரு உயர்ந்த திட்டம் மேம்படுத்த இங்கே கிளிக் செய்யவும் DocType: Custom Field,Is Mandatory Field,இன்றியமையாதது ஆகும் DocType: User,Website User,வலைத்தளம் பயனர் @@ -1815,16 +1816,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,விருப்ப பக்கப்பட்டி பட்டி DocType: Workflow State,pencil,பென்சில் apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,செய்திகள் மற்றும் பிற அறிவிப்புகளை பிரண்ட்ஸ். -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},என அமைக்க முடியாது பிறகு நுழைக்கவும் {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},என அமைக்க முடியாது பிறகு நுழைக்கவும் {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,பகிர் {0} உடன் apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,மின்னஞ்சல் கணக்கை அமைப்பது தயவு செய்து உங்கள் கடவுச்சொல்லை உள்ளிடவும்: DocType: Workflow State,hand-up,கை அப் DocType: Blog Settings,Writers Introduction,எழுத்தாளர்கள் அறிமுகம் DocType: Address,Phone,தொலைபேசி -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,போது பிழை மதிப்பீடு மின்னஞ்சல் எச்சரிக்கை {0}. உங்கள் டெம்ப்ளேட் சரி செய்யுங்கள். +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,போது பிழை மதிப்பீடு மின்னஞ்சல் எச்சரிக்கை {0}. உங்கள் டெம்ப்ளேட் சரி செய்யுங்கள். apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,ஆவண வகை அல்லது துவக்க பங்கு தேர்ந்தெடுக்கவும். DocType: Contact,Passive,மந்தமான DocType: Contact,Accounts Manager,கணக்குகள் மேலாளர் +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,உங்கள் பணம் ரத்துசெய்யப்பட்டது. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,கோப்பு வகை தேர்வு DocType: Help Article,Knowledge Base Editor,அறிவு தளம் ஆசிரியர் apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,பக்கம் காணவில்லை @@ -1852,6 +1854,7 @@ DocType: Property Setter,Property Type,சொத்து வகை DocType: Workflow State,screenshot,திரை apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,ஒரே நிர்வாகி ஒரு தரமான அறிக்கையை சேமிக்க முடியும். மறுபெயர் காப்பாற்றுங்கள். DocType: System Settings,Background Workers,பின்னணி தொழிலாளர் +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} மெட்டா பொருள் முரண்படுவதாக DocType: Deleted Document,Data,தரவு apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,ஆவண நிலைமை apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},நீங்கள் செய்த {0} {1} @@ -1877,7 +1880,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,காட்டு பயனர் அனுமதிகள் apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,நீங்கள் உள்நுழைந்திருக்க மற்றும் காப்பு அணுக முடியும் கணினி மேலாளர் பங்கு பெற்றிருக்க வேண்டும் . apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,மீதமுள்ள -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,இணைக்கிறேன் முன் சேமிக்க கொள்ளவும். +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,இணைக்கிறேன் முன் சேமிக்க கொள்ளவும். apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),சேர்க்கப்பட்டது {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},இயல்புநிலை தீம் அமைக்கப்பட்டிருந்தது {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},துறை வகை செய்ய {0} இருந்து {1} வரிசையில் {2} மாற்ற முடியாது @@ -1898,11 +1901,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,அமர apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,அமர்வு தொடக்க தோல்வி apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},இந்த மின்னஞ்சல் {0} அனுப்பப்படும் நகலெடுக்கப்பட்டது {1} DocType: Workflow State,th,வது -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,அமைப்பு> மின்னஞ்சல்> மின்னஞ்சல் கணக்கிலிருந்து அமைவு இயல்புநிலை மின்னஞ்சல் கணக்கை -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ஒரு புதிய {0} உருவாக்கவும் +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ஒரு புதிய {0} உருவாக்கவும் DocType: Email Rule,Is Spam,பழுதான உள்ளது apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},அறிக்கையில் {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},திறந்த {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},திறந்த {0} DocType: OAuth Client,Default Redirect URI,இயல்பான திசைதிருப்பும்: URI DocType: Email Alert,Recipients,பெறுநர்கள் DocType: Workflow State,ok-sign,"சரி, அறிகுறி" @@ -1920,6 +1922,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,உதவி கட்டுரைகள் ,Modules Setup,தொகுதிகள் அமைப்பு apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,வகை: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,உங்கள் செலுத்துவது தோல்வியுற்றது. DocType: Communication,Unshared,பகிர்வுநீக்கப்பட்டது DocType: Address,Karnataka,கர்நாடக apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,தொகுதி கிடைக்கவில்லை @@ -1967,7 +1970,7 @@ DocType: Website Settings,Brand Image,பிராண்ட் இமேஜ் DocType: Print Settings,A4,ஏ 4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","மேல் திசை பட்டையில், பூட்டர் மற்றும் லோகோ அமைப்பு." DocType: Web Form Field,Max Value,அதிகபட்சம் மதிப்பு -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},இதற்காக {0} மட்டத்தில் {1} ல் {2} வரிசையில் {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},இதற்காக {0} மட்டத்தில் {1} ல் {2} வரிசையில் {3} DocType: Contact,All,அனைத்து DocType: Email Queue,Recipient,பெறுபவர் DocType: Communication,Has Attachment,இணைப்பு உள்ளது @@ -1984,7 +1987,8 @@ DocType: Workflow State,align-right,சீரமை வலது DocType: Auto Email Report,Email To,மின்னஞ்சல் apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,அடைவு {0} காலியாக உள்ளது DocType: Page,Roles,பாத்திரங்கள் -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,புலம் {0} தேர்ந்தெடுக்கும் அல்ல. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},பிழை: மதிப்பு காணவில்லை {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,புலம் {0} தேர்ந்தெடுக்கும் அல்ல. DocType: System Settings,Session Expiry,அமர்வு காலாவதியாகும் DocType: Workflow State,ban-circle,தடை-வட்டம் DocType: Email Flag Queue,Unread,படிக்காத @@ -1999,7 +2003,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,சுயவிவரத்தை இயல்புநிலைகளுக்கு apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,புதிய உருவாக்கவும் DocType: Workflow State,chevron-down,செவ்ரான்-கீழே -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),மின்னஞ்சல் அனுப்பப்படவில்லை {0} (முடக்கப்பட்டுள்ளது / குழுவிலக்கப்பட்டீர்கள்) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),மின்னஞ்சல் அனுப்பப்படவில்லை {0} (முடக்கப்பட்டுள்ளது / குழுவிலக்கப்பட்டீர்கள்) DocType: Async Task,Traceback,மீண்டும் கண்டுபிடிக்க DocType: Currency,Smallest Currency Fraction Value,மிகச்சிறிய நாணய பின்னம் மதிப்பு apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,என்று ஒதுக்க @@ -2010,12 +2014,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,இருந்து DocType: Website Theme,Google Font (Heading),கூகிள் எழுத்துரு (தலைப்பு) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,முதல் ஒரு குழு முனை தேர்ந்தெடுக்கவும். -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},உள்ள {0} கண்டுபிடிக்க {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},உள்ள {0} கண்டுபிடிக்க {1} DocType: OAuth Client,Implicit,உள்ளார்ந்த DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, துறைகள், ""நிலைமை"" வேண்டும் ""பொருள்"") இந்த DOCTYPE எதிரான மூலம் தொடர்பு சேர்க்கவும்" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","அங்கீகாரம் குறியீடு பெறும் பயனர் அணுகல் அனுமதிக்கிறது முறை, அதே போல் தோல்வி பதில்களை URI களை. பொதுவாக ஓய்வு இறுதிப்புள்ளி வாடிக்கையாளர் பயன்பாட்டை மூலம் வெளிப்படும்.
எ.கா. Http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,சமர்ப்பித்த பின்னர் {0} மாற்ற உங்களுக்கு அனுமதி இல்லை +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,சமர்ப்பித்த பின்னர் {0} மாற்ற உங்களுக்கு அனுமதி இல்லை DocType: Communication,Comment Type,கருத்து வகை DocType: OAuth Client,OAuth Client,"OAuth வாடிக்கையாளர்" @@ -2031,7 +2035,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,வடிகட்டி தரவு DocType: Auto Email Report,Filter Data,வடிகட்டி தரவு apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ஒரு டேக் சேர்க்கவும் -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,முதல் ஒரு கோப்பை இணைக்கவும். +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,முதல் ஒரு கோப்பை இணைக்கவும். apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","பெயர் அமைக்க சில பிழைகள் இருந்தன, நிர்வாகியை தொடர்பு கொள்க" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,உள்வரும் மின்னஞ்சல் கணக்கை சரியாக இல்லை apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2046,11 +2050,11 @@ DocType: Blog Post,Email Sent,மின்னஞ்சல் அனுப்ப DocType: DocField,Ignore XSS Filter,XSS என வடிகட்டி புறக்கணி apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,அகற்றப்பட்டது apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,டிராப்பாக்ஸ் காப்பு அமைப்புகளை -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,மின்னஞ்சல் அனுப்பு +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,மின்னஞ்சல் அனுப்பு DocType: Website Theme,Link Color,இணைப்பு கலர் apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,பயனர் {0} முடக்க முடியாது apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","அன்புக்குரிய அமைப்பு மேலாளர்," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,உங்கள் நாடு +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,உங்கள் நாடு DocType: Event,Sunday,ஞாயிற்றுக்கிழமை apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,கட்டக் காட்சியில் DocType: Address Template,Template,டெம்ப்ளேட் @@ -2058,7 +2062,7 @@ DocType: Address,Delhi,தில்லி apps/frappe/frappe/config/integrations.py +48,LDAP Settings,"LDAP, அமைப்புகள்" apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,திருத்தப்பட்ட apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,பேபால் கட்டணம் நுழைவாயில் அமைப்புகளை -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) அனுமதி அதிகபட்ச எழுத்துக்கள் என, மட்டுப்படுத்தப்பட்டுள்ளது கிடைக்கும் {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) அனுமதி அதிகபட்ச எழுத்துக்கள் என, மட்டுப்படுத்தப்பட்டுள்ளது கிடைக்கும் {2}" DocType: OAuth Client,Resource Owner Password Credentials,உரிமையாளர் கடவுச்சொல் சான்றுகளை வள DocType: OAuth Client,Response Type,பதில் வகை apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,அதிகபட்சம் பயனர்கள் @@ -2075,7 +2079,7 @@ DocType: DocField,Table,மேசை DocType: File,File Size,கோப்பு அளவு apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,நீங்கள் இந்த படிவத்தை சமர்ப்பிக்க உள்நுழைய வேண்டும் DocType: User,Background Image,பின்புல படம் -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","உங்கள் நாடு, நேர மண்டலம் மற்றும் நாணய வாய்ப்புகள்" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","உங்கள் நாடு, நேர மண்டலம் மற்றும் நாணய வாய்ப்புகள்" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,இடையே DocType: Async Task,Queued,வரிசைப்படுத்திய @@ -2084,6 +2088,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,உருவாக்கு apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},செல்லாத வடிகட்டவும்: {0} DocType: Email Account,no failed attempts,எந்த தோல்விகள் +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,இயல்புநிலை முகவரி டெம்ப்ளேட் கண்டறியப்பட்டது. அமைப்பு> அச்சிடுதல் மற்றும் பிராண்டிங்> முகவரி டெம்ப்ளேட் இருந்து ஒரு புதிய ஒன்றை உருவாக்க கொள்ளவும். DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,பயன்பாட்டை அணுகல் விசை DocType: OAuth Bearer Token,Access Token,அணுகல் டோக்கன் @@ -2101,8 +2106,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,கிட்ஹப் பயனர்பெயர் DocType: DocType,Image View,பட காட்சி apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ஏதாவது பரிவர்த்தனை தவறு நடந்துவிட்டது போல் தெரிகிறது. நாங்கள் பணம் உறுதி இல்லை என்பதால், பேபால் தானாக இந்த அளவு திரும்ப வேண்டும். அது இல்லை என்றால், எங்களுக்கு ஒரு மின்னஞ்சல் அனுப்ப மற்றும் உறவுடைய ஐடி குறிப்பிட வேண்டும்: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","கடவுச்சொல்லை குறியீடுகள், எண்கள் மற்றும் மூலதன கடிதங்கள் சேர்க்கவும்" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","துறையில் '{0}' விருப்ப துறையில் குறிப்பிடப்பட்டுள்ளது பிறகு நுழைக்க '{1}', லேபிளை '{2}', இல்லை" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","கடவுச்சொல்லை குறியீடுகள், எண்கள் மற்றும் மூலதன கடிதங்கள் சேர்க்கவும்" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","துறையில் '{0}' விருப்ப துறையில் குறிப்பிடப்பட்டுள்ளது பிறகு நுழைக்க '{1}', லேபிளை '{2}', இல்லை" DocType: Workflow State,signal,அடையாளம் DocType: DocType,Show Print First,காட்டு முதலில் அச்சிடவும் apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,CTRL + பதிவு செய்ய சேர்க்கவும் @@ -2133,14 +2138,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,கோப்பு '{0}' இல்லை apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,பிரிவை நீக்க DocType: User,Change Password,கடவுச்சொல்லை மாற்று -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},தவறான மின்னஞ்சல் : {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,வணக்கம்! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},தவறான மின்னஞ்சல் : {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,வணக்கம்! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,நிகழ்வு இறுதியில் தொடங்கிய பின்னர் இருக்க வேண்டும் apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},நீங்கள் ஒரு அறிக்கை பெற அனுமதி இல்லை: {0} +DocType: System Settings,Apply Strict User Permissions,கண்டிப்பு பயனர் அனுமதிகள் விண்ணப்பிக்கவும் DocType: DocField,Allow Bulk Edit,மொத்த திருத்த அனுமதி DocType: DocField,Allow Bulk Edit,மொத்த திருத்த அனுமதி DocType: Blog Post,Blog Post,வலைப்பதிவு இடுகை -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,மேம்பட்ட தேடல் +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,மேம்பட்ட தேடல் apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,கடவுச்சொல் மீட்டமைப்பு வழிமுறைகளை உங்கள் மின்னஞ்சல் அனுப்பப்படும் apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","நிலை 0 ஆவணம் நிலை அனுமதிகளை, \ துறையில் நிலை அனுமதிகளை அதிக அளவு உள்ளது." @@ -2159,16 +2165,15 @@ DocType: Web Page,Sidebar and Comments,பக்கப்பட்டி மற apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","நீங்கள் பின்னர் ரத்து மற்றும் அதை காப்பாற்ற ஒரு ஆவணத்தை திருத்தம் போது, அது பழைய எண் ஒரு பதிப்பு என்று ஒரு புதிய எண் கிடைக்கும் ." DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி DocType: Stripe Settings,Publishable Key,பதிப்பு சாவி -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ஆண்டு (கள்) முன்பு DocType: Workflow State,circle-arrow-left,வட்டத்தை-அம்பு இடது apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis கொங்கணி இயங்கும். நிர்வாகி / தொழில்நுட்ப ஆதரவு தொடர்பு கொள்ளவும் apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,கட்சி பெயர் -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ஒரு புதிய சாதனையை செய்ய +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ஒரு புதிய சாதனையை செய்ய apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,தேடி apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,தேடி DocType: Currency,Fraction,பின்னம் DocType: LDAP Settings,LDAP First Name Field,"LDAP, முதல் பெயர் களம்" -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,இருக்கும் இணைப்புகளை தேர்ந்தெடுங்கள் +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,இருக்கும் இணைப்புகளை தேர்ந்தெடுங்கள் DocType: Custom Field,Field Description,புலம் விளக்கம் apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,உடனடியாக கட்டளை வழியாக அமைக்க இல்லை பெயர் apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,மின்னஞ்சல் இன்பாக்ஸ் @@ -2215,11 +2220,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,தகவல்: DocType: Custom Field,Permission Level,அனுமதி நிலை DocType: User,Send Notifications for Transactions I Follow,நான் பின்பற்றவும் பரிவர்த்தனைகள் அறிவிப்புகள் அனுப்பவும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : எழுது இல்லாமல் , திருத்தவோ, ரத்து , சமர்ப்பி அமைக்க முடியாது" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0} : எழுது இல்லாமல் , திருத்தவோ, ரத்து , சமர்ப்பி அமைக்க முடியாது" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,நீங்கள் இணைப்பு நீக்க வேண்டும் நீங்கள் உறுதியாக இருக்கிறீர்களா? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","நீக்க அல்லது ஏனெனில் {0} ரத்துசெய்ய முடியாது {1} இணைந்தவர் {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

முடிவுகள் ஏதுமில்லை 'காணப்படவில்லை

-apps/frappe/frappe/__init__.py +1063,Thank you,நன்றி +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","நீக்க அல்லது ஏனெனில் {0} ரத்துசெய்ய முடியாது {1} இணைந்தவர் {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,நன்றி apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,சேமிப்பு DocType: Print Settings,Print Style Preview,அச்சு உடை முன்னோட்டம் apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2231,10 +2235,10 @@ DocType: DocField,In List View,பட்டியல் பார்வை DocType: Email Account,Use TLS,TLS பயன்படுத்தவும் apps/frappe/frappe/email/smtp.py +24,Invalid login or password,தவறான உள்நுழைவு அல்லது கடவுச்சொல்லை apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,வடிவங்கள் விருப்ப JavaScript சேர்க்கவும். -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,வ.எண் +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,வ.எண் ,Role Permissions Manager,பங்கு அனுமதிகள் மேலாளர் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,புதிய அச்சு வடிவம் பெயர் -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,தெளிவு இணைப்பு +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,தெளிவு இணைப்பு apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,கட்டாய தகுதி: ,User Permissions Manager,பயனர் அனுமதிகள் மேலாளர் DocType: Property Setter,New value to be set,புதிய மதிப்பு அமைக்க @@ -2264,26 +2268,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ந apps/frappe/frappe/config/website.py +47,Categorize blog posts.,இடுகைகள் வகைப்படுத்தவும். DocType: Workflow State,Time,காலம் DocType: DocField,Attach,இணைக்கவும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ஒரு செல்லுபடியாகும் FIELDNAME முறை அல்ல. அது இருக்க வேண்டும் {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ஒரு செல்லுபடியாகும் FIELDNAME முறை அல்ல. அது இருக்க வேண்டும் {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,குறைந்தது ஒரு தகவல்தொடர்பு ஆவணம் கிடைக்கும் இல்லாமலிருந்தால் மட்டுமே கருத்து வேண்டுகோள் அனுப்ப. DocType: Custom Role,Permission Rules,அனுமதி விதிமுறைகள் DocType: GSuite Settings,GSuite Settings,GSuite அமைப்புகள் DocType: Address,Links,இணைப்புகள் -apps/frappe/frappe/model/base_document.py +428,Value missing for,மதிப்பு காணாமல் +apps/frappe/frappe/model/base_document.py +427,Value missing for,மதிப்பு காணாமல் apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,குழந்தை சேர் -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: சமர்ப்பிக்கப்பட்டது பதிவு நீக்க முடியாது. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: சமர்ப்பிக்கப்பட்டது பதிவு நீக்க முடியாது. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,காப்பு அளவு DocType: GSuite Templates,Template Name,டெம்பிளேட் பெயர் -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ஆவணத்தின் புதிய வகை +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ஆவணத்தின் புதிய வகை DocType: Custom DocPerm,Read,வாசிக்க DocType: Role Permission for Page and Report,Role Permission for Page and Report,பேஜ் மற்றும் அறிக்கைக்காக பங்கு அனுமதி apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,மதிப்பு சீரமை apps/frappe/frappe/www/update-password.html +14,Old Password,பழைய கடவுச்சொல் -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},பதிவுகள் {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},பதிவுகள் {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",", பத்திகள் வடிவமைக்க கேள்வியை நிரலை அடையாளங்கள் கொடுக்க. செய்ய" DocType: Has Domain,Has Domain,டொமைன் உள்ளது apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ஒரு கணக்கு இல்லையா? பதிவு -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : ஒதுக்கு திருத்தம் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : ஒதுக்கு திருத்தம் அமைக்க முடியாது சமர்ப்பிக்கவும் இல்லை என்றால் DocType: Address,Bihar,பீகார் apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,திருத்த பங்கு அனுமதிகள் DocType: Communication,Link DocType,"இணைப்பு @@ -2385,7 +2389,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,உங்கள் சுயவிவர ஒரு மின்னஞ்சல் முகவரியை உள்ளது என்பதை உறுதி செய்து கொள்ளவும் apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,நீங்கள் இந்த படிவத்தை சேமிக்கப்படாத மாற்றங்கள் உள்ளன . DocType: Address,Telangana,தெலுங்கானா -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} ஒரு விருப்பத்தை இருக்க வேண்டும் இயல்புநிலை +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} ஒரு விருப்பத்தை இருக்க வேண்டும் இயல்புநிலை DocType: Tag Doc Category,Tag Doc Category,டேக் டாக் பகுப்பு DocType: User,User Image,பயனர் படம் apps/frappe/frappe/email/queue.py +289,Emails are muted,மின்னஞ்சல்கள் முடக்கியது @@ -2418,7 +2422,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,அடு DocType: Workflow State,ok,சரி DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,இந்த மதிப்புகள் தானாக நடவடிக்கைகளில் புதுப்பிக்கப்படும் மேலும் இந்த மதிப்புகள் கொண்ட பரிமாற்றங்களை இந்த பயனர் அனுமதிகள் கட்டுப்படுத்த பயனுள்ளதாக இருக்கும். apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,வெளியீட்டாளர் -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** தோல்வி: {0} {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** தோல்வி: {0} {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,கட்டாய தேர்ந்தெடுக்கவும் apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,உலவ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,அனுப்பிய மின்னஞ்சல்கள் @@ -2430,7 +2434,7 @@ DocType: Async Task,Running,இயங்கும் apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,கடவுச்சொல் மீட்டமை apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,மேற்பட்ட {0} சந்தாதாரர்களை சேர்க்க மேம்படுத்தவும் DocType: Workflow State,hand-left,கையை இடது -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,"துறை வகை {0} {1} தனிப்பட்ட இருக்க முடியவில்லை," +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,"துறை வகை {0} {1} தனிப்பட்ட இருக்க முடியவில்லை," DocType: Email Account,Use SSL,SSL பயன்படுத்த DocType: Workflow State,play-circle,விளையாட்டு வட்டம் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,திருத்தவும் அச்சு அமைப்பை வேகமாக தேர்ந்தெடுக்கவும் @@ -2485,7 +2489,7 @@ DocType: DocField,No Copy,நகல் இல்லை DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP உடன் உள்நுழைய DocType: Web Form,Breadcrumbs,நனைக்கப்பட்டு -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,உரிமையாளர் என்றால் +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,உரிமையாளர் என்றால் DocType: OAuth Authorization Code,Expiration time,காலாவதியாகும் நேரம் DocType: Web Page,Website Sidebar,இணையத்தளம் பக்கப்பட்டி DocType: Web Form,Show Sidebar,பக்கப்பட்டி காட்டு @@ -2505,7 +2509,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},கண்டு apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,"தங்களை பெயர்களும், குடும்ப எளிதாக யூகிக்கலாம்." apps/frappe/frappe/config/website.py +93,Knowledge Base,அறிவு சார்ந்த DocType: Workflow State,briefcase,பெட்டி -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},மதிப்பு மாற்ற முடியாது {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},மதிப்பு மாற்ற முடியாது {0} DocType: Feedback Request,Is Manual,கையேடு உள்ளது DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","- பசுமை, ஆபத்து - ரெட், எதிர்மாறான - பிளாக், முதன்மை - டார்க் ப்ளூ, தகவல் - லைட் ப்ளூ, எச்சரிக்கை - ஆரஞ்சு வெற்றி: உடை பொத்தானை நிறம் குறிக்கிறது" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"எந்த அறிக்கை ஏற்றப்பட்டது. பயன்படுத்த கேள்வி, அறிக்கை / [அறிக்கை பெயர்] ஒரு அறிக்கை ரன் செய்யவும்." @@ -2584,7 +2588,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,முன் apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,பாத்திரம் மூலம் apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,காணாமல் புலங்கள் apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,தவறான புலம் பெயர் '{0}' autoname உள்ள -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ஒரு ஆவணம் வகை தேடு +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ஒரு ஆவணம் வகை தேடு apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,துறையில் கூட சமர்ப்பித்த பின்னர் எடிட் இருக்க அனுமதி DocType: Custom DocPerm,Role and Level,பங்கு மற்றும் நிலை DocType: File,Thumbnail URL,சிறு பட URL @@ -2601,18 +2605,19 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + g) DocType: Contact,More Information,மேலும் தகவல் DocType: Desktop Icon,Desktop Icon,டெஸ்க்டாப் ஐகான் -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,உங்கள் கட்டணம் வெற்றிகரமாக ஏற்றுக் கொள்ளப்பட்டது +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,உங்கள் கட்டணம் வெற்றிகரமாக ஏற்றுக் கொள்ளப்பட்டது apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,மன்னிக்கவும்! இந்த பக்கத்தைப் பார்க்க அனுமதி இல்லை. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,குறிப்பு: திருத்த இருமுறை கிளிக் செல்லின் DocType: Workflow State,bell,மணி apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,மின்னஞ்சல் எச்சரிக்கை பிழை apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,இந்த ஆவணத்தில் பகிரவும் +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,அமைப்பு> பயனர் அனுமதிகள் மேலாளர் apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,அது குழந்தைகள் உள்ளது என {0} {1} ஒரு இலை முனை இருக்க முடியாது DocType: Communication,Info,தகவல் -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,இணைப்பு சேர்க்க +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,இணைப்பு சேர்க்க DocType: Communication,Email,மின்னஞ்சல் apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,உங்கள் செய்தி நன்றி -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,படித்ததற்கான சான்று அனுப்பவும் +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,படித்ததற்கான சான்று அனுப்பவும் DocType: Stripe Settings,Stripe Settings,கோடுகள் அமைப்புகள் DocType: Stripe Settings,Stripe Settings,கோடுகள் அமைப்புகள் DocType: Dropbox Settings,Dropbox Setup via Site Config,தள கட்டமைப்பு வழியாக டிராப்பாக்ஸ் அமைப்பு @@ -2691,6 +2696,7 @@ DocType: DocType,Web View,இணையப் பார்வை apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,எச்சரிக்கை: இந்த அச்சு வடிவம் பழைய பாணி உள்ளது மற்றும் API வழியாக உருவாக்கப்படும் முடியாது. DocType: DocField,Print Width,அச்சு அகலம் ,Setup Wizard,அமைவு வழிகாட்டி +DocType: Address,GST State Number,ஜிஎஸ்டி மாநில எண் DocType: User,Allow user to login only before this hour (0-24),பயனர் இந்த மணி நேரத்திற்கு முன் தான் உள்ளே செல்ல அனுமதிக்க (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,அடைவு கட்டாயமாகும் apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2719,7 +2725,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,சிறிய உரை apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,நிர்வாகி அணுகப்பட்டது {0} ம் {1} ஐபி முகவரி வழியாக {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,சமங்களின் -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',துறையில் விருப்பங்கள் 'டைனமிக் லிங்க்' வகை 'DOCTYPE' என விருப்பங்கள் மற்றொரு இணைப்பு துறையில் சுட்டி வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',துறையில் விருப்பங்கள் 'டைனமிக் லிங்க்' வகை 'DOCTYPE' என விருப்பங்கள் மற்றொரு இணைப்பு துறையில் சுட்டி வேண்டும் DocType: About Us Settings,Team Members Heading,குழு உறுப்பினர் தலைப்பு apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,தவறான CSV வடிவத்தில் apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,காப்பு எண்ணிக்கை அமை @@ -2730,7 +2736,7 @@ DocType: Contact,Contact,தொடர்பு DocType: User,Third Party Authentication,மூன்றாவது கட்சி அங்கீகாரம் DocType: Website Settings,Banner is above the Top Menu Bar.,பதாகை மேலே மெனு பார் மேலே உள்ளது. DocType: Razorpay Settings,API Secret,API இரகசிய -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ஏற்றுமதி அறிக்கை: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ஏற்றுமதி அறிக்கை: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} இல்லை DocType: Email Account,Port,துறைமுகம் DocType: Print Format,Arial,Arial @@ -2753,7 +2759,7 @@ DocType: Kanban Board Column,Column Name,வரிசை பெயர் DocType: Language,Based On,அடிப்படையில் apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,முன்னிருப்பாக்கு apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe சேவையக URL பாருங்கள் -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,"துறை வகை {0} {1} சட்டிகளை முடியாது என்பதால்," +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,"துறை வகை {0} {1} சட்டிகளை முடியாது என்பதால்," DocType: Communication,Email Account,மின்னஞ்சல் கணக்கு DocType: Workflow State,Download,பதிவிறக்கம் DocType: Blog Post,Blog Intro,வலைப்பதிவு அறிமுகம் @@ -2764,7 +2770,7 @@ DocType: Web Page,Insert Code,குறியீடு செருக DocType: ToDo,Low,குறைந்த apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,நீங்கள் Jinja மாதிரியாக்கம் பயன்படுத்தி ஆவணத்தில் இருந்து மாறும் பண்புகள் சேர்க்க முடியும். apps/frappe/frappe/commands/site.py +451,Invalid limit {0},தவறான வரம்பு {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ஒரு ஆவணம் வகை பட்டியல் +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ஒரு ஆவணம் வகை பட்டியல் DocType: Event,Ref Type,Ref வகை apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","நீங்கள் புதிய பதிவுகள் பதிவேற்றுவீர்கள் என்றால், ""பெயர்"" (ஐடி) நிரல் காலியாக விட்டுவிடலாம்." DocType: Address,Chattisgarh,சட்டீஸ்கர் @@ -2786,26 +2792,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,என அச்சு அனுப்பவும் PDF DocType: Web Form,Amount,தொகை DocType: Workflow Transition,Allowed,அனுமதித்த -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ஒரு வடிவத்தில் ஒரே ஒரு அயல் இருக்க முடியாது +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ஒரு வடிவத்தில் ஒரே ஒரு அயல் இருக்க முடியாது apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},கோப்பு வடிவம் எழுத முடியவில்லை {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,இயல்புநிலை அமைப்புகளை மீட்டமை? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,செல்லாத முகப்பு பக்கம் apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,தவறான புகுபதிவு. மீண்டும் முயற்சி செய். -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},வரிசையில் இணைப்பு அல்லது அட்டவணை வகைப் புலம் {0} தேவையான விருப்பங்கள் {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},வரிசையில் இணைப்பு அல்லது அட்டவணை வகைப் புலம் {0} தேவையான விருப்பங்கள் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},வரிசையில் இணைப்பு அல்லது அட்டவணை வகைப் புலம் {0} தேவையான விருப்பங்கள் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},வரிசையில் இணைப்பு அல்லது அட்டவணை வகைப் புலம் {0} தேவையான விருப்பங்கள் {1} DocType: Auto Email Report,Send only if there is any data,எந்த தரவு இருந்தால் மட்டுமே அனுப்பவும் apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,வடிகட்டிகள் மீட்டமை -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: முன் அதிக அளவு அமைக்கப்படுகின்றன நிலை 0 மணிக்கு அனுமதி அமைக்க வேண்டும் +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: முன் அதிக அளவு அமைக்கப்படுகின்றன நிலை 0 மணிக்கு அனுமதி அமைக்க வேண்டும் apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},வேலையை மூலம் மூடப்பட்டது {0} DocType: Integration Request,Remote,தொலை -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,கணக்கிடுங்கள் +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,கணக்கிடுங்கள் apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,முதல் DOCTYPE தேர்ந்தெடுக்கவும் apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,உங்கள் மின்னஞ்சலை உறுதிப்படுத்துக apps/frappe/frappe/www/login.html +42,Or login with,அல்லது உள்நுழைய DocType: Error Snapshot,Locals,உள்ளூர் apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},வழியாகத் தொடர்புகொள்ளும் {0} ம் {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} ஒரு கருத்தில் உங்களைக் குறிப்பிட்டார் {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,எ.கா. (55 + 434) / 4 அல்லது = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,எ.கா. (55 + 434) / 4 அல்லது = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} தேவைப்படுகிறது DocType: Integration Request,Integration Type,ஒருங்கிணைப்பு வகை DocType: Newsletter,Send Attachements,Attachements அனுப்பவும் @@ -2816,15 +2822,15 @@ DocType: DocField,Perm Level,நிலை PERM apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,இன்றைய அட்டவணை நிகழ்வுகள் DocType: Web Page,Web Page,வலை பக்கம் DocType: Blog Category,Blogger,பதிவர் -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'குளோபல் சர்ச்' வகை அனுமதி இல்லை {0} வரிசையில் {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'குளோபல் சர்ச்' வகை அனுமதி இல்லை {0} வரிசையில் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'குளோபல் சர்ச்' வகை அனுமதி இல்லை {0} வரிசையில் {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'குளோபல் சர்ச்' வகை அனுமதி இல்லை {0} வரிசையில் {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,காண்க பட்டியல் -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},தேதி வடிவமைப்பில் இருக்க வேண்டும் : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},தேதி வடிவமைப்பில் இருக்க வேண்டும் : {0} DocType: Workflow,Don't Override Status,நிலைமை புறக்கணிக்க வேண்டாம் apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ஒரு மதிப்பீடு கொடுக்க கொள்ளவும். apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} கருத்து வேண்டுகோள் apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,தேடல் கால -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,முதல் பயனர் : நீங்கள் +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,முதல் பயனர் : நீங்கள் apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,தேர்வு பத்திகள் DocType: Translation,Source Text,மூலத்தொடர் apps/frappe/frappe/www/login.py +55,Missing parameters for login,உள்நுழைவு காணாமல் அளவுருக்கள் @@ -2846,7 +2852,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,இறக்குமதி DocType: ToDo,Assigned By,அளிக்கப்பட்ட apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,நீங்கள் துறைகளில் நிலைகளை அமைக்க தனிப்பயனாக்கு படிவம் பயன்படுத்த முடியும் . -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,மண்டலத்தைத் தேர்ந்தெடுக்கவும் +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,மண்டலத்தைத் தேர்ந்தெடுக்கவும் DocType: Custom DocPerm,Level,நிலை DocType: Custom DocPerm,Report,புகார் apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,அளவு 0 விட அதிகமாக இருக்க வேண்டும். @@ -2866,7 +2872,7 @@ DocType: Website Theme,Background,பின்னணி DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","பயனர் அனுமதிகள் விண்ணப்பிக்க பயன்படுத்தப்படுகின்றன டாக்டைப்கள் JSON பட்டியல். காலியாக இருந்தால், அனைத்து இணைக்கப்பட்ட டாக்டைப்கள் பயனர் அனுமதிகள் விண்ணப்பிக்க பயன்படுத்தப்படுகின்றன." DocType: Report,Ref DocType,Ref டாக்டைப்பின் apps/frappe/frappe/www/feedback.py +42,Please add a rating,ஒரு மதிப்பீடு சேர்க்கவும் -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} : அமைக்க முடியவில்லை ரத்து இல்லாமல் திருத்தம் +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} : அமைக்க முடியவில்லை ரத்து இல்லாமல் திருத்தம் apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,முழு பக்கம் DocType: DocType,Is Child Table,குழந்தைகள் அட்டவணை உள்ளது apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} {1} ஒன்றாக இருக்க வேண்டும் @@ -2881,7 +2887,7 @@ DocType: Website Slideshow,This goes above the slideshow.,இந்த காட apps/frappe/frappe/config/setup.py +260,Install Applications.,பயன்பாடுகளை நிறுவ . DocType: Contact,Last Name,கடந்த பெயர் DocType: Event,Private,தனிப்பட்ட -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,இன்றைக்கு எந்த எச்சரிக்கைகள் +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,இன்றைக்கு எந்த எச்சரிக்கைகள் DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF ஆக மின்னஞ்சல் அச்சிடுக இணைப்புகளை அனுப்ப (பரிந்துரைக்கப்படுகிறது) DocType: Web Page,Left,விட்டு DocType: Event,All Day,அனைத்து தினம் @@ -2895,7 +2901,7 @@ DocType: Event,Send an email reminder in the morning,காலையில் DocType: Blog Post,Published On,ம் தேதி வெளியிடப்பட்ட DocType: Contact,Gender,பாலினம் apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,காணாமல் கட்டாய தகவல்: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,களம் '{0}' அது அல்லாத தனிப்பட்ட மதிப்புகள் உள்ளது என தனித்த அமைக்க +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,களம் '{0}' அது அல்லாத தனிப்பட்ட மதிப்புகள் உள்ளது என தனித்த அமைக்க apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,செருகி 200 கோரிக்கை அனுமதி DocType: Footer Item,URL,URL ஐ DocType: ToDo,Reference Type,குறிப்பு வகை @@ -2908,7 +2914,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,எச்சரிக்கை-அறிகுறி DocType: Workflow State,User,பயனர் DocType: Website Settings,"Show title in browser window as ""Prefix - title""",உலாவி சாளரத்தில் நிகழ்ச்சியின் தலைப்பு "வள் - தலைப்பு" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ஆவண வகை உள்ள உரை +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ஆவண வகை உள்ள உரை apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,இயக்கவும் டெஸ்ட் apps/frappe/frappe/handler.py +91,Logged Out,வெளியேற்றப்படுவீர்கள் apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,மேலும் ... @@ -2935,13 +2941,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,தற்போது காண்பதில் DocType: DocField,Default,இயல்புநிலை apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} சேர்க்கப்பட்டது -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',தேடல் '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',தேடல் '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,முதல் அறிக்கை காப்பாற்றுங்கள் apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} சந்தாதாரர்கள் சேர்ந்தன apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,இல்லை DocType: Workflow State,star,நட்சத்திரம் -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,பிரிக்கப்பட்ட மதிப்புகள் -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},வகை நாணய அதிகபட்சம் அகலம் வரிசையில் 100px {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,பிரிக்கப்பட்ட மதிப்புகள் +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},வகை நாணய அதிகபட்சம் அகலம் வரிசையில் 100px {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},உங்கள் கருத்தைப் பகிர கொள்ளவும் {0} apps/frappe/frappe/config/website.py +13,Content web page.,உள்ளடக்கத்தை வலைப்பக்கத்தில். apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ஒரு புதிய பங்கு சேர் @@ -2960,7 +2966,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,"செல்லுபடியாகும், LDAP பயனர்" apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} தவறான நிலை apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',மற்றொரு கட்டண முறையை தேர்ந்தெடுக்கவும். பேபால் நாணய பரிவர்த்தனைகள் ஆதரிக்கவில்லை '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,தேடல் துறையில் {0} தவறானது +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,தேடல் துறையில் {0} தவறானது DocType: Workflow State,ok-circle,"சரி, வட்டம்" apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',நீங்கள் கேட்டு 'வாடிக்கையாளர்கள் ஆரஞ்சு கண்டுபிடிக்க' மூலம் விஷயங்களை கண்டுபிடிக்க முடியும் apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,மன்னிக்கவும்! பயனர் தங்களுடைய சொந்த இசைப்பதிவு முழுமையாக அணுக வேண்டும். @@ -3022,7 +3028,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,மெட்டா வடிகட்டி DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,இந்த படிவத்தை ஒரு வலை பக்கம் உள்ளது என்றால் உரை வலை பக்கம் இணைப்பு காட்டப்படும். இணைப்பு பாதை தானாக page_name` மற்றும் `parent_website_route`` அடிப்படையில் DocType: Feedback Request,Feedback Trigger,கருத்து தூண்டல் -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,முதல் {0} அமைக்கவும் +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,முதல் {0} அமைக்கவும் DocType: Unhandled Email,Message-id,செய்தி ஐடி DocType: Patch Log,Patch,சிறு நிலம் DocType: Async Task,Failed,தோல்வி diff --git a/frappe/translations/te.csv b/frappe/translations/te.csv index f206dbc269..0aba56adbf 100644 --- a/frappe/translations/te.csv +++ b/frappe/translations/te.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,ఫేస్బుక్ యూజర్ పే DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,గమనిక: బహుళ సెషన్స్ మొబైల్ పరికరం విషయంలో అనుమతించబడతారు apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},వినియోగదారు కోసం అనుమతించిన ఇమెయిల్ ఇన్బాక్స్ {వినియోగదారులు} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ఈ ఈమెయిల్ పంపడం కుదరదు. మీరు ఈ నెలలో {0} ఇమెయిల్స్ పంపడం పరిమితి దాటింది. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,శాశ్వతంగా {0} సమర్పించండి? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,శాశ్వతంగా {0} సమర్పించండి? DocType: Address,County,కౌంటీ DocType: Workflow,If Checked workflow status will not override status in list view,నిరూపితమైన వర్క్ఫ్లో స్థితి జాబితా దృష్టిలో స్థితి భర్తీ కాకపొతే apps/frappe/frappe/client.py +280,Invalid file path: {0},చెల్లని ఫైల్ మార్గం: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ఒక apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ట్రీ DocType: User,User Emails,వాడుకరి ఇమెయిళ్ళు DocType: User,Username,యూజర్ పేరు -apps/frappe/frappe/model/base_document.py +581,Value too big,విలువ చాలా పెద్ద +apps/frappe/frappe/model/base_document.py +580,Value too big,విలువ చాలా పెద్ద DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Run Script టెస్ట్ DocType: Contact,Department,శాఖ @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,చిట్టాలు DocType: Custom DocPerm,This role update User Permissions for a user,ఒక వినియోగదారు కోసం ఈ పాత్ర నవీకరణ వినియోగదారు అనుమతులను apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},పేరుమార్చు {0} DocType: Workflow State,zoom-out,జూమ్ అవుట్ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,తెరువబడలేదు {0} దాని ఉదాహరణకు ఓపెన్ ఉన్నప్పుడు +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,తెరువబడలేదు {0} దాని ఉదాహరణకు ఓపెన్ ఉన్నప్పుడు apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,టేబుల్ {0} ఖాళీగా ఉండకూడదు apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,ఆవర్జాలకు తో apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,చిత్రాలు DocType: Communication,Reference Owner,రిఫరెన్స్ యజమాని DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,చిన్న తిరుగుతున్న భిన్నం యూనిట్ (నాణెం). ఇది 0.01 గా నమోదు చేయాలి మరియు USD కోసం ఉదా 1 సెంటు DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, రో {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, రో {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,దయచేసి ఒక పూర్తి పేరు ఇవ్వండి. apps/frappe/frappe/model/document.py +904,Beginning with,తో ప్రారంభమై apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,డేటా దిగుమతి మూస @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,మాతృ DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ప్రారంభించబడితే, పాస్వర్డ్ బలం కనీస పాస్ వర్డ్ స్కోర్ విలువ ఆధారంగా అమలు చేయబడతాయి. 2 యొక్క విలువ మీడియం బలమైన ఉండటం మరియు 4 చాలా బలమైన ఉండటం." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","ప్రారంభించబడితే, పాస్వర్డ్ బలం కనీస పాస్ వర్డ్ స్కోర్ విలువ ఆధారంగా అమలు చేయబడతాయి. 2 యొక్క విలువ మీడియం బలమైన ఉండటం మరియు 4 చాలా బలమైన ఉండటం." DocType: About Us Settings,"""Team Members"" or ""Management""","జట్టు సభ్యులు" లేదా "నిర్వహణ" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',రంగంలో 'తనిఖీ' రకం కోసం డిఫాల్ట్ గాని '0' లేదా '1' ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',రంగంలో 'తనిఖీ' రకం కోసం డిఫాల్ట్ గాని '0' లేదా '1' ఉండాలి apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,నిన్న DocType: Contact,Designation,హోదా DocType: Test Runner,Test Runner,టెస్ట్ రన్నర్ @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,ప్రచురించబడింద DocType: Email Group,Email Group,ఇమెయిల్ గ్రూప్ DocType: Note,Seen By,చూడబడింది apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,బహుళ జోడించండి -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ఇష్టం లేదు +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ఇష్టం లేదు apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ఫీల్డ్ కోసం ప్రదర్శన లేబుల్ సెట్ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},సరికాని విలువ: {0} ఉండాలి {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","మార్పు రంగంలో లక్షణాలు (దాచిపెట్టు, చదవడానికి మాత్రమే అనుమతి మొదలైనవి)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,మమ్ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,అడ్మినిస్ట్రేటర్ లాగ్ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Etc "సేల్స్ ప్రశ్నా, మద్దతు ప్రశ్న" వంటి సంప్రదించండి ఎంపికలు, ఒక కొత్త లైన్ ప్రతి లేదా కామాలతో వేరు." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. డౌన్లోడ్ -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,చొప్పించు +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,చొప్పించు apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},ఎంచుకోండి {0} DocType: Print Settings,Classic,క్లాసిక్ DocType: Desktop Icon,Color,రంగు @@ -122,7 +122,7 @@ DocType: Translation,Translation,అనువాద apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ఇన్స్టాల్ apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,శ్రీ DocType: Custom Script,Client,క్లయింట్ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,మీరు అది లోడ్ చేసిన తర్వాత ఈ రూపం మారిస్తే +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,మీరు అది లోడ్ చేసిన తర్వాత ఈ రూపం మారిస్తే DocType: User Permission for Page and Report,User Permission for Page and Report,పేజ్ మరియు నివేదిక కోసం వాడుకరి అనుమతి DocType: Address,Himachal Pradesh,హిమాచల్ ప్రదేశ్ DocType: System Settings,"If not set, the currency precision will depend on number format","సెట్ చేయకపోతే, కరెన్సీ ఖచ్చితత్వము సంఖ్య ఫార్మాట్ ఆధారపడి ఉంటుంది" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,కారణము apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,యూజర్ పేరు రాయండి DocType: Email Unsubscribe,Email Unsubscribe,ఇమెయిల్ చందా రద్దుచేసే DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,ఉత్తమ ఫలితాల కోసం ఒక పారదర్శక నేపథ్యం సుమారు వెడల్పు 150px ఒక చిత్రాన్ని ఎంచుకోండి. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,సిస్టం మేనేజర్ అవుతుంది మొదటి వినియోగదారు (మీరు తర్వాత మార్చవచ్చు). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,సిస్టం మేనేజర్ అవుతుంది మొదటి వినియోగదారు (మీరు తర్వాత మార్చవచ్చు). ,App Installer,App ఇన్స్టాలర్ DocType: Workflow State,circle-arrow-up,సర్కిల్-బాణం అప్ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,లోడ్ అవుతోంది ... DocType: Email Domain,Email Domain,ఇమెయిల్ డొమైన్ DocType: Workflow State,italic,ఇటాలిక్ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,అందరికి -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: సృష్టించు లేకుండా దిగుమతి సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: సృష్టించు లేకుండా దిగుమతి సెట్ చెయ్యబడదు apps/frappe/frappe/config/desk.py +26,Event and other calendars.,ఈవెంట్ మరియు ఇతర క్యాలెండర్లు లేవు. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,అన్ని ఖాళీలను వ్యాఖ్యను submit అవసరం. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,నిలువు క్రమం డ్రాగ్ @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,ప్రామాణిక స apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,హోం మరియు అటాచ్మెంట్లు ఫోల్డర్లను తొలగించడం సాధ్యపడదు apps/frappe/frappe/config/desk.py +19,Files,ఫైళ్లు apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,అనుమతులు వారు కేటాయిస్తారు ఏమి పాత్రలు ఆధారంగా యూజర్లు అనువర్తిత కలుగుతుంది. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,ఈ పత్రానికి సంబంధించిన ఇమెయిల్స్ పంపడం అనుమతి లేదు -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,దయచేసి {0} క్రమం / సమూహం నుండి కనీసం 1 కాలమ్ ఎంచుకోండి +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,ఈ పత్రానికి సంబంధించిన ఇమెయిల్స్ పంపడం అనుమతి లేదు +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,దయచేసి {0} క్రమం / సమూహం నుండి కనీసం 1 కాలమ్ ఎంచుకోండి DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,మీరు శాండ్బాక్స్ API ని ఉపయోగించి మీ చెల్లింపు పరీక్షిస్తున్నాయి ఈ తనిఖీ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,మీరు ఒక ప్రామాణిక వెబ్సైట్ థీమ్ తొలగించడానికి అనుమతి లేదు DocType: Feedback Trigger,Example,ఉదాహరణ @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,మొత్తం చందాదార apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","ఒక పాత్ర Level 0 యాక్సెస్ చెయ్యకపోతే, అప్పుడు ఉన్నత స్థాయిలలో అర్థరహితమని." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,ఇలా సేవ్ DocType: Communication,Seen,సీన్ -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,మరిన్ని వివరాలకు చూపించు +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,మరిన్ని వివరాలకు చూపించు DocType: System Settings,Run scheduled jobs only if checked,తనిఖీ ఉంటే మాత్రమే షెడ్యూల్ ఉద్యోగాలు అమలు apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,విభాగం శీర్షికలు ఎనేబుల్ అయితే మాత్రమే చూపబడుతుంది apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,ఆర్కైవ్ @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,దాచు శీర్షిక DocType: Address,Current,ప్రస్తుత DocType: Address,Current,ప్రస్తుత -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,సంబంధిత పత్రాలు apps/frappe/frappe/config/core.py +17,Groups of DocTypes,డాక్యుమెంట్ రకాలు గుంపులు DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,తొలగించడానికి సర్కిల్ @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,వడపోత apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} వంటి ప్రత్యేక అక్షరాలు ఉండకూడదు {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ఒకేసారి పలు విలువలు నవీకరించండి. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,లోపం: మీరు తెరిచి తర్వాత డాక్యుమెంట్ మారిస్తే -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస దొరకలేదు. దయచేసి సెటప్> ముద్రణ మరియు బ్రాండింగ్> చిరునామా మూస నుండి ఒక కొత్త సృష్టించడానికి. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} లాగిన్: {1} DocType: Address,West Bengal,వెస్ట్ బెంగాల్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: అప్పగించుము Submittable లేకపోతే సమర్పించండి సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: అప్పగించుము Submittable లేకపోతే సమర్పించండి సెట్ చెయ్యబడదు DocType: Social Login Keys,Facebook,ఫేస్బుక్ apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",ద్వారా వడపోత "{0}" DocType: Salutation,Administrator,అడ్మినిస్ట్రేటర్ @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,బ్లాగ్ శీర్షిక apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,ప్రామాణిక పాత్రలు నిలిపివేయడం సాధ్యం కాదు DocType: Address,Mizoram,మిజోరం DocType: Newsletter,Newsletter,వార్తా -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ద్వారా ఆర్డర్ లో ఉప ప్రశ్న ఉపయోగించలేరు +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ద్వారా ఆర్డర్ లో ఉప ప్రశ్న ఉపయోగించలేరు DocType: Web Form,Button Help,బటన్ సహాయం DocType: Kanban Board Column,purple,ఊదా DocType: About Us Settings,Team Members,జట్టు సభ్యులు @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","మీ సభ్యత్వ {0} లో గడువు. పునరుద్ధరించడానికి, {1}." DocType: Workflow State,plus-sign,ప్లస్ సైన్ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,సెటప్ ఇప్పటికే సంపూర్ణ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ఇన్స్టాల్ కాలేదు +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ఇన్స్టాల్ కాలేదు DocType: Workflow State,Refresh,రిఫ్రెష్ DocType: Event,Public,పబ్లిక్ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ఏమీ చూపించు @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ఇష్టప apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ఇమెయిల్ మద్దతు DocType: DocField,Print Hide If No Value,ప్రింట్ దాచు నో విలువ DocType: Event,yellow,పసుపు -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,తప్పక ప్రచురించబడింది ఫీల్డ్ ఒక చెల్లుబాటు అయ్యే FIELDNAME ఉంటుంది +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,తప్పక ప్రచురించబడింది ఫీల్డ్ ఒక చెల్లుబాటు అయ్యే FIELDNAME ఉంటుంది apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,అప్లోడ్ జోడింపు DocType: Block Module,Block Module,బ్లాక్ మాడ్యూల్ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ఎగుమతి మూస @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},ఒక కొత్త ఖాతా వద్ద మీరు కోసం సృష్టించబడింది {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,సూచనలు ఇమెయిల్ apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,సూచనలు ఇమెయిల్ -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ఎంటర్ ఇమెయిల్ గ్రహీత (లు) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ఎంటర్ ఇమెయిల్ గ్రహీత (లు) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,ఇమెయిల్ ఫ్లాగ్ క్యూ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ఓపెన్ గుర్తించడానికి కాదు {0}. ఏదో ప్రయత్నించండి. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,సందేశం ID DocType: Property Setter,Field Name,ఫీల్డ్ పేరు apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite కన్ఫిగర్ చేయబడలేదు. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,లేదా -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,మాడ్యూల్ పేరు ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,కొనసాగించు +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,మాడ్యూల్ పేరు ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,కొనసాగించు DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,సర్టిఫికెట్ DocType: User,Tile,టైల్ @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,అన్ని సంస్కరణలు చూపించు DocType: Workflow State,Print,ప్రింట్ DocType: User,Restrict IP,IP నిరోధించు +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,డాష్బోర్డ్ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ఈ సమయంలో ఇమెయిల్స్ పంపడం సాధ్యం కాలేదు apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,శోధించండి లేదా కమాండ్ టైప్ DocType: Communication,Timeline Name,కాలక్రమం పేరు @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,సేల్స్ మాస్టర్ apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ఒక చివరి దశలో apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,డాక్యుమెంట్ టైప్ (DOCTYPE) మీరు ఈ రంగానికి అనుసంధానం చేయుటకు కావలసిన పేరు. ఉదా కస్టమర్ DocType: User,Roles Assigned,పాత్రలు అసైన్డ్ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,శోధన సహాయం -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,శోధన సహాయం +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,శోధన సహాయం +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,శోధన సహాయం DocType: Top Bar Item,Parent Label,మాతృ లేబుల్ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","మీ ప్రశ్న అందింది. త్వరలో తిరిగి ప్రత్యుత్తరం ఉంటుంది. మీరు ఏ అదనపు సమాచారం ఉంటే, ఈ మెయిల్ కు ప్రత్యుత్తరం దయచేసి." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,అనుమతులు స్వయంచాలకంగా ప్రామాణిక నివేదికలు మరియు శోధనలు కు అనువదిస్తారు. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,మార్చు శీర్షిక DocType: File,File URL,ఫైలు URL DocType: Version,Table HTML,టేబుల్ HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ఫలితాలు లేవు 'కనుగొనబడలేదు

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,చందాదార్లు జోడించండి apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,నేడు కోసం రాబోయే ఈవెంట్స్ DocType: Email Alert Recipient,Email By Document Field,డాక్యుమెంట్ ఫీల్డ్ ద్వారా ఇమెయిల్ @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,మొత్తం రంగంలో apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,యూజర్ భాగస్వామ్యం తప్పనిసరి DocType: DocField,Hidden,హిడెన్ DocType: Web Form,Allow Incomplete Forms,అసంపూర్ణ పత్రాలు అనుమతించు -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} మొదటి సెట్ చేయాలి +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} మొదటి సెట్ చేయాలి apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","సాధారణ పదబంధాలు నివారించడానికి, కొన్ని పదాలను ఉపయోగించండి." DocType: Workflow State,plane,విమానం -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,అయ్యో. మీ చెల్లింపు విఫలమైంది. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","మీరు కొత్త రికార్డులు అప్లోడ్ చేస్తే ఉంటే, "సిరీస్ నామకరణ", తప్పనిసరి అవుతుంది." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,నేడు కోసం హెచ్చరికలు పొందండి +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,నేడు కోసం హెచ్చరికలు పొందండి apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE మాత్రమే నిర్వాహకుడు ద్వారా నామకరణం చేయవచ్చు apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},మారిన విలువ {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,ధృవీకరణ కోసం మీ ఇమెయిల్ తనిఖీ చేయండి -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,మడత రూపం చివరిలో ఉండకూడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,మడత రూపం చివరిలో ఉండకూడదు DocType: Communication,Bounced,ఎగిరిన DocType: Deleted Document,Deleted Name,తొలగించినవి పేరు apps/frappe/frappe/config/setup.py +14,System and Website Users,వ్యవస్థ మరియు వెబ్సైట్ వాడుకదారులకు @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,డాక్యుమ DocType: GSuite Templates,Destination ID,గమ్యం ID DocType: Desktop Icon,List,జాబితా DocType: Communication,Link Name,లింక్ పేరు -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,ఫీల్డ్ {0} వరుసగా {1} దాచబడదు మరియు డిఫాల్ట్ లేకుండా తప్పనిసరి +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,ఫీల్డ్ {0} వరుసగా {1} దాచబడదు మరియు డిఫాల్ట్ లేకుండా తప్పనిసరి DocType: System Settings,mm/dd/yyyy,mm / dd / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,చెల్లని పాస్వర్డ్: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,చెల్లని పాస్వర్డ్: DocType: Print Settings,Send document web view link in email,ఇమెయిల్ పత్రం వెబ్ వీక్షణ లింక్ను పంపండి apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,పత్రం కోసం మీ అభిప్రాయం {0} విజయవంతంగా సేవ్ ఉంది apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,మునుపటి -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} వరుసలు {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",సబ్ కరెన్సీ. ఉదా "సెంట్" కోసం apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,అప్లోడ్ చేసిన ఫైల్ ఎంచుకోండి @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,లింక్ apps/frappe/frappe/utils/file_manager.py +96,No file attached,జత సంఖ్య ఫైలు DocType: Version,Version,వెర్షన్ DocType: User,Fill Screen,స్క్రీన్ పూరించడానికి -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","కారణంగా డేటా లేదు, ఈ చెట్టు నివేదిక ప్రదర్శించడం సాధ్యం కాలేదు. ఎక్కువగా, అది కారణంగా అనుమతులు బయటకు ఫిల్టర్ ఉంది." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి దయచేసి సెటప్ డిఫాల్ట్ ఇమెయిల్ ఖాతా +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","కారణంగా డేటా లేదు, ఈ చెట్టు నివేదిక ప్రదర్శించడం సాధ్యం కాలేదు. ఎక్కువగా, అది కారణంగా అనుమతులు బయటకు ఫిల్టర్ ఉంది." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. ఫైల్ ఎంచుకోండి apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,అప్లోడ్ ద్వారా సవరించు -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",డాక్యుమెంట్ రకము ... ఉదా కస్టమర్ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",డాక్యుమెంట్ రకము ... ఉదా కస్టమర్ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,కండిషన్ '{0}' చెల్లదు DocType: Workflow State,barcode,బార్కోడ్ apps/frappe/frappe/config/setup.py +232,Add your own translations,మీ సొంత అనువాదాలు జోడించవచ్చు @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,బుధవారం apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","కాకుండా పాత్ర ఆధారిత అనుమతి రూల్స్, మీరు డాక్యుమెంట్ రకాలు ఆధారంగా వినియోగదారు అనుమతులను దరఖాస్తు చేసుకోవచ్చు." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","ఈ అనుమతులు అనుమతి రికార్డు ముడిపడి ఉంది అన్ని లావాదేవీలకు అనువర్తిస్తుంది. కంపెనీ సి యూజర్ X యొక్క యూజర్ అనుమతులు జోడించబడింది ఉంటే ఉదాహరణకు, యూజర్ X మాత్రమే ఒక లింక్ విలువ కంపెనీ సి కలిగి లావాదేవీల చూడండి చెయ్యగలరు." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,చిత్రం రంగంలో చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,చిత్రం రంగంలో చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి DocType: OAuth Client,Token,టోకెన్ DocType: Property Setter,ID (name) of the entity whose property is to be set,దీని ఆస్తి ఎంటిటిని ID (పేరు) అమర్చవచ్చు ఉంది apps/frappe/frappe/limits.py +82,"To renew, {0}.","పునరుద్ధరించడానికి, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,సైడ్బార్ అంశాలు apps/frappe/frappe/installer.py +125,App {0} already installed,App {0} ఇప్పటికే ఇన్స్టాల్ DocType: Workflow State,exclamation-sign,ఆశ్చర్యార్థకం సైన్ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,అనుమతులు షో -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,కాలక్రమం రంగంలో ఒక లింక్ లేదా డైనమిక్ లింక్ ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,కాలక్రమం రంగంలో ఒక లింక్ లేదా డైనమిక్ లింక్ ఉండాలి apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,తేదీ పరిధి apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,గాంట్ apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},పేజీ {0} యొక్క {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,వె apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","ఎన్క్రిప్షన్ కీ చెల్లనిది, site_config.json తనిఖీ చేయండి" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,కు DocType: Kanban Board Column,darkgrey,ముదురు బూడిద రంగు -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},విజయవంతమైన: {0} కు {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},విజయవంతమైన: {0} కు {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,డెమో వినియోగదారు వివరాలు మార్చలేరు. https://erpnext.com వద్ద ఒక కొత్త ఖాతా కోసం సైన్ దయచేసి apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,మార్పులు చేయడానికి ఈ నకిలీ దయచేసి apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF తరం ఎందుకంటే బ్రోకెన్ చిత్రం లింకులు విఫలమైంది @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,ధ్వంసమయ్యే apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,సేవ్ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,ఏం మీరు సహాయం చేయాలి? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ఎంపిక కోసం ఎంపికలు. ఒక కొత్త లైన్ ప్రతి దానికీ. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,శాశ్వతంగా రద్దు {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,శాశ్వతంగా రద్దు {0}? DocType: Workflow State,music,సంగీతం DocType: Web Page,Settings,సెట్టింగులు apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Doctype రాయండి DocType: Print Format,Style Settings,శైలి సెట్టింగులు -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,విభజించే ఫీల్డ్ {0} చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,విభజించే ఫీల్డ్ {0} చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,మరిన్ని DocType: Contact,Sales Manager,అమ్మకాల నిర్వాహకుడు apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,పేరుమార్చు DocType: Print Format,Format Data,ఫార్మాట్ డేటా -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,ఇలా +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,ఇలా DocType: Customize Form Field,Customize Form Field,ఫారం ఫీల్డ్ అనుకూలీకరించండి apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,వాడుకరి అనుమతించు DocType: OAuth Client,Grant Type,గ్రాంట్ టైప్ apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ఒక వాడుకరి ద్వారా రీడ్ చేయదగిన పత్రాలను తనిఖీ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,జాబితా అనువర్తనం అనుమతి లేదు -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,వైల్డ్కార్డ్గా% ఉపయోగించుకోవడం -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","ఇమెయిల్ డొమైన్, ఈ ఖాతా కోసం కాన్ఫిగర్ ఒకటి సృష్టించు?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,వైల్డ్కార్డ్గా% ఉపయోగించుకోవడం +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","ఇమెయిల్ డొమైన్, ఈ ఖాతా కోసం కాన్ఫిగర్ ఒకటి సృష్టించు?" DocType: User,Reset Password Key,పాస్వర్డ్ రీసెట్ చెయ్యి కీ DocType: Email Account,Enable Auto Reply,ఆటో Reply ప్రారంభించు apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,చూడని @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ఒకసారి సెట్ DocType: Email Queue Recipient,Email Queue Recipient,ఇమెయిల్ క్యూ గ్రహీత DocType: Address,Nagaland,నాగాలాండ్ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,యూజర్ పేరు {0} ఇప్పటికే ఉంది -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} importable కాదు దిగుమతి సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} importable కాదు దిగుమతి సెట్ చెయ్యబడదు apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},మీ చిరునామా మూస లోపం ఉంది {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,HDD @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,పూర్తి పేరు నుం apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},మీరు రిపోర్ట్ యాక్సెస్ లేదు: {0} DocType: User,Send Welcome Email,స్వాగతం ఇమెయిల్ పంపండి apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,డౌన్లోడ్ అదే ఫార్మాట్ లో అన్ని వినియోగదారు అనుమతులను కలిగి CSV ఫైల్ అప్లోడ్. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,వడపోత తొలగించు +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,వడపోత తొలగించు DocType: Address,Daman and Diu,డామన్ మరియు డయ్యు DocType: Address,Personal,వ్యక్తిగత apps/frappe/frappe/config/setup.py +113,Bulk Rename,బల్క్ పేరుమార్చు @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","ప్రామాణిక doctype, డిఫాల్ట్ ముద్రణ ఫార్మాట్ ఉండకూడదు అనుకూలపరచండి ఫారంనుండి" DocType: Report,Query,ప్రశ్న DocType: DocType,Sort Order,క్రమబద్ధీకరణ క్రమం -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'లిస్ట్ వ్యూ' వరుసగా రకం {0} అనుమతించబడలేదు {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'లిస్ట్ వ్యూ' వరుసగా రకం {0} అనుమతించబడలేదు {1} DocType: Custom Field,Select the label after which you want to insert new field.,మీరు కొత్త రంగంలో ఇన్సర్ట్ కోరుకుంటున్న తర్వాత లేబుల్ ఎంచుకోండి. ,Document Share Report,డాక్యుమెంట్ Share నివేదిక DocType: User,Last Login,చివరి లాగిన్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME వరుసగా అవసరం {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME వరుసగా అవసరం {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,కాలమ్ DocType: Custom Field,Adds a custom field to a DocType,ఒక DOCTYPE ఒక కస్టమ్ ఫీల్డ్ జతచేస్తుంది DocType: File,Is Home Folder,హోం ఫోల్డర్ని @@ -594,7 +594,7 @@ DocType: File,Folder,ఫోల్డర్ DocType: DocField,Index,ఇండెక్స్ DocType: Email Group,Newsletter Manager,వార్తా మేనేజర్ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ఎంపిక 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,అన్ని పోస్ట్లు +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} కు {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,అభ్యర్ధనలు సమయంలో లోపం లాగ్. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ఇమెయిల్ గ్రూప్ విజయవంతంగా జతచేయబడింది. DocType: Address,Uttar Pradesh,ఉత్తర ప్రదేశ్ @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,సూచిక DocType: DocShare,Everyone,అందరూ DocType: Workflow State,backward,వెనుకబడిన -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: ఒకే పాత్ర స్థాయి మరియు అనుమతి మాత్రమే ఒక నియమం {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: ఒకే పాత్ర స్థాయి మరియు అనుమతి మాత్రమే ఒక నియమం {1} DocType: Email Queue,Add Unsubscribe Link,చందా రద్దుచేసే లింక్ జోడించండి apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ఇంకా వ్యాఖ్యలు లేవు. కొత్త చర్చను ప్రారంభించండి. DocType: Workflow State,share,వాటా @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,అన apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,చూడండి చందాదార్లు apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,కుమారి DocType: Website Theme,Background Color,నేపథ్య రంగు -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ఇమెయిల్ పంపడం అయితే కొన్ని లోపాలు ఉన్నాయి. మళ్ళి ప్రయత్నించండి. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ఇమెయిల్ పంపడం అయితే కొన్ని లోపాలు ఉన్నాయి. మళ్ళి ప్రయత్నించండి. DocType: Portal Settings,Portal Settings,పోర్టల్ సెట్టింగులు DocType: Web Page,0 is highest,0 అత్యధిక ఉంది apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,మీరు {0} ఈ కమ్యూనికేషన్ మళ్లీ లింక్ నిశ్చయించుకున్నారా? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,మమ్మల్ని సె apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,శోధిస్తోంది ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,శోధిస్తోంది ... DocType: Workflow State,text-width,టెక్స్ట్ వెడల్పు -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,ఈ రికార్డ్ కోసం గరిష్ట అటాచ్మెంట్ పరిమితిని చేరుకున్నారు. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,ఈ రికార్డ్ కోసం గరిష్ట అటాచ్మెంట్ పరిమితిని చేరుకున్నారు. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,క్రింది తప్పనిసరి ఖాళీలను నిండి ఉండాలి:
DocType: Email Alert,View Properties (via Customize Form),(అనుకూలపరచండి ఫారం ద్వారా) వీక్షణ గుణాలు DocType: Note Seen By,Note Seen By,గమనిక సీన్ బై @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,రాజస్థాన్ apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,నివేదిక బిల్డర్ నివేదికలు నివేదిక బిల్డర్ ద్వారా నేరుగా నిర్వహించబడతాయి. చేయటానికి ఏమి లేదు. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,దయచేసి మీ ఇమెయిల్ చిరునామాను ధృవీకరించండి apps/frappe/frappe/model/document.py +903,none of,ఎవరూ -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,నా కాపీని నాకు పంపండి +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,నా కాపీని నాకు పంపండి apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,వాడుకరి అనుమతులు అప్లోడ్ DocType: Dropbox Settings,App Secret Key,App సీక్రెట్ కీ apps/frappe/frappe/config/website.py +7,Web Site,వెబ్ సైట్ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,ఎంచుకున్న అంశాలు డెస్క్టాప్ చూపబడుతుంది -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} సింగిల్ రకాల సెట్ చేయబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} సింగిల్ రకాల సెట్ చేయబడదు apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,కంబన్ బోర్డు {0} ఉనికిలో లేదు. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} ప్రస్తుతం ఈ పత్రం చూస్తున్నారు DocType: ToDo,Assigned By Full Name,పూర్తి పేరు అప్పగించింది apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} నవీకరించబడింది -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,నివేదిక సింగిల్ రకాల సెట్ చేయబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,నివేదిక సింగిల్ రకాల సెట్ చేయబడదు apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} రోజుల క్రితం DocType: Email Account,Awaiting Password,అందించనివారు పాస్వర్డ్ DocType: Address,Address Line 1,చిరునామా పంక్తి 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","వర్క్ఫ్లో స్టేట్స్ (ఉదా డ్రాఫ్ట్ ఆమోదించబడింది, రద్దయింది)." DocType: Print Settings,Allow Print for Draft,డ్రాఫ్ట్ కోసం ప్రింట్ అనుమతిస్తుంది apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,సెట్ పరిమాణం -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,నిర్ధారించుకోవటానికి ఈ పత్రాన్ని సమర్పించి +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,నిర్ధారించుకోవటానికి ఈ పత్రాన్ని సమర్పించి DocType: Contact,Unsubscribed,తప్పుకునే apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,పేజీ మరియు నివేదిక కొరకు కస్టమ్ పాత్రలు సెట్ apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,రేటింగ్: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,డేటా దిగుమతి టూల్ DocType: Address,Dadra and Nagar Haveli,దాద్రా మరియు నగర్ హవేలి apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,ఫైళ్ళను ఎగుమతి కొన్ని సెకన్ల వేచి ఉండండి. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,మీ చిత్రం అటాచ్ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,మీ చిత్రం అటాచ్ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,వరుస విలువలు మార్చబడింది DocType: Workflow State,Stop,ఆపు DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,మీరు తెరవాలనుకుంటున్నారా పేజీకి లింక్. మీరు అది ఒక సమూహం మాతృ చేయడానికి కావాలా ఖాళీగా వదిలేయండి. @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,ఎడమ కు భాగస్ DocType: Help Article,Expert,నిపుణుల DocType: Workflow State,circle-arrow-right,సర్కిల్-మెట్ట కుడి DocType: LDAP Settings,LDAP Server Url,LDAP సర్వర్ Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,దాని {0} ఓపెన్ ఉన్నప్పుడు ఉదాహరణకు తెరువబడలేదు +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,దాని {0} ఓపెన్ ఉన్నప్పుడు ఉదాహరణకు తెరువబడలేదు apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,సంస్థాపన కోసం క్యూలో DocType: Custom DocPerm,Custom DocPerm,కస్టమ్ DocPerm DocType: Newsletter,Send Unsubscribe Link,చందా రద్దుచేసే లింక్ పంపండి @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} తొలగించాము DocType: Custom DocPerm,Apply User Permissions,వాడుకరి అనుమతులు వర్తించు DocType: User,Modules HTML,గుణకాలు HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,సెటప్> వినియోగదారు అనుమతులు మేనేజర్ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,మిస్సింగ్ విలువలు లు DocType: DocType,Other Settings,ఇతర సెట్టింగ్లు DocType: Social Login Keys,Frappe,ఫ్రాప్పే @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,ను బేరర్ టోక apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,ఎంపిక పత్రం apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,డాక్టర్ DocType: Event,Event,ఈవెంట్ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} లో, {1} రాశారు:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} లో, {1} రాశారు:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ప్రామాణిక రంగంలో తొలగించలేరు. మీరు అనుకుంటే మీరు దాచవచ్చు DocType: Top Bar Item,For top bar,టాప్ బార్ apps/frappe/frappe/utils/bot.py +148,Could not identify {0},గుర్తించలేకపోయింది {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,డెస్క్ యాక్సెస్ DocType: Workflow State,minus,మైనస్ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,సర్వర్ లోపం: మీ సర్వర్ లాగ్లను తనిఖీ లేదా టెక్ దయచేసి మద్దతును సంప్రదించండి. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,స్వాగతం ఇమెయిల్ పంపారు -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,యొక్క మొదటి ఉపయోగం కోసం కంప్యూటరును సిద్ధం లెట్. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,యొక్క మొదటి ఉపయోగం కోసం కంప్యూటరును సిద్ధం లెట్. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,ఫీచర్ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ఇప్పటికే నమోదు DocType: System Settings,Float Precision,ఫ్లోట్ ప్రెసిషన్ @@ -768,7 +767,7 @@ DocType: Web Form,Allow Print,ప్రింట్ అనుమతిస్త apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,అనువర్తనాలు ఇన్స్టాల్ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,వంటి తప్పనిసరి రంగంలో గుర్తుగా DocType: Communication,Clicked,క్లిక్ -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},అనుమతి లేదు '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},అనుమతి లేదు '{0}' {1} DocType: User,Google User ID,Google వాడుకరి ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,పంపడానికి షెడ్యూల్డ్ DocType: DocType,Track Seen,ట్రాక్ సీన్ @@ -838,7 +837,7 @@ DocType: Address,Kerala,కేరళ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,సైమల్టేనియస్ సెషన్స్ DocType: OAuth Client,Client Credentials,క్లయింట్ ఆధారాల -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ఒక మాడ్యూల్ లేదా సాధనం తెరువు +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ఒక మాడ్యూల్ లేదా సాధనం తెరువు DocType: Communication,Delivery Status,డెలివరీ స్థాయి DocType: Module Def,App Name,App పేరు apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,అనుమతి గరిష్టంగా ఫైలు పరిమాణం {0} MB @@ -850,8 +849,8 @@ DocType: Feedback Request,Reference Communication,సూచన కమ్యూ DocType: Email Queue,Unsubscribe Method,చందా రద్దుచేసే విధానం DocType: GSuite Templates,Related DocType,సంబంధిత DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,కంటెంట్ జోడించడానికి సవరించడానికి -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,భాషలను ఎంచుకోండి -apps/frappe/frappe/__init__.py +510,No permission for {0},ఎటువంటి అనుమతి {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,భాషలను ఎంచుకోండి +apps/frappe/frappe/__init__.py +509,No permission for {0},ఎటువంటి అనుమతి {0} DocType: DocType,Advanced,అధునాతన apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API కీ తెలుస్తోంది లేదా API సీక్రెట్ తప్పు ఉంది !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},సూచన: {0} {1} @@ -873,7 +872,7 @@ DocType: Customize Form,Enter Form Type,రూపం రకం ఎంటర్ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,రికార్డులేవీ ట్యాగ్. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,ఫీల్డ్ తొలగించు DocType: User,Send Password Update Notification,పాస్వర్డ్ అప్డేట్ నోటిఫికేషన్ పంపండి -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","DOCTYPE, doctype అనుమతిస్తుంది. జగ్రత్త!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","DOCTYPE, doctype అనుమతిస్తుంది. జగ్రత్త!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","ప్రింటింగ్, ఇమెయిల్ కోసం అనుకూలీకరించిన ఆకృతులు" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,కొత్త వెర్షన్ కు నవీకరించబడింది DocType: Custom Field,Depends On,ఆధారపడి @@ -967,6 +966,7 @@ apps/frappe/frappe/model/document.py +902,one of,ఒకటి apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,దయచేసి కాపీ చేయడానికి ఫైల్ను ఎంచుకోండి apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ఒక క్షణం తనిఖీ చేస్తోంది apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,షో టాగ్లు +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","ఉంటే వర్తించు కఠినమైన వాడుకరి అనుమతి తనిఖీ మరియు వాడుకరి అనుమతి ఒక వినియోగదారు కోసం ఒక DOCTYPE కొరకు నిర్వచించబడుతుంది, అప్పుడు ఇక్కడ లింక్ యొక్క విలువ ఖాళీగా ఉంది అన్ని పత్రాలు, ఆ వాడుకరి చూపబడవు" DocType: Address,Billing,బిల్లింగ్ DocType: Email Queue,Not Sent,పంపలేదు DocType: Web Form,Actions,చర్యలు @@ -997,6 +997,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,స్పష apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ప్రతి రోజు ఈవెంట్స్ అదే రోజు పూర్తి చేయాలి. DocType: Communication,User Tags,వాడుకరి టాగ్లు apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,తెస్తోంది చిత్రాలు .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,సెటప్> వాడుకరి DocType: Workflow State,download-alt,డౌన్-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},అనువర్తనం డౌన్లోడ్ {0} DocType: Communication,Feedback Request,అభిప్రాయం అభ్యర్థన @@ -1014,7 +1015,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,బ్యాకప్ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,సంప్రదించండి జోడించండి DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ఐచ్ఛికము: ఎల్లప్పుడూ ఈ ఐడిలు పంపండి. ఒక కొత్త వరుసగా ప్రతి ఇమెయిల్ అడ్రస్ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,వివరాలను దాచిపెట్టు +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,వివరాలను దాచిపెట్టు DocType: Workflow State,Tasks,పనులు DocType: Event,Tuesday,మంగళవారం DocType: Blog Settings,Blog Settings,బ్లాగ్ అమరికలు @@ -1034,9 +1035,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,ఈ సేవ్ మరియు కాలమ్ ఫలితంగా తిరిగి అక్కడ అదే ఫోల్డర్ లో ఒక పైథాన్ ఫైలు వ్రాయండి. DocType: DocType,Sort Field,క్రమీకరించు ఫీల్డ్ DocType: Razorpay Settings,Razorpay Settings,Razorpay సెట్టింగులు -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,మార్చు వడపోత -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,ఫీల్డ్ {0} రకం {1} తప్పనిసరి ఉండకూడదు -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ఉదా. నివేదిక DOCTYPE కోసం తనిఖీ కాని యూజర్ అనుమతులు ఒక వాడుకరి నివేదించు కోసం నిర్వచించబడ్డాయి వాడుకరి అనుమతులు వర్తించు, అప్పుడు అన్ని నివేదికలు ఆ వాడుకరి చూపబడ్డాయి" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,మార్చు వడపోత +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,ఫీల్డ్ {0} రకం {1} తప్పనిసరి ఉండకూడదు apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,మరిన్ని జోడించండి apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,చార్ట్ దాచు DocType: System Settings,Session Expiry Mobile,సెషన్ గడువు మొబైల్ @@ -1051,6 +1051,7 @@ DocType: Communication,Delayed,ఆలస్యం apps/frappe/frappe/config/setup.py +128,List of backups available for download,డౌన్లోడ్ కోసం అందుబాటులో బ్యాకప్ జాబితా apps/frappe/frappe/www/login.html +89,Sign up,చేరడం DocType: Test Runner,Output,అవుట్పుట్ +DocType: Email Alert,Set Property After Alert,హెచ్చరిక తరువాత ఆస్తి సెట్ apps/frappe/frappe/config/setup.py +226,Add fields to forms.,రూపాలు ఖాళీలను జోడించండి. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ఏదో కనిపిస్తోంది ఈ సైట్ యొక్క Paypal ఆకృతీకరణ తో తప్పు. DocType: File,rgt,rgt @@ -1058,6 +1059,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,ఆకు DocType: Portal Menu Item,Portal Menu Item,పోర్టల్ మెను ఐటెమ్ DocType: User Email,Email ID,ఇమెయిల్ ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","వాడుకరి అనుమతులు దరఖాస్తు చేస్తే నివేదిక DOCTYPE కోసం తనిఖీ కాని యూజర్ అనుమతులు ఒక వాడుకరి కోసం నివేదిక కోసం నిర్వచించబడ్డాయి, అప్పుడు అన్ని నివేదిస్తుంది వాడుకరి చూపబడ్డాయి" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,క్లయింట్ అనువర్తనం వినియోగదారు తర్వాత అది అనుమతిస్తుంది ప్రాప్యత కలిగి ఉంటుంది ఇది వనరుల జాబితా.
ఉదా ప్రాజెక్ట్ DocType: Translation,Translated Text,అనువాదం టెక్స్ట్ DocType: Contact Us Settings,Query Options,ప్రశ్న ఎంపికల్లో @@ -1075,7 +1077,7 @@ DocType: Address,Contacts,కాంటాక్ట్స్ DocType: System Settings,Setup Complete,సెటప్ పూర్తయింది apps/frappe/frappe/config/setup.py +66,Report of all document shares,అన్ని పత్రం వాటాల నివేదిక apps/frappe/frappe/www/update-password.html +18,New Password,కొత్త పాస్వర్డ్ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,వడపోత {0} తప్పిపోయిన +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,వడపోత {0} తప్పిపోయిన apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,క్షమించాలి! మీరు ఆటో సృష్టించిన వ్యాఖ్యలు తొలగించలేరు DocType: Website Theme,Style using CSS,CSS ఉపయోగించి శైలి apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,సూచన DOCTYPE @@ -1130,7 +1132,7 @@ DocType: User,Block Modules,బ్లాక్ గుణకాలు apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,పొడవు మారుస్తోంది {0} కోసం '{1}' లో '{2}'; పొడవు చేస్తోంది {3} డేటా truncation చేస్తుంది వంటి. DocType: Print Format,Custom CSS,కస్టమ్ CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ఒక వ్యాఖ్యను జోడించండి -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},విస్మరించబడిన: {0} కు {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},విస్మరించబడిన: {0} కు {1} DocType: Address,Gujarat,గుజరాత్ apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,స్వయంచాలక కార్యక్రమములు (షెడ్యూలర్) లోని లోపం లాగ్. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),చెల్లని కామాతో వేరుచేయబడిన వేల్యూ (CSV ఫైల్) @@ -1139,7 +1141,7 @@ DocType: Email Account,Default Incoming,డిఫాల్ట్ ఇన్కమ DocType: Workflow State,repeat,రిపీట్ DocType: Website Settings,Banner,బ్యానర్ DocType: Role,"If disabled, this role will be removed from all users.","డిసేబుల్ ఉంటే, ఈ పాత్ర అన్ని వినియోగదారుల నుండి తీసివేయబడుతుంది ఉంటుంది." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,సెర్చ్లో సహాయం +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,సెర్చ్లో సహాయం apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,రిజిస్టర్ కాని వికలాంగ DocType: DocType,Hide Copy,కాపీ దాచు apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,అన్ని పాత్రలు క్లియర్ @@ -1171,7 +1173,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,దేశం apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,చిరునామాలు DocType: Communication,Shared,భాగస్వామ్య -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,డాక్యుమెంట్ ప్రింట్ అటాచ్ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,డాక్యుమెంట్ ప్రింట్ అటాచ్ DocType: Bulk Update,Field,ఫీల్డ్ DocType: Communication,Received,స్వీకరించిన DocType: Social Login Keys,Google Client ID,Google క్లయింట్ ID @@ -1192,12 +1194,12 @@ DocType: Report,Query Report,ప్రశ్న నివేదిక DocType: User,Set New Password,కొత్త పాస్వర్డ్ సెట్ DocType: User,Github User ID,Github వాడుకరి ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,డాక్యుమెంట్ టైప్ ఉంటే -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","తొలగించండి లేదా {0} ఎందుకంటే రద్దు కాదు {1} తో ముడిపడి ఉంది {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","తొలగించండి లేదా {0} ఎందుకంటే రద్దు కాదు {1} తో ముడిపడి ఉంది {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},తెలియని అనువర్తనం {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S చెల్లుబాటు అయ్యే నివేదిక రూపంలో లేదు. ఫార్మాట్ క్రింది% s ఒకటి \ ఉండాలి నివేదిక DocType: Communication,Chat,చాట్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} వరుసలలో అనేకసార్లు కనిపిస్తుంది {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} వరుసలలో అనేకసార్లు కనిపిస్తుంది {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} కు {2} లో వరుసగా # {3} DocType: Communication,Expired,గడువు DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ఒక గ్రిడ్ లో ఒక రంగంలో కోసం నిలువు సంఖ్య (ఒక గ్రిడ్లో మొత్తం లు కంటే తక్కువ 11 ఉండాలి) @@ -1207,30 +1209,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,ఒక ఖాతా apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},తెలియని ప్రింట్ ఫార్మాట్: {0} DocType: Workflow State,arrow-down,మెట్ట డౌన్ apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,కుదించు -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},వాడుకరి తొలగించడానికి అనుమతి లేదు {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},వాడుకరి తొలగించడానికి అనుమతి లేదు {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,చివరిగా నవీకరించబడింది DocType: Help Article,Likes,ఇష్టాలు DocType: Website Settings,Top Bar,టాప్ బార్ DocType: GSuite Settings,Script Code,స్క్రిప్ట్ కోడ్ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,వాడుకరి ఇమెయిల్ సృష్టించండి apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,వాడుకరి ఇమెయిల్ సృష్టించండి -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,అనుమతులు లేవు స్పెసిఫైడ్ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,అనుమతులు లేవు స్పెసిఫైడ్ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,గ్లోబల్ సెట్టింగులు: యూజర్లు మాత్రమే తనిఖీ చిహ్నాలను ఎంచుకోవచ్చు చెయ్యగలరు apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} దొరకలేదు DocType: Custom Role,Custom Role,కస్టమ్ రోల్ apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,హోం / టెస్ట్ ఫోల్డర్ 2 DocType: System Settings,Ignore User Permissions If Missing,మిస్సింగ్ ఉంటే వాడుకరి అనుమతులు విస్మరించు -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,అప్లోడ్ చేయడానికి ముందు పత్రం సేవ్ చేయండి. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,అప్లోడ్ చేయడానికి ముందు పత్రం సేవ్ చేయండి. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,మీ పాస్వర్డ్ను ఎంటర్ DocType: Dropbox Settings,Dropbox Access Secret,డ్రాప్బాక్స్ యాక్సెస్ సీక్రెట్ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,మరో వ్యాఖ్య జోడించండి apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE మార్చు apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,వార్తాలేఖ నుండి చందాను -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ఒక విభాగం బ్రేక్ ముందు వచ్చి ఉండాలి మడత +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ఒక విభాగం బ్రేక్ ముందు వచ్చి ఉండాలి మడత apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,చివరిగా సవరించబడింది ద్వారా DocType: Workflow State,hand-down,చేతి-డౌన్ DocType: Address,GST State,జిఎస్టి రాష్ట్రం -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: లేకుండా సమర్పించండి రద్దు సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: లేకుండా సమర్పించండి రద్దు సెట్ చెయ్యబడదు DocType: Website Theme,Theme,థీమ్ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,లోపాలు ఉన్నాయి. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI ప్రామాణీకరణ కోడ్ బంధం దారిమార్పు @@ -1249,7 +1251,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,న DocType: Website Theme,Text Color,టెక్స్ట్ రంగు DocType: Desktop Icon,Force Show,ఫోర్స్ షో apps/frappe/frappe/auth.py +78,Invalid Request,చెల్లని అభ్యర్థన -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,ఈ విధానం వలన ఇన్పుట్ లేవు +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,ఈ విధానం వలన ఇన్పుట్ లేవు apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},సెషన్ గడువు ఫార్మాట్ లో ఉండాలి {0} DocType: Website Sidebar Item,Group,గ్రూప్ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",Select లక్ష్యం = "_blank" ఒక కొత్త పేజీ లో తెరవడానికి. @@ -1258,7 +1260,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,లోపాలు ఎన్కోడింగ్ విస్మరించు. DocType: Workflow State,wrench,రెంచ్ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,సెట్ చేయబడలేదు -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,సెటప్> వాడుకరి DocType: Authentication Log,Date,తేదీ DocType: Website Settings,Disable Signup,సైన్అప్ ఆపివేయి apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,మీ సిస్టమ్ సెటప్ చేస్తున్నప్పుడు కుర్చోండి. దీనికి కొన్ని నిమిషాలు పట్టవచ్చు. @@ -1269,7 +1270,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,వ్యాఖ్యను జోడించండి DocType: DocField,Mandatory,తప్పనిసరి apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,ఎగుమతి మాడ్యూల్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: నో ప్రాథమిక అనుమతులు సెట్ +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: నో ప్రాథమిక అనుమతులు సెట్ apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,మీ సభ్యత్వ న ముగుస్తుందని {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},మీ బ్యాకప్ డౌన్లోడ్ లింక్ కింది ఇమెయిల్ చిరునామా ఇమెయిల్ చేయబడుతుంది: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","రద్దు సమర్పించండి యొక్క అర్థం, సవరించేందుకు" @@ -1282,11 +1283,11 @@ DocType: Desktop Icon,query-report,ప్రశ్న-నివేదిక apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},కేటాయించిన {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,వడపోతలు సేవ్ DocType: DocField,Percent,శాతం -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,ఫిల్టర్లు సెట్ చెయ్యండి +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,ఫిల్టర్లు సెట్ చెయ్యండి apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,ముడిపడి DocType: Workflow State,book,పుస్తకం DocType: Website Settings,Landing Page,లాండింగ్ పేజీ -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,కస్టమ్ స్క్రిప్ట్ లో లోపం +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,కస్టమ్ స్క్రిప్ట్ లో లోపం apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} పేరు apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","దిగుమతి అభ్యర్థన క్యూలో. దీనికి కొన్ని నిమిషాలు పట్టవచ్చు, దయచేసి వేచి ఉండండి." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ఏ అనుమతులు ఈ ప్రమాణం కోసం సెట్. @@ -1298,7 +1299,7 @@ DocType: System Settings,Allow Login using Mobile Number,మొబైల్ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,మీరు ఈ వనరును ప్రాప్తి చేయడానికి తగినంత అనుమతులు లేవు. దయచేసి ప్రాప్యతను పొందడానికి మీ మేనేజర్ సంప్రదించండి. DocType: Custom Field,Custom,కస్టమ్ apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,వివిధ ప్రమాణాలు ఆధారంగా సెటప్ ఇమెయిల్ అలెర్ట్. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},కింద దాఖలు పోస్ట్లు {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},కింద దాఖలు పోస్ట్లు {0} DocType: Email Alert,Send alert if date matches this field's value,తేదీ ఈ ఫీల్డ్ విలువలో సరిపోలే ఉంటే హెచ్చరిక పంపండి DocType: Workflow,Transitions,పరివర్తనాలు apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,తొలగించు {0} మరియు అన్ని డేటాని కూడా తొలగించాలా? @@ -1307,9 +1308,8 @@ DocType: User,Login After,లాగిన్ తర్వాత DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,ప్రింటింగ్ DocType: Workflow State,thumbs-up,బ్రొటనవేళ్లు అప్ -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్. సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి ఒక కొత్త ఇమెయిల్ ఖాతా సృష్టించడానికి దయచేసి DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,ప్రెసిషన్ 1 నుండి 6 మధ్య ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,ప్రెసిషన్ 1 నుండి 6 మధ్య ఉండాలి apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,మరియు DocType: Error Snapshot,Frames,ఫ్రేమ్లు @@ -1318,7 +1318,7 @@ DocType: About Us Team Member,Image Link,చిత్రం లింక్ DocType: Auto Email Report,Report Filters,నివేదిక వడపోతలు apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ఇప్పుడు DocType: Workflow State,step-backward,దశల వెనుకబడిన -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,మీ సైట్ config డ్రాప్బాక్స్ యాక్సెస్ కీలు సెట్ చెయ్యండి apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ఈ ఈమెయిల్ చిరునామాకు పంపడం అనుమతిస్తుంది ఈ రికార్డ్ తొలగించు apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,మాత్రమే తప్పనిసరి ఖాళీలను కొత్త రికార్డులు అవసరం. మీరు అనుకుంటే మీరు కాని తప్పనిసరి నిలువు తొలగించవచ్చు. @@ -1340,8 +1340,7 @@ DocType: File,Is Attachments Folder,అటాచ్మెంట్లు ఫో apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,అన్నింటినీ విస్తరించుట apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,చెల్లుబాటు అయ్యే లాగిన్ ID అవసరం. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,మళ్ళీ తెరువు -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,మీరు చెల్లింపు రద్దు -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,డేటా ఒక చెల్లుబాటులో csv ఫైల్ను ఎంచుకోండి +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,డేటా ఒక చెల్లుబాటులో csv ఫైల్ను ఎంచుకోండి apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} అన్ షేర్డ్ ఈ పత్రం {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} {1} అనుమతి లేదు నుండి డాక్యుమెంట్ స్థితి మార్పు DocType: DocType,"Make ""name"" searchable in Global Search","పేరు" గ్లోబల్ సెర్చ్ లో వెతకడానికి చేయండి @@ -1354,7 +1353,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,అ DocType: Help Category,Help Category,సహాయం వర్గం apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,వాడుకరి {0} నిలిపివేయబడింది apps/frappe/frappe/www/404.html +8,Page missing or moved,తప్పిపోయిన లేదా తరలించబడింది పేజీ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,{0} లక్షణాలు మార్చు DocType: DocType,Route,రూట్ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay చెల్లింపు గేట్వే సెట్టింగులు DocType: DocField,Name,పేరు @@ -1362,8 +1360,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,పత్రాలను శోధించు apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,పత్రాలను శోధించు DocType: OAuth Authorization Code,Valid,చెల్లుబాటు అయ్యే -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,లింక్ను -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,మీ భాష +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,లింక్ను +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,మీ భాష apps/frappe/frappe/desk/form/load.py +46,Did not load,లోడ్ అవలేదు apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,రో జోడించండి DocType: Tag Category,Doctypes,డాక్యుమెంట్ రకాలు @@ -1378,7 +1376,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,అభిప DocType: Address,Lakshadweep Islands,లక్షద్వీప్ దీవులు apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,వ్రాయగలరు apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","కొన్ని పత్రాలు, ఒక వాయిస్ వంటి, ఒకసారి ఫైనల్ మారలేదు ఉండాలి. అటువంటి పత్రాలను కోసం ఆఖరి రాష్ట్ర సమర్పించిన అంటారు. మీరు పాత్రలు సమర్పించండి ఇది పరిమితం చేయవచ్చు." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,మీరు ఈ నివేదిక ఎగుమతి అనుమతి లేదు +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,మీరు ఈ నివేదిక ఎగుమతి అనుమతి లేదు apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 అంశం ఎంపిక DocType: Newsletter,Test Email Address,టెస్ట్ ఇమెయిల్ అడ్రస్ DocType: ToDo,Sender,పంపినవారు @@ -1413,7 +1411,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,దిగుమతి జిప్ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,డాక్యుమెంట్ ID DocType: Print Settings,Letter,లెటర్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,చిత్రం రంగంలో రకం ఉండాలి చిత్రం అటాచ్ +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,చిత్రం రంగంలో రకం ఉండాలి చిత్రం అటాచ్ DocType: DocField,Columns,లు DocType: Async Task,Succeeded,విజయవంతమైంది apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},అవసరం తప్పనిసరి ఖాళీలను {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,టెక్స్ట్ ఎడిటర్ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,మా గురించి పేజీ కోసం సెట్టింగులు. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,సవరించు కస్టమ్ HTML DocType: Error Snapshot,Error Snapshot,లోపం స్నాప్షాట్ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,లో +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,లో DocType: Email Alert,Value Change,విలువ మార్చండి DocType: Standard Reply,Standard Reply,ప్రామాణిక Reply apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ఇన్పుట్ బాక్స్ వెడల్పు @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,టైటిల్ రూపొందించడానికి ఈ FIELDNAME ఉపయోగించండి apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,నుండి దిగుమతి ఇమెయిల్ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,వాడుకరి ఆహ్వానించండి -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Select అటాచ్మెంట్లు +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Select అటాచ్మెంట్లు apps/frappe/frappe/model/naming.py +94, for {0},{0} కోసం apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,లోపాలున్నాయి. ఈ రిపోర్ట్ చెయ్యండి. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,మీరు ఈ పత్రం ప్రచురించేందుకు అనుమతి లేదు +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,మీరు ఈ పత్రం ప్రచురించేందుకు అనుమతి లేదు apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,దయచేసి వడపోత నివేదిక పట్టికలో ఫిల్టర్లు విలువ సెట్. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,లోడ్ నివేదిక +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,లోడ్ నివేదిక apps/frappe/frappe/limits.py +72,Your subscription will expire today.,మీ సభ్యత్వ నేటి ముగుస్తుంది. DocType: Page,Standard,ప్రామాణిక apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,ఫైల్ అటాచ్ @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ప్రాంతీయ పొడిగింపులు DocType: LDAP Settings,Base Distinguished Name (DN),బేస్ విశిష్ట పేరు (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ఈ సంభాషణ వదిలి -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ఎంపికలు లింక్ రంగంలో సెట్ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ఎంపికలు లింక్ రంగంలో సెట్ {0} DocType: Customize Form,"Must be of type ""Attach Image""",రకం ఉండాలి "చిత్రం జోడించు" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,దేన్నీ ఎంచుకోవద్దు apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},మీరు రంగంలో కోసం సెట్ చేయకుండా లేదు 'మాత్రమే చదవండి' చేయవచ్చు {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,గమనిక apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,లోపం నివేదిక apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,అభిప్రాయం పరిస్థితులు సరిపోలడం లేదు -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,కాలక్రమం లో ఒక చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,కాలక్రమం లో ఒక చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి DocType: Currency,Symbol,మానవ చిత్ర -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,రో # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,రో # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,కొత్త సంకేతపదం ఇమెయిల్ apps/frappe/frappe/auth.py +245,Login not allowed at this time,ఈ సమయంలో అనుమతి లేదు లాగిన్ DocType: Email Account,Email Sync Option,ఇమెయిల్ సమకాలీకరణ ఎంపిక @@ -1581,7 +1579,7 @@ DocType: DocField,Text,టెక్స్ట్ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,ప్రామాణిక సాధారణ ప్రశ్నలు సమాధానం. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,డిఫాల్ట్ పంపడం DocType: Workflow State,volume-off,వాల్యూమ్ ఆఫ్ -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},వీరు ఇష్టపడ్డారు {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},వీరు ఇష్టపడ్డారు {0} DocType: Footer Item,Footer Item,ఫుటర్ అంశం ,Download Backups,డౌన్లోడ్ బ్యాకప్ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,హోం / టెస్ట్ ఫోల్డర్ 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,టెక్స్ట్ సమలేఖనం apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},పేరు వంటి ప్రత్యేక అక్షరాలు ఉండకూడదు {0} DocType: Contact Us Settings,Forward To Email Address,ఫార్వర్డ్ ఇమెయిల్ అడ్రసు apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,అన్ని డేటా చూపించు -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,శీర్షిక ఫీల్డ్ చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,శీర్షిక ఫీల్డ్ చెల్లుబాటు అయ్యే FIELDNAME ఉండాలి apps/frappe/frappe/config/core.py +7,Documents,పత్రాలు DocType: Email Flag Queue,Is Completed,పూర్తయిన apps/frappe/frappe/www/me.html +22,Edit Profile,ప్రొఫైల్ను సవరించు @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",myfield eval: ఇక్కడ నిర్వచించారు FIELDNAME విలువ ఉంది లేదా నియమాలు నిజమైన (ఉదాహరణలు) ఉన్నాయి మాత్రమే ఈ రంగంలో కనిపిస్తుంది doc.myfield == 'నా విలువ' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,నేడు -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,నేడు +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,నేడు +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,నేడు apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","మీరు ఈ సెట్ చేసిన తర్వాత, వినియోగదారులు మాత్రమే చేయగలిగింది యాక్సెస్ పత్రాలు ఉంటుంది (ఉదా. బ్లాగ్ పోస్ట్) లింక్ (ఉదా. బ్లాగర్) సొర." DocType: Error Log,Log of Scheduler Errors,షెడ్యూల్ ఆఫ్ ఎర్రర్స్ లోనికి ప్రవేశించండి DocType: User,Bio,బయో @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 స్టార్ ఉండటం తక్కువ & 5 నక్షత్రాలు అత్యధిక రేటింగ్ ఉండటం DocType: Event,Ref Name,Ref name DocType: Web Page,Center,సెంటర్ +DocType: Email Alert,Value To Be Set,విలువ సెట్ చేయడానికి apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,మొదటి స్థాయి DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,రాష్ట్ర మార్చడానికి కేటాయించిన ఒక పత్రం మరియు పాత్ర లో అనుమతించబడవు రాష్ట్రాలు సూచిస్తుంది. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,రిఫ్రెష్ ఫారం @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,వెబ్ వీక్షణ ఉంది apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","DOCTYPE పేరు ఒక లేఖ తో ప్రారంభం కావాలి మరియు అది కేవలం అక్షరాలు, సంఖ్యలు, ప్రదేశాలు మరియు అండర్ ఉంటాయి" DocType: Communication,Spam,స్పామ్ DocType: Integration Request,Integration Request,ఇంటిగ్రేషన్ అభ్యర్థన -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,డియర్ +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,డియర్ DocType: Address,Maharashtra,మహారాష్ట్ర DocType: Address,Accounts User,యూజర్ ఖాతాలను DocType: Web Page,HTML for header section. Optional,శీర్షిక విభాగంలో HTML. ఐచ్ఛికము apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,ఈ ఫీచర్ బ్రాండ్ కొత్త మరియు ఇంకా ప్రయోగాత్మక దశలోనే ఉంది -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,గరిష్ఠ {0} వరుసలు అనుమతి +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,గరిష్ఠ {0} వరుసలు అనుమతి DocType: Email Unsubscribe,Global Unsubscribe,గ్లోబల్ చందా రద్దుచేసే apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,ఈ చాలా సాధారణ పాస్వర్డ్. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,చూడండి DocType: Communication,Assigned,అసైన్డ్ DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Select ప్రింట్ ఫార్మాట్ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Select ప్రింట్ ఫార్మాట్ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,చిన్న కీబోర్డ్ పద్ధతులను ఊహించడం సులభం DocType: Portal Settings,Portal Menu,పోర్టల్ మెనూ apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} యొక్క పొడవు 1 మరియు 1000 మధ్య ఉండాలి @@ -1720,7 +1719,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,వాడుకరి శోధించలేను apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,చెల్లని అవుట్పుట్ ఫార్మాట్ DocType: Custom DocPerm,Apply this rule if the User is the Owner,వాడుకరి యజమాని ఉంటే ఈ నియమం వర్తించు -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,మీ లాగిన్ ID గా ఉంటుంది +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,మీ లాగిన్ ID గా ఉంటుంది apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,నివేదిక బిల్డ్ DocType: Note,Notify users with a popup when they log in,వారు లాగిన్ చేసినప్పుడు ఒక పాపప్ వినియోగదారులు తెలియజేయి apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} ఉనికిలో లేదు, విలీనం ఒక కొత్త లక్ష్యంగా ఎంచుకోండి" @@ -1739,17 +1738,18 @@ DocType: User Permission for Page and Report,Roles Permission,పాత్రల apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,నవీకరణ DocType: Error Snapshot,Snapshot View,స్నాప్షాట్ చూడండి apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,పంపే ముందు వార్తా సేవ్ చేయండి -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ఎంపికలు వరుసగా రంగంలో {0} కోసం చెల్లుబాటులో DOCTYPE ఉండాలి {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ఎంపికలు వరుసగా రంగంలో {0} కోసం చెల్లుబాటులో DOCTYPE ఉండాలి {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,గుణాలను సంకలనం DocType: Patch Log,List of patches executed,పాచెస్ జాబితా ఉరితీయబడ్డారు apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ఇప్పటికే చందాను -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,సమాచార మాధ్యమంలో +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,సమాచార మాధ్యమంలో DocType: Website Settings,Banner HTML,బ్యానర్ HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',దయచేసి మరో చెల్లింపు పద్ధతిని ఎంచుకోండి. Razorpay ద్రవ్యంలో లావాదేవీలు మద్దతు లేదు '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,బ్యాకప్ కోసం క్యూలో. అది ఒక గంట కొన్ని నిమిషాలు పట్టవచ్చు. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,నమోదు ను క్లయింట్ అనువర్తనం -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ఉండకూడదు "{2}". ఇది ఒకటి ఉండాలి "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} ఉండకూడదు "{2}". ఇది ఒకటి ఉండాలి "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} లేదా {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,చూపించు లేదా డెస్క్టాప్ చిహ్నాలు దాచు apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,పాస్వర్డ్ నవీకరణ @@ -1775,7 +1775,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,సెక్షన్లు తరువాత లైన్ షో బ్రేక్స్ DocType: Blogger,Short Name,సంక్షిప్త నామం apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},పేజీ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","మీరు అన్నీ సమకాలీకరించు ఎంపిక ఎంచుకోవడం ఉంటాయి, ఇది సర్వర్ నుండి అన్ని \ చదవండి అలాగే చదవని సందేశాన్ని సమకాలీకరించు ఉంటుంది. ఈ కమ్యూనికేషన్స్కు (ఇమెయిళ్ళను) నకిలీల \ కారణం కావచ్చు." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ఫైళ్ళు సైజు @@ -1787,6 +1787,7 @@ DocType: Contact,Purchase Manager,కొనుగోలు మేనేజర్ DocType: Custom Script,Sample,నమూనా apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,uncategorised టాగ్లు DocType: Event,Every Week,ప్రతీ వారం +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ఇమెయిల్ ఖాతా సెటప్. సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి ఒక కొత్త ఇమెయిల్ ఖాతా సృష్టించడానికి దయచేసి apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,మీ వినియోగాన్ని తనిఖీ చేయవచ్చు లేదా ఒక అధిక ప్లాన్ అప్గ్రేడ్ ఇక్కడ క్లిక్ చేయండి DocType: Custom Field,Is Mandatory Field,తప్పనిసరి ఫీల్డ్ DocType: User,Website User,వెబ్సైట్ వాడుకరి @@ -1809,16 +1810,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,కస్టమ్ సైడ్బార్ మెను DocType: Workflow State,pencil,పెన్సిల్ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,సందేశాలు మరియు ఇతర నోటిఫికేషన్లు చాట్. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},సెట్ చేయబడదు తరువాత చొప్పించు {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},సెట్ చేయబడదు తరువాత చొప్పించు {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Share {0} తో apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ఇమెయిల్ ఖాతా సెటప్ కోసం మీ పాస్వర్డ్ను నమోదు చేయండి: DocType: Workflow State,hand-up,చేతి అప్ DocType: Blog Settings,Writers Introduction,రైటర్స్ పరిచయం DocType: Address,Phone,ఫోన్ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,చేసేటప్పుడు దోషం మూల్యాంకనం ఇమెయిల్ అలెర్ట్ {0}. దయచేసి మీ టెంప్లేట్ పరిష్కరించడానికి. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,చేసేటప్పుడు దోషం మూల్యాంకనం ఇమెయిల్ అలెర్ట్ {0}. దయచేసి మీ టెంప్లేట్ పరిష్కరించడానికి. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Select డాక్యుమెంట్ టైప్ లేదా పాత్ర ప్రారంభం. DocType: Contact,Passive,నిష్క్రియాత్మక DocType: Contact,Accounts Manager,అకౌంట్స్ మేనేజర్ +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,మీ చెల్లింపు రద్దు చేయబడింది. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,ఫైల్ రకం ఎంచుకోండి DocType: Help Article,Knowledge Base Editor,నాలెడ్జ్ బేస్ ఎడిటర్ apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,పేజి దొరకలేదు @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,ఆస్థి రకం DocType: Workflow State,screenshot,స్క్రీన్ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,మాత్రమే నిర్వాహకుడు ప్రామాణిక నివేదిక సేవ్ చేయవచ్చు. పేరు మరియు సేవ్ చేయండి. DocType: System Settings,Background Workers,నేపధ్యం వర్కర్స్ +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} మెటా అంశంతో విరుద్ధమైన DocType: Deleted Document,Data,సమాచారం apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,డాక్యుమెంట్ స్థితి apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},మీరు చేసిన {0} యొక్క {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,షో వినియోగదారు అనుమతులను apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,మీరు లాగిన్ మరియు బ్యాకప్ యాక్సెస్ చెయ్యలేరు వ్యవస్థ మేనేజర్ పాత్ర కలిగి అవసరం. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,మిగిలిన -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,అటాచ్ ముందు సేవ్ చేయండి. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,అటాచ్ ముందు సేవ్ చేయండి. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),చేర్చబడింది {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},డిఫాల్ట్ థీమ్ సెట్ {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype నుండి మారలేదు {0} కు {1} వరుసగా {2} @@ -1889,11 +1892,10 @@ DocType: System Settings,System Settings,వ్యవస్థ సెట్ట apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,సెషన్ ప్రారంభం విఫలమైంది apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},ఈ ఇమెయిల్ {0} పంపిన మరియు కాపీ చేయబడింది {1} DocType: Workflow State,th,వ -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,సెటప్> ఇమెయిల్> ఇమెయిల్ ఖాతా నుండి దయచేసి సెటప్ డిఫాల్ట్ ఇమెయిల్ ఖాతా -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ఒక క్రొత్త {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ఒక క్రొత్త {0} DocType: Email Rule,Is Spam,స్పామ్ ఉంది apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},నివేదిక {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},ఓపెన్ {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},ఓపెన్ {0} DocType: OAuth Client,Default Redirect URI,డిఫాల్ట్ దారిమార్పు URI DocType: Email Alert,Recipients,గ్రహీతలు DocType: Workflow State,ok-sign,సరే సైన్ @@ -1911,6 +1913,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Articles సహాయం ,Modules Setup,గుణకాలు సెటప్ apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,రకం: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,మీ చెల్లింపు విఫలమైంది. DocType: Communication,Unshared,అన్షేర్డ్ DocType: Address,Karnataka,కర్ణాటక apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,మాడ్యూల్ దొరకలేదు @@ -1956,7 +1959,7 @@ DocType: Website Settings,Brand Image,బ్రాండ్ ఇమేజ్ DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","టాప్ పేజీకి సంబంధించిన లింకులు బార్, ఫుటరు మరియు లోగో సెటప్." DocType: Web Form Field,Max Value,మాక్స్ విలువ -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},కోసం {0} స్థాయి {1} లో {2} వరుసగా {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},కోసం {0} స్థాయి {1} లో {2} వరుసగా {3} DocType: Contact,All,అన్ని DocType: Email Queue,Recipient,స్వీకర్త DocType: Communication,Has Attachment,జోడింపు ఉంది @@ -1973,7 +1976,8 @@ DocType: Workflow State,align-right,align కుడి DocType: Auto Email Report,Email To,కు ఈమెయిల్ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,ఫోల్డర్ {0} ఖాళీగా లేదు DocType: Page,Roles,పాత్రలు -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,ఫీల్డ్ {0} ఎంచుకోలేని కాదు. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},లోపం: విలువ వరుసలకు {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,ఫీల్డ్ {0} ఎంచుకోలేని కాదు. DocType: System Settings,Session Expiry,సెషన్ గడువు DocType: Workflow State,ban-circle,నిషేధం సర్కిల్ DocType: Email Flag Queue,Unread,చదవని @@ -1988,7 +1992,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,వాడుకరి డిఫాల్ట్లకు apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,న్యూ సృష్టించు DocType: Workflow State,chevron-down,చెవ్రాన్-డౌన్ -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),పంపిన ఇమెయిల్ {0} (వికలాంగ / తప్పుకునే) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),పంపిన ఇమెయిల్ {0} (వికలాంగ / తప్పుకునే) DocType: Async Task,Traceback,.ట్రేస్బ్యాక్ DocType: Currency,Smallest Currency Fraction Value,చిన్న కరెన్సీ ఫ్రేక్షన్ విలువ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,అప్పగించుము @@ -1999,12 +2003,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,నుండి DocType: Website Theme,Google Font (Heading),Google ఫాంట్ (శీర్షిక) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,మొదటి సమూహం నోడ్ ఎంచుకోండి. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},కనుగొనండి {0} లో {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},కనుగొనండి {0} లో {1} DocType: OAuth Client,Implicit,అవ్యక్త DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(, క్షేత్రాలు "స్థితి" కలిగి ఉండాలి "సబ్జెక్ట్") ఈ DOCTYPE వ్యతిరేకంగా సమాచారంగా జోడించు" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",అధికార కోడ్ స్వీకరించడం ఒకసారి యూజర్ యాక్సెస్ అనుమతిస్తుంది అలాగే వైఫల్యం స్పందనలు URI లు. సాధారణంగా ఒక REST చేసే తుది క్లయింట్ అనువర్తనం బయటపెట్టిన.
ఉదా: http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,సమర్పణ తర్వాత {0} మార్చడానికి అనుమతి లేదు +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,సమర్పణ తర్వాత {0} మార్చడానికి అనుమతి లేదు DocType: Communication,Comment Type,వ్యాఖ్య రకం DocType: OAuth Client,OAuth Client,ను క్లయింట్ apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,వినియోగదారులు @@ -2018,7 +2022,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},కోసం ఫైల్ ఫార్మాట్ చదవలేకపొయాను {0} DocType: Auto Email Report,Filter Data,వడపోత డేటా apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ఒక ట్యాగ్ జోడించండి -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,మొదట ఫైల్ అటాచ్ చేయండి. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,మొదట ఫైల్ అటాచ్ చేయండి. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","పేరు సెట్టింగ్ కొన్ని లోపాలు ఉన్నాయి, నిర్వాహకుడు సంప్రదించండి" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,ఇన్కమింగ్ ఇమెయిల్ ఖాతా సరైనది కాదు apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2033,11 +2037,11 @@ DocType: Blog Post,Email Sent,ఇమెయిల్ పంపబడింది DocType: DocField,Ignore XSS Filter,విస్మరించు XSS వడపోత apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,తొలగించబడింది apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,డ్రాప్బాక్స్ బ్యాకప్ సెట్టింగ్లను -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ఇమెయిల్ వలె పంపించు +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ఇమెయిల్ వలె పంపించు DocType: Website Theme,Link Color,లింక్ రంగు apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,వాడుకరి {0} నిలిపివేయడం సాధ్యం కాదు apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","డియర్ వ్యవస్థ మేనేజర్," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,మీ దేశం +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,మీ దేశం DocType: Event,Sunday,ఆదివారం apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,గ్రిడ్ వీక్షణ DocType: Address Template,Template,మూస @@ -2045,7 +2049,7 @@ DocType: Address,Delhi,ఢిల్లీ apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP సెట్టింగులు apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,సవరణ apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,పేపాల్ చెల్లింపు గేట్వే సెట్టింగులు -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) అనుమతి గరిష్టంగా అక్షరాలు వంటి, కత్తిరించబడింది పొందుతారు {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: '{1}' ({3}) అనుమతి గరిష్టంగా అక్షరాలు వంటి, కత్తిరించబడింది పొందుతారు {2}" DocType: OAuth Client,Resource Owner Password Credentials,యజమాని పాస్వర్డ్ ఆధారాల వనరు DocType: OAuth Client,Response Type,ప్రతిస్పందన రకం apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,మాక్స్ వినియోగదారులు @@ -2062,7 +2066,7 @@ DocType: DocField,Table,టేబుల్ DocType: File,File Size,ఫైలు సైజు apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,మీరు ఈ రూపం submit లాగిన్ చేయాలి DocType: User,Background Image,నేపథ్య చిత్రం -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","మీ దేశం, సమయమండలం మరియు కరెన్సీ ఎంచుకోండి" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","మీ దేశం, సమయమండలం మరియు కరెన్సీ ఎంచుకోండి" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,మధ్య DocType: Async Task,Queued,క్యూలో @@ -2071,6 +2075,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,సృష్టించు apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},చెల్లని వడపోత: {0} DocType: Email Account,no failed attempts,ఏ ప్రయత్నాలు విఫలం +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,డిఫాల్ట్ చిరునామా మూస దొరకలేదు. దయచేసి సెటప్> ముద్రణ మరియు బ్రాండింగ్> చిరునామా మూస నుండి ఒక కొత్త సృష్టించడానికి. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,అనువర్తనం యాక్సెస్ కీ DocType: OAuth Bearer Token,Access Token,ప్రాప్తి టోకెన్ @@ -2088,8 +2093,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github యూజర్ పేరు DocType: DocType,Image View,చిత్రం చూడండి apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","ఏదో లావాదేవీల సమయంలో తప్పు జరిగింది కనిపిస్తోంది. మేము చెల్లింపు ధ్రువీకరించారు చేయనందున, పేపాల్ స్వయంచాలకంగా మీరు ఈ మొత్తం తిరిగి చెల్లించు ఉంటుంది. అది కాకపోతే, మాకు ఒక ఇమెయిల్ పంపవచ్చు మరియు సహసంబంధ ID చెప్పలేదు చేయండి: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","పాస్వర్డ్ను చిహ్నాలు, సంఖ్యలు మరియు రాజధాని అక్షరాలు చేర్చండి" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","రంగంలో '{0}' కస్టమ్ ఫీల్డ్ పేర్కొన్నారు తరువాత చొప్పించు '{1}', లేబుల్ తో '{2}', లేదు" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","పాస్వర్డ్ను చిహ్నాలు, సంఖ్యలు మరియు రాజధాని అక్షరాలు చేర్చండి" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","రంగంలో '{0}' కస్టమ్ ఫీల్డ్ పేర్కొన్నారు తరువాత చొప్పించు '{1}', లేబుల్ తో '{2}', లేదు" DocType: Workflow State,signal,సిగ్నల్ DocType: DocType,Show Print First,షో ప్రింట్ మొదటి apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl పోస్ట్ ఎంటర్ + @@ -2120,14 +2125,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,ఫైలు '{0}' దొరకలేదు apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,విభాగం తొలగించు DocType: User,Change Password,పాస్వర్డ్ మార్చండి -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},చెల్లని ఇమెయిల్: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,హలో! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},చెల్లని ఇమెయిల్: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,హలో! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ఈవెంట్ ముగింపు ప్రారంభం తర్వాత ఉండాలి apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},మీరు ఒక నివేదిక పొందడానికి అనుమతి లేదు: {0} +DocType: System Settings,Apply Strict User Permissions,కఠినమైన వినియోగదారు అనుమతులను వర్తించు DocType: DocField,Allow Bulk Edit,బల్క్ మార్చు అనుమతించు DocType: DocField,Allow Bulk Edit,బల్క్ మార్చు అనుమతించు DocType: Blog Post,Blog Post,బ్లాగ్ పోస్ట్ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,అధునాతన శోధన +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,అధునాతన శోధన apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,పాస్వర్డ్ రీసెట్ సూచనలు మీ ఇమెయిల్ పంపారు apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Level 0 పత్రాన్ని స్థాయి అనుమతులు, \ రంగంలో స్థాయి అనుమతులు కోసం అధిక స్థాయిల కోసం." @@ -2146,15 +2152,14 @@ DocType: Web Page,Sidebar and Comments,సైడ్బార్ మరియ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","మీరు ఒక పత్రాన్ని తర్వాత అది రద్దు చేసి సేవ్ సవరణ చేసినప్పుడు, అది పాత సంఖ్యలో ఒక వెర్షన్ ఒక కొత్త సంఖ్య పొందుతారు." DocType: Stripe Settings,Publishable Key,publishable కీ DocType: Stripe Settings,Publishable Key,publishable కీ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} సంవత్సరం (లు) క్రితం DocType: Workflow State,circle-arrow-left,సర్కిల్-మెట్ట వదిలి apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis కాష్ సర్వర్ నడుస్తున్న లేదు. అడ్మినిస్ట్రేటర్ / టెక్ మద్దతు సంప్రదించండి apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,పార్టీ పేరు -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ఒక కొత్త రికార్డు చేయండి +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ఒక కొత్త రికార్డు చేయండి apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,శోధించండి DocType: Currency,Fraction,ఫ్రేక్షన్ DocType: LDAP Settings,LDAP First Name Field,LDAP మొదటి పేరు ఫీల్డ్ -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,ఇప్పటికే జోడింపులను నుండి ఎంచుకోండి +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,ఇప్పటికే జోడింపులను నుండి ఎంచుకోండి DocType: Custom Field,Field Description,రంగం వివరణ apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ప్రాంప్ట్ ద్వారా సెట్ లేదు పేరు apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ఇమెయిల్ ఇన్బాక్స్ @@ -2200,11 +2205,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,సమాచారం: DocType: Custom Field,Permission Level,అనుమతి స్థాయి DocType: User,Send Notifications for Transactions I Follow,నేను అనుసరించే లావాదేవీలకు ప్రకటనలు పంపండి -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: సమర్పించండి రద్దు వ్రాయండి లేకుండా సవరణ సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: సమర్పించండి రద్దు వ్రాయండి లేకుండా సవరణ సెట్ చెయ్యబడదు apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,మీరు అటాచ్మెంట్ తొలగించాలనుకుంటున్నారా మీరు భావిస్తున్నారా? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","తొలగించండి లేదా {0} ఎందుకంటే రద్దు కాదు {1} తో ముడిపడి ఉంది {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ఫలితాలు లేవు 'కనుగొనబడలేదు

-apps/frappe/frappe/__init__.py +1063,Thank you,ధన్యవాదాలు +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","తొలగించండి లేదా {0} ఎందుకంటే రద్దు కాదు {1} తో ముడిపడి ఉంది {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ధన్యవాదాలు apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,సేవ్ DocType: Print Settings,Print Style Preview,శైలి ప్రింట్ ప్రివ్యూ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2216,10 +2220,10 @@ DocType: DocField,In List View,జాబితా వీక్షణ లో DocType: Email Account,Use TLS,ఉపయోగం TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,చెల్లని లాగిన్ లేదా పాస్వర్డ్ను apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,రకాల కస్టమ్ జావాస్క్రిప్ట్ జోడించండి. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr లేవు +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr లేవు ,Role Permissions Manager,పాత్ర అనుమతులు మేనేజర్ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,కొత్త ప్రింట్ ఫార్మాట్ పేరు -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,ప్రశాంతంగా జోడింపు +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,ప్రశాంతంగా జోడింపు apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,తప్పనిసరి: ,User Permissions Manager,వాడుకరి అనుమతులు మేనేజర్ DocType: Property Setter,New value to be set,కొత్త విలువ సెట్ చేయడానికి @@ -2249,26 +2253,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ర apps/frappe/frappe/config/website.py +47,Categorize blog posts.,బ్లాగ్ పోస్ట్లు వర్గీకరణ. DocType: Workflow State,Time,సమయం DocType: DocField,Attach,అటాచ్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} చెల్లుబాటులో FIELDNAME నమూనా కాదు. ఇది ఉండాలి {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} చెల్లుబాటులో FIELDNAME నమూనా కాదు. ఇది ఉండాలి {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,మాత్రమే కనీసం ఒక కమ్యూనికేషన్ పత్రం అందుబాటులో ఉంది అభిప్రాయం అభ్యర్థన పంపండి. DocType: Custom Role,Permission Rules,అనుమతి రూల్స్ DocType: GSuite Settings,GSuite Settings,GSuite సెట్టింగులు DocType: Address,Links,లింకులు -apps/frappe/frappe/model/base_document.py +428,Value missing for,విలువ తప్పిపోయిన +apps/frappe/frappe/model/base_document.py +427,Value missing for,విలువ తప్పిపోయిన apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,చైల్డ్ జోడించండి -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: సమర్పించిన రికార్డ్ తొలగించడం సాధ్యం కాదు. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: సమర్పించిన రికార్డ్ తొలగించడం సాధ్యం కాదు. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,బ్యాకప్ సైజు DocType: GSuite Templates,Template Name,టెంప్లేట్ పేరు -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,పత్రం యొక్క కొత్త రకం +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,పత్రం యొక్క కొత్త రకం DocType: Custom DocPerm,Read,చదువు DocType: Role Permission for Page and Report,Role Permission for Page and Report,పేజ్ మరియు నివేదిక స్ఫూర్తిదాయకంగా అనుమతి apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,విలువ సమలేఖనం apps/frappe/frappe/www/update-password.html +14,Old Password,పాత పాస్వర్డ్ను -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},వారి టపాలు {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},వారి టపాలు {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","ఫార్మాట్ వరుసలు, ప్రశ్న లో కాలమ్ లేబుల్స్ ఇస్తాయి." DocType: Has Domain,Has Domain,డొమైన్ ఉంది apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ఒక ఖాతా లేదా? చేరడం -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable లేకపోతే అప్పగించుము సవరణ సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable లేకపోతే అప్పగించుము సవరణ సెట్ చెయ్యబడదు DocType: Address,Bihar,బీహార్ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,మార్చు పాత్ర అనుమతులు DocType: Communication,Link DocType,లింక్ doctype @@ -2367,7 +2371,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,మీ ప్రొఫైల్ ఒక ఇమెయిల్ చిరునామాను కలిగి ఉండేలా దయచేసి apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,మీరు ఈ రూపం లో సేవ్ చెయ్యని మార్పులు ఉన్నాయి. కొనసాగించే ముందు సేవ్ చెయ్యండి. DocType: Address,Telangana,తెలంగాణ -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} ఒక ఎంపికను ఉండాలి కోసం డిఫాల్ట్ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} ఒక ఎంపికను ఉండాలి కోసం డిఫాల్ట్ DocType: Tag Doc Category,Tag Doc Category,ట్యాగ్ డాక్ వర్గం DocType: User,User Image,వాడుకరి చిత్రం apps/frappe/frappe/email/queue.py +289,Emails are muted,ఇమెయిళ్ళు మ్యూట్ @@ -2400,7 +2404,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,తదు DocType: Workflow State,ok,అలాగే DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ఈ విలువలు స్వయంచాలకంగా లావాదేవీలు అప్డేట్ అవుతుంది మరియు కూడా ఈ విలువలను కలిగి లావాదేవీలపై ఈ వినియోగదారుకు అనుమతులు పరిమితం చేయడానికి ఉపయోగకరంగా ఉంటుంది. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ప్రచురణ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** విఫలమైంది: {0} కు {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** విఫలమైంది: {0} కు {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,తప్పనిసరి ఎంచుకోండి apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,బ్రౌజ్ apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ఇమెయిళ్ళు పంపిన @@ -2412,7 +2416,7 @@ DocType: Async Task,Running,రన్నింగ్ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,రహస్యపదాన్ని మార్చుకోండి apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,కంటే ఎక్కువ {0} చందాదారులు జోడించడానికి అప్గ్రేడ్ చేయండి DocType: Workflow State,hand-left,చేతితో ఎడమ -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ప్రత్యేక ఉండకూడదు కోసం +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} ప్రత్యేక ఉండకూడదు కోసం DocType: Email Account,Use SSL,ఉపయోగం SSL DocType: Workflow State,play-circle,ప్లే-సర్కిల్ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,సవరించు ప్రింట్ ఫార్మాట్ ఎంచుకోండి @@ -2467,7 +2471,7 @@ DocType: DocField,No Copy,ఒక్క ప్రతి కూడా DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP తో లాగిన్ DocType: Web Form,Breadcrumbs,బ్రెడ్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,యజమాని ఉంటే +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,యజమాని ఉంటే DocType: OAuth Authorization Code,Expiration time,గడువు సమయం DocType: Web Page,Website Sidebar,వెబ్సైట్ సైడ్బార్ DocType: Web Form,Show Sidebar,సైడ్బార్ చూపు @@ -2487,7 +2491,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},కనుగొ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,తాము పేర్లు మరియు ఇంటిపేరుని ఊహించడం సులభం. apps/frappe/frappe/config/website.py +93,Knowledge Base,నాలెడ్జ్ బేస్ DocType: Workflow State,briefcase,బ్రీఫ్ -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},విలువ కోసం మారలేదు {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},విలువ కోసం మారలేదు {0} DocType: Feedback Request,Is Manual,మాన్యువల్ DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","శైలి బటన్ రంగు సూచిస్తుంది: సక్సెస్ - గ్రీన్, డేంజర్ - ఎరుపు, ఇన్వర్స్ - బ్లాక్, ప్రాథమిక - డార్క్ బ్లూ, సమాచారం - లైట్ బ్లూ, హెచ్చరిక - ఆరెంజ్" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,ఏ నివేదిక లోడ్. / [రిపోర్ట్ పేరు] ఒక నివేదిక అమలు ప్రశ్న-నివేదిక గలరు. @@ -2565,7 +2569,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ప్రో apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,పాత్ర ద్వారా apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,మిస్సింగ్ ఫీల్డ్స్ apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,చెల్లని FIELDNAME '{0}' autoname లో -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,డాక్యుమెంట్ టైప్ లో శోధన +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,డాక్యుమెంట్ టైప్ లో శోధన apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,ఫీల్డ్ కూడా సమర్పణ తర్వాత సవరించగలిగేలా ఉండటానికి అనుమతిస్తుంది DocType: Custom DocPerm,Role and Level,పాత్ర మరియు లెవెల్ DocType: File,Thumbnail URL,సూక్ష్మచిత్రం URL @@ -2582,19 +2586,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,మరింత సమాచారం DocType: Desktop Icon,Desktop Icon,డెస్క్టాప్ ఐకాన్ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,మీ చెల్లింపు విజయవంతంగా ఆమోదించారు +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,మీ చెల్లింపు విజయవంతంగా ఆమోదించారు apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,క్షమించాలి! మీరు ఈ పుటను అనుమతి లేదు. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,చిట్కా: సవరించడానికి డబుల్ క్లిక్ సెల్ DocType: Workflow State,bell,బెల్ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ఇమెయిల్ అలెర్ట్ లో లోపం apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ఇమెయిల్ అలెర్ట్ లో లోపం apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,ఈ పత్రాన్ని భాగస్వామ్యం +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,సెటప్> వినియోగదారు అనుమతులు మేనేజర్ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,ఇది పిల్లలకు కలిగి {0} {1} ఒక ఆకు నోడ్ ఉండకూడదు DocType: Communication,Info,సమాచారం -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,జోడింపు జోడించండి +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,జోడింపు జోడించండి DocType: Communication,Email,ఇమెయిల్ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,మీ సందేశం ధన్యవాదాలు -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,స్వీకరణపై చదవండి పంపండి +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,స్వీకరణపై చదవండి పంపండి DocType: Stripe Settings,Stripe Settings,గీత సెట్టింగులు DocType: Stripe Settings,Stripe Settings,గీత సెట్టింగులు DocType: Dropbox Settings,Dropbox Setup via Site Config,సైట్ కాన్ఫిగర్ ద్వారా డ్రాప్బాక్స్ సెటప్ @@ -2661,6 +2666,7 @@ DocType: DocType,Web View,వెబ్ చూడండి apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,హెచ్చరిక: ఈ ప్రింట్ ఫార్మాట్ పాత శైలిలో ఉంది మరియు API ద్వారా ఉత్పత్తి సాధ్యం కాదు. DocType: DocField,Print Width,ముద్రణ వెడల్పు ,Setup Wizard,సెటప్ విజార్డ్ +DocType: Address,GST State Number,జిఎస్టి రాష్ట్ర సంఖ్య DocType: User,Allow user to login only before this hour (0-24),వినియోగదారు ఈ గంట ముందు లాగిన్ (0-24) అనుమతించు apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,ఫోల్డర్ తప్పనిసరి apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2689,7 +2695,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,చిన్న టెక్స్ట్ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,అడ్మినిస్ట్రేటర్ ప్రాప్తి {0} లో {1} IP చిరునామా ద్వారా {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,సమానం -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',రంగంలో ఐచ్ఛికాలు 'డైనమిక్ లింక్' రకం 'DOCTYPE' వంటి ఎంపికలు మరొక లింక్ ఫీల్డ్ సూచిస్తుంది ఉండాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',రంగంలో ఐచ్ఛికాలు 'డైనమిక్ లింక్' రకం 'DOCTYPE' వంటి ఎంపికలు మరొక లింక్ ఫీల్డ్ సూచిస్తుంది ఉండాలి DocType: About Us Settings,Team Members Heading,శీర్షిక జట్టు సభ్యులు apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,చెల్లని CSV ఫార్మాట్ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,బ్యాకప్ సంఖ్య సెట్ @@ -2700,7 +2706,7 @@ DocType: Contact,Contact,సంప్రదించండి DocType: User,Third Party Authentication,మూడవ పార్టీ ప్రామాణీకరణ DocType: Website Settings,Banner is above the Top Menu Bar.,బ్యానర్ పైన మెనూ బార్ పైన ఉంది. DocType: Razorpay Settings,API Secret,API సీక్రెట్ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ఎగుమతి నివేదిక: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ఎగుమతి నివేదిక: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} ఉనికిలో లేని DocType: Email Account,Port,పోర్ట్ DocType: Print Format,Arial,Arial @@ -2723,7 +2729,7 @@ DocType: Kanban Board Column,Column Name,కాలమ్ పేరు DocType: Language,Based On,ఆధారంగా apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,డిఫాల్ట్గా చెయ్యి apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,ఫ్రాప్పే సర్వర్ URL తనిఖీ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} సూచించాలని కాదు కోసం +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} సూచించాలని కాదు కోసం DocType: Communication,Email Account,ఇమెయిల్ ఖాతా DocType: Workflow State,Download,డౌన్లోడ్ DocType: Blog Post,Blog Intro,పరిచయ బ్లాగ్ @@ -2734,7 +2740,7 @@ DocType: Web Page,Insert Code,చొప్పించు కోడ్ DocType: ToDo,Low,తక్కువ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,మీరు జింజ templating ఉపయోగించి పత్రం నుండి డైనమిక్ లక్షణాలు జోడించవచ్చు. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},చెల్లని పరిమితి {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ఒక డాక్యుమెంట్ రకము జాబితా +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ఒక డాక్యుమెంట్ రకము జాబితా DocType: Event,Ref Type,Ref టైప్ apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","మీరు కొత్త రికార్డులు అప్లోడ్ చేస్తే, "పేరు" (ID) కాలమ్ ఖాళీగా వదిలివేయండి." DocType: Address,Chattisgarh,చత్తీస్గఢ్ @@ -2756,26 +2762,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,PDF క్రింద ప్రింట్ పంపండి DocType: Web Form,Amount,మొత్తం DocType: Workflow Transition,Allowed,అనుమతి -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ఒక రూపంలో ఒకే ఒక మడత ఉండగలడు +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ఒక రూపంలో ఒకే ఒక మడత ఉండగలడు apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},కోసం ఫైల్ ఫార్మాట్ వ్రాయలేరు {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,డిఫాల్ట్ సెట్టింగులకు పునరుద్ధరించు? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,చెల్లని హోం పేజి apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,తప్పుడు లాగిన్ సమాచారం. మళ్ళీ ప్రయత్నించండి. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},వరుసగా లింక్ లేదా టేబుల్ రకం ఫీల్డ్ {0} అవసరం ఎంపికలు {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},వరుసగా లింక్ లేదా టేబుల్ రకం ఫీల్డ్ {0} అవసరం ఎంపికలు {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},వరుసగా లింక్ లేదా టేబుల్ రకం ఫీల్డ్ {0} అవసరం ఎంపికలు {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},వరుసగా లింక్ లేదా టేబుల్ రకం ఫీల్డ్ {0} అవసరం ఎంపికలు {1} DocType: Auto Email Report,Send only if there is any data,ఏ సమాచారం అందుబాటులో లేకపోతే మాత్రమే పంపండి apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,రీసెట్ వడపోతలు -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: ఉన్నత స్థాయిలు సెట్ ముందు level 0 వద్ద అనుమతి ఏర్పాటు చేయాలి +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: ఉన్నత స్థాయిలు సెట్ ముందు level 0 వద్ద అనుమతి ఏర్పాటు చేయాలి apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},అసైన్మెంట్ మూసివేయబడింది {0} DocType: Integration Request,Remote,రిమోట్ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,లెక్కించు +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,లెక్కించు apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,మొదటి DOCTYPE దయచేసి ఎంచుకోండి apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,మీ ఇమెయిల్ నిర్ధారించండి apps/frappe/frappe/www/login.html +42,Or login with,లేదా లాగిన్ DocType: Error Snapshot,Locals,స్థానికులు apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},ద్వారా సమాచారాన్ని {0} లో {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} లో ఒక వ్యాఖ్యలో పేర్కొన్నారు {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ఉదా (55 + 434) / 4 లేదా = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ఉదా (55 + 434) / 4 లేదా = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} అవసరం DocType: Integration Request,Integration Type,ఇంటిగ్రేషన్ టైప్ DocType: Newsletter,Send Attachements,Attachements పంపండి @@ -2785,15 +2791,15 @@ DocType: DocField,Perm Level,పర్మ్ స్థాయి apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,నేటి క్యాలెండర్ లో ఈవెంట్స్ DocType: Web Page,Web Page,వెబ్ పుట DocType: Blog Category,Blogger,బ్లాగర్ -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'గ్లోబల్ సెర్చ్' రకం కోసం అనుమతి లేదు {0} వరుసగా {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,జాబితా వీక్షణ -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},తేదీ ఫార్మాట్ లో ఉండాలి: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},తేదీ ఫార్మాట్ లో ఉండాలి: {0} DocType: Workflow,Don't Override Status,స్థితి భర్తీ లేదు apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ఒక రేటింగ్ ఇవ్వండి. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} అభిప్రాయం అభ్యర్థన apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,శోధన పదం -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,మొదటి వాడుకరి: మీరు +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,మొదటి వాడుకరి: మీరు apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,సెలెక్ట్ కాలమ్స్ DocType: Translation,Source Text,మూల టెక్స్ట్ apps/frappe/frappe/www/login.py +55,Missing parameters for login,లాగిన్ మిస్సింగ్ పారామితులు @@ -2815,7 +2821,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,దిగుమతి DocType: ToDo,Assigned By,అప్పగించింది apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,మీరు ఖాళీలను న స్థాయిలు సెట్ అనుకూలపరచండి ఫారం ఉపయోగించవచ్చు. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,మీ ప్రాంతాన్ని ఎంచుకోండి +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,మీ ప్రాంతాన్ని ఎంచుకోండి DocType: Custom DocPerm,Level,స్థాయి DocType: Custom DocPerm,Report,నివేదిక apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,మొత్తం 0 కంటే ఎక్కువ ఉండాలి. @@ -2835,7 +2841,7 @@ DocType: Website Theme,Background,నేపథ్య DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","వాడుకరి అనుమతులు దరఖాస్తు ఉపయోగిస్తారు డాక్యుమెంట్ రకాలు JSON జాబితా. ఖాళీ ఉంటే, అన్ని లింక్ డాక్యుమెంట్ రకాలు వాడుకరి అనుమతులు దరఖాస్తు ఉపయోగించబడుతుంది." DocType: Report,Ref DocType,Ref DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,దయచేసి ఒక రేటింగ్ జోడించండి -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: లేకుండా రద్దు చక్కదిద్దు సెట్ చెయ్యబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: లేకుండా రద్దు చక్కదిద్దు సెట్ చెయ్యబడదు apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,పూర్తి పేజీ DocType: DocType,Is Child Table,చైల్డ్ పట్టిక apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ఒకటి ఉండాలి {1} @@ -2850,7 +2856,7 @@ DocType: Website Slideshow,This goes above the slideshow.,ఈ స్లైడ apps/frappe/frappe/config/setup.py +260,Install Applications.,అప్లికేషన్స్ ఇన్స్టాల్. DocType: Contact,Last Name,చివరి పేరు DocType: Event,Private,ప్రైవేట్ -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,నేడు హెచ్చరికలు లేవు +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,నేడు హెచ్చరికలు లేవు DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF క్రింద ఇమెయిల్ ముద్రించు అటాచ్మెంట్లు పంపు (సిఫార్సు) DocType: Web Page,Left,ఎడమ DocType: Event,All Day,రోజంతా @@ -2864,7 +2870,7 @@ DocType: Event,Send an email reminder in the morning,ఉదయం ఒక ఇమ DocType: Blog Post,Published On,లో ప్రచురితమైన DocType: Contact,Gender,లింగ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,తప్పనిసరి సమాచారం లేదు: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,ఫీల్డ్ '{0}' అది కాని ఏకైక విలువలు ప్రత్యేక గా సెట్ చేయబడదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,ఫీల్డ్ '{0}' అది కాని ఏకైక విలువలు ప్రత్యేక గా సెట్ చేయబడదు apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,కేవలం 200 ఇన్సర్ట్స్ ఒక అభ్యర్థన లో అనుమతించబడవు DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,సూచన టైప్ @@ -2877,7 +2883,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,హెచ్చరిక సంకేతం DocType: Workflow State,User,వాడుకరి DocType: Website Settings,"Show title in browser window as ""Prefix - title""",బ్రౌజర్ విండోలో టైటిల్ "ఉపసర్గ - శీర్షిక" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,డాక్యుమెంట్ రకము టెక్స్ట్ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,డాక్యుమెంట్ రకము టెక్స్ట్ apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,అమలు పరీక్షలు apps/frappe/frappe/handler.py +91,Logged Out,లాగ్ అవుట్ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,మరింత... @@ -2902,13 +2908,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,ప్రస్తుతం చూస్తున్నారు DocType: DocField,Default,డిఫాల్ట్ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} జోడించారు -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',కోసం శోధన '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',కోసం శోధన '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,మొదటి నివేదిక సేవ్ చేయండి apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} చందాదారులు జోడించారు apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,లో Not DocType: Workflow State,star,స్టార్ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,విలువలు కామాలతో వేరు -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},రకం కరెన్సీ కోసం గరిష్ట వెడల్పు వరుసగా 100 px {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,విలువలు కామాలతో వేరు +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},రకం కరెన్సీ కోసం గరిష్ట వెడల్పు వరుసగా 100 px {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},కోసం మీ అభిప్రాయాన్ని భాగస్వామ్యం చేయండి {0} apps/frappe/frappe/config/website.py +13,Content web page.,కంటెంట్ వెబ్ పేజీ. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ఒక కొత్త పాత్ర జోడించండి @@ -2927,7 +2933,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ఒక చెల్లుబాటు అయ్యే LDAP వినియోగదారు apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} అనేది సరైన రాష్ట్రం apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',దయచేసి మరో చెల్లింపు పద్ధతిని ఎంచుకోండి. పేపాల్ ద్రవ్యంలో లావాదేవీలు మద్దతు లేదు '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,శోధన రంగంలో {0} చెల్లుబాటు కాదు +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,శోధన రంగంలో {0} చెల్లుబాటు కాదు DocType: Workflow State,ok-circle,ok సర్కిల్ apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',మీరు 'వినియోగదారులు నారింజ కనుగొనేందుకు' అడగడం ద్వారా విషయాలు తెలుసుకోవచ్చు apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,క్షమించాలి! వాడుకరి వారి సొంత రికార్డు పూర్తి అందుబాటుని కలిగి ఉండాలి. @@ -2987,7 +2993,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,మెటా ఫిల్టర్ DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ఈ ఫారమ్ వెబ్ పేజీ కలిగి ఉంటే టెక్స్ట్ వెబ్ పేజీ లింక్ ప్రదర్శించబడుతుంది. లింక్ మార్గం స్వయంచాలకంగా page_name` మరియు `parent_website_route`` ఆధారంగా ఉత్పత్తి అవుతుంది DocType: Feedback Request,Feedback Trigger,అభిప్రాయం ట్రిగ్గర్ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,ముందుగా {0} సెట్ చెయ్యండి +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,ముందుగా {0} సెట్ చెయ్యండి DocType: Unhandled Email,Message-id,సందేశం-id DocType: Patch Log,Patch,ప్యాచ్ DocType: Async Task,Failed,విఫలమైంది diff --git a/frappe/translations/th.csv b/frappe/translations/th.csv index 89dadc3f58..1a90c01d0f 100644 --- a/frappe/translations/th.csv +++ b/frappe/translations/th.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook ชื่อผู้ใช้งาน DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,หมายเหตุ: หลายครั้งจะได้รับอนุญาตในกรณีของโทรศัพท์มือถือ apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},เปิดใช้งานกล่องจดหมายสำหรับผู้ใช้ผู้ใช้ {} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,ไม่สามารถส่งอีเมล์นี้ คุณได้ข้ามขีด จำกัด การส่ง {0} อีเมลสำหรับเดือนนี้ -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,อย่างถาวร ส่ง {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,อย่างถาวร ส่ง {0}? DocType: Address,County,เขต DocType: Workflow,If Checked workflow status will not override status in list view,ถ้าสถานะเวิร์กโฟลว์การยืมจะไม่แทนที่สถานะในมุมมองรายการ apps/frappe/frappe/client.py +280,Invalid file path: {0},เส้นทางของไฟล์ไม่ถูกต้อง: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,โป apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} ทรี DocType: User,User Emails,อีเมล์ของผู้ใช้ DocType: User,Username,ชื่อผู้ใช้ -apps/frappe/frappe/model/base_document.py +581,Value too big,ค่ามีขนาดใหญ่เกินไป +apps/frappe/frappe/model/base_document.py +580,Value too big,ค่ามีขนาดใหญ่เกินไป DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,เรียกใช้การทดสอบสคริปต์ DocType: Contact,Department,แผนก @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,บันทึก DocType: Custom DocPerm,This role update User Permissions for a user,บทบาทนี้ สิทธิ์ การปรับปรุง ผู้ใช้งานของ ผู้ใช้ apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},เปลี่ยนชื่อ {0} DocType: Workflow State,zoom-out,ซูมออก -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,ไม่สามารถเปิด {0} เมื่อ ตัวอย่าง ที่ เปิดให้บริการ +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,ไม่สามารถเปิด {0} เมื่อ ตัวอย่าง ที่ เปิดให้บริการ apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ตารางที่ {0} ไม่ว่างเปล่า apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,ด้วย Ledgers apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,ภาพ DocType: Communication,Reference Owner,เจ้าของอ้างอิง DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,หน่วยที่เล็กที่สุดส่วนการไหลเวียน (เหรียญ) สำหรับเช่นร้อยละ 1 เหรียญสหรัฐและมันควรจะป้อนเป็น 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0} แถว {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0} แถว {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,โปรดให้ชื่อเต็ม apps/frappe/frappe/model/document.py +904,Beginning with,เริ่มต้นด้วย apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ข้อมูลนำเข้าแม่แบบ @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,ผู้ปกค DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",หากเปิดใช้งานความแรงของรหัสผ่านจะถูกบังคับใช้ตามค่าคะแนนรหัสผ่านขั้นต่ำ ค่าเฉลี่ย 2 มีความแข็งแรงปานกลางและ 4 มีความแข็งแรงมาก DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",หากเปิดใช้งานความแรงของรหัสผ่านจะถูกบังคับใช้ตามค่าคะแนนรหัสผ่านขั้นต่ำ ค่าเฉลี่ย 2 มีความแข็งแรงปานกลางและ 4 มีความแข็งแรงมาก DocType: About Us Settings,"""Team Members"" or ""Management""","“สมาชิกในทีม"" หรือ ""ผู้บริหาร""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',เริ่มต้นสำหรับ 'ตรวจสอบ' ประเภทของข้อมูลต้องเป็น '0' หรือ '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',เริ่มต้นสำหรับ 'ตรวจสอบ' ประเภทของข้อมูลต้องเป็น '0' หรือ '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,เมื่อวาน DocType: Contact,Designation,การแต่งตั้ง DocType: Test Runner,Test Runner,วิ่งทดสอบ @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,มีการเผยแพร่สน DocType: Email Group,Email Group,กลุ่มอีเมล์ DocType: Note,Seen By,เห็นโดย apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,เพิ่มหลายรายการ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,ไม่ชอบ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,ไม่ชอบ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,ตั้งป้ายแสดงผลสำหรับฟิลด์ apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},ค่าไม่ถูกต้อง: {0} จะต้อง {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","เปลี่ยนคุณสมบัติ เขตข้อมูล (ซ่อน , อ่านได้อย่างเดียว ได้รับอนุญาต ฯลฯ )" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,การ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ผู้ดูแลระบบเข้าสู่ระบบ DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",ตัวเลือกการติดต่อเช่น "แบบสอบถามขายการสนับสนุนแบบสอบถาม" ฯลฯ แต่ละบรรทัดใหม่หรือคั่นด้วยเครื่องหมายจุลภาค apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ดาวน์โหลด -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,แทรก +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,แทรก apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},เลือก {0} DocType: Print Settings,Classic,คลาสสิก DocType: Desktop Icon,Color,สี @@ -122,7 +122,7 @@ DocType: Translation,Translation,การแปล apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,ติดตั้ง apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,นาย DocType: Custom Script,Client,ลูกค้า -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,รูปแบบนี้ได้รับการแก้ไขหลังจากที่คุณได้โหลด +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,รูปแบบนี้ได้รับการแก้ไขหลังจากที่คุณได้โหลด DocType: User Permission for Page and Report,User Permission for Page and Report,อนุญาตผู้ใช้งานของหน้าและรายงาน DocType: Address,Himachal Pradesh,รัฐหิมาจัลประเทศ DocType: System Settings,"If not set, the currency precision will depend on number format",หากไม่ได้ตั้งค่าความแม่นยำของสกุลเงินจะขึ้นอยู่กับรูปแบบตัวเลข @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,เหตุผล apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,โปรดระบุผู้ใช้ DocType: Email Unsubscribe,Email Unsubscribe,อีเมล์ยกเลิก DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,เลือกภาพจาก 150px ความกว้างประมาณกับพื้นหลังโปร่งใสเพื่อให้ได้ผลลัพธ์ที่ดีที่สุด -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,ผู้ใช้คนแรกจะกลายเป็นตัวจัดการระบบ (คุณสามารถเปลี่ยนภายหลัง) +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,ผู้ใช้คนแรกจะกลายเป็นตัวจัดการระบบ (คุณสามารถเปลี่ยนภายหลัง) ,App Installer,การติดตั้งแอพพลิเค DocType: Workflow State,circle-arrow-up,วงกลมลูกศรขึ้น apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,อัพโหลด ... DocType: Email Domain,Email Domain,โดเมนอีเมล์ DocType: Workflow State,italic,ตัวเอียง apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,สำหรับทุกคน -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่ได้ สร้าง +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: ไม่สามารถตั้งค่านำเข้าได้โดยไม่ได้ สร้าง apps/frappe/frappe/config/desk.py +26,Event and other calendars.,เหตุการณ์และปฏิทินอื่น ๆ apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,ทุกช่องจำเป็นต้องส่งความคิดเห็น apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,ลากเพื่อเรียงลำดับคอลัมน์ @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,เมนูด้านข้า apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,ไม่สามารถลบหน้าแรกและโฟลเดอร์ไฟล์แนบ apps/frappe/frappe/config/desk.py +19,Files,ไฟล์ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,สิทธิ์ ที่ได้รับ นำไปใช้ กับ ผู้ใช้ที่ อยู่บนพื้นฐานของ สิ่งที่ พวกเขา บทบาท ที่ได้รับมอบหมาย -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,คุณยังไม่ได้ รับอนุญาตให้ส่ง อีเมล ที่เกี่ยวข้องกับ เอกสารฉบับนี้ -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,กรุณาเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อเรียงลำดับ / กลุ่ม +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,คุณยังไม่ได้ รับอนุญาตให้ส่ง อีเมล ที่เกี่ยวข้องกับ เอกสารฉบับนี้ +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,กรุณาเลือกอย่างน้อย 1 คอลัมน์จาก {0} เพื่อเรียงลำดับ / กลุ่ม DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,ตรวจสอบเรื่องนี้ถ้าคุณกำลังทดสอบการชำระเงินของคุณโดยใช้ API แซนด์ apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,คุณยังไม่ได้รับอนุญาตให้ลบรูปแบบมาตรฐานเว็บไซต์ DocType: Feedback Trigger,Example,ตัวอย่าง @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,สมาชิกทั้งหมด apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",หาก บทบาทไม่สามารถเข้าถึง ที่ ระดับ 0 แล้ว ระดับที่สูงขึ้น มีความหมาย apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,บันทึกเป็น DocType: Communication,Seen,การกระทำ -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,แสดงรายละเอียดเพิ่มเติม +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,แสดงรายละเอียดเพิ่มเติม DocType: System Settings,Run scheduled jobs only if checked,เรียกใช้งานที่กำหนดเฉพาะในกรณีที่มีการตรวจสอบ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,จะแสดงเฉพาะส่วนหัวถ้ามีการใช้งาน apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,เอกสารเก่า @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,ซ่อนหัวเรื่อง DocType: Address,Current,ปัจจุบัน DocType: Address,Current,ปัจจุบัน -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,เอกสารที่เกี่ยวข้อง apps/frappe/frappe/config/core.py +17,Groups of DocTypes,กลุ่ม DocTypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,ลบวงกลม @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,กรอง apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},fieldname {0} ไม่สามารถมีอักขระพิเศษเช่น {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ปรับปรุงค่าจำนวนมากในครั้งเดียว apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,ข้อผิดพลาด: เอกสารได้รับการแก้ไขหลังจากที่คุณได้เปิดมัน -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบแม่แบบที่อยู่เริ่มต้น โปรดสร้างใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} ออกจากระบบ: {1} DocType: Address,West Bengal,เบงกอลตะวันตก -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: ไม่ สามารถตั้งค่า กำหนด ส่ง ถ้าไม่ Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: ไม่ สามารถตั้งค่า กำหนด ส่ง ถ้าไม่ Submittable DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",กรองตาม "{0}" DocType: Salutation,Administrator,ผู้บริหาร @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,หัวข้อบล็อก apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,บทบาทมาตรฐานที่ไม่สามารถปิดการใช้งาน DocType: Address,Mizoram,รัฐมิโซรัม DocType: Newsletter,Newsletter,จดหมายข่าว -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,ไม่สามารถใช้แบบสอบถามย่อยในการสั่งซื้อโดย +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,ไม่สามารถใช้แบบสอบถามย่อยในการสั่งซื้อโดย DocType: Web Form,Button Help,ปุ่มช่วยเหลือ DocType: Kanban Board Column,purple,สีม่วง DocType: About Us Settings,Team Members,สมาชิกในทีม @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,ได้ร apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",การสมัครของคุณหมดอายุวันที่ {0} ต่ออายุ {1} DocType: Workflow State,plus-sign,บวกเซ็น apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,ติดตั้งเสร็จสมบูรณ์แล้ว -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} ไม่ได้ติดตั้ง +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} ไม่ได้ติดตั้ง DocType: Workflow State,Refresh,รีเฟรช DocType: Event,Public,สาธารณะ apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,ไม่มีอะไรที่จะแสดง @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,ชอบโด apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,การสนับสนุนทางอีเมล DocType: DocField,Print Hide If No Value,ซ่อนพิมพ์ถ้าไม่มีมูลค่า DocType: Event,yellow,สีเหลือง -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,มีการเผยแพร่สนามจะต้องเป็น fieldname ที่ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,มีการเผยแพร่สนามจะต้องเป็น fieldname ที่ถูกต้อง apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,อัพโหลดไฟล์แนบ DocType: Block Module,Block Module,บล็อกโมดูล apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ส่งออกแม่แบบ @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},บัญชีใหม่ได้รับการสร้างขึ้นสำหรับคุณที่ {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,คำแนะนำส่งอีเมล apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,ส่งคำแนะนำทางอีเมล -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),ใส่อีเมลผู้รับ (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),ใส่อีเมลผู้รับ (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,คิวธงอีเมล์ apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,ไม่สามารถระบุเปิด {0} ลองอย่างอื่น @@ -309,8 +307,8 @@ DocType: Communication,Message ID,หมายเลขข้อความ DocType: Property Setter,Field Name,ชื่อเขต apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite ไม่ได้รับการกำหนดค่า apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,หรือ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ชื่อโมดูล ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,ต่อ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ชื่อโมดูล ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,ต่อ DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,ใบรับรอง DocType: User,Tile,กระเบื้อง @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,แสดงทุกรุ่น DocType: Workflow State,Print,พิมพ์ DocType: User,Restrict IP,จำกัด IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,แผงควบคุม apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,ไม่สามารถที่จะส่งอีเมล์ในเวลานี้ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,ค้นหาหรือพิมพ์คำสั่ง DocType: Communication,Timeline Name,ชื่อไทม์ไลน์ @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,ผู้จัดการฝ่ายข apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ขั้นตอนที่หนึ่งล่าสุด apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,ชื่อของประเภทเอกสาร (DocType) ที่คุณต้องการด้านนี้จะเชื่อมโยงกับ เช่นลูกค้า DocType: User,Roles Assigned,บทบาทที่ได้รับมอบหมาย -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ค้นหาความช่วยเหลือ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,ค้นหาความช่วยเหลือ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ค้นหาความช่วยเหลือ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,ค้นหาความช่วยเหลือ DocType: Top Bar Item,Parent Label,ป้ายแม่ apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",แบบสอบถามของคุณได้รับการตอบรับ เราจะตอบกลับมาในไม่ช้า หากคุณมีข้อมูลเพิ่มเติมใด ๆ โปรดตอบกลับอีเมลนี้ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,สิทธิ์ มีการแปล โดยอัตโนมัติเพื่อให้ มาตรฐานการ รายงานและ การค้นหา @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,แก้ไขหัวเรื่อง DocType: File,File URL,ไฟล์ URL DocType: Version,Table HTML,ตาราง HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ไม่พบผลลัพธ์สำหรับ '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,เพิ่มสมาชิก apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,เหตุการณ์จะเกิดขึ้นสำหรับวันนี้ DocType: Email Alert Recipient,Email By Document Field,อีเมล์ตามสนามเอกสาร @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,จำนวนเงินจากบ apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,ผู้ใช้เป็นข้อบังคับสำหรับแบ่งปัน DocType: DocField,Hidden,ซ่อนเร้น DocType: Web Form,Allow Incomplete Forms,อนุญาตให้รูปแบบที่ไม่สมบูรณ์ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} จะต้องกำหนดค่าก่อน +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} จะต้องกำหนดค่าก่อน apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",ใช้คำไม่กี่คำหลีกเลี่ยงวลีที่พบบ่อย DocType: Workflow State,plane,เครื่องบิน -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,อุ่ย การชำระเงินของคุณล้มเหลว apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","หากคุณกำลังอัปโหลดบันทึกใหม่ ""การตั้งชื่อซีรีส์"" กลายเป็นบังคับถ้าปัจจุบัน" -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,รับการแจ้งเตือนสำหรับวันนี้ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,รับการแจ้งเตือนสำหรับวันนี้ apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType สามารถเปลี่ยนชื่อโดย Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},คุ้มค่าการเปลี่ยนแปลงของ {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,โปรดตรวจสอบอีเมลของคุณสำหรับการตรวจสอบ -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,พับไม่สามารถที่ส่วนท้ายของแบบฟอร์ม +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,พับไม่สามารถที่ส่วนท้ายของแบบฟอร์ม DocType: Communication,Bounced,ตีกลับ DocType: Deleted Document,Deleted Name,ชื่อที่ถูกลบ apps/frappe/frappe/config/setup.py +14,System and Website Users,ของระบบและ ผู้ใช้งาน เว็บไซต์ @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,เอกสารท DocType: GSuite Templates,Destination ID,รหัสปลายทาง DocType: Desktop Icon,List,รายการ DocType: Communication,Link Name,ชื่อการเชื่อมโยง -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,สนาม {0} ในแถว {1} ไม่สามารถ ซ่อนอยู่และ บังคับ โดยไม่ต้อง เริ่มต้น +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,สนาม {0} ในแถว {1} ไม่สามารถ ซ่อนอยู่และ บังคับ โดยไม่ต้อง เริ่มต้น DocType: System Settings,mm/dd/yyyy,วว/ดด/ปปปป apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,รหัสผ่านไม่ถูกต้อง: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,รหัสผ่านไม่ถูกต้อง: DocType: Print Settings,Send document web view link in email,ส่งเอกสารลิงก์ดูเว็บในอีเมล apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,ข้อเสนอแนะของคุณสำหรับเอกสาร {0} ถูกบันทึกเรียบร้อยแล้ว apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,ก่อน -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} แถวสำหรับ {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ย่อยสกุลเงิน สำหรับ "ร้อย" เช่น apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,เลือกไฟล์ที่อัปโหลด @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,ลิงค์ apps/frappe/frappe/utils/file_manager.py +96,No file attached,ไฟล์ที่แนบมา ไม่มี DocType: Version,Version,เวอร์ชัน DocType: User,Fill Screen,เติมเต็มหน้าจอ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",ไม่สามารถแสดงรายงานต้นไม้นี้เนื่องจากข้อมูลที่ขาดหาย ส่วนใหญ่ก็จะถูกกรองออกเนื่องจากสิทธิ์ +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",ไม่สามารถแสดงรายงานต้นไม้นี้เนื่องจากข้อมูลที่ขาดหาย ส่วนใหญ่ก็จะถูกกรองออกเนื่องจากสิทธิ์ apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. เลือกไฟล์ apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,แก้ไขผ่านทางอัพโหลด -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",ประเภทของเอกสาร ... ลูกค้าเช่น +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",ประเภทของเอกสาร ... ลูกค้าเช่น apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,สภาพ '{0}' ไม่ถูกต้อง DocType: Workflow State,barcode,บาร์โค้ด apps/frappe/frappe/config/setup.py +232,Add your own translations,เพิ่มการแปลของคุณเอง @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,วันพุธ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",นอกเหนือจาก บทบาท ตาม กฎ การอนุญาต คุณสามารถใช้ สิทธิ์ของผู้ใช้ ขึ้นอยู่กับ doctypes apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",สิทธิ์เหล่านี้ จะนำไปใช้ สำหรับการทำธุรกรรม ทั้งหมด ที่ บันทึก ได้รับอนุญาตให้มีการเชื่อมโยง -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,ข้อมูลภาพจะต้องเป็น fieldname ที่ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,ข้อมูลภาพจะต้องเป็น fieldname ที่ถูกต้อง DocType: OAuth Client,Token,เหรียญ DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (ชื่อ) ของกิจการที่มีสถานที่ให้บริการจะถูกกำหนด apps/frappe/frappe/limits.py +82,"To renew, {0}.",ต่ออายุ {0} @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,รายการ แถบด้านข้ apps/frappe/frappe/installer.py +125,App {0} already installed,แอป {0} ติดตั้งอยู่แล้ว DocType: Workflow State,exclamation-sign,อัศเจรีย์เข้าสู่ระบบ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,แสดงการอนุญาต -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,ข้อมูล Timeline จะต้องมีการเชื่อมโยงหรือเชื่อมโยงแบบไดนามิก +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,ข้อมูล Timeline จะต้องมีการเชื่อมโยงหรือเชื่อมโยงแบบไดนามิก apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,ช่วงวันที่ apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,แกนต์ apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},หน้า {0} ของ {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,แน apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",รหัสการเข้ารหัสลับไม่ถูกต้องโปรดตรวจสอบ site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,ไปยัง DocType: Kanban Board Column,darkgrey,เทาเข้ม -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},ที่ประสบความสำเร็จ: {0} เป็น {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},ที่ประสบความสำเร็จ: {0} เป็น {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ไม่สามารถเปลี่ยนรายละเอียดผู้ใช้ในการสาธิต โปรดลงชื่อสมัครใช้บัญชีใหม่ที่ https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,กรุณาซ้ำกันนี้เพื่อให้การเปลี่ยนแปลง apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,รุ่น PDF ล้มเหลวเนื่องจากการเชื่อมโยงภาพเสีย @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,พับ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,ที่บันทึกไว้ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,สิ่งใดที่คุณต้องการความช่วยเหลือ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,ตัวเลือกสำหรับการเลือก ตัวเลือกในบรรทัดใหม่แต่ละ -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,อย่างถาวร ยกเลิก {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,อย่างถาวร ยกเลิก {0}? DocType: Workflow State,music,เพลง DocType: Web Page,Settings,การตั้งค่า apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,โปรดระบุประเภทเอกสาร DocType: Print Format,Style Settings,การตั้งค่าลักษณะ -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,ฟิลด์เรียง {0} จะต้องเป็น fieldname ที่ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,ฟิลด์เรียง {0} จะต้องเป็น fieldname ที่ถูกต้อง apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,เพิ่ม DocType: Contact,Sales Manager,ผู้จัดการฝ่ายขาย apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,ตั้งชื่อใหม่ DocType: Print Format,Format Data,ข้อมูลรูปแบบ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,เช่น +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,เช่น DocType: Customize Form Field,Customize Form Field,กำหนดเขตข้อมูลฟอร์ม apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,อนุญาตให้ผู้ใช้ DocType: OAuth Client,Grant Type,ประเภทการอนุญาต apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ตรวจสอบเอกสารที่สามารถอ่านได้โดยผู้ใช้ apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,แอปรายการไม่ได้รับอนุญาต -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,ใช้% เป็นสัญลักษณ์แทน -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",โดเมนอีเมล์ไม่ได้กำหนดค่าสำหรับบัญชีนี้สร้างได้อย่างไร +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,ใช้% เป็นสัญลักษณ์แทน +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",โดเมนอีเมล์ไม่ได้กำหนดค่าสำหรับบัญชีนี้สร้างได้อย่างไร DocType: User,Reset Password Key,รีเซ็ต รหัสผ่าน ที่สำคัญ DocType: Email Account,Enable Auto Reply,เปิดใช้งานการตอบกลับอัตโนมัติ apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,ไม่ได้กระทำ @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,ตั้ง เพียงครั้งเ DocType: Email Queue Recipient,Email Queue Recipient,อีเมลผู้รับคิว DocType: Address,Nagaland,นาคาแลนด์ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,ชื่อผู้ใช้ {0} อยู่แล้ว -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: ไม่ สามารถตั้งค่า นำเข้า เป็น {1} ไม่ importable +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: ไม่ สามารถตั้งค่า นำเข้า เป็น {1} ไม่ importable apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},เกิดข้อผิดพลาดในแม่แบบที่อยู่ของคุณ {0} DocType: Footer Item,"target = ""_blank""",target = "_blank" DocType: Workflow State,hdd,ฮาร์ดดิสก์ @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,จากชื่อเต็ม apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},คุณไม่ได้มีการเข้าถึงรายงาน: {0} DocType: User,Send Welcome Email,ส่งอีเมล์ยินดีต้อนรับ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,อัปโหลดไฟล์ CSV ที่มีสิทธิ์ของผู้ใช้ทั้งหมดในรูปแบบเดียวกับการดาวน์โหลด -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,ถอดกรอง +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,ถอดกรอง DocType: Address,Daman and Diu,Daman และ Diu DocType: Address,Personal,ส่วนตัว apps/frappe/frappe/config/setup.py +113,Bulk Rename,เปลี่ยนชื่อกลุ่ม @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",DocType มาตรฐานไม่สามารถมีรูปแบบการพิมพ์เริ่มต้นใช้ Customize Form DocType: Report,Query,สอบถาม DocType: DocType,Sort Order,เรียง -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},' ในมุมมองรายการ ' ไม่ได้รับอนุญาตสำหรับประเภท {0} ในแถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},' ในมุมมองรายการ ' ไม่ได้รับอนุญาตสำหรับประเภท {0} ในแถว {1} DocType: Custom Field,Select the label after which you want to insert new field.,เลือกป้ายชื่อหลังจากที่คุณต้องการแทรกเขตข้อมูลใหม่ ,Document Share Report,แบ่งปันเอกสารรายงาน DocType: User,Last Login,เข้าสู่ระบบล่าสุด -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},fieldname จะต้อง อยู่ในแถว {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},fieldname จะต้อง อยู่ในแถว {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,คอลัมน์ DocType: Custom Field,Adds a custom field to a DocType,เพิ่มฟิลด์ที่กำหนดเองเพื่อ DocType DocType: File,Is Home Folder,เป็นโฟลเดอร์แรก @@ -594,7 +594,7 @@ DocType: File,Folder,โฟลเดอร์ DocType: DocField,Index,ดัชนี DocType: Email Group,Newsletter Manager,ผู้จัดการจดหมายข่าว apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,ตัวเลือกที่ 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,โพสต์ทั้งหมด +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ถึง {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,เข้าสู่ระบบของข้อผิดพลาดระหว่างการร้องขอ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} ได้รับการเพิ่มอย่างประสบความสำเร็จในกลุ่มอีเมล์ DocType: Address,Uttar Pradesh,อุตตรประเทศ @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,ตัวบ่งชี้ DocType: DocShare,Everyone,ทุกคน DocType: Workflow State,backward,ย้อนกลับ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: เพียงคนเดียวที่ได้รับอนุญาตให้มีกฎบทบาทเดียวกันและระดับ {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: เพียงคนเดียวที่ได้รับอนุญาตให้มีกฎบทบาทเดียวกันและระดับ {1} DocType: Email Queue,Add Unsubscribe Link,เพิ่มการเชื่อมโยงยกเลิกการเป็นสมาชิก apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ยังไม่มีความคิดเห้น. เริ่มต้นการสนทนาใหม่ DocType: Workflow State,share,หุ้น @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,ไม apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,ดูสมาชิก apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,นางสาว / นาง DocType: Website Theme,Background Color,สีพื้นหลัง -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,มีข้อผิดพลาด ในขณะที่ มี การส่งอีเมล์ โปรดลองอีกครั้ง +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,มีข้อผิดพลาด ในขณะที่ มี การส่งอีเมล์ โปรดลองอีกครั้ง DocType: Portal Settings,Portal Settings,การตั้งค่าพอร์ทัล DocType: Web Page,0 is highest,สูงสุดคือ 0 apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,คุณแน่ใจหรือไม่ว่าคุณต้องการที่จะเชื่อมโยงการสื่อสารนี้ไปที่ {0}? @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,ติดต่อเราต apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,กำลังค้นหา ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,กำลังค้นหา ... DocType: Workflow State,text-width,ข้อความความกว้าง -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,วงเงินสูงสุดที่แนบมาสำหรับการบันทึกถึงนี้ +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,วงเงินสูงสุดที่แนบมาสำหรับการบันทึกถึงนี้ apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,เขตมัดจำต่อไปนี้จะต้องเต็มไป:
DocType: Email Alert,View Properties (via Customize Form),ดูอสังหาริมทรัพย์ (ผ่านแบบฟอร์มที่กำหนดเอง) DocType: Note Seen By,Note Seen By,หมายเหตุมองเห็นได้ด้วย @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,รัฐราชสถาน apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,รายงานของตัวสร้างรายงาน จะถูกจัดการโดยตรงผ่านตัวสร้างรายงาน ไม่มีอะไรให้ดำเนินการ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,โปรดตรวจสอบที่อยู่อีเมลของคุณ apps/frappe/frappe/model/document.py +903,none of,ไม่มี -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,ส่งสำเนา +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,ส่งสำเนา apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,อัปโหลดสิทธิ์ของผู้ใช้ DocType: Dropbox Settings,App Secret Key,App คีย์ลับ apps/frappe/frappe/config/website.py +7,Web Site,เว็บไซต์ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,รายการตรวจสอบจะแสดงบนเดสก์ทอป -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} ไม่สามารถกำหนดค่าสำหรับประเภทเดี่ยว +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} ไม่สามารถกำหนดค่าสำหรับประเภทเดี่ยว apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban คณะ {0} ไม่อยู่ apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} กำลังดูเอกสารนี้ DocType: ToDo,Assigned By Full Name,ได้รับมอบหมายจากชื่อเต็ม apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} ได้รับการแก้ไขแล้ว -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,รายงาน ไม่สามารถตั้งค่า สำหรับชนิด เดี่ยว +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,รายงาน ไม่สามารถตั้งค่า สำหรับชนิด เดี่ยว apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} วันที่ผ่านมา DocType: Email Account,Awaiting Password,รอรหัสผ่าน DocType: Address,Address Line 1,ที่อยู่บรรทัดที่ 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",สหรัฐอเมริกาเป็น ขั้นตอนการทำงาน (เช่น ร่าง อนุมัติ ยกเลิก ) DocType: Print Settings,Allow Print for Draft,อนุญาตให้พิมพ์ร่าง apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,ระบุจำนวน -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,ส่งเอกสารนี้เพื่อยืนยัน DocType: Contact,Unsubscribed,ยกเลิกการสมัคร apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,ตั้งบทบาทที่กำหนดเองสำหรับหน้าและรายงาน apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,การจัดอันดับ: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,นำเข้าข้อมูล เครื่องมือ DocType: Address,Dadra and Nagar Haveli,Dadra และ Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,อัปโหลดไฟล์โปรดรอไม่กี่วินาที -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,แนบ รูปของคุณ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,แนบ รูปของคุณ apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,ค่าแถวเปลี่ยน DocType: Workflow State,Stop,หยุด DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,เชื่อมโยงไปยังหน้าเว็บที่คุณต้องการที่จะเปิด ปล่อยว่างไว้ถ้าคุณต้องการที่จะให้มันผู้ปกครองกลุ่ม @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,ตําแหน่งฉลา DocType: Help Article,Expert,ผู้เชี่ยวชาญ DocType: Workflow State,circle-arrow-right,วงกลมลูกศรขวา DocType: LDAP Settings,LDAP Server Url,เซิร์ฟเวอร์ LDAP Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,ไม่สามารถเปิด เช่นเมื่อ มัน {0} เปิด +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,ไม่สามารถเปิด เช่นเมื่อ มัน {0} เปิด apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,จัดคิวสำหรับการติดตั้ง DocType: Custom DocPerm,Custom DocPerm,DocPerm กำหนดเอง DocType: Newsletter,Send Unsubscribe Link,ส่งลิงค์ยกเลิกการรับข่าวสาร @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} ลบออก DocType: Custom DocPerm,Apply User Permissions,สมัคร สิทธิ์ของผู้ใช้ DocType: User,Modules HTML,โมดูล HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ตั้งค่า> ตัวจัดการสิทธิ์ผู้ใช้ apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,ค่านิยม ที่จำเป็น ขาดหายไป DocType: DocType,Other Settings,ตั้งค่าอื่น ๆ DocType: Social Login Keys,Frappe,เย็นเป็นวุ้น @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth ถือ Token apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,เอกสารไม่ได้เลือก apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ดร DocType: Event,Event,เหตุการณ์ -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","เมื่อวันที่ {0}, {1} เขียน:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","เมื่อวันที่ {0}, {1} เขียน:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,ไม่สามารถลบสนามมาตรฐาน คุณสามารถซ่อนได้ถ้าคุณต้องการ DocType: Top Bar Item,For top bar,สำหรับ แถบด้านบน apps/frappe/frappe/utils/bot.py +148,Could not identify {0},ไม่สามารถระบุ {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,โต๊ะเขียนหนังสือ DocType: Workflow State,minus,ลบ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,ข้อผิดพลาด ของเซิร์ฟเวอร์: กรุณาตรวจสอบ เซิร์ฟเวอร์ล็อก หรือติดต่อฝ่ายสนับสนุน ด้านเทคนิค ของคุณ apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,ส่ง อีเมล์ต้อนรับ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,มาจัดเตรียมระบบสำหรับการใช้งานครั้งแรก +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,มาจัดเตรียมระบบสำหรับการใช้งานครั้งแรก apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,แนะนำ apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,ลงทะเบียนเรียบร้อยแล้ว DocType: System Settings,Float Precision,พรีซิชั่ลอย @@ -767,7 +766,7 @@ DocType: Web Form,Allow Print,อนุญาตให้พิมพ์ apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,ปพลิเคชันที่ติดตั้ง apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,ทำเครื่องหมายฟิลด์เป็นข้อบังคับ DocType: Communication,Clicked,คลิก -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},ไม่ อนุญาตให้ ' {0} ' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},ไม่ อนุญาตให้ ' {0} ' {1} DocType: User,Google User ID,ID ผู้ใช้ Google apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,การกำหนดตารางเวลาในการส่ง DocType: DocType,Track Seen,ติดตามการกระทำ @@ -837,7 +836,7 @@ DocType: Address,Kerala,เกรละ DocType: File,Lft,ซ้าย DocType: User,Simultaneous Sessions,ประชุมพร้อมกัน DocType: OAuth Client,Client Credentials,ข้อมูลประจำตัวของไคลเอ็นต์ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,เปิดโมดูลหรือเครื่องมือ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,เปิดโมดูลหรือเครื่องมือ DocType: Communication,Delivery Status,สถานะการจัดส่งสินค้า DocType: Module Def,App Name,ชื่อ แอพพลิเคชั่น apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,ขนาดไฟล์สูงสุดที่อนุญาตคือ {0} MB @@ -849,8 +848,8 @@ DocType: Feedback Request,Reference Communication,การสื่อสาร DocType: Email Queue,Unsubscribe Method,วิธีการยกเลิกการเป็นสมาชิก DocType: GSuite Templates,Related DocType,DocType ที่เกี่ยวข้อง apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,แก้ไขเพื่อเพิ่มเนื้อหา -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,เลือกภาษา -apps/frappe/frappe/__init__.py +510,No permission for {0},ไม่อนุญาตให้ {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,เลือกภาษา +apps/frappe/frappe/__init__.py +509,No permission for {0},ไม่อนุญาตให้ {0} DocType: DocType,Advanced,ก้าวหน้า apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,ดูเหมือนว่าคีย์ API หรือ API ลับที่ไม่ถูกต้อง !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},อ้างอิง: {0} {1} @@ -872,7 +871,7 @@ DocType: Customize Form,Enter Form Type,ป้อนประเภทแบบ apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,ระเบียนที่ไม่มีการติดแท็ก apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,นำสนาม DocType: User,Send Password Update Notification,ส่งแจ้งเตือนการปรับปรุงรหัสผ่าน -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","ช่วยให้ DocType , DocType ระวัง !" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","ช่วยให้ DocType , DocType ระวัง !" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","รูปแบบที่กำหนดเองสำหรับการพิมพ์, อีเมล์" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,การปรับปรุงเพื่อให้รุ่นใหม่ DocType: Custom Field,Depends On,ขึ้นอยู่กับ @@ -966,6 +965,7 @@ apps/frappe/frappe/model/document.py +902,one of,หนึ่งใน apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,โปรดเลือกไฟล์ที่จะคัดลอก apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ตรวจสอบช่วงเวลาหนึ่ง apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,แสดงแท็ก +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",ถ้ามีการใช้การอนุญาตผู้ใช้ที่เข้มงวดและมีการกำหนดสิทธิ์ผู้ใช้สำหรับ DocType สำหรับผู้ใช้เอกสารทั้งหมดที่มีค่าเชื่อมโยงจะว่างเปล่าจะไม่ปรากฏแก่ผู้ใช้รายนั้น DocType: Address,Billing,การเรียกเก็บเงิน DocType: Email Queue,Not Sent,ส่งไม่ได้ DocType: Web Form,Actions,การดำเนินการ @@ -996,6 +996,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ชัดเ apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ทุกเหตุการณ์ที่เกิดขึ้นวันที่ควรจะเสร็จสิ้นในวันเดียวกัน DocType: Communication,User Tags,แท็กผู้ใช้ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,กำลังเรียกรูปภาพ .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ตั้งค่า> ผู้ใช้ DocType: Workflow State,download-alt,ดาวน์โหลด alt- apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ดาวน์โหลด App {0} DocType: Communication,Feedback Request,ผลตอบรับการร้องขอ @@ -1013,7 +1014,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,การสำรองข้อมูล apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,เพิ่มผู้ติดต่อ DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,ตัวเลือก: ส่งไปยังรหัสเหล่านี้ แต่ละอีเมล์บนแถวใหม่ -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,ซ่อนรายละเอียด +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,ซ่อนรายละเอียด DocType: Workflow State,Tasks,งาน DocType: Event,Tuesday,วันอังคาร DocType: Blog Settings,Blog Settings,การตั้งค่าบล็อก @@ -1033,9 +1034,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,เขียนไฟล์หลามในโฟลเดอร์เดียวกันที่นี้จะถูกบันทึกไว้และคอลัมน์ผลตอบแทนและผล DocType: DocType,Sort Field,เรียง ฟิลด์ DocType: Razorpay Settings,Razorpay Settings,การตั้งค่า Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,แก้ไขตัวกรอง -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,สนาม {0} ของ {1} ไม่สามารถ บังคับ -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",เช่น. หากนำไปใช้สิทธิ์ของผู้ใช้สำหรับการตรวจสอบรายงาน DocType แต่ไม่มีสิทธิ์ของผู้ใช้ที่กำหนดไว้สำหรับรายงานผลการใช้แล้วรายงานทั้งหมดจะถูกแสดงให้เห็นว่าผู้ใช้ที่ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,แก้ไขตัวกรอง +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,สนาม {0} ของ {1} ไม่สามารถ บังคับ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,เพิ่มอีก apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,ซ่อนกราฟ DocType: System Settings,Session Expiry Mobile,เซสชั่นที่หมดอายุมือถือ @@ -1050,6 +1050,7 @@ DocType: Communication,Delayed,ล่าช้า apps/frappe/frappe/config/setup.py +128,List of backups available for download,รายชื่อของการสำรองข้อมูลที่สามารถดาวน์โหลดได้ apps/frappe/frappe/www/login.html +89,Sign up,ลงชื่อ DocType: Test Runner,Output,เอาท์พุต +DocType: Email Alert,Set Property After Alert,ตั้งค่าคุณสมบัติหลังการแจ้งเตือน apps/frappe/frappe/config/setup.py +226,Add fields to forms.,เพิ่มเขตข้อมูล ในรูปแบบ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,ดูเหมือนว่ามีบางอย่างผิดปกติกับการกำหนดค่า Paypal ของไซต์นี้ DocType: File,rgt,RGT @@ -1057,6 +1058,7 @@ DocType: Email Account,Sendgrid,SendGrid DocType: Workflow State,leaf,ใบไม้ DocType: Portal Menu Item,Portal Menu Item,รายการเมนูพอร์ทัล DocType: User Email,Email ID,ID อีเมล์ +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",ถ้ามีการตรวจสอบการใช้สิทธิ์ผู้ใช้สำหรับรายงาน DocType แต่ไม่มีกำหนดสิทธิ์ผู้ใช้สำหรับรายงานสำหรับผู้ใช้ระบบจะแสดงรายงานทั้งหมดแก่ผู้ใช้รายนั้น DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,รายการของทรัพยากรที่ app ลูกค้าจะสามารถเข้าถึงหลังจากที่ผู้ใช้จะช่วยให้มัน
เช่นโครงการ DocType: Translation,Translated Text,ข้อความที่แปล DocType: Contact Us Settings,Query Options,ตัวเลือกแบบสอบถาม @@ -1074,7 +1076,7 @@ DocType: Address,Contacts,ติดต่อ DocType: System Settings,Setup Complete,การติดตั้ง เสร็จสมบูรณ์ apps/frappe/frappe/config/setup.py +66,Report of all document shares,รายงานหุ้นเอกสารทั้งหมด apps/frappe/frappe/www/update-password.html +18,New Password,รหัสผ่านใหม่ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,กรอง {0} ที่ขาดหายไป +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,กรอง {0} ที่ขาดหายไป apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,ขออภัย! คุณไม่สามารถลบความคิดเห็นสร้างขึ้นโดยอัตโนมัติ DocType: Website Theme,Style using CSS,สไตล์การใช้ CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType อ้างอิง @@ -1129,7 +1131,7 @@ DocType: User,Block Modules,โมดูลที่ถูกบล็อก apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,ระยะเวลาในการย้อนกลับไปที่ {0} สำหรับ '{1}' ใน '{2}'; การตั้งค่าความยาวเป็น {3} จะทำให้เกิดการตัดของข้อมูล DocType: Print Format,Custom CSS,CSS ที่กำหนดเอง apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,เพิ่มความคิดเห็น -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},ละเว้น: {0} เป็น {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},ละเว้น: {0} เป็น {1} DocType: Address,Gujarat,รัฐคุชราต apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,เข้าสู่ระบบ ของข้อผิดพลาด เกี่ยวกับเหตุการณ์ โดยอัตโนมัติ ( ตารางเวลา ) apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ไม่ได้ ค่าที่ ถูกต้อง Comma Separated (CSV File) @@ -1138,7 +1140,7 @@ DocType: Email Account,Default Incoming,เริ่มต้นเข้าม DocType: Workflow State,repeat,ทำซ้ำ DocType: Website Settings,Banner,แบนเนอร์ DocType: Role,"If disabled, this role will be removed from all users.",หากปิดการใช้งานบทบาทนี้จะถูกลบออกจากผู้ใช้ทั้งหมด -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,ช่วยในการค้นหา +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,ช่วยในการค้นหา apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,สมัครสมาชิก แต่คนพิการ DocType: DocType,Hide Copy,ซ่อนคัดลอก apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,ล้าง ทุกบทบาท @@ -1170,7 +1172,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ประเทศ apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,ที่อยู่ DocType: Communication,Shared,ที่ใช้ร่วมกัน -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,แนบเอกสารพิมพ์ +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,แนบเอกสารพิมพ์ DocType: Bulk Update,Field,สนาม DocType: Communication,Received,ที่ได้รับ DocType: Social Login Keys,Google Client ID,ID ของ Google ลูกค้า @@ -1191,12 +1193,12 @@ DocType: Report,Query Report,รายงานแบบสอบถาม DocType: User,Set New Password,ตั้งรหัสผ่านใหม่ DocType: User,Github User ID,GitHub User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,ถ้าเอกสารประเภท -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ไม่สามารถลบหรือยกเลิกเนื่องจาก {0} {1} การเชื่อมโยงกับ {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","ไม่สามารถลบหรือยกเลิกเนื่องจาก {0} {1} การเชื่อมโยงกับ {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},ไม่รู้จักแอพพลิเค {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s ไม่ใช่รูปแบบรายงานที่ถูกต้อง รูปแบบรายงานควรเป็น \ หนึ่งใน %s ต่อไปนี้ DocType: Communication,Chat,พูดคุย -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},fieldname {0} ปรากฏขึ้น หลายครั้งใน แถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},fieldname {0} ปรากฏขึ้น หลายครั้งใน แถว {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} จาก {1} เป็น {2} ในแถว # {3} DocType: Communication,Expired,หมดอายุ DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),จำนวนคอลัมน์สำหรับเขตข้อมูลในตาราง (คอลัมน์ทั้งหมดในตารางควรจะน้อยกว่า 11) @@ -1206,30 +1208,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,มีบัญช apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},ไม่ระบุรูปแบบการพิมพ์: {0} DocType: Workflow State,arrow-down,ลูกศรลง apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,ล่มสลาย -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},ผู้ใช้ไม่ได้รับอนุญาตในการลบ {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,อัพเดทล่าสุดเมื่อ DocType: Help Article,Likes,ทำเช่นเดียวกับ DocType: Website Settings,Top Bar,Bar สถานที่ยอด DocType: GSuite Settings,Script Code,รหัสสคริปต์ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,สร้างอีเมลผู้ใช้ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,สร้างอีเมลผู้ใช้ -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,ไม่ได้ระบุสิทธิ์ +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,ไม่ได้ระบุสิทธิ์ apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,การตั้งค่าส่วนกลาง: ผู้ใช้จะสามารถเลือกไอคอนการตรวจสอบ apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,ไม่พบ {0} DocType: Custom Role,Custom Role,บทบาทที่กำหนดเอง apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,หน้าแรก / โฟลเดอร์ทดสอบ 2 DocType: System Settings,Ignore User Permissions If Missing,ดูรายละเอียดสิทธิ์ของผู้ใช้ถ้าขาดหายไป -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,กรุณาบันทึกเอกสารก่อนที่จะอัพโหลด +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,กรุณาบันทึกเอกสารก่อนที่จะอัพโหลด apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,ป้อนรหัสผ่านของคุณ DocType: Dropbox Settings,Dropbox Access Secret,ความลับในการเข้าถึง Dropbox apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,เพิ่มความคิดเห็นอื่น apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,แก้ไข DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,ยกเลิกการเป็นสมาชิกจดหมายข่าว -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,พับต้องมาก่อนที่จะแบ่งส่วน +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,พับต้องมาก่อนที่จะแบ่งส่วน apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,ปรับปรุงครั้งสุดท้ายโดย DocType: Workflow State,hand-down,มือลง DocType: Address,GST State,รัฐ GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยที่ไม่ได้ส่ง +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: ไม่สามารถตั้งค่ายกเลิกได้โดยที่ไม่ได้ส่ง DocType: Website Theme,Theme,กระทู้ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,มีข้อผิดพลาด ได้ DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,เปลี่ยนเส้นทาง URI ผูกพันกับรหัสรับรองความถูกต้อง @@ -1248,7 +1250,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,ก DocType: Website Theme,Text Color,สีของข้อความ DocType: Desktop Icon,Force Show,กองทัพแสดง apps/frappe/frappe/auth.py +78,Invalid Request,ขอไม่ถูกต้อง -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,รูปแบบนี้ไม่ได้มีการป้อนข้อมูลใด ๆ +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,รูปแบบนี้ไม่ได้มีการป้อนข้อมูลใด ๆ apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},เซสชั่น ที่หมดอายุ จะต้องอยู่ใน รูปแบบ {0} DocType: Website Sidebar Item,Group,กลุ่ม DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","เลือก target = ""_blank"" จะเปิดใน หน้าใหม่" @@ -1257,7 +1259,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,ละเว้นข้อผิดพลาดการเข้ารหัส DocType: Workflow State,wrench,ประแจ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,ยังไม่ได้ระบุ -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,ตั้งค่า> ผู้ใช้ DocType: Authentication Log,Date,วันที่ DocType: Website Settings,Disable Signup,ปิดการใช้งานลงทะเบียน apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,นั่งตึงตัว ในขณะที่ ระบบของคุณ จะถูก ติดตั้ง ซึ่งอาจใช้เวลา สักครู่ @@ -1268,7 +1269,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,เพิ่มความเห็น DocType: DocField,Mandatory,จำเป็น apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,โมดูลเพื่อการส่งออก -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} : ไม่มีการตั้งค่าสิทธิ์ขั้นพื้นฐาน +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} : ไม่มีการตั้งค่าสิทธิ์ขั้นพื้นฐาน apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,สมัครของคุณจะหมดอายุในวันที่ {0} apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},ดาวน์โหลดลิงค์สำหรับการสำรองข้อมูลของคุณจะถูกส่งไปที่ที่อยู่อีเมลต่อไปนี้: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","ความหมายของ Submit, ยกเลิกอัพเดท" @@ -1281,11 +1282,11 @@ DocType: Desktop Icon,query-report,แบบสอบถามรายงาน apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},ได้รับมอบหมายให้ {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,ตัวกรองที่บันทึก DocType: DocField,Percent,เปอร์เซ็นต์ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,กรุณาตั้งค่าตัวกรอง +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,กรุณาตั้งค่าตัวกรอง apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,เชื่อมโยงกับ DocType: Workflow State,book,หนังสือ DocType: Website Settings,Landing Page,หน้า Landing -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,ข้อผิดพลาดในสคริปต์ที่กำหนดเอง +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,ข้อผิดพลาดในสคริปต์ที่กำหนดเอง apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} ชื่อ apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",นำเข้าจัดคิวการร้องขอ ซึ่งอาจใช้เวลาสักครู่โปรดอดทน apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,ไม่มีสิทธิ์ที่กำหนดไว้สำหรับเกณฑ์นี้ @@ -1297,7 +1298,7 @@ DocType: System Settings,Allow Login using Mobile Number,อนุญาตก apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,คุณไม่ได้มีสิทธิ์เพียงพอในการเข้าถึงทรัพยากรนี้ กรุณาติดต่อผู้จัดการของคุณได้รับการเข้าถึง DocType: Custom Field,Custom,ประเพณี apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,การแจ้งเตือนการตั้งค่าอีเมล์ตามเกณฑ์ต่างๆ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},กระทู้ยื่นภายใต้ {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},กระทู้ยื่นภายใต้ {0} DocType: Email Alert,Send alert if date matches this field's value,ส่งการแจ้งเตือนถ้าวันที่ตรงกับค่าของเขตนี้ DocType: Workflow,Transitions,เปลี่ยน apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,นำ {0} และลบข้อมูลทั้งหมดหรือไม่ @@ -1306,9 +1307,8 @@ DocType: User,Login After,เข้าสู่ระบบหลังจาก DocType: Print Format,Monospace,monospace DocType: Letter Head,Printing,การพิมพ์ DocType: Workflow State,thumbs-up,ยกนิ้วขึ้น -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากตั้งค่า> อีเมล> บัญชีอีเมล DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Precision ควรอยู่ระหว่าง 1 และ 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Precision ควรอยู่ระหว่าง 1 และ 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,และ DocType: Error Snapshot,Frames,เฟรม @@ -1317,7 +1317,7 @@ DocType: About Us Team Member,Image Link,ลิงก์รูปภาพ DocType: Auto Email Report,Report Filters,ตัวกรองรายงาน apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ตอนนี้ DocType: Workflow State,step-backward,ขั้นตอนย้อนหลัง -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,โปรดตั้งค่า คีย์ การเข้าถึง Dropbox ใน การตั้งค่า เว็บไซต์ของคุณ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,ลบบันทึกนี้จะอนุญาตให้ส่งไปยังที่อยู่อีเมลนี้ apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,เฉพาะข้อมูลที่จำเป็นต้องมีความจำเป็นสำหรับระเบียนใหม่ คุณสามารถลบคอลัมน์ไม่ได้รับคำสั่งหากคุณต้องการ @@ -1339,8 +1339,7 @@ DocType: File,Is Attachments Folder,เป็นโฟลเดอร์ไฟ apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,ขยายทั้งหมด apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,เข้าสู่ระบบรหัสที่ถูกต้อง apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Re - เปิด -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,คุณได้ยกเลิกการชำระเงิน -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,กรุณาเลือก csv ที่ถูกต้อง กับข้อมูล +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,กรุณาเลือก csv ที่ถูกต้อง กับข้อมูล apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} ยกเลิกการแชร์เอกสารร่วมกับ{1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,การเปลี่ยนแปลง สถานะ เอกสารจาก {0} เป็น {1} ไม่ได้รับอนุญาต DocType: DocType,"Make ""name"" searchable in Global Search",Make "ชื่อ" ค้นหาใน Search ทั่วโลก @@ -1353,7 +1352,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ร DocType: Help Category,Help Category,ช่วยเหลือหมวดหมู่ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,ผู้ใช้ {0} ถูกปิดใช้งาน apps/frappe/frappe/www/404.html +8,Page missing or moved,หน้าขาดหายไปหรือย้าย -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,แก้ไข {0} คุณสมบัติ DocType: DocType,Route,เส้นทาง apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay การตั้งค่าเกตเวย์การชำระเงิน DocType: DocField,Name,ชื่อ @@ -1361,8 +1359,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ค้นหาเอกสาร apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,ค้นหาเอกสาร DocType: OAuth Authorization Code,Valid,ถูกต้อง -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,เปิดการเชื่อมโยง -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,ภาษาของคุณ +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,เปิดการเชื่อมโยง +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,ภาษาของคุณ apps/frappe/frappe/desk/form/load.py +46,Did not load,ไม่ได้โหลด apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,เพิ่มแถว DocType: Tag Category,Doctypes,doctypes @@ -1377,7 +1375,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,คือก DocType: Address,Lakshadweep Islands,Lakshadweep Islands apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,สามารถเขียน apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",เอกสาร บางอย่างเช่น ใบแจ้งหนี้ไม่ควร มีการเปลี่ยนแปลง ครั้ง สุดท้าย รัฐ สุดท้าย สำหรับเอกสาร ดังกล่าวเรียกว่า ส่ง คุณสามารถ จำกัด บทบาท ซึ่ง สามารถ ส่ง -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,คุณยังไม่ได้รับอนุญาตในการส่งออกรายงานฉบับนี้ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,คุณยังไม่ได้รับอนุญาตในการส่งออกรายงานฉบับนี้ apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 รายการที่เลือก DocType: Newsletter,Test Email Address,ทดสอบอีเมล์ DocType: ToDo,Sender,ผู้ส่ง @@ -1412,7 +1410,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,นำเข้า .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,หมายเลขเอกสาร DocType: Print Settings,Letter,จดหมาย -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,ข้อมูลภาพจะต้องเป็นชนิดแนบรูปภาพ +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,ข้อมูลภาพจะต้องเป็นชนิดแนบรูปภาพ DocType: DocField,Columns,คอลัมน์ DocType: Async Task,Succeeded,ประสบความสำเร็จ apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},เขตข้อมูล ที่จำเป็นในการ บังคับ {0} @@ -1463,7 +1461,7 @@ DocType: DocField,Text Editor,แก้ไขข้อความ apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,การตั้งค่าสำหรับหน้าเกี่ยวกับเรา apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,แก้ไข HTML ที่กำหนดเอง DocType: Error Snapshot,Error Snapshot,ภาพรวมข้อผิดพลาด -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,ใน +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,ใน DocType: Email Alert,Value Change,ค่าเปลี่ยน DocType: Standard Reply,Standard Reply,ตอบดูมาตรฐาน apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ความกว้างของกล่องใส่ @@ -1479,12 +1477,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,ใช้ fieldname นี้เพื่อสร้างชื่อ apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,นำเข้าอีเมล์จาก apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,เชิญผู้ใช้ -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,เลือกสิ่งที่แนบ +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,เลือกสิ่งที่แนบ apps/frappe/frappe/model/naming.py +94, for {0},สำหรับ {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,มีข้อผิดพลาดอยู่ กรุณารายงาน -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,คุณยังไม่ได้ รับอนุญาตให้ พิมพ์เอกสาร นี้ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,คุณยังไม่ได้ รับอนุญาตให้ พิมพ์เอกสาร นี้ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,กรุณาตั้งค่าฟิลเตอร์กรองในตารางรายงาน -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,โหลดรายงาน +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,โหลดรายงาน apps/frappe/frappe/limits.py +72,Your subscription will expire today.,การสมัครของคุณจะหมดอายุในวันนี้ DocType: Page,Standard,มาตรฐาน apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,แนบไฟล์ @@ -1514,7 +1512,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,ส่วนขยายในภูมิภาค DocType: LDAP Settings,Base Distinguished Name (DN),ฐานชื่อ (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,ออกจากการสนทนานี้ -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},ไม่ได้ตั้งค่า ตัวเลือก สำหรับฟิลด์ ลิงค์ {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},ไม่ได้ตั้งค่า ตัวเลือก สำหรับฟิลด์ ลิงค์ {0} DocType: Customize Form,"Must be of type ""Attach Image""",ต้องเป็นชนิด "แนบรูปภาพ" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,ไม่เลือกทั้งหมด apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},คุณไม่สามารถล้าง 'อ่านอย่างเดียว' สำหรับเขตข้อมูล {0} @@ -1557,9 +1555,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,หมายเหตุ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,รายงานข้อผิดพลาด apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,เงื่อนไขข้อเสนอแนะไม่ตรงกัน -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,ข้อมูล Timeline จะต้องเป็น fieldname ที่ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,ข้อมูล Timeline จะต้องเป็น fieldname ที่ถูกต้อง DocType: Currency,Symbol,สัญญลักษณ์ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,แถว # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,แถว # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,ส่ง รหัสผ่านใหม่ apps/frappe/frappe/auth.py +245,Login not allowed at this time,เข้าสู่ระบบ ไม่ได้รับอนุญาต ในเวลานี้ DocType: Email Account,Email Sync Option,อีเมล์ตัวเลือกการซิงค์ @@ -1581,7 +1579,7 @@ DocType: DocField,Text,ข้อความ apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,มาตรฐานตอบแบบสอบถามที่พบบ่อย apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,เริ่มต้นส่ง DocType: Workflow State,volume-off,ปริมาณออก -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},ชอบ {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},ชอบ {0} DocType: Footer Item,Footer Item,ส่วนท้ายของรายการ ,Download Backups,ดาวน์โหลดสำรอง apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,หน้าแรก / โฟลเดอร์ทดสอบ 1 @@ -1616,7 +1614,7 @@ DocType: Web Page,Text Align,ข้อความตําแหน่ง apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},ชื่อไม่สามารถมีตัวอักษรพิเศษเช่น {0} DocType: Contact Us Settings,Forward To Email Address,ไปข้างหน้า เพื่อ ที่อยู่อีเมล์ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,แสดงข้อมูลทั้งหมด -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,ฟิลด์ จะต้องfieldname ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,ฟิลด์ จะต้องfieldname ถูกต้อง apps/frappe/frappe/config/core.py +7,Documents,เอกสาร DocType: Email Flag Queue,Is Completed,เป็นที่เรียบร้อยแล้ว apps/frappe/frappe/www/me.html +22,Edit Profile,แก้ไขโปรไฟล์ @@ -1626,8 +1624,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",ฟิลด์นี้จะปรากฏเฉพาะถ้า fieldname ที่กำหนดไว้ที่นี่มีค่าหรือกฎระเบียบที่เป็นจริง (ตัวอย่าง): myfield EVAL: doc.myfield == 'ค่าของฉัน' EVAL: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ในวันนี้ -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,ในวันนี้ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ในวันนี้ +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,ในวันนี้ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",เมื่อคุณได้ตั้ง นี้ผู้ใช้ จะมีเพียง เอกสาร การเข้าถึง สามารถ ( เช่น โพสต์ บล็อก ) ที่ การเชื่อมโยง ที่มีอยู่ (เช่น Blogger ) DocType: Error Log,Log of Scheduler Errors,เข้าสู่ระบบของข้อผิดพลาดจัดตารางเวลา DocType: User,Bio,ไบโอ @@ -1651,6 +1649,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ดาวเป็นค่าต่ำสุดและ 5 ดาวเป็นค่าสูงสุด DocType: Event,Ref Name,ชื่อ Ref DocType: Web Page,Center,ศูนย์ +DocType: Email Alert,Value To Be Set,ค่าที่จะตั้งค่า apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,ระดับแรก DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,ที่เป็นตัวแทนของรัฐที่ได้รับอนุญาตในเอกสารและบทบาทที่ได้รับมอบหมายในการเปลี่ยนสถานะ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,แบบฟอร์มรีเฟรช @@ -1671,18 +1670,18 @@ DocType: DocType,Has Web View,มีมุมมองเว็บ apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",ชื่อ DocType ควรเริ่มต้นด้วยตัวอักษรและมันอาจประกอบด้วยตัวอักษรตัวเลขและขีดช่องว่าง DocType: Communication,Spam,สแปม DocType: Integration Request,Integration Request,ขอบูรณาการ -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,น่ารัก +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,น่ารัก DocType: Address,Maharashtra,มหาราษฎ DocType: Address,Accounts User,ผู้ใช้งานบัญชี DocType: Web Page,HTML for header section. Optional,HTML สำหรับ ส่วนหัว ไม่จำเป็น apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,คุณลักษณะนี้จะเป็นแบรนด์ใหม่และยังคงทดลอง -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,สูงสุด {0} แถว รับอนุญาต +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,สูงสุด {0} แถว รับอนุญาต DocType: Email Unsubscribe,Global Unsubscribe,ยกเลิกทั่วโลก apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,นี่คือรหัสผ่านที่พบบ่อยมาก apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,ดู DocType: Communication,Assigned,ที่ได้รับมอบหมาย DocType: Print Format,Js,js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,เลือกรูปแบบพิมพ์ +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,เลือกรูปแบบพิมพ์ apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,รูปแบบแป้นพิมพ์สั้นเป็นเรื่องง่ายที่จะคาดเดา DocType: Portal Settings,Portal Menu,เมนูพอร์ทัล apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,ความยาวของ {0} ควรอยู่ระหว่าง 1 ถึง 1000 @@ -1721,7 +1720,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,ผู้ใช้ไม่สามารถค้นหา apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,รูปแบบเอาต์พุตที่ไม่ถูกต้อง DocType: Custom DocPerm,Apply this rule if the User is the Owner,ใช้กฎนี้ถ้าผู้ใช้เป็นเจ้าของ -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,จะเป็นรหัสการเข้าสู่ระบบของคุณ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,จะเป็นรหัสการเข้าสู่ระบบของคุณ apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,สร้าง รายงาน DocType: Note,Notify users with a popup when they log in,แจ้งเตือนเมื่อมีผู้ใช้ที่มีป๊อปอัพเมื่อพวกเขาเข้าสู่ระบบ apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} ไม่มีอยู่ เลือกเป้าหมายใหม่ในการผสานรวม @@ -1740,17 +1739,18 @@ DocType: User Permission for Page and Report,Roles Permission,บทบาทก apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,อัพเดท DocType: Error Snapshot,Snapshot View,ดูภาพรวม apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,กรุณาบันทึก ข่าวก่อนที่จะส่ง -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},ตัวเลือก จะต้องเป็น DocType ที่ถูกต้องสำหรับ เขตข้อมูล {0} ในแถว {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ปีที่ผ่านมา +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},ตัวเลือก จะต้องเป็น DocType ที่ถูกต้องสำหรับ เขตข้อมูล {0} ในแถว {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,แก้ไขคุณสมบัติ DocType: Patch Log,List of patches executed,รายชื่อของแพทช์ดำเนินการ apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} ได้ยกเลิกการเป็นสมาชิกแล้ว -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,กลางการสื่อสาร +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,กลางการสื่อสาร DocType: Website Settings,Banner HTML,แบนเนอร์ HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',โปรดเลือกวิธีการชำระเงินอีกครั้ง Razorpay ไม่สนับสนุนการทำธุรกรรมในสกุลเงิน '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,จัดคิวสำหรับการสำรองข้อมูล มันอาจใช้เวลาไม่กี่นาทีถึงหนึ่งชั่วโมง DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,ลงทะเบียน OAuth app ลูกค้า -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ไม่สามารถเป็น ""{2}"" มันควรจะเป็นอย่างใดอย่างหนึ่งของ ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} ไม่สามารถเป็น ""{2}"" มันควรจะเป็นอย่างใดอย่างหนึ่งของ ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} หรือ {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,แสดงหรือซ่อนไอคอนสก์ท็อป apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,รหัสผ่านปรับปรุง @@ -1777,7 +1777,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,แสดงแบ่งบรรทัดหลังส่วนข้อมูล DocType: Blogger,Short Name,ชื่อสั้น apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},หน้า {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",คุณจะเลือกตัวเลือกการซิงค์เป็นทั้งหมดก็จะ resync ทั้งหมด \ อ่านเช่นเดียวกับข้อความยังไม่ได้อ่านจากเซิร์ฟเวอร์ นอกจากนี้ยังอาจก่อให้เกิดความซ้ำซ้อน \ ของการสื่อสาร (อีเมล) apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,ไฟล์ขนาด @@ -1789,6 +1789,7 @@ DocType: Contact,Purchase Manager,ผู้จัดการฝ่ายจั DocType: Custom Script,Sample,กลุ่มข้อมูลตัวอย่าง apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised แท็ก DocType: Event,Every Week,ทุกสัปดาห์ +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ไม่ได้ตั้งค่าบัญชีอีเมล โปรดสร้างบัญชีอีเมลใหม่จากตั้งค่า> อีเมล> บัญชีอีเมล apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,คลิกที่นี่เพื่อตรวจสอบการใช้งานของคุณหรืออัปเกรดเป็นแผนสูง DocType: Custom Field,Is Mandatory Field,เขตบังคับเป็น DocType: User,Website User,ผู้ใช้งานเว็บไซต์ @@ -1812,16 +1813,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,เมนูที่กำหนดเองแถบด้านข้าง DocType: Workflow State,pencil,ดินสอ apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,ข้อความแชทและการแจ้งเตือนอื่น ๆ -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},ใส่หลังจากที่ไม่สามารถกำหนดให้เป็น {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},ใส่หลังจากที่ไม่สามารถกำหนดให้เป็น {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,แบ่งปัน {0} กับ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,การตั้งค่าบัญชีอีเมล์กรุณาใส่รหัสผ่านของคุณสำหรับ: DocType: Workflow State,hand-up,มือขึ้น DocType: Blog Settings,Writers Introduction,แนะนำนักเขียน DocType: Address,Phone,โทรศัพท์ -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,ข้อผิดพลาดขณะที่การประเมินอีเมล์แจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,ข้อผิดพลาดขณะที่การประเมินอีเมล์แจ้งเตือน {0} โปรดแก้ไขแม่แบบของคุณ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,เลือกประเภทของเอกสารหรือบทบาทที่จะเริ่มต้น DocType: Contact,Passive,ไม่โต้ตอบ DocType: Contact,Accounts Manager,ผู้จัดการบัญชี +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,การชำระเงินของคุณถูกยกเลิก apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,เลือกประเภทไฟล์ DocType: Help Article,Knowledge Base Editor,ความรู้แก้ไขฐาน apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,ไม่พบหน้าเว็บ @@ -1848,6 +1850,7 @@ DocType: Property Setter,Property Type,ประเภทอสังหาร DocType: Workflow State,screenshot,ภาพหน้าจอ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,เฉพาะผู้บริหารสามารถบันทึกรายงานมาตรฐาน กรุณาเปลี่ยนชื่อและบันทึก DocType: System Settings,Background Workers,แรงงานเบื้องหลัง +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} ขัดแย้งกับเมตาแท็ก DocType: Deleted Document,Data,ข้อมูล apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,สถานะเอกสาร apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},คุณได้ทำ {0} ของ {1} @@ -1872,7 +1875,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,แสดงสิทธิ์ของผู้ใช้ apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,คุณจะต้อง เข้าสู่ระบบและ มี บทบาท ผู้จัดการ ระบบ เพื่อให้สามารถ เข้าถึง การสำรองข้อมูล apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,ที่เหลืออยู่ -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,กรุณาบันทึกก่อนที่จะติด +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,กรุณาบันทึกก่อนที่จะติด apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),เพิ่ม {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},ธีมเริ่มต้นตั้งอยู่ใน {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},fieldtype ไม่สามารถเปลี่ยนแปลงได้จาก {0} เป็น {1} ในแถว {2} @@ -1893,11 +1896,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,เซส apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,เซสชันเริ่มล้มเหลว apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},อีเมลนี้จะถูกส่งไปที่ {0} และคัดลอกไปยัง {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,โปรดตั้งค่าบัญชีอีเมลเริ่มต้นจากตั้งค่า> อีเมล> บัญชีอีเมล -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},สร้างใหม่ {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},สร้างใหม่ {0} DocType: Email Rule,Is Spam,เป็นสแปม apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},รายงาน {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},เปิด {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},เปิด {0} DocType: OAuth Client,Default Redirect URI,เริ่มต้นการเปลี่ยนเส้นทาง URI DocType: Email Alert,Recipients,ผู้รับ DocType: Workflow State,ok-sign,OK-เครื่องหมาย @@ -1915,6 +1917,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,บทความช่วยเหลือ ,Modules Setup,การติดตั้งโมดูล apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,ประเภท: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,การชำระเงินของคุณล้มเหลว DocType: Communication,Unshared,ยกเลิกการแบ่งปัน DocType: Address,Karnataka,กรณาฏกะ apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ไม่พบโมดูล @@ -1962,7 +1965,7 @@ DocType: Website Settings,Brand Image,ภาพลักษณ์ DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",การติดตั้งจากด้านบนแถบนำทางท้ายและโลโก้ DocType: Web Form Field,Max Value,ค่าสูงสุด -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},สำหรับ {0} ในระดับ {1} ใน {2} ในแถว {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},สำหรับ {0} ในระดับ {1} ใน {2} ในแถว {3} DocType: Contact,All,ทั้งหมด DocType: Email Queue,Recipient,ผู้รับ DocType: Communication,Has Attachment,มีสิ่งที่แนบมา @@ -1979,7 +1982,8 @@ DocType: Workflow State,align-right,จัดขวา DocType: Auto Email Report,Email To,อีเมล์เพื่อ apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,โฟลเดอร์ {0} ไม่ว่างเปล่า DocType: Page,Roles,บทบาท -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,สนาม {0} ไม่ได้ เลือก +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},ข้อผิดพลาด: ค่าที่หายไปสำหรับ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,สนาม {0} ไม่ได้ เลือก DocType: System Settings,Session Expiry,หมดอายุเซสชั่น DocType: Workflow State,ban-circle,ห้ามวงกลม DocType: Email Flag Queue,Unread,ไม่ได้อ่าน @@ -1994,7 +1998,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,ค่าดีฟอลต์รายละเอียด apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,สร้างใหม่ DocType: Workflow State,chevron-down,วีลง -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Email ไม่ได้ส่งไปที่ {0} (ยกเลิก / ปิดการใช้งาน) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Email ไม่ได้ส่งไปที่ {0} (ยกเลิก / ปิดการใช้งาน) DocType: Async Task,Traceback,ตรวจสอบย้อนกลับ DocType: Currency,Smallest Currency Fraction Value,ขนาดเล็กที่สุดในสกุลเงินมูลค่าเศษ apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,กำหนดให้ @@ -2005,12 +2009,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,จาก DocType: Website Theme,Google Font (Heading),แบบอักษร Google (หัวเรื่อง) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,เลือกโหนดกลุ่มแรก -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},ค้นหา {0} ใน {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},ค้นหา {0} ใน {1} DocType: OAuth Client,Implicit,โดยปริยาย DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","ผนวกการสื่อสารกับ DocType นี้ (ต้องมีฟิลด์ ""สถานะ"", ""หัวเรื่อง"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",ยูริได้รับรหัสอนุมัติเมื่อผู้ใช้ช่วยให้การเข้าถึงเช่นเดียวกับการตอบสนองความล้มเหลว โดยปกติจะเป็นปลายทาง REST เปิดเผยโดย App ลูกค้า
เช่น http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,ไม่ได้ รับอนุญาตให้เปลี่ยน {0} หลังจาก ส่ง +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,ไม่ได้ รับอนุญาตให้เปลี่ยน {0} หลังจาก ส่ง DocType: Communication,Comment Type,ประเภทแสดงความคิดเห็น DocType: OAuth Client,OAuth Client,ไคลเอ็นต์ OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,ผู้ใช้ @@ -2025,7 +2029,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,กรองข้อมูล DocType: Auto Email Report,Filter Data,กรองข้อมูล apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,เพิ่มแท็ก -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,กรุณาแนบไฟล์แรก +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,กรุณาแนบไฟล์แรก apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",มีข้อผิดพลาดบางอย่างที่ตั้งชื่อได้กรุณาติดต่อผู้ดูแลระบบ apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,บัญชีอีเมลขาเข้าไม่ถูกต้อง apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2040,11 +2044,11 @@ DocType: Blog Post,Email Sent,อีเมลที่ส่ง DocType: DocField,Ignore XSS Filter,ละเว้น XSS กรอง apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ลบออก apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,การตั้งค่าการสำรองข้อมูล Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ส่งเป็น อีเมล์ +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ส่งเป็น อีเมล์ DocType: Website Theme,Link Color,สีของลิงค์ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,ผู้ใช้ {0} ไม่สามารถ ปิดการใช้งาน apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",จัดการระบบเรียน -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,ประเทศของคุณ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,ประเทศของคุณ DocType: Event,Sunday,วันอาทิตย์ apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,ในตารางมุมมอง DocType: Address Template,Template,แบบ @@ -2052,7 +2056,7 @@ DocType: Address,Delhi,นิวเดลี apps/frappe/frappe/config/integrations.py +48,LDAP Settings,การตั้งค่า LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,แก้ไขเพิ่มเติม apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,การตั้งค่าเกตเวย์การชำระเงิน PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: "{1} '({3}) จะได้รับการตัดเป็นตัวอักษรสูงสุดที่อนุญาตคือ {2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}: "{1} '({3}) จะได้รับการตัดเป็นตัวอักษรสูงสุดที่อนุญาตคือ {2} DocType: OAuth Client,Resource Owner Password Credentials,ทรัพยากรเจ้าของข้อมูลประจำตัวรหัสผ่าน DocType: OAuth Client,Response Type,พิมพ์คำตอบ apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,ผู้ใช้สูงสุด @@ -2069,7 +2073,7 @@ DocType: DocField,Table,ตาราง DocType: File,File Size,ขนาดไฟล์ apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,คุณต้องเข้าสู่ระบบเพื่อส่งฟอร์มนี้ DocType: User,Background Image,ภาพพื้นหลัง -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",เลือกประเทศของคุณโซนเวลาและสกุลเงิน +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",เลือกประเทศของคุณโซนเวลาและสกุลเงิน apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,ระหว่าง DocType: Async Task,Queued,จัดคิว @@ -2078,6 +2082,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,สร้าง apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},กรอง ที่ไม่ถูกต้อง : {0} DocType: Email Account,no failed attempts,พยายามไม่ล้มเหลว +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,ไม่พบแม่แบบที่อยู่เริ่มต้น โปรดสร้างใหม่จากการตั้งค่า> การพิมพ์และการสร้างแบรนด์> เทมเพลตที่อยู่ DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App คีย์ DocType: OAuth Bearer Token,Access Token,เข้าสู่ Token @@ -2095,8 +2100,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,ชื่อผู้ใช้งาน GitHub DocType: DocType,Image View,ดูภาพ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",ดูเหมือนว่าสิ่งที่ผิดพลาดในระหว่างการทำธุรกรรม เนื่องจากเรายังไม่ได้รับการยืนยันการชำระเงินผ่าน Paypal โดยอัตโนมัติจะคืนเงินให้คุณเงินจำนวนนี้ ถ้ามันไม่ได้โปรดส่งอีเมลถึงเราและพูดถึงความสัมพันธ์ ID: {0} -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",รวมสัญลักษณ์ตัวเลขและตัวพิมพ์ใหญ่ในรหัสผ่าน -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ใส่หลังจากฟิลด์ '{0}' กล่าวถึงในฟิลด์ที่กำหนดเอง '{1}' ที่มีป้าย '{2}' ไม่ได้อยู่ +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",รวมสัญลักษณ์ตัวเลขและตัวพิมพ์ใหญ่ในรหัสผ่าน +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",ใส่หลังจากฟิลด์ '{0}' กล่าวถึงในฟิลด์ที่กำหนดเอง '{1}' ที่มีป้าย '{2}' ไม่ได้อยู่ DocType: Workflow State,signal,สัญญาณ DocType: DocType,Show Print First,แสดงพิมพ์ครั้งแรก apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter เพื่อโพสต์ @@ -2127,14 +2132,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' ไม่พบ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,นำมาตรา DocType: User,Change Password,เปลี่ยนรหัสผ่าน -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},อีเมล์ ไม่ถูกต้อง: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,สวัสดี! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},อีเมล์ ไม่ถูกต้อง: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,สวัสดี! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,ในตอนท้าย ของเหตุการณ์ จะต้อง หลังจากการเริ่มต้น apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},คุณไม่ได้รับสิทธิ์ที่จะได้รับรายงานเกี่ยวกับ: {0} +DocType: System Settings,Apply Strict User Permissions,ใช้สิทธิ์ผู้ใช้ที่เข้มงวด DocType: DocField,Allow Bulk Edit,อนุญาตให้ใช้การแก้ไขเป็นกลุ่ม DocType: DocField,Allow Bulk Edit,อนุญาตให้ใช้การแก้ไขเป็นกลุ่ม DocType: Blog Post,Blog Post,โพสต์บล็อก -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,การค้นหาขั้นสูง +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,การค้นหาขั้นสูง apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,คำแนะนำ การตั้งค่า รหัสผ่านที่ ได้รับการ ส่งไปยังอีเมล ของคุณ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",ระดับ 0 ใช้สำหรับสิทธิ์ระดับเอกสาร \ ระดับที่สูงขึ้นสำหรับสิทธิ์ระดับฟิลด์ @@ -2153,15 +2159,14 @@ DocType: Web Page,Sidebar and Comments,Sidebar และความคิดเ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",เมื่อคุณ แก้ไข เอกสารหลังจาก ยกเลิก และบันทึกไว้ ก็จะ ได้รับหมายเลข ใหม่ที่ เป็นรุ่นของ หมายเลขเดิม DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ DocType: Stripe Settings,Publishable Key,คีย์ที่เผยแพร่ได้ -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} ปีที่ผ่านมา DocType: Workflow State,circle-arrow-left,วงกลมศรซ้าย apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,ไม่ได้เปิดใช้งานเซิร์ฟเวอร์แคช Redis กรุณาติดต่อผู้ดูแลระบบ / หน่วยช่วยเหลือทางเทคนิค apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,ชื่องานเลี้ยง -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,สร้างบันทึกใหม่ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,สร้างบันทึกใหม่ apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,ค้นหา DocType: Currency,Fraction,เศษ DocType: LDAP Settings,LDAP First Name Field,LDAP ฟิลด์ชื่อจริง -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,เลือกจากสิ่งที่แนบมาที่มีอยู่ +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,เลือกจากสิ่งที่แนบมาที่มีอยู่ DocType: Custom Field,Field Description,ฟิลด์คำอธิบาย apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,ชื่อ ไม่ได้ ตั้งค่าผ่านทาง พร้อม apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,กล่องจดหมาย @@ -2207,11 +2212,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,ข้อมูล: DocType: Custom Field,Permission Level,ระดับของสิทธิ์ DocType: User,Send Notifications for Transactions I Follow,ส่งการแจ้งเตือนสำหรับรายการที่ฉันติดตาม -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : ไม่สามารถตั้งค่า การส่ง การยกเลิก และ การแก้ไข ได้โดยไม่ได้ เขียน +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} : ไม่สามารถตั้งค่า การส่ง การยกเลิก และ การแก้ไข ได้โดยไม่ได้ เขียน apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,คุณแน่ใจหรือว่าต้องการลบสิ่งที่แนบมา? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ไม่สามารถลบหรือยกเลิกเนื่องจาก {0} {1} การเชื่อมโยงกับ {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

ไม่พบผลลัพธ์สำหรับ '

-apps/frappe/frappe/__init__.py +1063,Thank you,ขอบคุณ +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","ไม่สามารถลบหรือยกเลิกเนื่องจาก {0} {1} การเชื่อมโยงกับ {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,ขอบคุณ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,ประหยัด DocType: Print Settings,Print Style Preview,ตัวอย่างรูปแบบการพิมพ์ apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2223,10 +2227,10 @@ DocType: DocField,In List View,ในมุมมองรายการ DocType: Email Account,Use TLS,ใช้ TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,เข้าสู่ระบบ ที่ไม่ถูกต้อง หรือรหัสผ่าน apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,เพิ่ม javascript ที่กำหนดเอง ในรูปแบบ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr ไม่มี +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr ไม่มี ,Role Permissions Manager,ผู้จัดการ สิทธิ์ บทบาท apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,ชื่อของรูปแบบพิมพ์ใหม่ -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,สิ่งที่ส่งมาชัดเจน +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,สิ่งที่ส่งมาชัดเจน apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,บังคับ: ,User Permissions Manager,จัดการ สิทธิ์ของผู้ใช้ DocType: Property Setter,New value to be set,ค่าใหม่ที่จะตั้ง @@ -2256,26 +2260,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ว apps/frappe/frappe/config/website.py +47,Categorize blog posts.,แบ่งหมวดหมู่ของบล็อกโพสต์ DocType: Workflow State,Time,เวลา DocType: DocField,Attach,แนบ -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ไม่ใช่รูปแบบเขตข้อมูลที่ถูกต้อง ควรจะเป็น {{}} FIELD_NAME +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ไม่ใช่รูปแบบเขตข้อมูลที่ถูกต้อง ควรจะเป็น {{}} FIELD_NAME DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,ส่งข้อเสนอแนะขอเพียง แต่ถ้ามีอย่างน้อยหนึ่งการสื่อสารสามารถใช้ได้สำหรับเอกสาร DocType: Custom Role,Permission Rules,กฎการอนุญาต DocType: GSuite Settings,GSuite Settings,การตั้งค่า GSuite DocType: Address,Links,ลิงค์ -apps/frappe/frappe/model/base_document.py +428,Value missing for,ค่าที่หายไปสำหรับ +apps/frappe/frappe/model/base_document.py +427,Value missing for,ค่าที่หายไปสำหรับ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,เพิ่ม เด็ก -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: รายการที่ส่งแล้วไม่สามารถลบได้ +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: รายการที่ส่งแล้วไม่สามารถลบได้ apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,ขนาดการสำรองข้อมูล DocType: GSuite Templates,Template Name,ชื่อเทมเพลต -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,ชนิดใหม่ของเอกสาร +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,ชนิดใหม่ของเอกสาร DocType: Custom DocPerm,Read,อ่าน DocType: Role Permission for Page and Report,Role Permission for Page and Report,อนุญาตบทบาทสำหรับหน้าและรายงาน apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,ตําแหน่งราคา apps/frappe/frappe/www/update-password.html +14,Old Password,รหัสผ่านเก่า -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},โพสต์โดย {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},โพสต์โดย {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",การจัดรูปแบบคอลัมน์ให้ป้ายชื่อคอลัมน์ในแบบสอบถาม DocType: Has Domain,Has Domain,มีโดเมน apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ไม่ได้มีบัญชีอยู่แล้ว? ลงชื่อ -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} : ไม่สามารถตั้งค่ากำหนดการแก้ไข ถ้าไม่ Submittable +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} : ไม่สามารถตั้งค่ากำหนดการแก้ไข ถ้าไม่ Submittable DocType: Address,Bihar,มคธ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,แก้ไขสิทธิ์บทบาท DocType: Communication,Link DocType,การเชื่อมโยง DocType @@ -2375,7 +2379,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,โปรดตรวจสอบว่ารายละเอียดของคุณมีที่อยู่อีเมล apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึกในฟอร์มนี้ กรุณาบันทึกเพื่อที่จะดำเนินการต่อ DocType: Address,Telangana,พรรคเตลัง -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,เริ่มต้นสำหรับ {0} จะต้องเป็นตัวเลือก +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,เริ่มต้นสำหรับ {0} จะต้องเป็นตัวเลือก DocType: Tag Doc Category,Tag Doc Category,แท็ก Doc หมวดหมู่ DocType: User,User Image,รูปภาพของผู้ใช้ apps/frappe/frappe/email/queue.py +289,Emails are muted,อีเมลเป็น เงียบ @@ -2408,7 +2412,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,ดำเ DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,ค่าเหล่านี้จะถูกปรับปรุงโดยอัตโนมัติในการทำธุรกรรมและยังจะเป็นประโยชน์เพื่อ จำกัด สิทธิ์สำหรับผู้ใช้นี้ในการทำธุรกรรมที่มีค่าเหล่านี้ apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,ผู้พิมพ์ -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** ล้มเหลว: {0} เป็น {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** ล้มเหลว: {0} เป็น {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,เลือกบังคับ apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,เรียกดู apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,อีเมลที่ส่ง @@ -2420,7 +2424,7 @@ DocType: Async Task,Running,วิ่ง apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,ตั้งค่ารหัสผ่าน apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,กรุณาอัพเกรดเพิ่มมากกว่า {0} สมาชิก DocType: Workflow State,hand-left,มือซ้าย -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,fieldtype {0} สำหรับ {1} ไม่สามารถที่ไม่ซ้ำกัน +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,fieldtype {0} สำหรับ {1} ไม่สามารถที่ไม่ซ้ำกัน DocType: Email Account,Use SSL,ใช้ SSL DocType: Workflow State,play-circle,เล่นวงกลม apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,เลือกรูปแบบการพิมพ์ที่จะแก้ไข @@ -2475,7 +2479,7 @@ DocType: DocField,No Copy,คัดลอกไม่มี DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,เข้าสู่ระบบด้วย LDAP DocType: Web Form,Breadcrumbs,สวดมนต์ -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,หากเจ้าของ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,หากเจ้าของ DocType: OAuth Authorization Code,Expiration time,เวลาหมดอายุ DocType: Web Page,Website Sidebar,แถบด้านข้างเว็บไซต์ DocType: Web Form,Show Sidebar,แสดงแถบด้านข้าง @@ -2495,7 +2499,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},ไม่พบ { apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,ชื่อและนามสกุลด้วยตัวเองเป็นเรื่องง่ายที่จะคาดเดา apps/frappe/frappe/config/website.py +93,Knowledge Base,ฐานความรู้ DocType: Workflow State,briefcase,กระเป๋าเอกสาร -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},ค่า ไม่สามารถเปลี่ยนแปลงได้ เพื่อ {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},ค่า ไม่สามารถเปลี่ยนแปลงได้ เพื่อ {0} DocType: Feedback Request,Is Manual,เป็นคู่มือการใช้งาน DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","สไตล์เป็นสีของปุ่ม: ความสำเร็จ - สีเขียว, อันตราย - แดง, Inverse - ดำ, ประถม - มืดข้อมูล, บลู - Light Blue, คำเตือน - ออเรนจ์" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,รายงาน Loaded ไม่มี กรุณาใช้แบบสอบถามรายงาน / [ชื่อรายงาน] เพื่อเรียกใช้รายงาน @@ -2573,7 +2577,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,ความ apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,โดยบทบาท apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,ทุ่งนาที่ขาดหายไป apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,fieldname ไม่ถูกต้อง '{0}' ใน autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ค้นหาในรูปแบบเอกสาร +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ค้นหาในรูปแบบเอกสาร apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,อนุญาตให้ข้อมูลที่จะยังคงสามารถแก้ไขได้แม้หลังจากที่ส่ง DocType: Custom DocPerm,Role and Level,บทบาท และ ระดับ DocType: File,Thumbnail URL,URL รูปขนาดย่อ @@ -2590,19 +2594,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,ข้อมูลมากกว่านี้ DocType: Desktop Icon,Desktop Icon,ไอคอนสก์ท็อป -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,ชำระเงินของคุณประสบความสำเร็จได้รับการยอมรับ +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,ชำระเงินของคุณประสบความสำเร็จได้รับการยอมรับ apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,ขออภัย! คุณยังไม่ได้รับอนุญาตให้ดูหน้านี้ apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,เคล็ดลับ: เซลล์ดับเบิลคลิกเพื่อแก้ไข DocType: Workflow State,bell,ระฆัง apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,เกิดข้อผิดพลาดในการแจ้งเตือนทางอีเมล apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,เกิดข้อผิดพลาดในการแจ้งเตือนทางอีเมล apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,แบ่งปันเอกสารกับเรื่องนี้ +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,ตั้งค่า> ตัวจัดการสิทธิ์ผู้ใช้ apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} ไม่สามารถเป็นโหนดใบไม้ได้ในขณะที่มีลูก DocType: Communication,Info,ข้อมูล -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,เพิ่มสิ่งที่แนบมา +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,เพิ่มสิ่งที่แนบมา DocType: Communication,Email,อีเมล์ apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,ขอบคุณสำหรับข้อความของคุณ -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,ส่งใบเสร็จรับเงินอ่าน +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,ส่งใบเสร็จรับเงินอ่าน DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Stripe Settings,Stripe Settings,Stripe Settings DocType: Dropbox Settings,Dropbox Setup via Site Config,การติดตั้ง Dropbox ผ่านทางเว็บไซต์ Config @@ -2680,6 +2685,7 @@ DocType: DocType,Web View,ดูเว็บ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,คำเตือน: พิมพ์รูปแบบนี้อยู่ในรูปแบบเก่าและไม่สามารถสร้างขึ้นผ่านทาง DocType: DocField,Print Width,ความกว้างพิมพ์ ,Setup Wizard,ตัวช่วยสร้าง การติดตั้ง +DocType: Address,GST State Number,หมายเลขรัฐ GST DocType: User,Allow user to login only before this hour (0-24),อนุญาตให้ผู้ใช้เข้าสู่ระบบก่อนที่จะชั่วโมงนี้ (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,โฟลเดอร์มีผลบังคับใช้ apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2708,7 +2714,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,ข้อความขนาดเล็ก apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,ผู้ดูแลระบบเข้าถึง {0} ใน {1} ผ่านอยู่ IP {2} apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,เท่ากับ -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ตัวเลือก 'การเชื่อมโยงแบบไดนามิก' ชนิดของเขตข้อมูลต้องชี้ไปที่การเชื่อมโยงสนามอื่นที่มีตัวเลือกเป็น 'DocType' +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',ตัวเลือก 'การเชื่อมโยงแบบไดนามิก' ชนิดของเขตข้อมูลต้องชี้ไปที่การเชื่อมโยงสนามอื่นที่มีตัวเลือกเป็น 'DocType' DocType: About Us Settings,Team Members Heading,สมาชิกในทีมหัวเรื่อง apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,รูปแบบ CSV ไม่ถูกต้อง apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,กำหนดจำนวนของการสำรองข้อมูล @@ -2719,7 +2725,7 @@ DocType: Contact,Contact,ติดต่อ DocType: User,Third Party Authentication,การตรวจสอบ บุคคลที่สาม DocType: Website Settings,Banner is above the Top Menu Bar.,แบนเนอร์บนแถบเมนูด้านบน DocType: Razorpay Settings,API Secret,API ลับ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,รายงานการส่งออก: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,รายงานการส่งออก: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,ไม่มี {0} {1} ในระบบ DocType: Email Account,Port,พอร์ต DocType: Print Format,Arial,Arial @@ -2742,7 +2748,7 @@ DocType: Kanban Board Column,Column Name,ชื่อคอลัมน์ DocType: Language,Based On,ขึ้นอยู่กับ apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,ตั่งเป็นค่าเริ่มต้น apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,ตรวจสอบ URL Frappe เซิร์ฟเวอร์ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,fieldtype {0} สำหรับ {1} ไม่สามารถจัดทำดัชนี +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,fieldtype {0} สำหรับ {1} ไม่สามารถจัดทำดัชนี DocType: Communication,Email Account,บัญชีอีเมล์ DocType: Workflow State,Download,ดาวน์โหลด DocType: Blog Post,Blog Intro,แนะนำบล็อก @@ -2753,7 +2759,7 @@ DocType: Web Page,Insert Code,ใส่รหัส DocType: ToDo,Low,ต่ำ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,คุณสามารถเพิ่มคุณสมบัติแบบไดนามิกจากเอกสารโดยใช้ Jinja templating apps/frappe/frappe/commands/site.py +451,Invalid limit {0},ขีด จำกัด {0} ไม่ถูกต้อง -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,รายการชนิดของเอกสาร +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,รายการชนิดของเอกสาร DocType: Event,Ref Type,ประเภท Ref apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","หากคุณกำลังอัปโหลดระเบียนใหม่ออก ""ชื่อ"" (H) ว่างเปล่าคอลัมน์" DocType: Address,Chattisgarh,Chattisgarh @@ -2775,26 +2781,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,ส่งเอกสารพิมพ์เป็นไฟล์ PDF DocType: Web Form,Amount,จำนวน DocType: Workflow Transition,Allowed,อนุญาต -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,สามารถมีได้เพียงหนึ่งพับในรูปแบบ +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,สามารถมีได้เพียงหนึ่งพับในรูปแบบ apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},ไม่สามารถเขียนรูปแบบไฟล์สำหรับ {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,เรียกคืนการตั้งค่าเริ่มต้นได้อย่างไร apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,หน้าแรก ไม่ถูกต้อง apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,เข้าสู่ระบบที่ไม่ถูกต้อง ลองอีกครั้ง. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ตัวเลือกที่ต้องการสำหรับฟิลด์ประเภทลิงก์หรือตาราง {0} ในแถว {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},ตัวเลือกที่ต้องการสำหรับฟิลด์ประเภทลิงก์หรือตาราง {0} ในแถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ตัวเลือกที่ต้องการสำหรับฟิลด์ประเภทลิงก์หรือตาราง {0} ในแถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},ตัวเลือกที่ต้องการสำหรับฟิลด์ประเภทลิงก์หรือตาราง {0} ในแถว {1} DocType: Auto Email Report,Send only if there is any data,ส่งเฉพาะในกรณีที่มีข้อมูลใด ๆ apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ตั้งค่า ตัวกรอง -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} การอนุญาตที่ระดับ 0 จะต้องตั้งค่าก่อนที่จะตั้งค่าระดับที่สูงกว่า +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} การอนุญาตที่ระดับ 0 จะต้องตั้งค่าก่อนที่จะตั้งค่าระดับที่สูงกว่า apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},กำหนดปิดโดย {0} DocType: Integration Request,Remote,รีโมท -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,คำนวณ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,คำนวณ apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,กรุณาเลือก DocType แรก apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,ยืนยันอีเมล์ของคุณ apps/frappe/frappe/www/login.html +42,Or login with,หรือเข้าสู่ระบบด้วย DocType: Error Snapshot,Locals,ชาวบ้าน apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},สื่อสารผ่าน {0} ใน {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} พูดถึงคุณในความคิดเห็นที่ {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,เช่น (55 + 434) / 4 หรือ = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,เช่น (55 + 434) / 4 หรือ = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,ต้องระบุ {0} DocType: Integration Request,Integration Type,ประเภทบูรณาการ DocType: Newsletter,Send Attachements,ส่งไฟล์แนบ @@ -2804,15 +2810,15 @@ DocType: DocField,Perm Level,Perm ระดับ apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,เหตุการณ์ในปฏิทินของวันนี้ DocType: Web Page,Web Page,หน้าเว็บ DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่สามารถใช้กับประเภท {0} ในแถว {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่สามารถใช้กับประเภท {0} ในแถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่สามารถใช้กับประเภท {0} ในแถว {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'ในการค้นหาทั้งหมด' ไม่สามารถใช้กับประเภท {0} ในแถว {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,มุมมองรายการ -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},วันที่ จะต้องอยู่ใน รูปแบบ : {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},วันที่ จะต้องอยู่ใน รูปแบบ : {0} DocType: Workflow,Don't Override Status,อย่าแทนที่สถานะ apps/frappe/frappe/www/feedback.html +90,Please give a rating.,โปรดให้คะแนน apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} ร้องขอผลตอบรับ apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,คำที่ต้องการค้นหา -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,ผู้ใช้งาน ครั้งแรก: คุณ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,ผู้ใช้งาน ครั้งแรก: คุณ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,เลือกคอลัมน์ DocType: Translation,Source Text,ข้อความที่มา apps/frappe/frappe/www/login.py +55,Missing parameters for login,พารามิเตอร์ที่หายไปเพื่อเข้าสู่ระบบ @@ -2834,7 +2840,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,การนำเข้า DocType: ToDo,Assigned By,ได้รับมอบหมายจาก apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,คุณสามารถใช้ แบบฟอร์ม ที่กำหนดเอง การ ตั้งค่าระดับ ในเขต -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,เลือกภูมิภาคของคุณ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,เลือกภูมิภาคของคุณ DocType: Custom DocPerm,Level,ชั้น DocType: Custom DocPerm,Report,รายงาน apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,จำนวนเงินที่จะต้องมากกว่า 0 @@ -2854,7 +2860,7 @@ DocType: Website Theme,Background,พื้นหลัง DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",รายการ JSON ของ doctypes ใช้ในการใช้สิทธิ์ของผู้ใช้ ถ้าว่าง doctypes เชื่อมโยงทั้งหมดจะถูกใช้ในการใช้สิทธิ์ของผู้ใช้ DocType: Report,Ref DocType,DocType Ref apps/frappe/frappe/www/feedback.py +42,Please add a rating,โปรดเพิ่มการให้คะแนน -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: ไม่สามารถถูกแก้ไขได้โดยไม่ยกเลิก +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: ไม่สามารถถูกแก้ไขได้โดยไม่ยกเลิก apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,เต็มหน้า DocType: DocType,Is Child Table,เป็นตารางเด็ก apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} ต้องเป็นหนึ่งใน {1} @@ -2869,7 +2875,7 @@ DocType: Website Slideshow,This goes above the slideshow.,นี้สูงก apps/frappe/frappe/config/setup.py +260,Install Applications.,ติดตั้งแอพ DocType: Contact,Last Name,นามสกุล DocType: Event,Private,ส่วนตัว -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,ไม่มีการแจ้งเตือนสำหรับวันนี้ +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,ไม่มีการแจ้งเตือนสำหรับวันนี้ DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),ส่งอีเมล์สิ่งที่แนบมาพิมพ์เป็น PDF (แนะนำ) DocType: Web Page,Left,ซ้าย DocType: Event,All Day,ทั้งวัน @@ -2883,7 +2889,7 @@ DocType: Event,Send an email reminder in the morning,ส่งอีเมลเ DocType: Blog Post,Published On,เผยแพร่เมื่อ DocType: Contact,Gender,เพศ apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,ข้อมูลบังคับขาดหายไป: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,สนาม '{0}' ไม่สามารถกำหนดให้เป็นที่ไม่ซ้ำกันมันมีค่าที่ไม่ใช่ที่ไม่ซ้ำกัน +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,สนาม '{0}' ไม่สามารถกำหนดให้เป็นที่ไม่ซ้ำกันมันมีค่าที่ไม่ใช่ที่ไม่ซ้ำกัน apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,เพียง 200 แทรกได้รับอนุญาตในการร้องขอ DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,ชนิดการอ้างอิง @@ -2896,7 +2902,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,ป้ายเตือน DocType: Workflow State,User,ผู้ใช้งาน DocType: Website Settings,"Show title in browser window as ""Prefix - title""",ชื่อแสดงในหน้าต่างเบราว์เซอร์เป็น "คำนำหน้า - ชื่อ" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,ข้อความที่อยู่ในประเภทของเอกสาร +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,ข้อความที่อยู่ในประเภทของเอกสาร apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,เรียกใช้การทดสอบ apps/frappe/frappe/handler.py +91,Logged Out,ออกจากระบบ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,มากกว่า... @@ -2922,13 +2928,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,ขณะนี้กำลังดู DocType: DocField,Default,ผิดนัด apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} เพิ่มแล้ว -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',ค้นหา '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',ค้นหา '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,กรุณาบันทึกรายงานครั้งแรก apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} สมาชิกถูกเพิ่มแล้ว apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,ไม่อยู่ใน DocType: Workflow State,star,ดาว -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,ค่าที่คั่นด้วยเครื่องหมายจุลภาค -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},ความกว้าง สูงสุด สำหรับประเภท สกุลเงิน เป็น 100px ในแถว {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,ค่าที่คั่นด้วยเครื่องหมายจุลภาค +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},ความกว้าง สูงสุด สำหรับประเภท สกุลเงิน เป็น 100px ในแถว {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},กรุณาแบ่งปันความคิดเห็นของคุณสำหรับ {0} apps/frappe/frappe/config/website.py +13,Content web page.,หน้าเว็บเนื้อหา apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,เพิ่มบทบาท ใหม่ @@ -2947,7 +2953,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,ผู้ใช้ LDAP ไม่ถูกต้อง apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} สถานะไม่ถูกต้อง apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',โปรดเลือกวิธีการชำระเงินอีกครั้ง PayPal ไม่สนับสนุนการทำธุรกรรมในสกุลเงิน '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,ช่องค้นหา {0} ไม่ถูกต้อง +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,ช่องค้นหา {0} ไม่ถูกต้อง DocType: Workflow State,ok-circle,ok วงกลม apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',คุณสามารถค้นหาสิ่งที่โดยขอให้ 'พบส้มของลูกค้า apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,ขออภัย! ผู้ใช้ควรมีการเข้าถึงที่สมบูรณ์ในการบันทึกของตัวเองของพวกเขา @@ -3009,7 +3015,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,กรอง Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,ข้อความที่จะแสดงสำหรับการเชื่อมโยงไปยังหน้าเว็บถ้าแบบฟอร์มนี้มีหน้าเว็บ เส้นทางการเชื่อมโยงจะถูกสร้างขึ้นโดยอัตโนมัติตาม `page_name` และ` parent_website_route` DocType: Feedback Request,Feedback Trigger,ข้อเสนอแนะทริกเกอร์ -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,กรุณาตั้ง {0} ครั้งแรก +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,กรุณาตั้ง {0} ครั้งแรก DocType: Unhandled Email,Message-id,ID ข้อความ DocType: Patch Log,Patch,แก้ไข DocType: Async Task,Failed,ล้มเหลว diff --git a/frappe/translations/tr.csv b/frappe/translations/tr.csv index 59dbfa3b1c..e3071af5dd 100644 --- a/frappe/translations/tr.csv +++ b/frappe/translations/tr.csv @@ -16,7 +16,7 @@ DocType: User,Facebook Username,Facebook Kullanıcı Adı DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Not: Birden fazla seans mobil cihazın durumunda izin verilecek apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},kullanıcı için etkin e-posta gelen kutusu {kullanıcıları} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Bu e-posta göndermek olamaz. Bu ay için {0} e-posta gönderme sınırını geçti. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Kalıcı {0} Gönder? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Kalıcı {0} Gönder? DocType: Address,County,Kontluk DocType: Workflow,If Checked workflow status will not override status in list view,İşaretli iş akışı durumu liste görünümünde durumunu geçersiz kılmaz Eğer apps/frappe/frappe/client.py +280,Invalid file path: {0},Geçersiz dosya yolu: {0} @@ -26,7 +26,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Bir dos apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Ağaç DocType: User,User Emails,Kullanıcı e-postalar DocType: User,Username,Kullanıcı adı -apps/frappe/frappe/model/base_document.py +581,Value too big,çok büyük bir değer +apps/frappe/frappe/model/base_document.py +580,Value too big,çok büyük bir değer DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Komut Dosyası Testini Çalıştır DocType: Contact,Department,Departman @@ -42,14 +42,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Kayıtlar DocType: Custom DocPerm,This role update User Permissions for a user,Bir kullanıcı için bu rolü güncelleştirme Kullanıcı İzinleri apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Rename {0} DocType: Workflow State,zoom-out,Uzaklaştırın -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Örnek açıkken {0} açılamıyor +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Örnek açıkken {0} açılamıyor apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Tablo {0} boş olamaz apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Defter ile apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,Görüntüler DocType: Communication,Reference Owner,referans Sahibi DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Küçük dolaşan kesir birimi (sikke). O 0.01 olarak girilmelidir ve ABD Doları için örneğin 1 kuruş için DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, {1} Satır" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, {1} Satır" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Bir tamadı verin. apps/frappe/frappe/model/document.py +904,Beginning with,ile başlayan apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Veri Alma Şablon @@ -57,7 +57,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Ebeveyn DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Etkinleştirilirse, şifre kuvveti Minimum Şifre Puanı değerine dayanarak zorlanır. 2'lik bir değer orta derecede güçlü ve 4'ü çok güçlü." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Etkinleştirilirse, şifre kuvveti Minimum Şifre Puanı değerine dayanarak zorlanır. 2'lik bir değer orta derecede güçlü ve 4'ü çok güçlü." DocType: About Us Settings,"""Team Members"" or ""Management""","""Takım Üyeleri"" veya ""Yönetim""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Alan 'Giriş' türü için varsayılan ya '0' veya '1' olmalı +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Alan 'Giriş' türü için varsayılan ya '0' veya '1' olmalı apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Dün DocType: Contact,Designation,Atama DocType: Contact,Designation,Atama @@ -75,7 +75,7 @@ DocType: DocType,Is Published Field,Alan Yayın mi DocType: Email Group,Email Group,E-posta Grubu DocType: Note,Seen By,Tarafından görüldü apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Birden Çok ekle -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Gibi değil +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Gibi değil apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Alan için ekran etiketi ayarlayın apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Yanlış değeri: {0} olmalı {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Değişim alan özellikleri (sakla, salt okunur, izin vb)" @@ -85,7 +85,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,İletişi apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Yönetici Giriş Yaptı DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","'Satış sorgusu, Destek sorgusu' gibi her biri yeni bir sırada ya da virgüllerle ayrılmış, iletişim seçenekleri" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. İndir -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Ekle +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Ekle apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Seçin {0} DocType: Print Settings,Classic,Klasik DocType: Print Settings,Classic,Klasik @@ -131,7 +131,7 @@ apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Kurma apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Bay apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Bay DocType: Custom Script,Client,Müşteri: -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Bunu yükledikten sonra Bu form modifiye edilmiştir +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Bunu yükledikten sonra Bu form modifiye edilmiştir DocType: User Permission for Page and Report,User Permission for Page and Report,Page ve Raporu için Kullanıcı İzni DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Ayarlanmazsa, para birimi hassaslığı sayı formatına bağlı olacaktır" @@ -164,14 +164,14 @@ DocType: Unhandled Email,Reason,Nedeni apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Kullanıcıyı belirtin DocType: Email Unsubscribe,Email Unsubscribe,E-posta aboneliğini DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,En iyi sonuçlar için şeffaf bir arka plan ile yaklaşık genişlik 150px bir görüntü seçin. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Sistem Yöneticisi olacak ilk kullanıcı (bu daha sonra değiştirebilirsiniz). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Sistem Yöneticisi olacak ilk kullanıcı (bu daha sonra değiştirebilirsiniz). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,circle-arrow-up apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Yükleniyor ... DocType: Email Domain,Email Domain,E-posta domain DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Herkes için -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: oluşturulmadan içeri atanamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: oluşturulmadan içeri atanamaz apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Olay ve diğer takvimler. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Yorumu göndermek için tüm alanlar gereklidir. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Sütunları sıralamak için sürükleyin @@ -185,8 +185,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Standart Kenar Çubuğu Menüsü apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Ev ve Ekler klasörleri silemezsiniz apps/frappe/frappe/config/desk.py +19,Files,dosyalar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,İzinler atanmış oldukları ne Rolleri dayalı Kullanıcıları uygulanan olsun. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Bu belge ile ilgili e-posta göndermenize izin verilmemiştir -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0} sıralamak / gruptan en az 1 sütun seçin +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Bu belge ile ilgili e-posta göndermenize izin verilmemiştir +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0} sıralamak / gruptan en az 1 sütun seçin DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Sandbox API kullanarak ödemenizi test eğer bu kontrol apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Standart bir Web Sitesi Temasını silmek için yeterli izniniz yok. DocType: Feedback Trigger,Example,Örnek @@ -217,7 +217,7 @@ DocType: Email Group,Total Subscribers,Toplam Aboneler apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Rol 0 düzeyinde erişimi yoksa, daha yüksek seviyeler anlamsızdır." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Farklı kaydet DocType: Communication,Seen,Görülme -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Daha fazla ayrıntı göster +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Daha fazla ayrıntı göster DocType: System Settings,Run scheduled jobs only if checked,Kontrol yalnızca zamanlanmış işlerini apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,bölüm başlıkları etkinse yalnızca gösterilir apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,Arşiv @@ -236,7 +236,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Başlık gizle DocType: Address,Current,şimdiki DocType: Address,Current,şimdiki -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Alakalı dökümanlar apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Belgetürleri Grupları DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,remove-circle @@ -252,10 +251,9 @@ DocType: Workflow State,Filter,filtre apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} gibi özel karakterleri olamaz {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,aynı anda çok sayıda değerleri güncelleştirmek. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Hata: Bunu açtıktan sonra Belge modifiye edilmiştir -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Yazdırma ve Marka Verme> Adres Şablonu'ndan yeni bir tane oluşturun. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} çıkış yaptı: {1} DocType: Address,West Bengal,Batı Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Gönderilebilir değilse gönderme ataması yapılamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Gönderilebilir değilse gönderme ataması yapılamaz DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Tarafından Filtreli "{0}" DocType: Salutation,Administrator,Yönetici @@ -267,7 +265,7 @@ apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabl DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Bülten DocType: Newsletter,Newsletter,Bülten -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,tarafından sırayla alt sorgu kullanılamaz +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,tarafından sırayla alt sorgu kullanılamaz DocType: Web Form,Button Help,düğme Yardımı DocType: Kanban Board Column,purple,mor DocType: About Us Settings,Team Members,Ekip Üyeleri @@ -281,7 +279,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Aboneliğiniz {0} tarihinde sona ermiştir. yenilemek için, {1}." DocType: Workflow State,plus-sign,plus-sign apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Zaten tam Kur -apps/frappe/frappe/__init__.py +890,App {0} is not installed,App {0} yüklü değil +apps/frappe/frappe/__init__.py +889,App {0} is not installed,App {0} yüklü değil DocType: Workflow State,Refresh,Yenile DocType: Workflow State,Refresh,Yenile DocType: Event,Public,Genel @@ -290,7 +288,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,By Beğendim apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,E-posta Desteği DocType: DocField,Print Hide If No Value,Baskı gizle Hayır Değer DocType: Event,yellow,sarı -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Saha gerekir Yayın geçerli bir AlanAdı olmak +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Saha gerekir Yayın geçerli bir AlanAdı olmak apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Eklenti Yükleme DocType: Block Module,Block Module,Blok Modülü apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,İhracat Şablon @@ -312,7 +310,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Yeni bir hesap sizin için yaratıldı {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,E-postayla gönderilen talimatlar apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,E-postayla gönderilen talimatlar -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Enter-posta Alıcı (lar) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Enter-posta Alıcı (lar) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,E-posta Bayrak Kuyruğu apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,{0} açık tanımlanamadı. Başka bir şey deneyin. @@ -327,8 +325,8 @@ DocType: Communication,Message ID,Mesaj kimliği DocType: Property Setter,Field Name,Alan Adı apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite yapılandırılmadı. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,veya -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,modül adı ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Devam etmek +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,modül adı ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Devam etmek DocType: Custom Field,Fieldname,fieldname DocType: Workflow State,certificate,sertifika DocType: User,Tile,Kiremit @@ -337,6 +335,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Tüm Sürümleri göster DocType: Workflow State,Print,Baskı DocType: User,Restrict IP,IP sınırla +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,gösterge paneli apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Şu anda e-posta gönderemiyoruz apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Bir komutu ara veya yazın DocType: Communication,Timeline Name,Zaman Çizelgesi Ad @@ -347,8 +346,8 @@ DocType: Contact,Sales Master Manager,Satış Master Müdürü apps/frappe/frappe/www/complete_signup.html +13,One Last Step,One Last Step apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Eğer bu alan ile bağlantılı olmak istiyorum Document Type (Belge Türü) adı. örneğin Müşteri DocType: User,Roles Assigned,Atanan Rolleri -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Yardım İste -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Yardım İste +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Yardım İste +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Yardım İste DocType: Top Bar Item,Parent Label,Parent Label apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Sorgunuz alındı. Biz kısa bir süre geri cevap verecektir. Eğer herhangi bir ek bilgi varsa, bu posta cevap lütfen." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,İzinler otomatik olarak Standart Raporları ve aramalar çevrilir. @@ -366,6 +365,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Düzenle Başlık DocType: File,File URL,Dosya URL'si DocType: Version,Table HTML,Tablo HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'Için hiçbir sonuç bulunamadı'

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Abone Ekle apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Bugün için Gelecek Etkinlikler DocType: Email Alert Recipient,Email By Document Field,Belge Alana Göre E-Posta @@ -387,17 +387,16 @@ DocType: Web Form,Amount Based On Field,Tutar Field Dayalı apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Paylaşım için bir kullanıcı zorunludur DocType: DocField,Hidden,gizli DocType: Web Form,Allow Incomplete Forms,Eksik Formlar izin -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} ilk olarak ayarlanması gerekir +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} ilk olarak ayarlanması gerekir apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","ortak sözcük önlemek, birkaç kelime kullanın." DocType: Workflow State,plane,düzlem -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Üzgünüz. Ödemeniz başarısız oldu. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Yeni kayıtlar yüklüyorsanız varsa, ""Serisi adlandırma"", zorunlu olur." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Bugün için Uyarıları alın +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Bugün için Uyarıları alın apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType sadece Yönetici tarafından yeniden adlandırılabilir apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},"değiştirilen değerinin, {0}" DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,doğrulama için e-postanızı kontrol edin -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Katlama formun sonundaki olamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Katlama formun sonundaki olamaz DocType: Communication,Bounced,Geri Döndü DocType: Deleted Document,Deleted Name,İsim silindi apps/frappe/frappe/config/setup.py +14,System and Website Users,Sistemi ve Web Sitesi Kullanıcıları @@ -416,7 +415,7 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,Belge sıraya alınm DocType: GSuite Templates,Destination ID,Hedef Kimliği DocType: Desktop Icon,List,liste DocType: Communication,Link Name,bağlantı Adı -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Alan {0} üst üste {1} varsayılan olmadan gizli ve zorunlu olamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Alan {0} üst üste {1} varsayılan olmadan gizli ve zorunlu olamaz DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Geçersiz şifre: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Geçersiz şifre: @@ -424,7 +423,7 @@ DocType: Print Settings,Send document web view link in email,E-posta belge web g apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,belge için Görüşleriniz {0} başarıyla kaydedilir apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Önceki apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Önceki -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{1} için bulunan {0} satırlar DocType: Currency,"Sub-currency. For e.g. ""Cent""","Alt para birimi. Örneğin: ""Kuruş""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Yüklenen dosyayı seçin @@ -435,10 +434,11 @@ DocType: Desktop Icon,Link,Bağlantı apps/frappe/frappe/utils/file_manager.py +96,No file attached,Ekli dosya yok DocType: Version,Version,Sürüm DocType: User,Fill Screen,Ekranı doldurun -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nedeniyle eksik veri, bu ağaç raporu görüntülemek için açılamıyor. Büyük olasılıkla, bunun nedeni izinleri filtre ediliyor." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabı ayarlarını yapın +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Nedeniyle eksik veri, bu ağaç raporu görüntülemek için açılamıyor. Büyük olasılıkla, bunun nedeni izinleri filtre ediliyor." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Dosya seç apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Yükle üzerinden Düzenle -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",belge türü ... örneğin müşteri +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",belge türü ... örneğin müşteri apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Durum '{0}' geçersiz DocType: Workflow State,barcode,Barkod apps/frappe/frappe/config/setup.py +232,Add your own translations,Kendi çevirilerini ekle @@ -450,7 +450,7 @@ DocType: Event,Wednesday,Çarşamba DocType: Event,Wednesday,Çarşamba apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Apart Rol tabanlı İzin Kuralları gelen, belgetürleri dayalı Kullanıcı İzinlerini uygulayabilirsiniz." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Bu izinler izin rekor bağlantılı tüm işlemler için geçerli olacaktır. Şirket C kullanıcı X Kullanıcı İzinler eklenir Örneğin, kullanıcı X sadece bir bağlantılı değer olarak firma C sahiptir işlemleri görmek mümkün olacak." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Resim Alamı geçerli bir alan adı olmalıdır +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Resim Alamı geçerli bir alan adı olmalıdır DocType: OAuth Client,Token,Jeton DocType: Property Setter,ID (name) of the entity whose property is to be set,Özelliği ayarlanmalıdır varlık kimliği (adı) apps/frappe/frappe/limits.py +82,"To renew, {0}.","yenilemek için, {0}." @@ -459,7 +459,7 @@ DocType: Web Form,Sidebar Items,Kenar çubuğu Öğeler apps/frappe/frappe/installer.py +125,App {0} already installed,{0} uygulaması zaten yüklendi DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,İzinleri göster -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Timeline alan Bağlantı veya Dynamic Link olmalı +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Timeline alan Bağlantı veya Dynamic Link olmalı apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Tarih aralığı apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Sayfa {0} {1} arasında @@ -468,7 +468,7 @@ apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please che apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Şu kişiye DocType: Kanban Board Column,darkgrey,Koyu gri DocType: Kanban Board Column,darkgrey,Koyu gri -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Başarılı: {0} için {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Başarılı: {0} için {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Demoda kullanıcı ayrıntılarını değiştiremezsiniz. Lütfen https://erpnext.com adresinden yeni bir hesap için kaydolun apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Değişikliğin uygulanması için Lütfen bu öğeyi çoğaltın apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF oluşturma nedeniyle kırık görüntü bağlantıları başarısız @@ -485,25 +485,25 @@ DocType: DocField,Collapsible,Katlanabilir apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Kaydedilmiş apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Ne konuda yardıma ihtiyacın var? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Select için seçenekler. Yeni bir satırda her seçenek. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Kalıcı {0} İptal? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Kalıcı {0} İptal? DocType: Workflow State,music,müzik DocType: Web Page,Settings,Ayarlar DocType: Web Page,Settings,Ayarlar apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Doctype belirtiniz DocType: Print Format,Style Settings,Stil Ayarları -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sıralama alanı {0} geçerli bir AlanAdı olmalıdır +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sıralama alanı {0} geçerli bir AlanAdı olmalıdır apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Daha fazla DocType: Contact,Sales Manager,Satış Müdürü apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Yeniden adlandır DocType: Print Format,Format Data,Biçim Verileri -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Beğen +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Beğen DocType: Customize Form Field,Customize Form Field,Form alanını özelleştirmek apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Kullanıcı izni DocType: OAuth Client,Grant Type,hibe Tipi apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Hangi belgelerin kullanıcı tarafından okunabilir olduğunu kontrol et. apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Listeleme uygulaması izin verilmiyor -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,joker olarak kullanabilirsiniz% -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","E-posta Alan Bir tane oluşturun, bu hesap için yapılandırılmamış?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,joker olarak kullanabilirsiniz% +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","E-posta Alan Bir tane oluşturun, bu hesap için yapılandırılmamış?" DocType: User,Reset Password Key,Şifre Key Reset DocType: Email Account,Enable Auto Reply,Otomatik Yanıt etkinleştirin apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Görmedim @@ -550,7 +550,7 @@ DocType: DocField,Set Only Once,Sadece bir kez ayarlama DocType: Email Queue Recipient,Email Queue Recipient,E-posta Kuyruk Alıcı DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Kullanıcı adı {0} zaten mevcut -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} İçeri alınabilir değilse içeri alınabilir işaretlenemez +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} İçeri alınabilir değilse içeri alınabilir işaretlenemez apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Adres Şablon bir hata var {0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -564,7 +564,7 @@ DocType: Communication,From Full Name,Tam İsim apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Bu rapora yetkiniz yok: {0} DocType: User,Send Welcome Email,Hoşgeldiniz E-postası Gönder apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,İndirme olarak aynı formatta tüm kullanıcı izinleri içeren CSV dosyasını yükleyin. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Filtre kaldır +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Filtre kaldır DocType: Address,Daman and Diu,Daman ve Diu DocType: Address,Personal,Kişisel DocType: Address,Personal,Kişisel @@ -598,11 +598,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Standart DocType varsayılan yazdırma biçimine sahip olamaz, Formu Özelleştir'i kullanın" DocType: Report,Query,Sorgu DocType: DocType,Sort Order,Sıralama -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'Liste görüntüle' izin türü için {0} üst üste {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'Liste görüntüle' izin türü için {0} üst üste {1} DocType: Custom Field,Select the label after which you want to insert new field.,Select the label after which you want to insert new field. ,Document Share Report,Belge Paylaş Raporu DocType: User,Last Login,Son Giriş -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname aralıksız gereklidir {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname aralıksız gereklidir {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Sütun DocType: Custom Field,Adds a custom field to a DocType,Bir DocType için özel bir alan ekler DocType: File,Is Home Folder,Home Folder mı @@ -629,7 +629,7 @@ DocType: File,Folder,Klasör DocType: DocField,Index,Indeks DocType: Email Group,Newsletter Manager,Bülten Müdürü apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Seçenek 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Tüm Mesajlar +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} ila {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Istekleri sırasında hata yapın. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} E-posta grubuna başarı ile eklendi. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -639,7 +639,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,Gösterge DocType: DocShare,Everyone,Herkes DocType: Workflow State,backward,geri -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: Aynı Rolü Düzey ile izin Sadece bir kural {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: Aynı Rolü Düzey ile izin Sadece bir kural {1} DocType: Email Queue,Add Unsubscribe Link,Aboneliğini Bağlantısı Ekle apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Henüz yorum yok. Yeni bir tartışma başlat. DocType: Workflow State,share,paylaş @@ -659,7 +659,7 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers, apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Bayan apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Bayan DocType: Website Theme,Background Color,Arkaplan Rengi -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,E-posta gönderirken hatalar vardı. Lütfen tekrar deneyin. DocType: Portal Settings,Portal Settings,Portal Ayarları DocType: Web Page,0 is highest,0 en üsttedir apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Eğer {0} bu iletişimi yeniden bağlamak istediğinden emin misin? @@ -688,7 +688,7 @@ DocType: Contact Us Settings,Contact Us Settings,Bize Ulaşın ayarları apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Arama ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Arama ... DocType: Workflow State,text-width,text-width -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Bu kayıt için maksimum Ek Sınırı ulaştı. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Bu kayıt için maksimum Ek Sınırı ulaştı. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Aşağıdaki zorunlu alanların doldurulması zorunludur:
DocType: Email Alert,View Properties (via Customize Form),(Özelleştir Formu aracılığıyla) Görünüm Özellikleri DocType: Note Seen By,Note Seen By,By Görülme Not @@ -698,17 +698,17 @@ DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Rapor Oluşturucu raporları rapor üreticisi tarafından doğrudan yönetilir. Yapacak bir şey yok. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Lütfen email adresini doğrula apps/frappe/frappe/model/document.py +903,none of,hiçbiri -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Bana bir kopya gönder +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Bana bir kopya gönder apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Kullanıcı İzinleri yükle DocType: Dropbox Settings,App Secret Key,Uygulama Gizli Anahtarı apps/frappe/frappe/config/website.py +7,Web Site,Web Sitesi apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,İşaretli öğeleri masaüstünde gösterilir -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} türleri için ayarlanamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} türleri için ayarlanamaz apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Kurulu {0} yok. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} şu anda bu belgeyi incelemekte DocType: ToDo,Assigned By Full Name,Tam Adı Assigned apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} güncellendi -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Rapor Tek türleri için ayarlanamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Rapor Tek türleri için ayarlanamaz apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} gün önce DocType: Email Account,Awaiting Password,Bekleniyor Şifre DocType: Address,Address Line 1,Adres Satırı 1 @@ -719,7 +719,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Iş akışı için Devletler (örneğin Taslak, Onaylı, İptal)." DocType: Print Settings,Allow Print for Draft,Taslakların yazdırılmasına izin ver apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Set Miktarı -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,onaylamak için bu belge göndermek +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,onaylamak için bu belge göndermek DocType: Contact,Unsubscribed,Kaydolmamış apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,sayfa ve rapor için ayarlanan özel rolleri apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Değerlendirme: @@ -727,7 +727,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Veri Alma Aracı DocType: Address,Dadra and Nagar Haveli,Dadra ve Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,Yükleme dosyaları birkaç saniye bekleyin. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Resminizi Ekleyin +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Resminizi Ekleyin apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Satır Değerler Değişti DocType: Workflow State,Stop,dur DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Açmak istediğiniz sayfaya bağlantı. Eğer bir grup ebeveyn yapmak istiyorsanız boş bırakın. @@ -742,7 +742,7 @@ DocType: Print Format,Align Labels to the Left,Sola Etiketleri hizalayın DocType: Help Article,Expert,Uzman DocType: Workflow State,circle-arrow-right,daire-ok-sağ DocType: LDAP Settings,LDAP Server Url,LDAP Sunucusu URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Açıkken, örneği açılamaz {0}" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Açıkken, örneği açılamaz {0}" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,yüklemek için sıraya alındı DocType: Custom DocPerm,Custom DocPerm,Özel DocPerm DocType: Newsletter,Send Unsubscribe Link,Aboneliğini Bağlantı Gönder @@ -759,7 +759,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Uygulama {0} silindi DocType: Custom DocPerm,Apply User Permissions,Kullanıcı İzinlerini Uygula DocType: User,Modules HTML,Modüller HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Kurulum> Kullanıcı İzinleri Yöneticisi apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Gerekli Eksik Değerler DocType: DocType,Other Settings,Diğer Ayarlar DocType: Social Login Keys,Frappe,Frappe @@ -778,7 +777,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Taşıyıcı Jetonu apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Seçilmedi belge apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Dr DocType: Event,Event,Faaliyet -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","{0} üzerinde, {1} yazdı:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","{0} üzerinde, {1} yazdı:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Standart alan silinemiyor. İstersen bunu gizleyebilirsiniz DocType: Top Bar Item,For top bar,Üst bar için apps/frappe/frappe/utils/bot.py +148,Could not identify {0},{0} tanımlanamadı @@ -792,7 +791,7 @@ DocType: Role,Desk Access,Danışma Erişim DocType: Workflow State,minus,eksi apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Sunucu Hatası: sunucu günlükleri ya da kontakt teknik destek kontrol edin. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Hoşgeldiniz e-posta adresine gönderildi -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Ilk kullanım için sistemi hazırlamak edelim. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Ilk kullanım için sistemi hazırlamak edelim. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Öne apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Zaten Kayıtlı DocType: System Settings,Float Precision,Float Precision @@ -806,7 +805,7 @@ DocType: Web Form,Allow Print,Yazdır izin apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Hiçbir Uygulamalar Yüklü apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Alanı Zorunlu Olarak İşaretle DocType: Communication,Clicked,Tıklandı -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Izniniz yok '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Izniniz yok '{0}' {1} DocType: User,Google User ID,Google Kullanıcı Kimliği apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,göndermek için planlanmış DocType: DocType,Track Seen,Görüldüğünü takip et @@ -883,7 +882,7 @@ DocType: File,Lft,lft DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,Eşzamanlı Oturumlar DocType: OAuth Client,Client Credentials,Müşteri Kimlik -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Bir modül veya aracı açmak +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Bir modül veya aracı açmak DocType: Communication,Delivery Status,Teslim Durumu DocType: Module Def,App Name,Uygulama Adı apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,izin verilen maksimum dosya boyutu {0} MB @@ -895,8 +894,8 @@ DocType: Feedback Request,Reference Communication,Referans Haberleşme DocType: Email Queue,Unsubscribe Method,Aboneliği iptal Yöntemi DocType: GSuite Templates,Related DocType,İlgili Doküman Türü apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Içerik eklemek için düzenleyin -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,seç Diller -apps/frappe/frappe/__init__.py +510,No permission for {0},No izni {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,seç Diller +apps/frappe/frappe/__init__.py +509,No permission for {0},No izni {0} DocType: DocType,Advanced,Gelişmiş apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API Anahtarı görünüyor ya da API Gizli yanlış !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Referans: {0} {1} @@ -918,7 +917,7 @@ DocType: Customize Form,Enter Form Type,Form Türü Girin apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Hiç bir kayıt etiketlenmedi. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Field kaldır DocType: User,Send Password Update Notification,Şifre Güncelleme Bildirimi Gönder -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Izin DocType, DocType. Dikkat et!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Izin DocType, DocType. Dikkat et!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Baskı, E-posta için Özelleştirilmiş Biçimleri" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Yeni sürüme güncellendi DocType: Custom Field,Depends On,Bağlıdır @@ -1015,6 +1014,7 @@ apps/frappe/frappe/model/document.py +902,one of,Bir apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Lütfen kopyalanacak dosyayı seçin apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,bir an denetleniyor apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Göster etiketleri +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Sık Kullanılan Kullanıcı İzni Uygula onaylıysa ve Bir Kullanıcı için bir DocType için Kullanıcı İzinleri tanımlandıysa, bağlantının değeri boş olan tüm belgeler o Kullanıcıya gösterilmez" DocType: Address,Billing,Faturalama DocType: Address,Billing,Faturalama DocType: Email Queue,Not Sent,Gönderilen Değil @@ -1046,6 +1046,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,açık apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Her gün olaylar aynı gün bitirmek gerekir. DocType: Communication,User Tags,Kullanıcı Etiketleri apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Resim Almak İçin .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Kurulum> Kullanıcı DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},İndirme App {0} DocType: Communication,Feedback Request,Geri Bildirim İsteği @@ -1063,7 +1064,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Yedekler apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Kişi ekle DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Opsiyonel: Her zaman bu kimlikleri gönderin. Yeni bir satırda Her E-posta Adresi -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Gizle Detayları +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Gizle Detayları DocType: Workflow State,Tasks,görevler DocType: Workflow State,Tasks,Görevler DocType: Event,Tuesday,Salı @@ -1086,9 +1087,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Bu kaydedildiği aynı klasörde bir Python dosyası yazın ve sütun ve sonucu döndürür. DocType: DocType,Sort Field,Sıralama Alanı DocType: Razorpay Settings,Razorpay Settings,Razorpay Ayarları -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Düzen Filtre -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Alan {0} türünde {1} zorunlu olamaz -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","örneğin. Rapor DocType için kontrol edilir, ancak hiçbir kullanıcı izinleri bir kullanıcı için Rapor için tanımlanan Kullanıcı İzinlerini Uygula, sonra tüm raporlar bu kullanıcı gösterilir" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Düzen Filtre +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Alan {0} türünde {1} zorunlu olamaz apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Daha ekle apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,hide Şeması DocType: System Settings,Session Expiry Mobile,Oturum Vade Mobil @@ -1105,6 +1105,7 @@ DocType: Communication,Delayed,Gecikmiş apps/frappe/frappe/config/setup.py +128,List of backups available for download,İndirilebilir yedeklerin listesi apps/frappe/frappe/www/login.html +89,Sign up,kaydol DocType: Test Runner,Output,Çıktı +DocType: Email Alert,Set Property After Alert,Uyarının Ardından Mülkü Ayarla apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Formlara ekstra alan ekleme. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Görünüşe göre bu sitenin Paypal yapılandırmasında bir sorun var. DocType: File,rgt,rgt @@ -1112,6 +1113,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,yaprak DocType: Portal Menu Item,Portal Menu Item,Portal Menü Maddesi DocType: User Email,Email ID,E-posta kimliği +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Rapor DocType için Kullanıcı İzinlerini Uygula onaylandıysa, ancak Bir Kullanıcı için Rapor için Kullanıcı İzinleri tanımlanmamışsa, o zaman tüm Raporlar o Kullanıcıya gösterilir" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Müşteri App kullanıcı izin verdiği sonra erişimi olacak kaynakların listesi.
örneğin, proje" DocType: Translation,Translated Text,Çeviri Metin DocType: Contact Us Settings,Query Options,Sorgu Seçenekleri @@ -1132,7 +1134,7 @@ DocType: System Settings,Setup Complete,Kurulum Tamamlandı DocType: System Settings,Setup Complete,Kurulum Tamamlandı apps/frappe/frappe/config/setup.py +66,Report of all document shares,Tüm belge hisselerinin Raporu apps/frappe/frappe/www/update-password.html +18,New Password,Yeni Şifre -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Filtre {0} eksik +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Filtre {0} eksik apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Üzgünüm! Sen otomatik olarak oluşturulan yorumlarınızı silemezsiniz DocType: Website Theme,Style using CSS,CSS kullanarak Stil apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Referans DocType @@ -1188,7 +1190,7 @@ DocType: User,Block Modules,Blok Modülleri apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Için uzunluğu dönülüyor {0} için '{1}' in '{2}'; Uzunluğunun ayarlanması {3} kesilmesi veri neden olacaktır. DocType: Print Format,Custom CSS,Özel CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Yorum ekle -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Yok Sayılan: {0} için {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Yok Sayılan: {0} için {1} DocType: Address,Gujarat,Gujarat apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Otomatik olaylar (zamanlayıcı) hakkında hata açın. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Geçerli bir Virgülle Ayrılmış Değer (CSV Dosyası) @@ -1198,7 +1200,7 @@ DocType: Email Account,Default Incoming,Standart Gelen DocType: Workflow State,repeat,tekrarlamak DocType: Website Settings,Banner,Banner DocType: Role,"If disabled, this role will be removed from all users.","devre dışı ise, bu rol tüm kullanıcılar kaldırılır." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Arama Yardımı +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Arama Yardımı apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Tescil edilmiş ancak engelli DocType: DocType,Hide Copy,Kopya gizle apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Tüm rolleri temizleyin @@ -1231,7 +1233,7 @@ DocType: Address,Country,Ülke DocType: Address,Country,Ülke apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Adresleri DocType: Communication,Shared,paylaşılan -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Belge Yazdır takın +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Belge Yazdır takın DocType: Bulk Update,Field,Alan DocType: Communication,Received,Alındı DocType: Social Login Keys,Google Client ID,Google Müşteri Kimliği @@ -1255,12 +1257,12 @@ DocType: Report,Query Report,Sorgu Raporu DocType: User,Set New Password,Yeni Şifre ayarla DocType: User,Github User ID,Github Kullanıcı Kimliği apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Belge Türü Eğer -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Silmek veya {0} çünkü iptal edilemiyor {1} ile bağlantılı {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Silmek veya {0} çünkü iptal edilemiyor {1} ile bağlantılı {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Bilinmeyen uygulaması {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s geçerli bir rapor biçimi değil. Rapor biçimi \ aşağıdakilerden biri olmalıdır %s DocType: Communication,Chat,Sohbet -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} satırları birden çok kez görüntülenir {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} satırları birden çok kez görüntülenir {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} {1} ile {2} aralığında {3}. satırda DocType: Communication,Expired,Süresi Doldu DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),bir kılavuz bir alan için sütun sayısı (bir ızgarada Toplam Sütunlar az 11 olmalıdır) @@ -1271,30 +1273,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Hesabın var mı? O apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Bilinmeyen Baskı Biçimi: {0} DocType: Workflow State,arrow-down,arrow-down apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Çöküş -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Kullanıcıya silme izni verilmedi {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Kullanıcıya silme izni verilmedi {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Son olarak Güncelleme DocType: Help Article,Likes,Beğeniler DocType: Website Settings,Top Bar,Üst Bar DocType: GSuite Settings,Script Code,Kod Kodu apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Kullanıcı E-postası Oluştur apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Kullanıcı E-postası Oluştur -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Belirtilen İzin Yok +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Belirtilen İzin Yok apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Genel Ayarlar: Kullanıcılar sadece işaretli simgeleri seçmek mümkün olacak apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} bulunamadı DocType: Custom Role,Custom Role,Özel Rolü apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Ana Sayfa / Test Klasörü 2 DocType: System Settings,Ignore User Permissions If Missing,Eksik varsa Kullanıcı İzinlerini Ignore -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Yüklemeden önce belgeyi kaydedin. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Yüklemeden önce belgeyi kaydedin. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Şifrenizi girin DocType: Dropbox Settings,Dropbox Access Secret,Dropbox Erişimi Gizli apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Bir yorum daha ekle apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Düzenleme DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Bülteni aboneliğinden -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Bir bölüm sonu önce gelmelidir Fold +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Bir bölüm sonu önce gelmelidir Fold apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Son Değiştiren DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,GST Durumu -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Gönderilmeden iptal edilemez +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Gönderilmeden iptal edilemez DocType: Website Theme,Theme,Tema apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Hatalar vardı DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI Kimlik Doğrulama Kodu için Bound REDIRECT_PATH @@ -1313,7 +1315,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Ayarl DocType: Website Theme,Text Color,Metin Rengi DocType: Desktop Icon,Force Show,kuvvet göster apps/frappe/frappe/auth.py +78,Invalid Request,Geçersiz İstek -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Bu formda herhangi bir giriş yapılmamış +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Bu formda herhangi bir giriş yapılmamış apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Oturum Vade formatında olmalıdır {0} DocType: Website Sidebar Item,Group,Grup DocType: Website Sidebar Item,Group,Grup @@ -1323,7 +1325,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Hataları kodlama görmezden. DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Ayarlanmadı -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Kurulum> Kullanıcı DocType: Authentication Log,Date,Tarih DocType: Authentication Log,Date,Tarih DocType: Website Settings,Disable Signup,Üye Olun devre dışı @@ -1335,7 +1336,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Yorum Ekle DocType: DocField,Mandatory,Zorunlu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Modül İhracat -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Temel kurallar ayarlanmamış +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Temel kurallar ayarlanmamış apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Aboneliğiniz {0} tarihinde sona erecek . apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Yedekleme için indirme linki aşağıdaki e-posta adresine gönderilecektir: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",Arasında Gönder İptal Amend Anlamı @@ -1348,11 +1349,11 @@ DocType: Desktop Icon,query-report,Sorgu raporu apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Atanan {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Filtreler kaydedildi DocType: DocField,Percent,Yüzde -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Filtreleri ayarlayın Lütfen +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Filtreleri ayarlayın Lütfen apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Ile Bağlantılı DocType: Workflow State,book,kitap DocType: Website Settings,Landing Page,Açılış Sayfası -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Özel Script Hatası +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Özel Script Hatası apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Ad apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","İthalat Talebi sıraya alınmış. Bu işlem birkaç dakika sürebilir, lütfen sabırlı olun." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,No Permissions set for this criteria. @@ -1365,7 +1366,7 @@ apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permi DocType: Custom Field,Custom,Özel DocType: Custom Field,Custom,Özel apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Kur-posta Uyarısı çeşitli kriterlere dayalı. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Filed under Mesajlar {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Filed under Mesajlar {0} DocType: Email Alert,Send alert if date matches this field's value,Tarih bu alanın değerini eşleşirse uyarı gönder DocType: Workflow,Transitions,Geçişler apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} çıkarın ve tüm verileri silmek? @@ -1374,9 +1375,8 @@ DocType: User,Login After,Sonra yap DocType: Print Format,Monospace,Monospace DocType: Letter Head,Printing,Baskı DocType: Workflow State,thumbs-up,thumbs-up -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı kurulum değil. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Hassas 1 ile 6 arasında olmalıdır +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Hassas 1 ile 6 arasında olmalıdır apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},İlt: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ve apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,ve @@ -1386,7 +1386,7 @@ DocType: About Us Team Member,Image Link,Resim Bağlantısı DocType: Auto Email Report,Report Filters,Rapor Filtreler apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,şimdi DocType: Workflow State,step-backward,step-backward -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{App_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{App_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Lütfen site yapılandırmanızda Dropbox erişim anahtarı ayarlayınız apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Bu e-posta adresine gönderilmesine izin Bu kayıt silinsin apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Sadece zorunlu alanlar yeni kayıtlar için gereklidir. İsterseniz zorunlu olmayan sütunları silebilirsiniz. @@ -1408,8 +1408,7 @@ DocType: File,Is Attachments Folder,Ekler Klasör mı apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Hepsini genişlet apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Geçerli oturum kimliği gereklidir. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Yeniden açın -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Eğer ödeme iptal ettiniz -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Veri içeren geçerli bir csv dosyası seçiniz +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Veri içeren geçerli bir csv dosyası seçiniz apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} belge paylaşımını şu kişiden sildi {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{1} {0} Belge Durum geçiş izin verilmez DocType: DocType,"Make ""name"" searchable in Global Search",Küresel Ara arama yapılabilsin "ad" @@ -1423,7 +1422,6 @@ DocType: Help Category,Help Category,Yardım Kategorisi apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Kullanıcı {0} devre dışı apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Kullanıcı {0} devre dışı apps/frappe/frappe/www/404.html +8,Page missing or moved,Eksik veya taşınmış Sayfa -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Düzenleme {0} özellikleri DocType: DocType,Route,Rota apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay Ödeme geçidi ayarları DocType: DocField,Name,İsim @@ -1431,8 +1429,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Dokümanları arayın apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Dokümanları arayın DocType: OAuth Authorization Code,Valid,Geçerli -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Açık Bağlantı -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Senin dilin +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Açık Bağlantı +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Senin dilin apps/frappe/frappe/desk/form/load.py +46,Did not load,Yük yoktu apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Satır ekle DocType: Tag Category,Doctypes,belgetürleri @@ -1448,7 +1446,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Geri Bildirim DocType: Address,Lakshadweep Islands,Lakshadweep Adaları apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Yazılabilir apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Bazı belgeler, bir Fatura gibi, bir kez nihai değiştirilmemelidir. Bu tür belgeler için son durum gönderildi denir. Gönderilmiş/onaylanan rolleri düzeltebilirsiniz." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Bu raporu dışarı aktarma izniniz yok +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Bu raporu dışarı aktarma izniniz yok apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 öğe seçili DocType: Newsletter,Test Email Address,Testi E-posta Adresi DocType: ToDo,Sender,Gönderici @@ -1483,7 +1481,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,İthalat .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,Döküman ID DocType: Print Settings,Letter,Mektup -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,"Resim Alanı ""Resim Ekle"" cinsinden bir alan olmalıdır" +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,"Resim Alanı ""Resim Ekle"" cinsinden bir alan olmalıdır" DocType: DocField,Columns,Sütunlar DocType: Async Task,Succeeded,Başarılı apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Gerekli zorunlu alanlar {0} @@ -1536,7 +1534,7 @@ DocType: DocField,Text Editor,Metin Düzenleyici apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Hakkımızda Page Ayarları. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Edit Custom HTML DocType: Error Snapshot,Error Snapshot,Hata ekran görüntüsü -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,IN +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,IN DocType: Email Alert,Value Change,Değer Değiştirme DocType: Standard Reply,Standard Reply,Standart Cevap apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Giriş kutusunun genişliği @@ -1555,12 +1553,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Başlığı oluşturmak için bu alan adı kullanın apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Gönderen İthalat E- apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Kullanıcı olarak davet -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Ekleri seç +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Ekleri seç apps/frappe/frappe/model/naming.py +94, for {0},{0} için apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,hatalar oluştu. Bu rapor edin. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Bu belgeyi yazdırma izniniz yok +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Bu belgeyi yazdırma izniniz yok apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Rapor Filtresi tabloda filtreler değerini ayarlayın. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Rapor Yükleniyor +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Rapor Yükleniyor apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Aboneliğiniz bugün sona erecek. DocType: Page,Standard,Standart DocType: Page,Standard,Standart @@ -1595,7 +1593,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Bölgesel Uzantıları DocType: LDAP Settings,Base Distinguished Name (DN),Taban Ayırt Edici Ad (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Bu konuşmayı bırakın -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Seçenekleri link alanına ayarlı değil {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Seçenekleri link alanına ayarlı değil {0} DocType: Customize Form,"Must be of type ""Attach Image""","""Resim Ekle"" türünden bir alan olmalıdır" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Unselect Tüm apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},{0} için 'Salt Okunur' ayarını kaldıramazsınız @@ -1641,10 +1639,10 @@ DocType: Note,Note,Not DocType: Note,Note,Not apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Hata raporu apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Geri bildirim koşulları uyuşmuyor -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Zaman alanı geçerli AlanAdı olmalıdır +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Zaman alanı geçerli AlanAdı olmalıdır DocType: Currency,Symbol,Sembol DocType: Currency,Symbol,Sembol -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Satır # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Satır # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Yeni şifre gönderilecektir apps/frappe/frappe/auth.py +245,Login not allowed at this time,Oturum şu anda izin verilmiyor DocType: Email Account,Email Sync Option,E-posta Eşitleme Seçeneği @@ -1669,7 +1667,7 @@ DocType: DocField,Text,Metin apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Standart ortak sorgulara cevap. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Standart gönderme DocType: Workflow State,volume-off,sesi-kapa -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},Tarafından Beğendim {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},Tarafından Beğendim {0} DocType: Footer Item,Footer Item,Altbilgi Öğe ,Download Backups,İndir Yedekler apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Ana Sayfa / Test Klasörü 1 @@ -1706,7 +1704,7 @@ DocType: Web Page,Text Align,Metin Hizala apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Adı gibi özel karakterler içeremez {0} DocType: Contact Us Settings,Forward To Email Address,İleri E-posta Adresi apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Tüm verileri göster -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Başlık alanı geçerli bir fieldname olmalı +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Başlık alanı geçerli bir fieldname olmalı apps/frappe/frappe/config/core.py +7,Documents,Belgeler DocType: Email Flag Queue,Is Completed,Tamamlandı apps/frappe/frappe/www/me.html +22,Edit Profile,Profili Düzenle @@ -1716,8 +1714,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Burada tanımlanan AlanAdı değeri vardır VEYA kurallar gerçek (örnekler) yalnızca, bu alanı görünür: myField eval: doc.myfield == 'Benim Değer' eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Bugün -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Bugün +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Bugün +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Bugün apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Bunu ayarladıktan sonra, kullanıcılar sadece mümkün erişim belgeler (örn. olacak Bağlantı var Blog Post) (örn. Blogger)." DocType: Error Log,Log of Scheduler Errors,Zamanlayıcı Hatalar Giriş DocType: User,Bio,Bio @@ -1741,6 +1739,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,"değerlendirmede 1 yıldız en düşük, 5 yıldız en yüksektir" DocType: Event,Ref Name,Referans Adı DocType: Web Page,Center,Merkez +DocType: Email Alert,Value To Be Set,Ayarlanacak Değer apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,İlk seviye DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Durumunu değiştirmek için atanan bir belge ve rol izin durumları temsil eder. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Yenile Formu @@ -1761,18 +1760,18 @@ DocType: DocType,Has Web View,Web Görünümü Has apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","BELGETÜRÜ adı bir harfle başlamalıdır ve sadece harfler, sayılar, boşluklar ve alt oluşabilir" DocType: Communication,Spam,İstenmeyen e DocType: Integration Request,Integration Request,entegrasyon Talebi -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Sevgili +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Sevgili DocType: Address,Maharashtra,Maharashtra DocType: Address,Accounts User,Muhasebe Kullanıcıları DocType: Web Page,HTML for header section. Optional,Başlık bölüm için HTML. Opsiyonel apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Bu özellik hala yepyeni ve deneysel -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Maksimum {0} satıra izin verildi +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Maksimum {0} satıra izin verildi DocType: Email Unsubscribe,Global Unsubscribe,Küresel aboneliğini apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Bu çok yaygın bir şifredir. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Görünüm DocType: Communication,Assigned,atanan DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Baskı Biçimi Seç +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Baskı Biçimi Seç apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Kısa klavye desenleri tahmin etmek kolaydır DocType: Portal Settings,Portal Menu,Portal Menüsü apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} uzunluğu 1 ile 1000 arasında olmalıdır @@ -1812,7 +1811,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Kullanıcı aranamıyor apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Geçersiz Çıktı Biçimi DocType: Custom DocPerm,Apply this rule if the User is the Owner,Kullanıcı Sahibi ise bu kuralı uygula -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Oturum açma kimliğiniz olacak +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Oturum açma kimliğiniz olacak apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Rapor oluşturmak DocType: Note,Notify users with a popup when they log in,oturum açtıklarında bir pop-up ile kullanıcılara bildir apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} yok, birleştirmek için yeni bir hedef seçin" @@ -1831,17 +1830,18 @@ DocType: User Permission for Page and Report,Roles Permission,Roller İzin apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Güncelleme DocType: Error Snapshot,Snapshot View,Anlık Görünüm apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Lütfen göndermeden önce bülteni kaydedin -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Seçenekler {0} üst üste {1} alanı için geçerli bir DocType olmalı +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} yıl önce +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Seçenekler {0} üst üste {1} alanı için geçerli bir DocType olmalı apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Özellikleri Düzenle DocType: Patch Log,List of patches executed,Yamalar listesi idam apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} zaten abonelikten çıktı -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Haberleşme Orta +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Haberleşme Orta DocType: Website Settings,Banner HTML,Banner HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',başka bir ödeme yöntemi seçin. Razorpay '{0}' para biriminde yapılan işlemleri desteklemez apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,yedekleme için sıraya. Bir saat için birkaç dakika sürebilir. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,OAuth İstemci App Kayıt Ol -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} olamaz ""{2}"". Bu ""{3}"" biri olmalıdır" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} olamaz ""{2}"". Bu ""{3}"" biri olmalıdır" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} veya {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Masaüstü Simgeleri gösterme veya gizleme apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Şifre Güncelleme @@ -1868,7 +1868,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Göster Hattı Bölümler sonra Kırdı DocType: Blogger,Short Name,Kısa Adı apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Sayfa {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Sen TÜM Senkronizasyon Seçeneğini seçerek, bu sunucudan tüm \ okumak yanı sıra okunmamış mesaj yeniden senkronize edecektir. Bu aynı zamanda Haberleşme (e-postaların) çoğaltılması \ neden olabilir." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,dosyalar Boyutu @@ -1880,6 +1880,7 @@ DocType: Contact,Purchase Manager,Satınalma Yöneticisi DocType: Custom Script,Sample,Numune apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Etiketler DocType: Event,Every Week,Her Hafta +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,E-posta Hesabı kurulum değil. Lütfen Kurulum> E-posta> E-posta Hesabı'ndan yeni bir E-posta Hesabı oluşturun apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,kullanımınızı kontrol edin veya daha yüksek bir planı yükseltmek için burayı tıklayın DocType: Custom Field,Is Mandatory Field,Zorunlu Alan mi DocType: User,Website User,Web Sitesi Kullanım @@ -1905,18 +1906,19 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Özel Kenar Çubuğu Menüsü DocType: Workflow State,pencil,kalem apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Iletileri ve diğer bildirimleri Sohbet. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Olarak ayarlanamaz sonra yerleştirin {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Olarak ayarlanamaz sonra yerleştirin {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,{0} öğesini şunla paylaş apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,E-posta hesabı kurulumu için lütfen parolanızı girin DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,Yazarlar Tanıtım DocType: Address,Phone,Telefon DocType: Address,Phone,Telefon -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Hata sırasında değerlendirilmesi E-posta Uyarısı {0}. Şablonunuzu düzeltin. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Hata sırasında değerlendirilmesi E-posta Uyarısı {0}. Şablonunuzu düzeltin. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Başlatmak için Belge Türü veya Rol seçin. DocType: Contact,Passive,Pasif DocType: Contact,Passive,Pasif DocType: Contact,Accounts Manager,Hesap Yöneticisi +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ödemeniz iptal edildi. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Dosya Seç Tipi DocType: Help Article,Knowledge Base Editor,Bilgi Bankası Editör apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Sayfa bulunamadı @@ -1945,6 +1947,7 @@ DocType: Property Setter,Property Type,Property Type DocType: Workflow State,screenshot,ekran görüntüsü apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Sadece Yönetici standart bir rapor kaydedebilirsiniz. Yeniden adlandırın ve kaydedin. DocType: System Settings,Background Workers,Arka plan İşçiler +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,{0} alan adı meta nesne ile çakışıyor DocType: Deleted Document,Data,Veri apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Belge Durumu apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Sen yaptık {0} arasında {1} @@ -1969,7 +1972,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Göster Kullanıcı İzinleri apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Yedek almak için sisteme giriş yapmalı ve sistem yöneticisi rolüne sahip olmalısınız. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,Kalan -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Takmadan önce tasarruf edin. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Takmadan önce tasarruf edin. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Eklenen {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Varsayılan tema ayarlanır {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Alan Türleri {0} değiştirilemez {1} üste {2} @@ -1991,11 +1994,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Oturum Baş apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Oturum Başlatma Başarısız Oldu apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Bu e-posta {0} gönderilecek ve kopyalanan {1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Lütfen Kurulum> E-posta> E-posta Hesabı'ndan varsayılan E-posta Hesabı ayarlarını yapın -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Yeni {0} oluşturun +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Yeni {0} oluşturun DocType: Email Rule,Is Spam,Spam mı apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Rapor {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Open {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Open {0} DocType: OAuth Client,Default Redirect URI,Standart Yönlendirme URI DocType: Email Alert,Recipients,Alıcılar DocType: Email Alert,Recipients,Alıcılar @@ -2014,6 +2016,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Yardım Makaleleri ,Modules Setup,Kurulmuş Modüller apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Türü: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ödemeniz başarısız oldu. DocType: Communication,Unshared,paylaşılmayan DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Modül Bulunamadı @@ -2062,7 +2065,7 @@ DocType: Website Settings,Brand Image,Marka imajı DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Üst gezinti çubuğu, altbilgi ve logo Kur." DocType: Web Form Field,Max Value,Max Değeri -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Için {0} düzeyde {1} {2} tane üst üste {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Için {0} düzeyde {1} {2} tane üst üste {3} DocType: Contact,All,Tümü DocType: Email Queue,Recipient,Alıcı DocType: Communication,Has Attachment,Ek Has @@ -2080,7 +2083,8 @@ DocType: Workflow State,align-right,sağa-hizala DocType: Auto Email Report,Email To,To Email apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Klasör {0} boş değil DocType: Page,Roles,Roller -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Alan {0} seçilebilir değildir. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Hata: {0} için değer eksik: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Alan {0} seçilebilir değildir. DocType: System Settings,Session Expiry,Oturum kapanacak DocType: Workflow State,ban-circle,ban-daire DocType: Email Flag Queue,Unread,Okunmamış @@ -2096,7 +2100,7 @@ DocType: User,User Defaults,Kullanıcı Varsayılanları apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Yeni Oluştur apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Yeni Oluştur DocType: Workflow State,chevron-down,chevron-down -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Gönderilmez Email {0} (devre dışı / abonelikten) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Gönderilmez Email {0} (devre dışı / abonelikten) DocType: Async Task,Traceback,Geri iz DocType: Currency,Smallest Currency Fraction Value,Küçük Döviz Kesir Değeri apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Ata @@ -2109,12 +2113,12 @@ DocType: Communication,From,Itibaren DocType: Communication,From,Itibaren DocType: Website Theme,Google Font (Heading),Google Font (Başlık) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,İlk grup düğümünü seçin. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},{0} Bul {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},{0} Bul {1} DocType: OAuth Client,Implicit,üstü kapalı DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","(Alanları, ""Durum"" olmalı ""Konu"") Bu DocType karşı iletişim gibi ekler" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",kullanıcı erişim sağlar bir kez yetki kodu alma yanı sıra başarısızlık yanıtları için URI'ları. Tipik REST uç Müşteri App tarafından gözler önüne serdi.
örneğin http: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Sunulmasından sonra {0} değiştirmek için izin verilmez +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Sunulmasından sonra {0} değiştirmek için izin verilmez DocType: Communication,Comment Type,Yorum Tipi DocType: OAuth Client,OAuth Client,OAuth İstemci apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Kullanıcılar @@ -2131,7 +2135,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Verileri Filtreleme DocType: Auto Email Report,Filter Data,Verileri Filtreleme apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Bir etiket ekle -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Önce bir dosya ekleyiniz. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Önce bir dosya ekleyiniz. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Adını ayarı bazı hatalar vardı, yöneticinizle irtibata geçiniz" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,Gelen e-posta hesabı doğru değil apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2146,11 +2150,11 @@ DocType: Blog Post,Email Sent,E-posta Gönderilmiş DocType: DocField,Ignore XSS Filter,XSS Filtresi görmezden apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,çıkarıldı apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox yedekleme ayarları -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,E-posta Olarak Gönder +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,E-posta Olarak Gönder DocType: Website Theme,Link Color,Bağlantı Rengi apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Kullanıcı {0} devre dışı edilemez apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Sevgili Sistem Yöneticisi," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Senin ülken +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Senin ülken DocType: Event,Sunday,Pazar DocType: Event,Sunday,Pazar apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Grid View @@ -2160,7 +2164,7 @@ DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP Ayarları apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Değişiklik Yapılmasına Dair apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,PayPal ödeme ağ geçidi ayarları -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: izin verilen azami karakter olarak '{1}' ({3}), kesilmiş alacak {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: izin verilen azami karakter olarak '{1}' ({3}), kesilmiş alacak {2}" DocType: OAuth Client,Resource Owner Password Credentials,Sahibi Şifre Kimlik kaynak DocType: OAuth Client,Response Type,tepki Türü apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Max Kullanıcıları @@ -2177,7 +2181,7 @@ DocType: DocField,Table,Tablo DocType: File,File Size,Dosya Boyutu apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Bu formu göndermek için giriş yapmalısınız DocType: User,Background Image,Arkaplan Resmi -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Ülkenizi, Zaman Dilimi ve Para Birimi Seçiniz" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Ülkenizi, Zaman Dilimi ve Para Birimi Seçiniz" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Arasında DocType: Async Task,Queued,Sıraya alınmış @@ -2186,6 +2190,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,Y DocType: Custom DocPerm,Create,Oluştur apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Geçersiz Filtre: {0} DocType: Email Account,no failed attempts,Hiçbir başarısız girişim +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Varsayılan Adres Şablonu bulunamadı. Lütfen Kurulum> Yazdırma ve Marka Verme> Adres Şablonu'ndan yeni bir tane oluşturun. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,Uygulama Erişim Anahtarı DocType: OAuth Bearer Token,Access Token,Erişim Anahtarı @@ -2204,8 +2209,8 @@ DocType: User,Github Username,Github Adı DocType: DocType,Image View,Resim Görüntüle DocType: DocType,Image View,Resim Görüntüle apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","bir şey işlemi sırasında yanlış gitti gibi görünüyor. Biz ödeme onaylandıktan değil çünkü, Paypal otomatik olarak bu miktarı iade edecektir. Aksi takdirde, bize bir e-posta göndermek ve Korelasyon kimliğini belirtiniz: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Parolaya sembolleri, sayıları ve büyük harfleri ekleyin" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","alan '{0}' Özel Alan belirtilen sonra yerleştirin '{1}' etiketi ile '{2}', yok" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Parolaya sembolleri, sayıları ve büyük harfleri ekleyin" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","alan '{0}' Özel Alan belirtilen sonra yerleştirin '{1}' etiketi ile '{2}', yok" DocType: Workflow State,signal,sinyal DocType: DocType,Show Print First,Önce Baskıyı Göster apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Göndermek için Ctrl + Enter @@ -2236,14 +2241,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Dosya '{0}' bulunamadı apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Bölüm kaldır DocType: User,Change Password,Şifre değiştir -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Geçersiz E-posta: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Merhaba! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Geçersiz E-posta: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Merhaba! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Etkinlik sonunda başlamasından sonra olmalıdır apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Sen bir rapor almak için izniniz yok: {0} +DocType: System Settings,Apply Strict User Permissions,Sıkı Kullanıcı İzinleri Uygula DocType: DocField,Allow Bulk Edit,Toplu Düzenlemeye İzin Ver DocType: DocField,Allow Bulk Edit,Toplu Düzenlemeye İzin Ver DocType: Blog Post,Blog Post,Blog postası -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Gelişmiş Arama +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Gelişmiş Arama apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Parola sıfırlama bilgileri e-posta gönderildi apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Düzey 0, belge düzeyi izinleri, alan düzeyinde izinler için daha üst düzeyler içindir." @@ -2262,16 +2268,15 @@ DocType: Web Page,Sidebar and Comments,Kenar çubuğu ve Yorumlar apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Eğer sonra iptal ve bunu kaydetmek Belgeyi Amend zaman, eski sayısının bir versiyonu yeni bir numara almak olacaktır." DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar DocType: Stripe Settings,Publishable Key,Yayınlanabilir Anahtar -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} yıl önce DocType: Workflow State,circle-arrow-left,daire-ok-sol apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis önbellek sunucusu çalışmıyor. Yönetici / Teknik desteğe başvurun apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,parti Adı -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Yeni bir kayıt oluşturma +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Yeni bir kayıt oluşturma apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Arama apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Arama DocType: Currency,Fraction,Kesir DocType: LDAP Settings,LDAP First Name Field,LDAP Ad Alanı -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Mevcut eklerden seçin +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Mevcut eklerden seçin DocType: Custom Field,Field Description,Alan Açıklama apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,İstemci ile girilmemiş isim apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,E-posta gelen kutusu @@ -2324,11 +2329,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Bilgi: DocType: Custom Field,Permission Level,İzin Düzeyi DocType: User,Send Notifications for Transactions I Follow,Ben takip İşlemler için Bildirimleri Gönder -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Yaz olmadan onaylanmasına, İptal, Gönder ayarlanamaz" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Yaz olmadan onaylanmasına, İptal, Gönder ayarlanamaz" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Eki silmek istediğinizden emin misiniz? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Silmek veya {0} çünkü iptal edilemiyor {1} ile bağlantılı {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

'Için hiçbir sonuç bulunamadı'

-apps/frappe/frappe/__init__.py +1063,Thank you,Teşekkürler +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Silmek veya {0} çünkü iptal edilemiyor {1} ile bağlantılı {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Teşekkürler apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Kaydediliyor DocType: Print Settings,Print Style Preview,Baskı Önizleme Stil apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2340,10 +2344,10 @@ DocType: DocField,In List View,Liste Görünümü DocType: Email Account,Use TLS,TLS kullanın apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Geçersiz giriş ya da şifre apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Formlara özel javascript ekle. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Hayır +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr Hayır ,Role Permissions Manager,Rol İzinler Müdürü apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Yeni Baskı Biçimi Adı -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,net Ek +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,net Ek apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Zorunlu: ,User Permissions Manager,Kullanıcı İzin Yönetimi DocType: Property Setter,New value to be set,Ayarlanacak Yeni değer @@ -2373,26 +2377,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 gün apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Blog yazılarını sınıflandırır. DocType: Workflow State,Time,Zaman DocType: DocField,Attach,Ekle -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} alanAdı şablonu geçerli değil. Olması gereken {{field_name}} +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} alanAdı şablonu geçerli değil. Olması gereken {{field_name}} DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,"En az bir iletişim belge için kullanılabilir yoktur, sadece geri bildirim isteği gönder." DocType: Custom Role,Permission Rules,İzin Kuralları DocType: GSuite Settings,GSuite Settings,GSuite Ayarları DocType: Address,Links,Bağlantılar -apps/frappe/frappe/model/base_document.py +428,Value missing for,Değer eksik +apps/frappe/frappe/model/base_document.py +427,Value missing for,Değer eksik apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Alt öğe ekle -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sonlandırılmış bir kayıt silinemez. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Sonlandırılmış bir kayıt silinemez. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Yedek Boyutu DocType: GSuite Templates,Template Name,şablon adı -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,Belgenin yeni tip +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,Belgenin yeni tip DocType: Custom DocPerm,Read,Okundu DocType: Role Permission for Page and Report,Role Permission for Page and Report,Page ve Raporu için Rol İzni apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Değer hizalayın apps/frappe/frappe/www/update-password.html +14,Old Password,Eski Şifre -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Tarafından Mesaj {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Tarafından Mesaj {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",", Sütunlar biçimlendirmek sorgudaki sütun etiketlerini vermek." DocType: Has Domain,Has Domain,Etki Alanı Var apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Hesabınız yok mu? Kayıt ol -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Ata Amend ayarlanamaz Submittable değilse +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Ata Amend ayarlanamaz Submittable değilse DocType: Address,Bihar,Bihar apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Rolü Düzenle İzinleri DocType: Communication,Link DocType,bağlantı DocType @@ -2494,7 +2498,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Profil E-posta adresi olduğundan emin olun apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Bu formda kaydedilmemiş değişiklikler var. Devam etmeden önce lütfen kaydedin. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} bir seçenek olmalıdır için varsayılan +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} bir seçenek olmalıdır için varsayılan DocType: Tag Doc Category,Tag Doc Category,Etiket Doc Kategori DocType: User,User Image,Kullanıcı Resmi apps/frappe/frappe/email/queue.py +289,Emails are muted,E-postalar kapatılır @@ -2530,7 +2534,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Sonraki ey DocType: Workflow State,ok,tamam DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Yayımcı -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Başarısız: {0} için {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Başarısız: {0} için {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,zorunlu seçin apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Araştır apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,E-postalar Gönderilen @@ -2543,7 +2547,7 @@ DocType: Async Task,Running,Koşu apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Parola Sıfırlama apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,daha fazla {0} abone eklemek için yükseltme Lütfen DocType: Workflow State,hand-left,hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FIELDTYPE {0} {1} benzersiz olamaz için +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FIELDTYPE {0} {1} benzersiz olamaz için DocType: Email Account,Use SSL,SSL kullan DocType: Email Account,Use SSL,SSL kullan DocType: Workflow State,play-circle,play-circle @@ -2602,7 +2606,7 @@ DocType: DocField,No Copy,No Copy DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP ile giriş DocType: Web Form,Breadcrumbs,Kırıntıları -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Sahibi ise +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Sahibi ise DocType: OAuth Authorization Code,Expiration time,Sona erme zamanı DocType: Web Page,Website Sidebar,Web sitesi Kenar Çubuğu DocType: Web Form,Show Sidebar,göster Kenar Çubuğu @@ -2623,7 +2627,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},{1}'in içinde {0 apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,kendileri tarafından ad ve soyadları tahmin etmek kolaydır. apps/frappe/frappe/config/website.py +93,Knowledge Base,Bilgi tabanı DocType: Workflow State,briefcase,evrak çantası -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Değer için değiştirilemez {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Değer için değiştirilemez {0} DocType: Feedback Request,Is Manual,Manuel mı DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Yeşil, Tehlike - - Kırmızı, Ters - Siyah, İlköğretim - Koyu Mavi, Bilgileri - Açık Mavi, Uyarı - Turuncu Başarı: Stil düğme rengini temsil" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Raporu yok Loaded. Bir rapor çalıştırmak için sorgu-rapor / [Rapor Adı] kullanın. @@ -2704,7 +2708,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,İlerleme apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,Role Göre apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Eksik Alanları apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname geçersiz AlanAdı '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Bir belge türü ara +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Bir belge türü ara apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Alan bile sunulmasından sonra düzenlenebilir kalmasına izin ver DocType: Custom DocPerm,Role and Level,Rolü ve Seviye DocType: File,Thumbnail URL,Küçük resim URL @@ -2721,19 +2725,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Daha fazla bilgi DocType: Desktop Icon,Desktop Icon,Masaüstü simgesi -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Ödemeniz başarıyla kabul edildi +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Ödemeniz başarıyla kabul edildi apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Maalesef! Bu sayfayı görüntülemek için izin verilmez. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,İpucu: Çift tıklama hücre düzenlemek için DocType: Workflow State,bell,çan apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,E-posta Uyarısında Hata apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,E-posta Uyarısında Hata apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Bu belgeyi paylaş +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Kurulum> Kullanıcı İzinleri Yöneticisi apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} son nokta olamaz çünkü kendisine bağlı olanlar var. DocType: Communication,Info,Bilgi -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Ek ekle +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Ek ekle DocType: Communication,Email,E-posta; apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Mesajınız için teşekkür ederiz -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Okundu bilgisi gönder +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Okundu bilgisi gönder DocType: Stripe Settings,Stripe Settings,Şerit Ayarları DocType: Stripe Settings,Stripe Settings,Şerit Ayarları DocType: Dropbox Settings,Dropbox Setup via Site Config,Sitesi Config'de aracılığıyla Dropbox Kurulumu @@ -2815,6 +2820,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Forma DocType: DocField,Print Width,Baskı Genişliği ,Setup Wizard,Kurulum Sihirbazı ,Setup Wizard,Kurulum Sihirbazı +DocType: Address,GST State Number,GST Devlet Numarası DocType: User,Allow user to login only before this hour (0-24),Kullanıcı bu saat önce giriş yapmasına izin ver (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Klasör zorunludur apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2845,7 +2851,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Küçük Metin apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Yönetici erişilen {0} {1} IP Adresi aracılığıyla {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Eşittir -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alan Seçenekler 'Dynamic Link' type 'DocType' gibi seçenekler ile başka Bağlantı alanı işaret etmelidir +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',Alan Seçenekler 'Dynamic Link' type 'DocType' gibi seçenekler ile başka Bağlantı alanı işaret etmelidir DocType: About Us Settings,Team Members Heading,Ekip Üyeleri Başlığı apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Geçersiz CSV Biçimi apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Yedekler Set Sayısı @@ -2856,7 +2862,7 @@ DocType: Contact,Contact,İletişim DocType: User,Third Party Authentication,Üçüncü Taraf Doğrulama DocType: Website Settings,Banner is above the Top Menu Bar.,Banner Top Menu Bar üzerindedir. DocType: Razorpay Settings,API Secret,API Gizli -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,İhracat Raporu +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,İhracat Raporu apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} mevcut değil DocType: Email Account,Port,Port DocType: Print Format,Arial,Arial @@ -2882,7 +2888,7 @@ DocType: Language,Based On,Göre DocType: Language,Based On,Göre apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Varsayılan yap apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe Sunucu URL'yi kontrol -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1} endeksli olamaz için +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1} endeksli olamaz için DocType: Communication,Email Account,E-posta Hesabı DocType: Workflow State,Download,indir DocType: Blog Post,Blog Intro,Blog girişi @@ -2894,7 +2900,7 @@ DocType: ToDo,Low,Düşük DocType: ToDo,Low,Düşük apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Jinja şablonları kullanarak daha iyi sonuçlar alabilirsiniz. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Geçersiz limit {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Bir belge türü Liste +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Bir belge türü Liste DocType: Event,Ref Type,Ref Tipi apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Yeni kayıtlar yüklüyorsanız, ""isim"" (ID) sütunu boş bırakın." DocType: Address,Chattisgarh,Chattisgarh @@ -2916,26 +2922,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,Y DocType: Print Settings,Send Print as PDF,Baskıyı PDF olarak gönder DocType: Web Form,Amount,Tutar DocType: Workflow Transition,Allowed,İzin verildi -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Bir formda tek bir kat olabilir +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Bir formda tek bir kat olabilir apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},{0} için dosya biçimi yazılamıyor apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Varsayılan ayarları geri yükle? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Geçersiz Ana Sayfa apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Geçersiz giriş. Tekrar dene. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Bağlantı {1} satırında {0} Tablo türü alanı için gerekli olan seçenekler +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Bağlantı {1} satırında {0} Tablo türü alanı için gerekli olan seçenekler DocType: Auto Email Report,Send only if there is any data,"herhangi bir veri varsa, sadece Gönder" apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Filtreleri Sıfırla apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Filtreleri Sıfırla -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: yüksek seviyelerde ayarlanır önce 0 düzeyinde İzni ayarlanması gerekir +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: yüksek seviyelerde ayarlanır önce 0 düzeyinde İzni ayarlanması gerekir apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Atama tarafından kapatıldı {0} DocType: Integration Request,Remote,uzak -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Hesapla +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Hesapla apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,İlk DOCTYPE seçiniz apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,E-posta adresiniz Onayla apps/frappe/frappe/www/login.html +42,Or login with,Ya ile giriş DocType: Error Snapshot,Locals,Yerliler apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},aracılığıyla iletilen {0} {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} bir yorumda sizden bahsetti {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,Örneğin (55 + 434) / 4 veya = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,Örneğin (55 + 434) / 4 veya = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} gereklidir apps/frappe/frappe/model/naming.py +44,{0} is required,{0} gereklidir DocType: Integration Request,Integration Type,entegrasyon Tipi @@ -2947,16 +2953,16 @@ DocType: DocField,Perm Level,Seviye Perm apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Bugünün Takvim'de Olaylar DocType: Web Page,Web Page,Web Sayfası DocType: Blog Category,Blogger,Blogcu -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Aramaya' izin verilmiyor -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Aramaya' izin verilmiyor +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Aramaya' izin verilmiyor +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},{1} satırında {0} türü için 'Genel Aramaya' izin verilmiyor apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Görünümü listesi -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Tarih format biçiminde olmalıdır:{0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Tarih format biçiminde olmalıdır:{0} DocType: Workflow,Don't Override Status,Durum geçersiz kılma etmeyin apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Bir derecelendirme verin. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Geribildirim İsteği apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Arama terimi -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,İlk Kullanıcı: Sen -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,İlk Kullanıcı: Sen +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,İlk Kullanıcı: Sen +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,İlk Kullanıcı: Sen apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Seçin Sütunlar DocType: Translation,Source Text,Kaynak Metin apps/frappe/frappe/www/login.py +55,Missing parameters for login,Giriş için eksik parametreler @@ -2979,7 +2985,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,İthalat DocType: ToDo,Assigned By,By Assigned apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Sen alanlarda düzeylerini ayarlamak için Özelleştirmek Formunu kullanabilirsiniz. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Bölgenizi Seçiniz +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Bölgenizi Seçiniz DocType: Custom DocPerm,Level,Seviye DocType: Custom DocPerm,Level,Seviye DocType: Custom DocPerm,Report,Rapor @@ -3000,7 +3006,7 @@ DocType: Website Theme,Background,Geçmiş DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","Kullanıcı İzinleri uygulamak için kullanılan belgetürleri JSON listesi. Boş olursa, tüm bağlantılı belgetürleri Kullanıcı İzinlerini uygulamak için kullanılır." DocType: Report,Ref DocType,Ref DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,Lütfen bir derecelendirme ekleyin -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Öğesi tanzim edilmeden iptal edilemez +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Öğesi tanzim edilmeden iptal edilemez apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Tam Sayfa DocType: DocType,Is Child Table,Alt tablo mu apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} mutlaka {1} den olmalıdır @@ -3015,7 +3021,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Bu slayt üzerinde gid apps/frappe/frappe/config/setup.py +260,Install Applications.,Uygulamaları kurun. DocType: Contact,Last Name,Soyadı DocType: Event,Private,Özel -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Bugün için uyarı yok +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Bugün için uyarı yok DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),PDF olarak Email Print Ekler Gönder (Önerilen) DocType: Web Page,Left,Bırakmak DocType: Event,All Day,Bütün Gün @@ -3031,7 +3037,7 @@ DocType: Blog Post,Published On,Yayınlandı DocType: Contact,Gender,Cinsiyet DocType: Contact,Gender,Cinsiyet apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Eksik zorunlu bilgiler: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Alan '{0}' da benzersiz olmayan değerlere sahip olduğu Unique olarak ayarlanamaz +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Alan '{0}' da benzersiz olmayan değerlere sahip olduğu Unique olarak ayarlanamaz apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Sadece 200 ekler tek isteği izin DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Referans Tipi @@ -3045,7 +3051,7 @@ DocType: Workflow State,warning-sign,warning-sign DocType: Workflow State,User,Kullanıcı DocType: Workflow State,User,Kullanıcı DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Olarak tarayıcı penceresinde göster başlığı "Önek - title" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,belge tipi içindeki yazı +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,belge tipi içindeki yazı apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Testleri Çalıştır apps/frappe/frappe/handler.py +91,Logged Out,Çıkış yapıldı apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Daha... @@ -3073,13 +3079,13 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Current DocType: DocField,Default,Varsayılan DocType: DocField,Default,Varsayılan apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} eklendi -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}','{0}' için ara +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}','{0}' için ara apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,İlk raporu kaydetmek Lütfen apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} aboneler eklendi apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Değil ise DocType: Workflow State,star,yıldız -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,virgülle ayrılmış değerler -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Para için maksimum genişlik 100px verilen satır {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,virgülle ayrılmış değerler +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Para için maksimum genişlik 100px verilen satır {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},için görüşlerinizi paylaşmak Lütfen {0} apps/frappe/frappe/config/website.py +13,Content web page.,Içerik web sayfası. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Yeni Rol Ekle @@ -3100,7 +3106,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Geçerli bir LDAP kullanıcı apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} geçerli bir durum değil apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',başka bir ödeme yöntemi seçin. PayPal '{0}' para biriminde yapılan işlemleri desteklemez -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Arama alanı {0} geçerli değil +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Arama alanı {0} geçerli değil DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Sen müşterilerin turuncu bulmak 'sorarak şeyler bulabilirsiniz apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Maalesef! Kullanıcı kendi kayıtlarına tam erişimi olmalıdır. @@ -3166,7 +3172,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Meta Filtre DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Bu formu bir web sayfası varsa Metin Web Sayfasına Link görüntülenecek. Bağlantı yolu otomatik page_name` ve `` parent_website_route` dayalı oluşturulan olacak DocType: Feedback Request,Feedback Trigger,Geri Bildirim Tetik -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,İlk {0} set Lütfen +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,İlk {0} set Lütfen DocType: Unhandled Email,Message-id,İleti kimliği DocType: Patch Log,Patch,Yama DocType: Async Task,Failed,Başarısız diff --git a/frappe/translations/uk.csv b/frappe/translations/uk.csv index 698500e793..023a85d109 100644 --- a/frappe/translations/uk.csv +++ b/frappe/translations/uk.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Ім'я користувача facebook DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Примітка: Декілька сесій буде дозволено в разі мобільного пристрою apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Включений електронну поштову скриньку для користувача {користувачів} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Не можете відправити цей лист. Ви перейшли ліміт відправки {0} листів в цьому місяці. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Остаточно провести {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Остаточно провести {0}? DocType: Address,County,Область DocType: Workflow,If Checked workflow status will not override status in list view,Якщо прапорець встановлений статус робочого процесу не скасовує статус у вигляді списку apps/frappe/frappe/client.py +280,Invalid file path: {0},Невірний шлях до файлу: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,"Буд apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Дерево DocType: User,User Emails,листи користувачів DocType: User,Username,Ім'я користувача -apps/frappe/frappe/model/base_document.py +581,Value too big,Занадто велике значення +apps/frappe/frappe/model/base_document.py +580,Value too big,Занадто велике значення DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Test Run Script DocType: Contact,Department,Відділ @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,Колоди DocType: Custom DocPerm,This role update User Permissions for a user,Це оновлення роль права користувачів для користувача apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Перейменувати {0} DocType: Workflow State,zoom-out,зменшити -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,"Не вдається відкрити {0}, коли його примірник відкритий" +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,"Не вдається відкрити {0}, коли його примірник відкритий" apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Таблиця {0} не може бути порожнім apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,З LEDGERS apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,зображень DocType: Communication,Reference Owner,посилання Власник DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,"Найменша частка, наявна в обігу (монета). Наприклад, 1 копійка для ГРН, і вона має бути введена як 0,01" DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, Ряд {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, Ряд {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,"Будь ласка, дайте FULLNAME." apps/frappe/frappe/model/document.py +904,Beginning with,Починаючи з apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Шаблон імпорту даних @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Батько DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Якщо включено, то сила пароля буде забезпечуватися на основі мінімального значення пароля Score. Значення 2 є середньої сили і 4 будучи дуже сильним." DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Якщо включено, то сила пароля буде забезпечуватися на основі мінімального значення пароля Score. Значення 2 є середньої сили і 4 будучи дуже сильним." DocType: About Us Settings,"""Team Members"" or ""Management""","Члени команди" або "Управління" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',За замовчуванням для "Перевірити" типу поля повинні бути '0' або '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',За замовчуванням для "Перевірити" типу поля повинні бути '0' або '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Вчора DocType: Contact,Designation,Посада DocType: Test Runner,Test Runner,Тест Runner @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,Є Опубліковано поле DocType: Email Group,Email Group,E-mail Група DocType: Note,Seen By,Побачений apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Додати кілька -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Не схоже на +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Не схоже на apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Встановіть мітку для поля apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Неправильне значення: {0} повинен бути {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Зміна властивостей полів (приховати, тільки для читання, дозвіл і т.д.)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,"Нала apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Адміністратор Записаний У DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Варіанти контаків, типу ""Звернення з питань продажу, звернення з питань підтримки"" і т.д. кожен з нового рядка або через кому." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Завантажити -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Вставити +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Вставити apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Виберіть {0} DocType: Print Settings,Classic,Класичний DocType: Desktop Icon,Color,Колір @@ -122,7 +122,7 @@ DocType: Translation,Translation,переклад apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Встановлювати apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Містер DocType: Custom Script,Client,Клієнт -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Ця форма була змінена після завантаження його +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Ця форма була змінена після завантаження його DocType: User Permission for Page and Report,User Permission for Page and Report,Дозвіл користувача для сторінок і звіту DocType: Address,Himachal Pradesh,Хімачал-Прадеш DocType: System Settings,"If not set, the currency precision will depend on number format","Якщо не встановлено, то точність валюти буде залежати від формату чисел" @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Причина apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,"Будь ласка, сформулюйте користувача" DocType: Email Unsubscribe,Email Unsubscribe,E-mail Відписатися DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Виберіть зображення шириною до 150 пікселів з прозорим фоном для досягнення найкращих результатів. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Перший користувач стане System Manager (ви можете змінити це пізніше). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Перший користувач стане System Manager (ви можете змінити це пізніше). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,Круг-стрілка вгору apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Завантаження ... DocType: Email Domain,Email Domain,домен Email DocType: Workflow State,italic,курсив apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Для всіх -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: Неможливо встановити Імпорт без Створення +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: Неможливо встановити Імпорт без Створення apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Подія та інші календарі. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Всі поля необхідно надати коментар. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Перетягніть сортування стовпців @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,Стандартне меню Б apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,"Не вдається видалити теки ""Головна"" та ""Долучення""" apps/frappe/frappe/config/desk.py +19,Files,Файли apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,"Дозволи бути застосована на користувачів, заснованих на тому, що ролі, які вони призначені." -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,"Ви не можете відправляти повідомлення електронної пошти, пов'язані з цим документом" -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,"Будь ласка, виберіть принаймні 1 стовпець {0} для сортування / груп" +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,"Ви не можете відправляти повідомлення електронної пошти, пов'язані з цим документом" +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,"Будь ласка, виберіть принаймні 1 стовпець {0} для сортування / груп" DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,"Перевірте це, якщо ви перевіряєте ваш платіж за допомогою API Пісочниця" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Ви не можете видалити стандартну тему веб-сайту DocType: Feedback Trigger,Example,Приклад @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,Всього Передплатники apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Якщо роль не має доступу на рівні 0, то більш високі рівні сенсу." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Зберегти як DocType: Communication,Seen,Відвідування -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Показати більше інформації +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Показати більше інформації DocType: System Settings,Run scheduled jobs only if checked,Запускати заплановані завдання тільки якщо позначено apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,"Буде показано, тільки якщо заголовки розділів включені" apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,архів @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,Приховати Тема DocType: Address,Current,ток DocType: Address,Current,ток -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Документи по темі apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Групи DOCTYPES DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,видалити круг- @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,Фільтр apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},"Fieldname {0} не може мати спеціальні символи, такі як {1}" apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Оновлення багато значень в один час. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,"Помилка: Документ був змінений після того, як відкрив її" -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Ні за замовчуванням Адреса шаблону, не знайдено. Будь ласка, створіть нову з Setup> Печатки і брендингу> Адреси шаблону." apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} вийшов: {1} DocType: Address,West Bengal,West Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: Неможливо встановити Призначити Проведеним якщо не проводиться +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: Неможливо встановити Призначити Проведеним якщо не проводиться DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Відфільтровано по "{0}" DocType: Salutation,Administrator,Адміністратор @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,Назва блогу apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Стандартні ролі не можуть бути відключені DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Інформаційний бюлетень -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Неможливо використовувати підзапит в порядку +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Неможливо використовувати підзапит в порядку DocType: Web Form,Button Help,кнопка Допомога DocType: Kanban Board Column,purple,фіолетовий DocType: About Us Settings,Team Members,Члени команди @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Отрима apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Ваша підписка закінчилася {0}. Щоб продовжити, {1}." DocType: Workflow State,plus-sign,знак плюс apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Встановлення вже завершено -apps/frappe/frappe/__init__.py +890,App {0} is not installed,Не встановлений App {0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,Не встановлений App {0} DocType: Workflow State,Refresh,Оновити DocType: Event,Public,Громадської apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Порожньо @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,Вподобан apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Підтримка електронною поштою DocType: DocField,Print Hide If No Value,Друк Приховати Якщо немає значення DocType: Event,yellow,жовтий -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Опубліковано Поле повинно бути дійсним ім'я_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Опубліковано Поле повинно бути дійсним ім'я_поля apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Завантажити Додаток DocType: Block Module,Block Module,Блок Модуль apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Шаблон експорту @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Нову обліковку було створено для вас в {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,інструкції по електронній пошті apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,інструкції по електронній пошті -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Введіть E-mail одержувача (одержувачів) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Введіть E-mail одержувача (одержувачів) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Черга Прапор Email apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Неможливо ідентифікувати відкрите {0}. Спробуйте що-небудь інше. @@ -309,8 +307,8 @@ DocType: Communication,Message ID,ідентифікатор повідомле DocType: Property Setter,Field Name,Ім'я поля apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite не налаштований. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,або -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Модуль ім'я ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Продовжувати +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Модуль ім'я ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Продовжувати DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,сертифікат DocType: User,Tile,Плитка @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Показати всі версії DocType: Workflow State,Print,Друк DocType: User,Restrict IP,Обмежити IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,Панель приладів apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Не вдалося відправити електронну пошту в цей час apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Пошук або введіть команду DocType: Communication,Timeline Name,терміни Ім'я @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,Майстер Менеджер з про apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Останній крок apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,"Назва типу документа (DOCTYPE), ви хочете це поле, пов'язані з. наприклад Замовник" DocType: User,Roles Assigned,"Ролі, призначені" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Пошук Допомога -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,Пошук Допомога +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Пошук Допомога +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,Пошук Допомога DocType: Top Bar Item,Parent Label,Батько етикетки apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Ваш запит був отриманий. Ми відповімо найближчим часом. Якщо у вас є яка-небудь додаткова інформація, будь ласка, дайте відповідь на цей лист." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Дозволи автоматично переведений на стандартних звітів та пошуку. @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Редагувати Тема DocType: File,File URL,Посилання на файл DocType: Version,Table HTML,Таблиця HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Немає результатів для '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Додати Передплатники apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Майбутні події Сьогодні DocType: Email Alert Recipient,Email By Document Field,E-mail По області документа @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,Сума На підставі поле apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Обов’язково зазначте користувача для оприлюднення DocType: DocField,Hidden,Прихований DocType: Web Form,Allow Incomplete Forms,Дозволити Неповні форми -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} повинен бути встановлений спочатку +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} повинен бути встановлений спочатку apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Використовуйте кілька слів, уникати загальних фраз." DocType: Workflow State,plane,літак -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,На жаль. Ваш платіж не вдалася. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Якщо ви завантажуєте нові рекорди ", Неймінг серії" стає обов'язковим, якщо вони присутні." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Віртуальний на сьогоднішній день +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Віртуальний на сьогоднішній день apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType можуть бути перейменовані тільки адміністратор apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},змінене значення {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,"Будь ласка, перевірте свою електронну пошту для перевірки" -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold не може бути в кінці вигляді +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Fold не може бути в кінці вигляді DocType: Communication,Bounced,Повернені DocType: Deleted Document,Deleted Name,видаляється Ім'я apps/frappe/frappe/config/setup.py +14,System and Website Users,Системні користувачі і користувачі веб-сайту @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,документ Queu DocType: GSuite Templates,Destination ID,Ідентифікатор пункту призначення DocType: Desktop Icon,List,Список DocType: Communication,Link Name,посилання Ім'я -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в рядку {1} не може бути приховано і обов'язковим не за замовчуванням +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Поле {0} в рядку {1} не може бути приховано і обов'язковим не за замовчуванням DocType: System Settings,mm/dd/yyyy,мм / дд / рррр apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Неправильний пароль: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Неправильний пароль: DocType: Print Settings,Send document web view link in email,Надіслати документ посилання на веб-перегляду в електронній пошті apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Ваш відгук на документ {0} успішно збережено apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Назад -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Re: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Re: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} рядків для {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Суб-валюта. Наприклад, ""коп.""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Виберіть долучення @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,Посилання apps/frappe/frappe/utils/file_manager.py +96,No file attached,Немає вкладених файлів DocType: Version,Version,Версія DocType: User,Fill Screen,Заповнити екран -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Неможливо показати цей деревуватий звіт через нестачу даних. Швидше за все, він недоступний через відсутність дозволу." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Будь ласка, настройка за замовчуванням немає облікового запису електронної пошти від настройки> Електронної пошти> записи електронної пошти" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Неможливо показати цей деревуватий звіт через нестачу даних. Швидше за все, він недоступний через відсутність дозволу." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Виберіть Файл apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Редагувати за допомогою Завантажити -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","тип документа ..., наприклад, клієнт" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","тип документа ..., наприклад, клієнт" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Умова '{0}' є недійсним DocType: Workflow State,barcode,штрих-код apps/frappe/frappe/config/setup.py +232,Add your own translations,Додати свої власні переклади @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Середа apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Крім ролей дозволів правила, засновані, Ви можете звернутися дозволів користувача на основі DOCTYPES." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Ці дозволи будуть застосовуватися для всіх операцій, де дозволяється запис пов'язані між собою. Наприклад, якщо Компанія C додається доступу користувачів користувальницького X, користувач X буде тільки в змозі бачити, що має угод компанії C як пов'язаного значення." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,Поле Зображення повинно бути допустимим ім'я_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,Поле Зображення повинно бути допустимим ім'я_поля DocType: OAuth Client,Token,знак DocType: Property Setter,ID (name) of the entity whose property is to be set,"ID (ім'я) особи, чия власність повинна бути встановлена" apps/frappe/frappe/limits.py +82,"To renew, {0}.","Щоб продовжити термін, {0}." @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,Sidebar товари apps/frappe/frappe/installer.py +125,App {0} already installed,Додаток {0} вже встановлено DocType: Workflow State,exclamation-sign,Окличний знак- apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Показати права Доступу -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Терміни поле повинно бути Посилання або Dynamic Link +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Терміни поле повинно бути Посилання або Dynamic Link apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Проміжок часу apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Діаграма Ганта apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Сторінка {0} з {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,Озн apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Ключ шифрування недійсний, будь ласка, перевірте site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,Для DocType: Kanban Board Column,darkgrey,темно-сірий -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Успішно: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Успішно: {0} до {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,"Неможливо змінити дані користувача в демо. Будь ласка, підписатися на новий обліковий запис на https://erpnext.com" apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,"Ласка, дублювати це внести зміни" apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Покоління PDF вдалося через битих посилань зображення @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,Складаний apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Збережені apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,З чим вам допомогти? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Варіанти вибору. Кожен варіант з нового рядка. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Постійно Скасувати {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Постійно Скасувати {0}? DocType: Workflow State,music,музика DocType: Web Page,Settings,Налаштування apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,"Будь ласка, сформулюйте доктайпів" DocType: Print Format,Style Settings,налаштування стилю -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Сортування поля {0} повинен бути дійсним ім'я_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Сортування поля {0} повинен бути дійсним ім'я_поля apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Більш DocType: Contact,Sales Manager,Менеджер з продажу apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Перейменувати DocType: Print Format,Format Data,Формат даних -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Схоже на +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Схоже на DocType: Customize Form Field,Customize Form Field,Налаштувати поля форми apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Дозволити користувачеві DocType: OAuth Client,Grant Type,Тип гранту apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,"Перевірте, які документи можуть бути прочитані за допомогою користувача" apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,Лістинг додаток не має права -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,використовувати як шаблон% -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Домен електронної пошти не налаштований для цього облікового запису, створити один?" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,використовувати як шаблон% +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Домен електронної пошти не налаштований для цього облікового запису, створити один?" DocType: User,Reset Password Key,Скидання пароля ключа DocType: Email Account,Enable Auto Reply,Включити Auto Відповісти apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Не бачив @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,Встановити тільки один ра DocType: Email Queue Recipient,Email Queue Recipient,E-mail одержувача черзі DocType: Address,Nagaland,Нагаланд apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Ім'я користувача {0} вже існує -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Неможливо встановити імпорт, оскільки {1} не імпортується" +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Неможливо встановити імпорт, оскільки {1} не імпортується" apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Існує помилка в адресному шаблоні {0} DocType: Footer Item,"target = ""_blank""",мета = "_blank" DocType: Workflow State,hdd,жорсткий диск @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,Від повного імені apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Ви не маєте доступу до Звіту: {0} DocType: User,Send Welcome Email,Надіслати привітальний e-mail apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,"Завантажити CSV-файл, що містить всі користувальницькі дозволу в тому ж форматі, Скачати." -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Видалити фільтр +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Видалити фільтр DocType: Address,Daman and Diu,Даман і Діу DocType: Address,Personal,Особистий apps/frappe/frappe/config/setup.py +113,Bulk Rename,Масове перейменування @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Стандартний DocType не може бути виконаний у форматі друку за замовчуванням, використовуйте Налаштування форми" DocType: Report,Query,Запит DocType: DocType,Sort Order,Порядок сортування -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""У вигляді списку"" не допускається для типу {0} в рядку {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""У вигляді списку"" не допускається для типу {0} в рядку {1}" DocType: Custom Field,Select the label after which you want to insert new field.,"Виберіть мітку, після чого Ви хочете вставити нове поле." ,Document Share Report,Звіт про оприлюднені документи DocType: User,Last Login,Останній вхід -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname потрібно в рядку {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname потрібно в рядку {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Колонка DocType: Custom Field,Adds a custom field to a DocType,Додає користувальницьке поле в DocType DocType: File,Is Home Folder,"є текою ""Головна""" @@ -594,7 +594,7 @@ DocType: File,Folder,Тека DocType: DocField,Index,Індекс DocType: Email Group,Newsletter Manager,Розсилка менеджер apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Варіант 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,всі повідомлення +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} до {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Ввійти помилки під час запитів. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} був успішно доданий до Email Групи DocType: Address,Uttar Pradesh,Уттар-Прадеш @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,індикатор DocType: DocShare,Everyone,Всі DocType: Workflow State,backward,назад -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: тільки одне правило допускається з тій же Ролі, Рівня і {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: тільки одне правило допускається з тій же Ролі, Рівня і {1}" DocType: Email Queue,Add Unsubscribe Link,Додати посилання Відмовитися apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Немає коментарів. Почати нову тему повідомлення. DocType: Workflow State,share,оприлюднити @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,не apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Подивитися Передплатники apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Місс DocType: Website Theme,Background Color,Колір фону -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Були помилки при відправленні електронної пошти. Будь ласка спробуйте ще раз. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Були помилки при відправленні електронної пошти. Будь ласка спробуйте ще раз. DocType: Portal Settings,Portal Settings,Налаштування порталу DocType: Web Page,0 is highest,0 є найвищим apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,"Ви впевнені, що хочете облінкований це повідомлення на {0}?" @@ -651,7 +651,7 @@ DocType: Contact Us Settings,Contact Us Settings,Налаштування Кон apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Пошук ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Пошук ... DocType: Workflow State,text-width,Текст ширина -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Досягнуто обмеження за кількістю долучень для цього запису +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Досягнуто обмеження за кількістю долучень для цього запису apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Наступні обов'язкові поля повинні бути заповнені:
DocType: Email Alert,View Properties (via Customize Form),Перегляд властивостей (через Налаштувати формі) DocType: Note Seen By,Note Seen By,Примітка побачених @@ -661,17 +661,17 @@ DocType: Address,Rajasthan,Раджастхан apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Звіти конструктора звітів управляються безпосередньо конструктором звітів. Не потрібно нічого робити. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,"Будь ласка, підтвердіть свою адресу електронної пошти" apps/frappe/frappe/model/document.py +903,none of,Жоден з -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Надіслати мені копію +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Надіслати мені копію apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Завантажити дозволів користувача DocType: Dropbox Settings,App Secret Key,App Secret Key apps/frappe/frappe/config/website.py +7,Web Site,Веб-сайт apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Позначені елементи будуть показані на стільниці -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} не може бути встановлений для Окремих типів +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} не може бути встановлений для Окремих типів apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Рада {0} не існує. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} в даний час переглядає цей документ DocType: ToDo,Assigned By Full Name,Присвоюється Повне ім'я apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} оновлений -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Звіт не може бути встановлений на окремі типи +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Звіт не може бути встановлений на окремі типи apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} днів тому DocType: Email Account,Awaiting Password,очікування пароля DocType: Address,Address Line 1,Адресний рядок 1 @@ -681,7 +681,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Стани для робочого процесу (наприклад, Чернетка, Затверджений, Скасований)." DocType: Print Settings,Allow Print for Draft,Дозволити друк чернеток apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Встановити кількість -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Проведіть цей документ для підтвердження +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Проведіть цей документ для підтвердження DocType: Contact,Unsubscribed,Підписка скасована apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Набір для користувача ролей для сторінки і звіту apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,оцінка: @@ -689,7 +689,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Інструмент імпорту даних DocType: Address,Dadra and Nagar Haveli,Dadra і Нагархавелі apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,"Завантаження файлів, будь ласка, зачекайте кілька секунд." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Долучіть свою фотографію +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Долучіть свою фотографію apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Значення рядків Змінені DocType: Workflow State,Stop,Стоп DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,"Посилання на сторінку ви хочете відкрити. Залиште порожнім, якщо ви хочете, щоб зробити це група з батьків." @@ -704,7 +704,7 @@ DocType: Print Format,Align Labels to the Left,Вирівнювання етик DocType: Help Article,Expert,експерт DocType: Workflow State,circle-arrow-right,Круг-стрілка направо DocType: LDAP Settings,LDAP Server Url,Сервер LDAP Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,"Не вдається відкрити випадок, коли його {0} відкрито" +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,"Не вдається відкрити випадок, коли його {0} відкрито" apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,Queued для установки DocType: Custom DocPerm,Custom DocPerm,призначені для користувача DocPerm DocType: Newsletter,Send Unsubscribe Link,Надіслати посилання Відмовитися @@ -721,7 +721,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,Додаток {0} видалений DocType: Custom DocPerm,Apply User Permissions,Застосувати дозволів користувача DocType: User,Modules HTML,Модулі HTML- -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Налаштування> Права користувача Менеджер apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Відсутні значення Потрібно DocType: DocType,Other Settings,Інші налаштування DocType: Social Login Keys,Frappe,фраппе @@ -740,7 +739,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Токен apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Не вибрано жодного документа apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,доктор DocType: Event,Event,Подія -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","На {0}, {1} написав:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","На {0}, {1} написав:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,"Не вдається видалити стандартне поле. Ви можете приховати його, якщо ви хочете" DocType: Top Bar Item,For top bar,Для верхньої панелі apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Неможливо визначити {0} @@ -754,7 +753,7 @@ DocType: Role,Desk Access,Письмовий стіл Доступ DocType: Workflow State,minus,мінус apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,"Помилка сервера: Будь ласка, перевірте логи сервера або зв'яжіться з техпідтримкою." apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Привітальний лист відправлено -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Давайте підготуємо систему для першого використання. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Давайте підготуємо систему для першого використання. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Рекомендовані apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Вже зареєстровані DocType: System Settings,Float Precision,Поплавок Точність @@ -767,7 +766,7 @@ DocType: Web Form,Allow Print,дозволити друк apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Немає додатки не встановлений apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Відзначити поле Обов'язкове DocType: Communication,Clicked,Натиснув -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Немає доступу для '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Немає доступу для '{0}' {1} DocType: User,Google User ID,Google ID користувача apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,планується відправити DocType: DocType,Track Seen,трек відвідування @@ -837,7 +836,7 @@ DocType: Address,Kerala,Керала DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,одночасних сесій DocType: OAuth Client,Client Credentials,Облікові дані клієнта -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Відкриття модуля або інструменту +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Відкриття модуля або інструменту DocType: Communication,Delivery Status,Статус поставки DocType: Module Def,App Name,Ім'я програми apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Максимальний розмір файлу допускається {0} MB @@ -849,8 +848,8 @@ DocType: Feedback Request,Reference Communication,посилання Зв'я DocType: Email Queue,Unsubscribe Method,метод Відмовитися DocType: GSuite Templates,Related DocType,пов'язані DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,"Редагувати, щоб додати вміст" -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Виберіть Мови -apps/frappe/frappe/__init__.py +510,No permission for {0},Немає доступу для {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Виберіть Мови +apps/frappe/frappe/__init__.py +509,No permission for {0},Немає доступу для {0} DocType: DocType,Advanced,Передовий apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,"Здається, ключ API або API Секрет неправильно !!!" apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Посилання: {0} {1} @@ -872,7 +871,7 @@ DocType: Customize Form,Enter Form Type,Введіть Form Тип apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Немає записів помічені. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,видалити поле DocType: User,Send Password Update Notification,Відправити повідомлення про зміну паролю -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Дозвіл DOCTYPE, DocType. Будь обережний!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Дозвіл DOCTYPE, DocType. Будь обережний!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Індивідуальні формати для друку, електронної пошти" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Оновлено до нової версії DocType: Custom Field,Depends On,Залежить від @@ -966,6 +965,7 @@ apps/frappe/frappe/model/document.py +902,one of,один з apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,"Будь ласка, виберіть файл для копіювання" apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Перевірка одного моменту apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Показати Теги +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Якщо Нанести Суворе Дозвіл перевіряється і дозвіл користувача визначається для DocType для користувача, то всі документи, в яких значення посилання пусте, що не будуть відображатися для цього користувача" DocType: Address,Billing,Біллінг DocType: Email Queue,Not Sent,Чи не Відправлено DocType: Web Form,Actions,Заходи @@ -996,6 +996,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,ясно apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Кожен день події повинні закінчити в той же день. DocType: Communication,User Tags,Система Мітки apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Витяг зображень .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Налаштування> Користувач DocType: Workflow State,download-alt,скачати альт- apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Завантажуючи додаток {0} DocType: Communication,Feedback Request,Зворотній зв'язок Запит @@ -1013,7 +1014,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,резервні копії apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Додати контакт DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Додатково: Завжди розсилають за цими ідентифікаторами. Кожен адреса електронної пошти в новому рядку -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Приховати деталі +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Приховати деталі DocType: Workflow State,Tasks,Завдання DocType: Event,Tuesday,Вівторок DocType: Blog Settings,Blog Settings,Налаштування блогу @@ -1033,9 +1034,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,"Збережіть Python-файл в тій самій теці, де збережено цей файл" DocType: DocType,Sort Field,Поле сортування DocType: Razorpay Settings,Razorpay Settings,налаштування Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Зміна фільтра -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Поле {0} типу {1} не може бути обов'язковим -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","наприклад, якщо ""Застосовувати дозволи користувачів"" позначено для ""Звіт DocType"" але дозволи користувачів не визначені для звіту для користувача, тоді усі звіти показані такому користувачеві." +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Зміна фільтра +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Поле {0} типу {1} не може бути обов'язковим apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Додати більше apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,приховати діаграми DocType: System Settings,Session Expiry Mobile,Час вичерпання мобільної сесії @@ -1050,6 +1050,7 @@ DocType: Communication,Delayed,Затримується apps/frappe/frappe/config/setup.py +128,List of backups available for download,"Список резервних копій, доступних для завантаження" apps/frappe/frappe/www/login.html +89,Sign up,Зареєструватися DocType: Test Runner,Output,вихід +DocType: Email Alert,Set Property After Alert,Установка властивості Після оповіщення apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Додавання полів форм. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,"Схоже, щось не так з конфігурацією Paypal цього сайту." DocType: File,rgt,полк @@ -1057,6 +1058,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,лист DocType: Portal Menu Item,Portal Menu Item,Пункт меню порталу DocType: User Email,Email ID,Email ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","Якщо Нанести дозволу користувача перевіряється на звіт DocType, але не права користувачів не визначені для звіту для користувача, то всі звіти показані цього користувач" DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,"Список ресурсів, які Клієнт App матиме доступ до після того, як користувач дозволяє.
наприклад, проект" DocType: Translation,Translated Text,перекладений текст DocType: Contact Us Settings,Query Options,Опції Запит @@ -1074,7 +1076,7 @@ DocType: Address,Contacts,контакти DocType: System Settings,Setup Complete,Завершення установки apps/frappe/frappe/config/setup.py +66,Report of all document shares,Звіт про усі оприлюднені документи apps/frappe/frappe/www/update-password.html +18,New Password,Новий пароль -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Фільтр {0} відсутній +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Фільтр {0} відсутній apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,"На жаль, Ви не можете видаляти коментарі, що генеруються автоматично" DocType: Website Theme,Style using CSS,Стиль допомогою CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Посилання DocType @@ -1129,7 +1131,7 @@ DocType: User,Block Modules,Блок модулі apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,"Повертаючись довжину {0} для "{1} 'в' {2} '; Установка довжини, як {3} викличе усічення даних." DocType: Print Format,Custom CSS,Користувацькі CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Додати коментар -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Ігнорується: {0} до {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Ігнорується: {0} до {1} DocType: Address,Gujarat,Гуджарат apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Ввійти помилки на автоматизованих подій (планувальник). apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Невірне значення (CSV-файл) @@ -1138,7 +1140,7 @@ DocType: Email Account,Default Incoming,За замовчуванням Вхід DocType: Workflow State,repeat,повторення DocType: Website Settings,Banner,Банер DocType: Role,"If disabled, this role will be removed from all users.","Якщо ця функція відключена, ця роль буде віддалена від усіх користувачів." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Довідка з пошуку +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Довідка з пошуку apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Зареєстрований але відключений DocType: DocType,Hide Copy,Приховати Копіювати apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Очистіть всі ролі @@ -1170,7 +1172,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Країна apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Адреси DocType: Communication,Shared,Оприлюднено -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Долучити роздрук документу +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Долучити роздрук документу DocType: Bulk Update,Field,поле DocType: Communication,Received,Надійшло DocType: Social Login Keys,Google Client ID,Google ID клієнта @@ -1191,12 +1193,12 @@ DocType: Report,Query Report,Запит Повідомити DocType: User,Set New Password,Встановити новий пароль DocType: User,Github User ID,Github ID користувача apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Якщо типу документа -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Неможливо видалити або скасувати , так як {0} {1} пов'язаний з {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Неможливо видалити або скасувати , так як {0} {1} пов'язаний з {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Невідомий додаток {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",% S не є допустимим форматом звіту. Формат звіту повинен \ одну з таких дій% з DocType: Communication,Chat,Чат -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} з'являється кілька разів на рядків {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} з'являється кілька разів на рядків {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} від {1} до {2} в ряді #{3} DocType: Communication,Expired,Закінчився DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Кількість колонок для поля в сітці (Всього стовпців в сітці повинно бути не менше 11) @@ -1206,30 +1208,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,Вже зареєс apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Невідомий друку Формат: {0} DocType: Workflow State,arrow-down,Стрілка вниз apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Згорнути -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Користувач не має права видаляти {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Користувач не має права видаляти {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Оновлене DocType: Help Article,Likes,Вподобання DocType: Website Settings,Top Bar,Топ-бар DocType: GSuite Settings,Script Code,код сценарію apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Створення користувача e-mail apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Створення користувача e-mail -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Ні Права доступу Задані +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Ні Права доступу Задані apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Глобальні параметри: користувачі зможуть обирати тільки позначені піктограми. apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} не найден DocType: Custom Role,Custom Role,призначені для користувача ролі apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Головна/Тестова Тека 2 DocType: System Settings,Ignore User Permissions If Missing,Ігнорувати дозволів користувача Якщо зниклих безвісти -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,"Будь ласка, збережіть документ, перш ніж завантажувати." +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,"Будь ласка, збережіть документ, перш ніж завантажувати." apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Введіть пароль DocType: Dropbox Settings,Dropbox Access Secret,Dropbox доступ до секретних apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Додати ще один коментар apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,редагування DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Відписався з новини -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Складіть повинні прийти до розриву розділу +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Складіть повинні прийти до розриву розділу apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Остання зміна DocType: Workflow State,hand-down,виносити DocType: Address,GST State,GST держава -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: Неможливо встановити Скасувати без Проведення +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: Неможливо встановити Скасувати без Проведення DocType: Website Theme,Theme,Тема apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Трапились помилки. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,"Перенаправлення URI, пов'язаного з Auth кодексу" @@ -1248,7 +1250,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Мо DocType: Website Theme,Text Color,Колір тексту DocType: Desktop Icon,Force Show,Force Show apps/frappe/frappe/auth.py +78,Invalid Request,Невірний запит -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Ця форма не має можливостей вводу даних +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Ця форма не має можливостей вводу даних apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Час вичерпання сесії повинен бути у форматі {0} DocType: Website Sidebar Item,Group,Група DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Виберіть мету = "_blank", щоб відкрити на новій сторінці." @@ -1257,7 +1259,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Ігнорувати кодування помилки. DocType: Workflow State,wrench,гайковий ключ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Не вказано -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Налаштування> Користувач DocType: Authentication Log,Date,Дата DocType: Website Settings,Disable Signup,Відключити Реєстрація apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,"Посидьте, поки система встановлюється. Це може зайняти кілька хвилин." @@ -1268,7 +1269,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Додати коментар DocType: DocField,Mandatory,Обов'язкове apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Модуль для експорту -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Не встановлено базовий набір дозволів +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Не встановлено базовий набір дозволів apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,Ваша підписка закінчується {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Посилання для скачування Вашої резервної копії буде відіслане на цей e-mail: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Значення Провести, Скасувати, Відновити" @@ -1281,11 +1282,11 @@ DocType: Desktop Icon,query-report,запит-звіт apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Призначено {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,фільтри збережені DocType: DocField,Percent,Відсотків -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,"Будь ласка, встановіть фільтри" +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,"Будь ласка, встановіть фільтри" apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Пов'язаний з DocType: Workflow State,book,книга DocType: Website Settings,Landing Page,Цільової сторінки -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Помилка в призначеній для користувача Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Помилка в призначеній для користувача Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Ім'я apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Імпорт Запит черги. Це може зайняти декілька хвилин, будь ласка, будьте терплячі." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Дозволи не встановлений для цього критеріїв. @@ -1297,7 +1298,7 @@ DocType: System Settings,Allow Login using Mobile Number,Дозволити Ув apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,"У вас немає достатніх прав для доступу до цього ресурсу. Будь ласка, зверніться до свого менеджера, щоб отримати доступ." DocType: Custom Field,Custom,Звичай apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Налаштування E-mail оповіщення на основі різних критеріїв. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},"Повідомлення, подані відповідно до {0}" +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},"Повідомлення, подані відповідно до {0}" DocType: Email Alert,Send alert if date matches this field's value,"Надіслати повідомлення, якщо дата збігається значення поля" DocType: Workflow,Transitions,Переходи apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Видалити {0} і видалити всі дані? @@ -1306,9 +1307,8 @@ DocType: User,Login After,Увійти після DocType: Print Format,Monospace,Моноширинний DocType: Letter Head,Printing,Друк DocType: Workflow State,thumbs-up,пальці вгору -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Обліковий запис електронної пошти не налаштований. Будь ласка, створіть новий обліковий запис електронної пошти від настройки> Електронної пошти> записи електронної пошти" DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Точність повинна бути між 1 і 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Точність повинна бути між 1 і 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,і DocType: Error Snapshot,Frames,Рамки @@ -1317,7 +1317,7 @@ DocType: About Us Team Member,Image Link,Посилання на зображе DocType: Auto Email Report,Report Filters,фільтри звітів apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,в даний час DocType: Workflow State,step-backward,крок назад -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{} App_title +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{} App_title apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,"Будь ласка, встановіть ключі доступу Dropbox у конфігурації вашого сайту" apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,"Видалити цей запис, щоб дозволити відправляти на цей e-mail" apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,"Лише обов'язкові поля, необхідні для нових записів. Ви можете видалити необов'язкові стовпці, якщо хочете." @@ -1339,8 +1339,7 @@ DocType: File,Is Attachments Folder,є текою долучень apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Розгорнути все apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Ім’я користувача має бути дійсним apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Знову відкрийте -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Ви скасували оплату -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,"Будь ласка, виберіть правильний файл CSV з даними" +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,"Будь ласка, виберіть правильний файл CSV з даними" apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} не поділився цим документом з {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Статус документа перехід від {0} до {1} не допускається DocType: DocType,"Make ""name"" searchable in Global Search",Зробити «ім'я» для пошуку в Глобальному Пошуку @@ -1353,7 +1352,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,п DocType: Help Category,Help Category,Довідка з категорій apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Користувач {0} відключена apps/frappe/frappe/www/404.html +8,Page missing or moved,Сторінка відсутня або її було переміщено -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Зміна {0} властивості DocType: DocType,Route,маршрут apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Налаштування шлюзу оплати Razorpay DocType: DocField,Name,Ім'я @@ -1361,8 +1359,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Пошук по документації apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Пошук по документації DocType: OAuth Authorization Code,Valid,дійсний -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Відкрити посилання -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Твоя мова +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Відкрити посилання +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Твоя мова apps/frappe/frappe/desk/form/load.py +46,Did not load,Не спрацював apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Додати рядок DocType: Tag Category,Doctypes,DOCTYPEs @@ -1377,7 +1375,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Подія в DocType: Address,Lakshadweep Islands,Лакшадвільскіе острова apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Може Написати apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Деякі документи, як рахунки-фактури не можуть змінюватись після фіналізації Кінцевий стан для таких документів називається Проведений. Ви можете обмежити ролі, що можуть проводити." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Ви не можете експортувати цей звіт +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Ви не можете експортувати цей звіт apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,"1 елемент, обраний" DocType: Newsletter,Test Email Address,Тест E-mail адреса DocType: ToDo,Sender,Відправник @@ -1412,7 +1410,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,імпорт .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,ідентифікатор документа DocType: Print Settings,Letter,Лист -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,Поле Зображення повинно бути типу Приєднати зображення +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,Поле Зображення повинно бути типу Приєднати зображення DocType: DocField,Columns,колони DocType: Async Task,Succeeded,Завершено успішно apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Обов'язкові поля обов'язкові в {0} @@ -1462,7 +1460,7 @@ DocType: DocField,Text Editor,Текстовий редактор apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,"Налаштування для сторінки ""Про нас""." apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Редагувати замовлення HTML DocType: Error Snapshot,Error Snapshot,Знімок Помилка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,У +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,У DocType: Email Alert,Value Change,Значення Зміна DocType: Standard Reply,Standard Reply,Стандартна відповідь apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Ширина поля вводу @@ -1478,12 +1476,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,Використовуйте ім'я цього поля щоб генерувати заголовок apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Імпортувати пошту з apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Запросити стати користувачем -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Виберіть Вкладення +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Виберіть Вкладення apps/frappe/frappe/model/naming.py +94, for {0},для {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,"Трапились помилки. Будь ласка, повідомте про це." -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Ви не можете надрукувати цей документ +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Ви не можете надрукувати цей документ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,"Будь ласка, встановіть значення фільтрів в Report Filter таблиці." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Завантаження звіту +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Завантаження звіту apps/frappe/frappe/limits.py +72,Your subscription will expire today.,Ваша підписка закінчується сьогодні. DocType: Page,Standard,Стандарт apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Долучити файл @@ -1513,7 +1511,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Регіональні Розширення DocType: LDAP Settings,Base Distinguished Name (DN),Підстава различающееся ім'я (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Залиште цю розмову -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Опції не встановлений галузі зв'язку {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Опції не встановлений галузі зв'язку {0} DocType: Customize Form,"Must be of type ""Attach Image""",Повинно бути типу "Приєднати зображення" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Unselect Все apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Ви не можете відозначити ""Тільки читання"" для поля {0}" @@ -1556,9 +1554,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,Примітка apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Звіт про помилки apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Умови зворотного зв'язку не збігаються -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Терміни поле повинно бути дійсним ім'я_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Терміни поле повинно бути дійсним ім'я_поля DocType: Currency,Symbol,Символ -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Ряд # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Ряд # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Новий пароль по електронній пошті apps/frappe/frappe/auth.py +245,Login not allowed at this time,Вхід не дозволяється у цей час DocType: Email Account,Email Sync Option,Електронна пошта синхронізації Варіант @@ -1580,7 +1578,7 @@ DocType: DocField,Text,Текст apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Стандартний відповідає загальним запитам. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,За замовчуванням Відправка DocType: Workflow State,volume-off,Обсяг-офф -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},В обране {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},В обране {0} DocType: Footer Item,Footer Item,Footer Пункт ,Download Backups,Завантажити Резервні копії apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Головна/Тестова Тека 1 @@ -1615,7 +1613,7 @@ DocType: Web Page,Text Align,Text Align apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},"Ім'я не може містити спеціальні символи, як-от {0}" DocType: Contact Us Settings,Forward To Email Address,Переслати на адресу електронної пошти apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Показати всі дані -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Назва поля повинно бути дійсним ім'я_поля +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,Назва поля повинно бути дійсним ім'я_поля apps/frappe/frappe/config/core.py +7,Documents,Документи DocType: Email Flag Queue,Is Completed,завершиться apps/frappe/frappe/www/me.html +22,Edit Profile,Редагувати профіль @@ -1625,8 +1623,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18","Це поле з'являється тільки в разі, якщо ім'я_поля визначено тут має значення чи правила є істинними (приклади): MyField Eval: doc.myfield == 'My Value' Eval: doc.age> 18" -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,сьогодні -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,сьогодні +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,сьогодні +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,сьогодні apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Після того як ви встановили це, користувачі зможуть тільки доступ до документів (наприклад ,. Блог Пост), де існує зв'язок (наприклад, Blogger.)." DocType: Error Log,Log of Scheduler Errors,Журнал помилок Scheduler DocType: User,Bio,Біо @@ -1650,6 +1648,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 зірка є найнижчим і 5 зірками є високим рейтингом DocType: Event,Ref Name,Посилання Ім'я DocType: Web Page,Center,Центр +DocType: Email Alert,Value To Be Set,Значення To Be Set apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Перший рівень DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,"Являє держави дозволило в одному документі і роллю, відведеною для зміни стану." apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Оновити Форма @@ -1670,18 +1669,18 @@ DocType: DocType,Has Web View,Має Web View apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Ім'я DOCTYPE має починатися з літери і може складатися тільки з букв, цифр, пробілів і знаків підкреслення" DocType: Communication,Spam,спам DocType: Integration Request,Integration Request,інтеграція Запит -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Дорогий +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Дорогий DocType: Address,Maharashtra,Махараштра DocType: Address,Accounts User,Облікові записи користувачів DocType: Web Page,HTML for header section. Optional,HTML для розділу заголовка. Необов'язковий apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Ця функція є новою і досі експериментальна -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Максимум {0} рядків дозволено +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Максимум {0} рядків дозволено DocType: Email Unsubscribe,Global Unsubscribe,Глобальний Відмовитися apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Це дуже загальний пароль. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Вид DocType: Communication,Assigned,призначений DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Виберіть формат друку +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Виберіть формат друку apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,Короткі клавіатурні шаблони легко вгадати DocType: Portal Settings,Portal Menu,Меню порталу apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Довжина {0} має бути від 1 до 1000 @@ -1720,7 +1719,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Користувач не може Пошук apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Невірний формат вихідного DocType: Custom DocPerm,Apply this rule if the User is the Owner,"Застосувати це правило, якщо Користувач є власником" -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Чи буде ваш Логін ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Чи буде ваш Логін ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Побудувати звіт DocType: Note,Notify users with a popup when they log in,"Повідомте користувачам спливаючого вікна, коли вони увійти" apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} не існує, виберіть нову ціль для об’єднання" @@ -1739,17 +1738,18 @@ DocType: User Permission for Page and Report,Roles Permission,ролі Дозв apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Оновлення DocType: Error Snapshot,Snapshot View,Знімок Подивитися apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,"Будь ласка, збережіть бюлетень перед відправкою" -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Опції повинні бути дійсні для DocType області {0} в рядку {1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} рік (років) тому +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Опції повинні бути дійсні для DocType області {0} в рядку {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Змінити властивості DocType: Patch Log,List of patches executed,Список виправлень виконується apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} вже відписався -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Зв'язок Середній +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Зв'язок Середній DocType: Website Settings,Banner HTML,Банер HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',"Будь ласка, виберіть інший спосіб оплати. Razorpay не підтримує транзакції в валюті «{0}»" apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Queued для резервного копіювання. Це може зайняти кілька хвилин до години. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Реєстрація OAuth Client App -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бути ""{2}"", а має бути одним з ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} не може бути ""{2}"", а має бути одним з ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} або {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Показати або приховати піктограми стільниці apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Оновлення паролю @@ -1776,7 +1776,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,Показати розриви рядків після розділів DocType: Blogger,Short Name,Коротке ім'я apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Сторінка {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).","Ви вибираєте варіант синхронізації, як все, він буде пересінхронізіроваться все \ читання, а також непрочитаних повідомлень від сервера. Це також може привести до дубльованої \ зв'язку (електронна пошта)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,Розмір файлів @@ -1788,6 +1788,7 @@ DocType: Contact,Purchase Manager,Менеджер по закупкам DocType: Custom Script,Sample,Зразок apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Uncategorised Теги DocType: Event,Every Week,Кожного тижня +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,"Обліковий запис електронної пошти не налаштований. Будь ласка, створіть новий обліковий запис електронної пошти від настройки> Електронної пошти> записи електронної пошти" apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,"Натисніть тут, щоб перевірити використання або перейти на більш високий план" DocType: Custom Field,Is Mandatory Field,Є Поле обов'язково для заповнення DocType: User,Website User,Користувач веб-сайту @@ -1811,16 +1812,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Призначені для користувача бічній панелі меню DocType: Workflow State,pencil,олівець apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Чат повідомлення та інші повідомлення. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Вставка Після не може бути встановлений як {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Вставка Після не може бути встановлений як {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Оприлюднити {0} для apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,"Налаштування облікового запису електронної пошти, будь ласка, введіть пароль для:" DocType: Workflow State,hand-up,руки вгору DocType: Blog Settings,Writers Introduction,Письменники Введення DocType: Address,Phone,Телефон -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Помилка при оцінці сповіщення по електронній пошті {0}. Виправте свій шаблон. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Помилка при оцінці сповіщення по електронній пошті {0}. Виправте свій шаблон. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Виберіть тип документа або Роль почати. DocType: Contact,Passive,Пасивний DocType: Contact,Accounts Manager,Диспетчер облікових записів +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Ваш платіж буде скасовано. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Виберіть тип файлу DocType: Help Article,Knowledge Base Editor,База знань Редактор apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Сторінку не знайдено @@ -1848,6 +1850,7 @@ DocType: Property Setter,Property Type,Тип нерухомості DocType: Workflow State,screenshot,Скріншот apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,"Тільки адміністратор може зберегти стандартний звіт. Будь-ласка, перейменуйте та збережіть." DocType: System Settings,Background Workers,фонові Робочі +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} конфліктує з мета об'єкта DocType: Deleted Document,Data,Дані apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Стан документу apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Ви зробили {0} з {1} @@ -1872,7 +1875,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Показати дозволи користувачів apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,"Ви повинні бути зареєстровані і мати роль адміністратора системи, щоб мати можливість отримати доступ до копії." apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,решті -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,"Будь ласка, збережіть перед установкою." +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,"Будь ласка, збережіть перед установкою." apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Додано {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Типова тема встановлюється в {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},FieldType не може бути змінений з {0} до {1} в рядку {2} @@ -1893,11 +1896,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Н apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Session Не вдається запустити apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Цей лист був відправлений на адресу {0} і скопіювати в {1} DocType: Workflow State,th,ї -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,"Будь ласка, настройка за замовчуванням немає облікового запису електронної пошти від настройки> Електронної пошти> записи електронної пошти" -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Створити нову {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Створити нову {0} DocType: Email Rule,Is Spam,спам apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Повідомити {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Відкрити {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Відкрити {0} DocType: OAuth Client,Default Redirect URI,За замовчуванням Перенаправлення URI DocType: Email Alert,Recipients,Одержувачі DocType: Workflow State,ok-sign,ОК-знак @@ -1915,6 +1917,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,Довідка зі статей ,Modules Setup,Модулі установки apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Тип: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Ваш платіж не вдалося. DocType: Communication,Unshared,неподілений DocType: Address,Karnataka,Карнатака apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Модуль не знайдено @@ -1962,7 +1965,7 @@ DocType: Website Settings,Brand Image,Імідж бренду DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Налаштування верхної панелі навігації, нижнього колонтитулу і логотипу." DocType: Web Form Field,Max Value,максимальне значення -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Для {0} на рівні {1} в {2} в рядку {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Для {0} на рівні {1} в {2} в рядку {3} DocType: Contact,All,Всі DocType: Email Queue,Recipient,Одержувач DocType: Communication,Has Attachment,має Вкладення @@ -1979,7 +1982,8 @@ DocType: Workflow State,align-right,вирівняти правий DocType: Auto Email Report,Email To,E-mail Для apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Тека {0} не є порожньою DocType: Page,Roles,Ролі -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Поле {0} вибирається. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Помилка: значення відсутній для {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Поле {0} вибирається. DocType: System Settings,Session Expiry,Час сесії вичерпано DocType: Workflow State,ban-circle,Заборона кола DocType: Email Flag Queue,Unread,непрочитаний @@ -1994,7 +1998,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Система за замовчуванням apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Створити новий DocType: Workflow State,chevron-down,шеврон вниз -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),E-mail не надсилаються {0} (відписався / відключено) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),E-mail не надсилаються {0} (відписався / відключено) DocType: Async Task,Traceback,Простежити DocType: Currency,Smallest Currency Fraction Value,Значення найменшої частки валюти apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Призначити @@ -2005,12 +2009,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,від DocType: Website Theme,Google Font (Heading),Google шрифту (товарна) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Виберіть вузол групи в першу чергу. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Знайти {0} в {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Знайти {0} в {1} DocType: OAuth Client,Implicit,неявний DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Додайте в зв'язку з цією DocType (повинен мати поля, "статус", "Тема")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","Ідентифікатори URI для отримання коду авторизації, як тільки користувач надати їм доступ, а також відповіді недостатність. Як правило, кінцева точка REST піддається Клієнтом App.
наприклад, HTTP: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,"Не допускається, щоб змінити {0} після представлення" +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,"Не допускається, щоб змінити {0} після представлення" DocType: Communication,Comment Type,Коментар Тип DocType: OAuth Client,OAuth Client,клієнт OAuth apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Користувачі @@ -2025,7 +2029,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Фільтр даних DocType: Auto Email Report,Filter Data,Фільтр даних apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Додати тег -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,"Будь ласка, додайте файл в першу чергу." +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,"Будь ласка, додайте файл в першу чергу." apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Були деякі помилки настройки ім'я, будь ласка, зв'яжіться з адміністратором" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,рахунок вхідних повідомлень електронної пошти не правильно apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2040,11 +2044,11 @@ DocType: Blog Post,Email Sent,Листа відправлено DocType: DocField,Ignore XSS Filter,Ігнорувати XSS-фільтр apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,видалений apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Налаштування резервного копіювання Dropbox -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Надіслати електронною поштою +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Надіслати електронною поштою DocType: Website Theme,Link Color,Колір посилання apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Користувач {0} не може бути відключена apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Шановний System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Твоя країна +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Твоя країна DocType: Event,Sunday,Неділя apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,У табличному вигляді DocType: Address Template,Template,Шаблон @@ -2052,7 +2056,7 @@ DocType: Address,Delhi,Делі apps/frappe/frappe/config/integrations.py +48,LDAP Settings,налаштування LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Відновлення apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,Налаштування оплати шлюз PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) будуть обірвані, символів допускається не більше ніж: {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) будуть обірвані, символів допускається не більше ніж: {2}" DocType: OAuth Client,Resource Owner Password Credentials,Власник ресурсу Пароль облікові дані DocType: OAuth Client,Response Type,відповідь Тип apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Максимальна кількість користувачів @@ -2069,7 +2073,7 @@ DocType: DocField,Table,Таблиця DocType: File,File Size,Розмір файлу apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,"Ви повинні увійти, щоб подати цю форму" DocType: User,Background Image,Фонове зображення -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Виберіть вашу країну, часовий пояс і валюту" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Виберіть вашу країну, часовий пояс і валюту" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,між DocType: Async Task,Queued,У черзі @@ -2078,6 +2082,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Створити apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Невірний фільтр: {0} DocType: Email Account,no failed attempts,немає невдалих спроб +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,"Ні за замовчуванням Адреса шаблону, не знайдено. Будь ласка, створіть нову з Setup> Печатки і брендингу> Адреси шаблону." DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,App Ключ доступу DocType: OAuth Bearer Token,Access Token,Маркер доступу @@ -2095,8 +2100,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Ім'я користувача DocType: DocType,Image View,Перегляд зображення apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Схоже, щось пішло не так під час операції. Так як ми не підтвердили оплату, Paypal автоматично поверне вам цю суму. Якщо цього не відбулося, будь ласка, надішліть нам по електронній пошті і згадати Кореляція ID: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Увімкніть символи, цифри і великі літери в паролі" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Після того, як вставити поле '{0}', згаданої в настроюється поле "{1} ', з міткою' {2} ', не існує" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Увімкніть символи, цифри і великі літери в паролі" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Після того, як вставити поле '{0}', згаданої в настроюється поле "{1} ', з міткою' {2} ', не існує" DocType: Workflow State,signal,сигнал DocType: DocType,Show Print First,Спочатку показати роздрук apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,"Ctrl + Enter, щоб опублікувати / записати" @@ -2127,14 +2132,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,Файл '{0}' не найден apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Видалити розділ DocType: User,Change Password,Змінити пароль -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Невірний E-Mail: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Привіт! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Невірний E-Mail: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Привіт! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Кінець Подія повинна бути після початку apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},"Ви не маєте дозволу, щоб отримати звіт про: {0}" +DocType: System Settings,Apply Strict User Permissions,Застосувати Суворі дозволів користувача DocType: DocField,Allow Bulk Edit,Дозволити Масове зміна DocType: DocField,Allow Bulk Edit,Дозволити Масове зміна DocType: Blog Post,Blog Post,Повідомлення в блозі -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,розширений пошук +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,розширений пошук apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Інструкції щодо зміни паролю були відправлені на вашу електронну пошту apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Рівень 0 для дозволу на рівні документа, \ вищих рівнів дозволу на рівні поля." @@ -2153,16 +2159,15 @@ DocType: Web Page,Sidebar and Comments,Бічна панель і комента apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Коли ви Відновите документ після Скасування і збережете його, він отримає новий номер, який буде версією старого." DocType: Stripe Settings,Publishable Key,Ключ до опублікування DocType: Stripe Settings,Publishable Key,Ключ до опублікування -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} рік (років) тому DocType: Workflow State,circle-arrow-left,Круг-стрілка-вліво apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Кеш-сервер Redis не працює. Зв'яжіться з нами Administrator / технічна підтримка apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Назва контрагента -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Зробити новий запис +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Зробити новий запис apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,пошук apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,пошук DocType: Currency,Fraction,Частка DocType: LDAP Settings,LDAP First Name Field,LDAP Ім'я поля -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Виберіть з існуючих долучень +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Виберіть з існуючих долучень DocType: Custom Field,Field Description,Поле Опис apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Ім'я не встановлено за допомогою Підкажіть apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Email Вхідні @@ -2208,11 +2213,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Інформація: DocType: Custom Field,Permission Level,Рівень дозволів DocType: User,Send Notifications for Transactions I Follow,Відправити Повідомлення Угод я слідую -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Неможливо встановити Провести, Скасувати, Відновити без Записати" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Неможливо встановити Провести, Скасувати, Відновити без Записати" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,"Ви впевнені, що хочете видалити долучення?" -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Неможливо видалити або скасувати , так як {0} {1} пов'язаний з {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Немає результатів для '

-apps/frappe/frappe/__init__.py +1063,Thank you,Дякую +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Неможливо видалити або скасувати , так як {0} {1} пов'язаний з {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Дякую apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Зберігається DocType: Print Settings,Print Style Preview,Роздрукувати Style Preview apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2224,10 +2228,10 @@ DocType: DocField,In List View,У вигляді списку DocType: Email Account,Use TLS,Використовувати TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Невірне ім’я користувача або пароль apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Додати замовлення Javascript для форм. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Ном з п +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Ном з п ,Role Permissions Manager,Дозволи ролі менеджера apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Ім'я нового формату друку -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,Очистити Вкладення +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,Очистити Вкладення apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Обов'язково: ,User Permissions Manager,Дозволу користувача Менеджер DocType: Property Setter,New value to be set,Нове значення буде встановлено @@ -2257,26 +2261,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 дн apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Класифікувати повідомлення в блозі. DocType: Workflow State,Time,Час DocType: DocField,Attach,Долучити -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не є допустимим зразком ім'я_поля. Це має бути {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} не є допустимим зразком ім'я_поля. Це має бути {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Надіслати відгук Запит тільки якщо є принаймні одна зв'язок доступна для документа. DocType: Custom Role,Permission Rules,Введено Правила DocType: GSuite Settings,GSuite Settings,налаштування GSuite DocType: Address,Links,Зв'язки -apps/frappe/frappe/model/base_document.py +428,Value missing for,Значення безвісти +apps/frappe/frappe/model/base_document.py +427,Value missing for,Значення безвісти apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Додати підлеглий елемент -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведений Запис не може бути видалено. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: Проведений Запис не може бути видалено. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Розмір резервної копії DocType: GSuite Templates,Template Name,ім'я шаблону -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,новий тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,новий тип документа DocType: Custom DocPerm,Read,Прочитати DocType: Role Permission for Page and Report,Role Permission for Page and Report,Роль Дозвіл на сторінку і звіт apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Align значення apps/frappe/frappe/www/update-password.html +14,Old Password,Старий пароль -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Записи автора: {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Записи автора: {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Для стовпців формату, дають імена стовпців в запиті." DocType: Has Domain,Has Domain,має домен apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Ще не зареєстровані? зареєструватися -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Неможливо встановити Призначити Відновити, якщо не підлягає проведенню" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Неможливо встановити Призначити Відновити, якщо не підлягає проведенню" DocType: Address,Bihar,Біхар apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Редагувати Дозволи ролі DocType: Communication,Link DocType,посилання DocType @@ -2375,7 +2379,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,"Будь ласка, переконайтеся, що ваш профіль має адресу електронної пошти" apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,"Ви не зберегли зміни в цій формі. Будь ласка, збережіть, перш ніж продовжити." DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,За замовчуванням для {0} повинен бути варіант +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,За замовчуванням для {0} повинен бути варіант DocType: Tag Doc Category,Tag Doc Category,Tag Doc Категорія DocType: User,User Image,Користувач Зображення apps/frappe/frappe/email/queue.py +289,Emails are muted,Листи приглушені @@ -2408,7 +2412,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Подал DocType: Workflow State,ok,добре DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,"Ці значення будуть автоматично оновлюватися в угодах, а також буде корисна для обмеження права на цього користувача про операції, що містять ці значення." apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Видавець -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Не вдалося: {0} до {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Не вдалося: {0} до {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,Виберіть Обов'язковий apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,Переглянути apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,відправлено листів @@ -2420,7 +2424,7 @@ DocType: Async Task,Running,Запуск apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Скинути пароль apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,"Будь ласка, Upgrade, щоб додати більше, ніж {0} передплатників" DocType: Workflow State,hand-left,Рука-вліво -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FieldType {0} для {1} не може бути унікальним +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FieldType {0} для {1} не може бути унікальним DocType: Email Account,Use SSL,Використовувати SSL DocType: Workflow State,play-circle,гра кола apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Виберіть формат друку для редагування @@ -2475,7 +2479,7 @@ DocType: DocField,No Copy,Немає Копіювати DocType: Workflow State,qrcode,QRCode apps/frappe/frappe/www/login.html +34,Login with LDAP,Вхід з LDAP DocType: Web Form,Breadcrumbs,Навігаційний ланцюжок -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Якщо Власник +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Якщо Власник DocType: OAuth Authorization Code,Expiration time,час закінчення DocType: Web Page,Website Sidebar,Бічна панель Веб-сайт DocType: Web Form,Show Sidebar,Показати бічну панель @@ -2495,7 +2499,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Не вдалос apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Імена та прізвища самі по собі легко вгадати. apps/frappe/frappe/config/website.py +93,Knowledge Base,База знань DocType: Workflow State,briefcase,портфель -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Значення не може бути змінене для {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Значення не може бути змінене для {0} DocType: Feedback Request,Is Manual,є Керівництво DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Стиль відповідає за колір кнопки: Успіх - зелений, небезпека - червоний, інверсний - чорний, основний - темно-синій, інфо - світло-блакитний, попередження - помаранчевий" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,"Без звіту Loaded. Будь ласка, використовуйте запит-звіт / [Ім'я Звіт], щоб запустити звіт." @@ -2574,7 +2578,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,прогре apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,за ролями apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,відсутні поля apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,Invalid ім'я_поля '{0}' в autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Пошук в документі типу +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Пошук в документі типу apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Дозволити полі залишаються редаговані навіть після представлення DocType: Custom DocPerm,Role and Level,Роль і рівень DocType: File,Thumbnail URL,Мініатюра URL @@ -2591,19 +2595,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Більше інформації DocType: Desktop Icon,Desktop Icon,Піктограма стільниці -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,Ваш платіж був успішно прийнятий +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,Ваш платіж був успішно прийнятий apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Вибачте! Вам не дозволено перегляд цієї сторінки. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Порада: Двічі клацніть осередок для редагування DocType: Workflow State,bell,дзвін apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Помилка Email Alert apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Помилка Email Alert apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Оприлюднити цей документ для +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Налаштування> Права користувача Менеджер apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,"{0} {1} не може бути кінцевою гілкою, оскільки в нього (неї) є дочірні елементи" DocType: Communication,Info,Інформація -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Вкласти +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Вкласти DocType: Communication,Email,E-mail apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Дякую за повідомлення -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Надіслати прочитання +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Надіслати прочитання DocType: Stripe Settings,Stripe Settings,налаштування нашивки DocType: Stripe Settings,Stripe Settings,налаштування нашивки DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox Setup за допомогою сайту Config @@ -2670,6 +2675,7 @@ DocType: DocType,Web View,Web View apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,"Попередження: Цей формат друку застарілий, і не може бути згенерований за допомогою API." DocType: DocField,Print Width,Ширина друку ,Setup Wizard,Майстер установки +DocType: Address,GST State Number,GST державний номер DocType: User,Allow user to login only before this hour (0-24),Дозволити користувачеві увійти в систему тільки до цієї години (0-24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Тека є обов'язковою apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2698,7 +2704,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,Малий Текст apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Адміністратор доступався {0} {1} з IP-адреси {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Дорівнює -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Options '' Dynamic Link тип поля повинен вказувати на інший Link поле з опціями, як '' DocType" +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Options '' Dynamic Link тип поля повинен вказувати на інший Link поле з опціями, як '' DocType" DocType: About Us Settings,Team Members Heading,Члени команди Очолювати apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Невірний формат CSV apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Встановити кількість резервних копій @@ -2709,7 +2715,7 @@ DocType: Contact,Contact,Контакт DocType: User,Third Party Authentication,Стороння аутентифікація DocType: Website Settings,Banner is above the Top Menu Bar.,Банер вище верхнього рядка меню. DocType: Razorpay Settings,API Secret,API Секретний -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Експорт звіту: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Експорт звіту: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} не існує DocType: Email Account,Port,Порт DocType: Print Format,Arial,Arial @@ -2732,7 +2738,7 @@ DocType: Kanban Board Column,Column Name,Ім'я стовпця DocType: Language,Based On,Грунтуючись на apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Чи не з'являтися до суду apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Перевірте URL сервера фраппе -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FieldType {0} для {1} не може бути проіндексований +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FieldType {0} для {1} не може бути проіндексований DocType: Communication,Email Account,E-mail аккаунт DocType: Workflow State,Download,Завантажити DocType: Blog Post,Blog Intro,Блог Інтро @@ -2743,7 +2749,7 @@ DocType: Web Page,Insert Code,Вставити код DocType: ToDo,Low,Низький apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Ви можете додати динамічні властивості з документу за допомогою шаблонів Jinja. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Неприпустимий межа {0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Перерахуйте тип документа +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Перерахуйте тип документа DocType: Event,Ref Type,Посилання Тип apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Якщо ви завантажуєте нові записи, залиште стовбець ""name"" (ID) порожнім." DocType: Address,Chattisgarh,Чаттісгарх @@ -2765,25 +2771,25 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,Відправити Друкувати в PDF DocType: Web Form,Amount,Сума DocType: Workflow Transition,Allowed,Дозволено -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Там може бути тільки один висловуха кішка у формі +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Там може бути тільки один висловуха кішка у формі apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Неможливо записати формат файлу {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Відновлення заводських налаштувань? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Невірний Головна сторінка apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Невірний логін. Спробуйте ще раз. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},"Параметри, необхідні для Link або типу таблиці поля {0} в рядку {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},"Параметри, необхідні для Link або типу таблиці поля {0} в рядку {1}" DocType: Auto Email Report,Send only if there is any data,"Відправити тільки якщо є будь-які дані," apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Скинути фільтри -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Дозволи на 0 рівні мають бути встановлені до встановлення більш високих рівнів +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Дозволи на 0 рівні мають бути встановлені до встановлення більш високих рівнів apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Призначення закритий {0} DocType: Integration Request,Remote,віддалений -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Обчислювати +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Обчислювати apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,"Будь ласка, виберіть тип документа спочатку" apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Підтвердіть Ваш E-mail apps/frappe/frappe/www/login.html +42,Or login with,Або увійдіть в систему з DocType: Error Snapshot,Locals,Місцеві жителі apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Повідомляється через {0} {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} згадав вас у коментарі в {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"наприклад, (55 + 434) / 4 = або Math.sin (Math.PI / 2) ..." +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,"наприклад, (55 + 434) / 4 = або Math.sin (Math.PI / 2) ..." apps/frappe/frappe/model/naming.py +44,{0} is required,{0} обов’язковий DocType: Integration Request,Integration Type,Тип інтеграції DocType: Newsletter,Send Attachements,Надіслати від'єднуються @@ -2793,15 +2799,15 @@ DocType: DocField,Perm Level,Перм Рівень apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Подію в сьогоднішньому календарі DocType: Web Page,Web Page,Веб-сторінка DocType: Blog Category,Blogger,Блоггер -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип поля {0} в рядку {1}" -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип {0} в рядку {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип поля {0} в рядку {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"""В глобальному пошуку"" не дозволений тип {0} в рядку {1}" apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Перегляд списку -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Дата повинна бути у форматі: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Дата повинна бути у форматі: {0} DocType: Workflow,Don't Override Status,Чи не Перевизначення статусу apps/frappe/frappe/www/feedback.html +90,Please give a rating.,"Будь ласка, дайте оцінку." apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Зворотній зв'язок Запит apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,критерій пошуку -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Перший користувача: Ви +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Перший користувача: Ви apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Вибрати стовпчики DocType: Translation,Source Text,Оригінальний текст apps/frappe/frappe/www/login.py +55,Missing parameters for login,Відсутні параметри для входу @@ -2823,7 +2829,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Імпорт DocType: ToDo,Assigned By,Присвоєний apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,"Ви можете використовувати Налаштувати форму, щоб встановити рівні на полях." -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Виберіть свій регіон +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Виберіть свій регіон DocType: Custom DocPerm,Level,Рівень DocType: Custom DocPerm,Report,Звіт apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Сума повинна бути більше 0. @@ -2843,7 +2849,7 @@ DocType: Website Theme,Background,фон DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON список DOCTYPES використовуваних для застосування дозволів користувача. Якщо порожньо, всі пов'язані DOCTYPES буде використовуватися для застосування дозволів користувача." DocType: Report,Ref DocType,Посилання DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,"Будь ласка, додайте рейтинг" -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Неможливо встановити Відновити без Скасувати +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Неможливо встановити Відновити без Скасувати apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Повна сторінка DocType: DocType,Is Child Table,Є дочірньою таблиці apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} повинен бути одним з {1} @@ -2858,7 +2864,7 @@ DocType: Website Slideshow,This goes above the slideshow.,Це йде вище apps/frappe/frappe/config/setup.py +260,Install Applications.,Встановлення програм. DocType: Contact,Last Name,Прізвище DocType: Event,Private,Приватний -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Немає попереджень на сьогодні +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Немає попереджень на сьогодні DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Відправити E-mail Друк PDF Вкладення в (рекомендовано) DocType: Web Page,Left,Зліва DocType: Event,All Day,Весь день @@ -2872,7 +2878,7 @@ DocType: Event,Send an email reminder in the morning,Надіслати елек DocType: Blog Post,Published On,Опубліковано на DocType: Contact,Gender,Стать apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Обов'язкова інформація відсутня: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0}' не може бути встановлений як унікальний тим, що має, чи не унікальні значення" +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,"Поле '{0}' не може бути встановлений як унікальний тим, що має, чи не унікальні значення" apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Тільки 200 вставок допускається в одному запиті DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Тип посилання @@ -2885,7 +2891,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,знак застереження DocType: Workflow State,User,Користувач DocType: Website Settings,"Show title in browser window as ""Prefix - title""","Показати назву у вікні переглядача як ""префікс - назва""" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,Текст в документі типу +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,Текст в документі типу apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,виконати тести apps/frappe/frappe/handler.py +91,Logged Out,вийшов з apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Детальніше ... @@ -2911,13 +2917,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Зараз проглядається DocType: DocField,Default,За замовчуванням apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} додано -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Пошук '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Пошук '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,"Будь ласка, збережіть звіт першої" apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} додано абонентів apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Не в DocType: Workflow State,star,зірка -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,"значень, розділених комами" -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Максимальна ширина для тип валюти 100px в рядку {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,"значень, розділених комами" +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Максимальна ширина для тип валюти 100px в рядку {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},"Будь ласка, поділіться своїми міркуваннями для {0}" apps/frappe/frappe/config/website.py +13,Content web page.,Вміст веб-сторінки. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Додати нову роль @@ -2936,7 +2942,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Чи не є допустимим користувачем LDAP apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} недопустимий статус apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',"Будь ласка, виберіть інший спосіб оплати. PayPal не підтримує транзакції в валюті «{0}»" -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,Поле пошуку {0} не є дійсним +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,Поле пошуку {0} не є дійсним DocType: Workflow State,ok-circle,ОК кола apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',"Ви можете знайти речі, запитуючи ""знайти апельсин серед клієнтів""" apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Вибачте! Користувач повинен мати повний доступ до свого запису. @@ -2997,7 +3003,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,Фільтр Meta DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,"Текст, відображений протягом Посилання на веб-сторінку, якщо ця форма має веб-сторінку. Маршрут Посилання буде автоматично генерується на основі `` page_name` і parent_website_route`" DocType: Feedback Request,Feedback Trigger,Зворотній зв'язок Trigger -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,"Будь ласка, встановіть {0} в першу чергу" +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,"Будь ласка, встановіть {0} в першу чергу" DocType: Unhandled Email,Message-id,Message-ID DocType: Patch Log,Patch,Пластир DocType: Async Task,Failed,Не вдалося diff --git a/frappe/translations/ur.csv b/frappe/translations/ur.csv index 9d9d013908..7f6911d870 100644 --- a/frappe/translations/ur.csv +++ b/frappe/translations/ur.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,فیس بک صارف کا نام DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,نوٹ: ایک سے زیادہ سیشن کے موبائل آلہ کی صورت میں اجازت دی جائے گی apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},صارف کیلئے فعال ای میل ان باکس {صارفین} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,اس ای میل نہیں بھیج سکتے. آپ کو اس ماہ کے لئے {0} ای میلز میں سے بھیجنے کی حد سے تجاوز کر دی. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,مستقل طور پر {0} جمع کرائیں؟ +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,مستقل طور پر {0} جمع کرائیں؟ DocType: Address,County,کاؤنٹی DocType: Workflow,If Checked workflow status will not override status in list view,چیک کئے گئے کام کے فلو کی حیثیت فہرست دیکھنے میں اسٹیٹس کی جگہ لے لے نہیں کریں گے تو apps/frappe/frappe/client.py +280,Invalid file path: {0},غلط فائل کا پاتھ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,ایک apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} درخت DocType: User,User Emails,صارف ای میلز DocType: User,Username,صارف کا نام -apps/frappe/frappe/model/base_document.py +581,Value too big,بہت بڑی قیمت +apps/frappe/frappe/model/base_document.py +580,Value too big,بہت بڑی قیمت DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,چلائیں اسکرپٹ ٹیسٹ DocType: Contact,Department,محکمہ @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,کھنگالیں DocType: Custom DocPerm,This role update User Permissions for a user,ایک صارف کے لئے یہ کردار اپ ڈیٹ صارف کی اجازت apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},نام تبدیل {0} DocType: Workflow State,zoom-out,دور کرنا -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,نہیں کھول سکتا {0} اس مثال کھلا ہوا ہے جب +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,نہیں کھول سکتا {0} اس مثال کھلا ہوا ہے جب apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,ٹیبل {0} خالی نہیں ہو سکتا apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,روزنامچے کے ساتھ apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,امیجز DocType: Communication,Reference Owner,حوالہ مالک DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,سب سے چھوٹا حصہ گردش یونٹ (سککا). یہ 0.01 طور پر داخل کیا جانا چاہئے اور USD کے لئے مثال کے طور پر 1 فیصد کے لئے DocType: Social Login Keys,GitHub,GitHub کے -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0}، صف {1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0}، صف {1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,ایک FULLNAME دے دو. apps/frappe/frappe/model/document.py +904,Beginning with,کے ساتھ شروع apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,ڈیٹا درآمد سانچہ @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,والدین DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",فعال ہونے پر، پاس ورڈ کی طاقت کم از کم پاس ورڈ اسکور قیمت کی بنیاد پر نافذ کیا جائے گا. درمیانے درجے کے مضبوط ہونے کی وجہ سے 2 کے ایک قدر اور 4 بہت مضبوط ہے. DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",فعال ہونے پر، پاس ورڈ کی طاقت کم از کم پاس ورڈ اسکور قیمت کی بنیاد پر نافذ کیا جائے گا. درمیانے درجے کے مضبوط ہونے کی وجہ سے 2 کے ایک قدر اور 4 بہت مضبوط ہے. DocType: About Us Settings,"""Team Members"" or ""Management""","""جماعت کے ارکان"" یا ""انتظام""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',میدان کے چیک 'قسم کے لئے پہلے سے طے شدہ یا تو' 0 'یا' 1 'ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',میدان کے چیک 'قسم کے لئے پہلے سے طے شدہ یا تو' 0 'یا' 1 'ہونا ضروری ہے apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,کل DocType: Contact,Designation,عہدہ DocType: Test Runner,Test Runner,ٹیسٹ رنر @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,میدان اشاعت DocType: Email Group,Email Group,ای میل گروپ DocType: Note,Seen By,کی طرف سے دیکھا apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,ایک سے زیادہ شامل -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,پسند نہیں +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,پسند نہیں apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,فیلڈ کے لئے ڈسپلے لیبل مقرر apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},غلط قیمت: {0} ہونا ضروری ہے {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",پیج میدان خصوصیات (چھپائیں، صرف پڑھنے، کی اجازت وغیرہ) @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,ہم سے apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,ایڈمنسٹریٹر ہی میں DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",وغیرہ "سیلز استفسار، سپورٹ استفسار" کی طرح رابطہ اختیارات، ایک نئی سطر پر ایک یا کوما سے علیحدہ. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. ڈاؤن لوڈ، اتارنا -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,داخل کریں +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,داخل کریں apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},منتخب کریں {0} DocType: Print Settings,Classic,کلاسیکی DocType: Desktop Icon,Color,رنگین @@ -121,7 +121,7 @@ DocType: Translation,Translation,ترجمہ میں apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,انسٹال apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,جناب DocType: Custom Script,Client,کلائنٹ -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,آپ یہ بھری ہوئی ہے کے بعد یہ فارم پر نظر ثانی کر دیا گیا ہے +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,آپ یہ بھری ہوئی ہے کے بعد یہ فارم پر نظر ثانی کر دیا گیا ہے DocType: User Permission for Page and Report,User Permission for Page and Report,پیج اور رپورٹ کے لئے صارف کی اجازت DocType: Address,Himachal Pradesh,ہماچل پردیش DocType: System Settings,"If not set, the currency precision will depend on number format",سیٹ نہیں ہے تو کرنسی کی صحت سے متعلق نمبر کی شکل پر انحصار کرے گا @@ -152,14 +152,14 @@ DocType: Unhandled Email,Reason,وجہ apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,صارف کی وضاحت کریں DocType: Email Unsubscribe,Email Unsubscribe,ای میل سبسکرائب کریں DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,بہترین نتائج کے لئے ایک شفاف پس منظر کے ساتھ تقریبا چوڑائی 150px کی ایک تصویر کو منتخب کریں. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,سسٹم مینیجر ہو جائے گا سب سے پہلے صارف (آپ بعد میں اس کو تبدیل کر سکتے ہیں). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,سسٹم مینیجر ہو جائے گا سب سے پہلے صارف (آپ بعد میں اس کو تبدیل کر سکتے ہیں). ,App Installer,اپلی کیشن انسٹالر DocType: Workflow State,circle-arrow-up,دائرہ تیر اپ apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,اپ لوڈ ... DocType: Email Domain,Email Domain,ای میل ڈومین DocType: Workflow State,italic,ترچھے apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,سب کے لئے -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0}: بنائیں بغیر درآمد مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0}: بنائیں بغیر درآمد مقرر نہیں کر سکتے ہیں apps/frappe/frappe/config/desk.py +26,Event and other calendars.,واقعہ اور دوسرے کیلنڈروں. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,تمام شعبوں تبصرہ پیش کرنے کے لئے ضروری ہیں. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,کالم کو الگ الگ کرنے کے لئے ھیںچیں @@ -171,8 +171,8 @@ DocType: Portal Settings,Standard Sidebar Menu,سٹینڈرڈ سائڈبار م apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,گھر اور منسلکات فولڈر حذف نہیں کر سکتے ہیں apps/frappe/frappe/config/desk.py +19,Files,فائلوں apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,اجازتیں وہ تفویض کر رہے ہیں کیا کردار کی بنیاد پر صارفین پر لاگو ہو. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,آپ کو اس دستاویز سے متعلق ای میلز بھیجنے کی اجازت نہیں کر رہے ہیں -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,{0} کو الگ الگ کرنے / گروپ سے کم سے کم 1 کالم براہ مہربانی منتخب کریں +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,آپ کو اس دستاویز سے متعلق ای میلز بھیجنے کی اجازت نہیں کر رہے ہیں +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,{0} کو الگ الگ کرنے / گروپ سے کم سے کم 1 کالم براہ مہربانی منتخب کریں DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,آپ سینڈباکس API کا استعمال کرتے ہوئے اپنی ادائیگی کی جانچ کر رہے ہیں تو یہ چیک کریں apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,آپ کو ایک معیاری ویب سائٹ تھیم خارج کرنے کی اجازت نہیں کر رہے ہیں DocType: Feedback Trigger,Example,مثال @@ -203,7 +203,7 @@ DocType: Email Group,Total Subscribers,کل والے apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",ایک کردار لیول 0 سے تک رسائی حاصل نہیں ہے، تو اعلی سطح معنی ہیں. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,ایسے محفوظ کریں DocType: Communication,Seen,دیکھا -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,مزید دکھائیں تفصیلات +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,مزید دکھائیں تفصیلات DocType: System Settings,Run scheduled jobs only if checked,جانچ پڑتال کی تو صرف شیڈول کے مطابق روزگار چلائیں apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,سیکشن عنوانات فعال ہیں تو صرف دکھایا جائے گا apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,محفوظ شدہ دستاویزات @@ -220,7 +220,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,چھپائیں سرخی DocType: Address,Current,موجودہ DocType: Address,Current,موجودہ -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,متعلقہ دستاویزات apps/frappe/frappe/config/core.py +17,Groups of DocTypes,DocTypes کے گروپ DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,دور دائرے @@ -236,10 +235,9 @@ DocType: Workflow State,Filter,فلٹر apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},FIELDNAME {0} کی طرح خصوصی حروف نہیں کر سکتے ہیں {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,ایک وقت میں بہت اقدار کو اپ ڈیٹ کریں. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,خرابی: تم نے اسے کھولی ہے کے بعد دستاویز پر نظر ثانی کر دیا گیا ہے -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,کوئی پہلے سے طے شدہ ایڈریس سانچہ پایا. سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس سانچہ کی طرف سے ایک نئی تشکیل کریں. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} لاگ آؤٹ: {1} DocType: Address,West Bengal,مغربی بنگال -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0}: مقرر Submittable اگر نہیں جمع کرائیں مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0}: مقرر Submittable اگر نہیں جمع کرائیں مقرر نہیں کر سکتے ہیں DocType: Social Login Keys,Facebook,فیس بک apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",کی طرف سے فلٹر "{0}" DocType: Salutation,Administrator,ایڈمنسٹریٹر @@ -249,7 +247,7 @@ DocType: Blog Settings,Blog Title,بلاگ کے عنوان apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,سٹینڈرڈ کے کردار غیر فعال نہیں کیا جا سکتا DocType: Address,Mizoram,میزورم DocType: Newsletter,Newsletter,نیوز لیٹر -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,کی طرف سے آرڈر میں ذیلی استفسار کا استعمال نہیں کر سکتے ہیں +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,کی طرف سے آرڈر میں ذیلی استفسار کا استعمال نہیں کر سکتے ہیں DocType: Web Form,Button Help,کے بٹن کی مدد DocType: Kanban Board Column,purple,جامنی رنگ DocType: About Us Settings,Team Members,ٹیم کے ارکان @@ -263,7 +261,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",آپ کی رکنیت {0} کو ختم ہوگئی. تجدید کیلئے، {1}. DocType: Workflow State,plus-sign,پلس نشانی apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,پہلے سے ہی مکمل سیٹ اپ -apps/frappe/frappe/__init__.py +890,App {0} is not installed,اپلی کیشن {0} نصب نہیں ہے +apps/frappe/frappe/__init__.py +889,App {0} is not installed,اپلی کیشن {0} نصب نہیں ہے DocType: Workflow State,Refresh,تازہ کاری DocType: Event,Public,پبلک apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,کچھ بھی نہیں ظاہر کرنے کے لئے @@ -271,7 +269,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,پسند apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,ای میل کی سہولت DocType: DocField,Print Hide If No Value,پرنٹ چھپائیں تو کوئی قیمت DocType: Event,yellow,پیلے رنگ -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,میدان اشاعت ضروری ہے ایک درست FIELDNAME ہو +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,میدان اشاعت ضروری ہے ایک درست FIELDNAME ہو apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,اپ لوڈ کریں منسلکہ DocType: Block Module,Block Module,بلاک ماڈیول apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,ایکسپورٹ سانچہ @@ -292,7 +290,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},ایک نیا اکاؤنٹ میں آپ کے لئے پیدا کیا گیا ہے {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,بذریعہ ای میل ہدایات apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,بذریعہ ای میل ہدایات -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),درج ای میل وصول کنندہ (ے) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),درج ای میل وصول کنندہ (ے) DocType: Print Format,Verdana,وردان DocType: Email Flag Queue,Email Flag Queue,ای میل پرچم کی قطار apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,کھلی شناخت نہیں کر سکتے {0}. کچھ اور کوشش. @@ -307,8 +305,8 @@ DocType: Communication,Message ID,پیغام ID DocType: Property Setter,Field Name,میدان کا نام apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,گوگل GSuite تشکیل نہیں ہے. apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,یا -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,ماڈیول کا نام ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,آگے +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,ماڈیول کا نام ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,آگے DocType: Custom Field,Fieldname,FIELDNAME DocType: Workflow State,certificate,سرٹیفکیٹ DocType: User,Tile,ٹائل @@ -317,6 +315,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,تمام ورژن دکھائیں DocType: Workflow State,Print,پرنٹ DocType: User,Restrict IP,IP محدود +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,ڈیش بورڈ apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,اس وقت ای میلز بھیجنے سے قاصر ہے apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,تلاش یا ایک کمانڈ ٹائپ کریں DocType: Communication,Timeline Name,ٹائم لائن کا نام @@ -327,8 +326,8 @@ DocType: Contact,Sales Master Manager,سیلز ماسٹر مینیجر apps/frappe/frappe/www/complete_signup.html +13,One Last Step,ایک آخری مرحلہ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,دستاویز کی قسم (DOCTYPE) آپ کو اس میدان سے منسلک کرنا چاہتے ہیں کے نام. مثال کے طور پر گاہک DocType: User,Roles Assigned,کردار تفویض -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,تلاش مدد -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,تلاش مدد +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,تلاش مدد +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,تلاش مدد DocType: Top Bar Item,Parent Label,والدین لیبل apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",آپ کا استفسار حاصل کیا گیا ہے. ہم جلد ہی واپس جواب دیں گے. آپ کو کسی بھی اضافی معلومات ہے تو، اس میل کا جواب دیں. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,اجازت خود کار طریقے سے معیاری رپورٹیں اور تلاش میں ترجمہ کر رہے ہیں. @@ -345,6 +344,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,ترمیم سرخی DocType: File,File URL,فائل یو آر ایل DocType: Version,Table HTML,ٹیبل HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

کوئی نتائج 'کے لئے مل گیا

" apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,صارفین کو شامل apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,آج کے لئے انے والے واقعات DocType: Email Alert Recipient,Email By Document Field,دستاویز میدان کی طرف سے ای میل @@ -364,16 +364,15 @@ DocType: Web Form,Amount Based On Field,رقم فیلڈ کی بناء apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,صارف بانٹیں لئے لازمی ہے DocType: DocField,Hidden,چھپا ہو ا DocType: Web Form,Allow Incomplete Forms,نامکمل فارم کی اجازت دیں -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} پہلا سیٹ ہونا ضروری ہے +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} پہلا سیٹ ہونا ضروری ہے apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",، چند الفاظ کے استعمال کے عام جملے سے بچنے. DocType: Workflow State,plane,ہوائی جہاز -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,افوہ. آپ کی ادائیگی میں ناکام رہی ہے. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",آپ نئے ریکارڈ کو اپ لوڈ کر رہے ہیں تو موجود ہے، "سیریز کا نام"، لازمی ہو جاتا ہے. -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,آج کے لئے تنبیہات سب حاصل کریں +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,آج کے لئے تنبیہات سب حاصل کریں apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DOCTYPE صرف ایڈمنسٹریٹر کی طرف سے نام تبدیل کر دیا جا سکتا ہے DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,تصدیق کے لیے اپنا ای میل چیک کریں براہ مہربانی -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,گنا فارم کے آخر میں نہیں ہو سکتا +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,گنا فارم کے آخر میں نہیں ہو سکتا DocType: Communication,Bounced,واپس DocType: Deleted Document,Deleted Name,حذف شدہ نام apps/frappe/frappe/config/setup.py +14,System and Website Users,سسٹم اور ویب سائٹ کے صارفین @@ -392,13 +391,13 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,دستاویز قطا DocType: GSuite Templates,Destination ID,مقصود ID DocType: Desktop Icon,List,فہرست DocType: Communication,Link Name,لنک کا نام -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,فیلڈ {0} قطار میں {1} چھپایا نہیں جا سکتا اور ڈیفالٹ کے بغیر لازمی +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,فیلڈ {0} قطار میں {1} چھپایا نہیں جا سکتا اور ڈیفالٹ کے بغیر لازمی DocType: System Settings,mm/dd/yyyy,ملی میٹر / DD / YYYY apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,غلط پاسورڈ: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,غلط پاسورڈ: DocType: Print Settings,Send document web view link in email,ای میل میں دستاویز ویب قول لنک بھیجیں apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,پچھلا -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,براہ مہربانی دوبارہ کوشش +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,براہ مہربانی دوبارہ کوشش apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} کے لئے قطاروں {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",ذیلی کرنسی. مثلا "صد" کے لئے apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,اپ لوڈ کی گئی فائل منتخب کریں @@ -409,10 +408,11 @@ DocType: Desktop Icon,Link,لنک apps/frappe/frappe/utils/file_manager.py +96,No file attached,منسلک کوئی فائل DocType: Version,Version,ورژن DocType: User,Fill Screen,سکرین کو بھرنے -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",وجہ لاپتہ اعداد و شمار کے، اس درخت کی رپورٹ ظاہر کرنے سے قاصر. سب سے زیادہ امکان، اس کی وجہ سے کی اجازت کرنے کے لئے باہر فلٹر کیا جا رہا ہے. +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,سیٹ اپ> ای میل> ای میل اکاؤنٹ سے براہ مہربانی سیٹ اپ ڈیفالٹ ای میل اکاؤنٹ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",وجہ لاپتہ اعداد و شمار کے، اس درخت کی رپورٹ ظاہر کرنے سے قاصر. سب سے زیادہ امکان، اس کی وجہ سے کی اجازت کرنے کے لئے باہر فلٹر کیا جا رہا ہے. apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. فائل منتخب کریں apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,اپ لوڈ کے ذریعہ ترمیم -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",دستاویز کی قسم ...، مثال کے طور پر گاہک +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",دستاویز کی قسم ...، مثال کے طور پر گاہک apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,حالت '{0}' غلط ہے DocType: Workflow State,barcode,بارکوڈ apps/frappe/frappe/config/setup.py +232,Add your own translations,اپنا خود کا ترجمہ شامل کریں @@ -422,7 +422,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,بدھ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",علاوہ کردار کی بنیاد پر کی اجازت کے قواعد سے، آپ DocTypes کی بنیاد پر صارف کی اجازت درخواست دے سکتے ہیں. apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",ان کی اجازت کی اجازت ریکارڈ منسلک کیا جاتا ہے جہاں تمام لین دین کے لئے لاگو ہوں گے. کمپنی سی صارف ایکس کے صارف کی اجازت کرنے کے لئے شامل ہے اگر مثال کے طور پر، صارف ایکس صرف ایک لنک قیمت کے طور پر کمپنی سی ہے کہ لین دین کو دیکھنے کے لئے قابل ہو جائے گا. -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,تصویر کے میدان میں ایک درست FIELDNAME ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,تصویر کے میدان میں ایک درست FIELDNAME ہونا ضروری ہے DocType: OAuth Client,Token,ٹوکن DocType: Property Setter,ID (name) of the entity whose property is to be set,جن کی جائیداد ہستی کی شناخت (کا نام) مقرر کئے جا کرنے کے لئے ہے apps/frappe/frappe/limits.py +82,"To renew, {0}.",تجدید کرنے کے لئے، {0}. @@ -431,7 +431,7 @@ DocType: Web Form,Sidebar Items,سائڈبار اشیا apps/frappe/frappe/installer.py +125,App {0} already installed,اپلی کیشن {0} کے پاس پہلے سے نصب DocType: Workflow State,exclamation-sign,فجائیہ نشان apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,اجازتیں دکھائیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,ٹائم لائن میدان ایک لنک یا متحرک لنک ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,ٹائم لائن میدان ایک لنک یا متحرک لنک ہونا ضروری ہے apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,تاریخ کی حد apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Gantt کے apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},صفحہ {0} کی {1} @@ -439,7 +439,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,ویب apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",خفیہ کاری کلید غلط ہے، site_config.json براہ مہربانی چیک کریں apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,کرنے کے لئے DocType: Kanban Board Column,darkgrey,گہرا بھورا -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},کامیاب: {0} سے {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},کامیاب: {0} سے {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,ڈیمو میں صارف کی تفصیلات کو تبدیل نہیں کر سکتے. https://erpnext.com میں ایک نیا اکاؤنٹ کے لئے سائن اپ کریں براہ مہربانی apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,تبدیلیاں کرنے کے لئے اس کی نقل کریں apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF نسل کی وجہ سے ٹوٹا ہوا تصویر لنکس میں ناکام @@ -456,24 +456,24 @@ DocType: DocField,Collapsible,تہ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,محفوظ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,کیا آپ کے ساتھ مدد کی ضرورت ہے؟ apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,منتخب کرنے کے لئے اختیارات. ایک نئی سطر میں ہر آپشن. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,مستقل طور پر منسوخ {0}؟ +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,مستقل طور پر منسوخ {0}؟ DocType: Workflow State,music,موسیقی DocType: Web Page,Settings,ترتیبات apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,DOCTYPE کی وضاحت کریں DocType: Print Format,Style Settings,سٹائل کی ترتیبات -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,چھانٹیں میدان {0} ایک درست FIELDNAME ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,چھانٹیں میدان {0} ایک درست FIELDNAME ہونا ضروری ہے apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,مزید DocType: Contact,Sales Manager,منتظم سامان فروخت apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,نام تبدیل کریں DocType: Print Format,Format Data,شکل ڈیٹا -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,کی طرح +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,کی طرح DocType: Customize Form Field,Customize Form Field,فارم فیلڈ کی تخصیص کریں apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,صارف کی اجازت DocType: OAuth Client,Grant Type,گرانٹ کی قسم apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,ایک صارف کی طرف سے پڑھنے کے قابل ہیں جو دستاویزات کی جانچ پڑتال apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,فہرست سازی کی اے پی پی کی اجازت نہیں -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,وائلڈ کارڈ کے طور پر٪ کا استعمال -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",ای میل ڈومین، اس اکاؤنٹ کے لئے ترتیب دیا گیا ایک نہیں بنائیں؟ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,وائلڈ کارڈ کے طور پر٪ کا استعمال +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",ای میل ڈومین، اس اکاؤنٹ کے لئے ترتیب دیا گیا ایک نہیں بنائیں؟ DocType: User,Reset Password Key,پاس ورڈ ری سیٹ کلیدی DocType: Email Account,Enable Auto Reply,آٹو جواب فعال apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,نہیں دیکھا @@ -517,7 +517,7 @@ DocType: DocField,Set Only Once,صرف ایک دفعہ مقرر DocType: Email Queue Recipient,Email Queue Recipient,ای میل کی قطار وصول کنندہ DocType: Address,Nagaland,ناگالینڈ apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,صارف کا نام {0} پہلے سے موجود ہے -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0}: {1} درآمد نہیں ہے کے طور پر درآمد مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0}: {1} درآمد نہیں ہے کے طور پر درآمد مقرر نہیں کر سکتے ہیں DocType: Footer Item,"target = ""_blank""",ہدف = "_blank" DocType: Workflow State,hdd,کوائف نامہ DocType: Integration Request,Host,میزبان @@ -527,7 +527,7 @@ DocType: Communication,From Full Name,فل نام سے apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},آپ رپورٹ تک رسائی حاصل نہیں ہے: {0} DocType: User,Send Welcome Email,میں خوش آمدید ای میل ارسال کریں apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,ڈاؤن لوڈ کے طور پر اسی شکل میں تمام صارف کی اجازت پر مشتمل CSV فائل اپ لوڈ کریں. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,فلٹر کو ہٹانے +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,فلٹر کو ہٹانے DocType: Address,Daman and Diu,دمن اور دیو DocType: Address,Personal,ذاتی apps/frappe/frappe/config/setup.py +113,Bulk Rename,بلک کا نام تبدیل @@ -558,11 +558,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",سٹینڈرڈ DOCTYPE ڈیفالٹ پرنٹ کی شکل کی ضرورت نہیں کر سکتے ہیں، مرضی کے مطابق فارم کا استعمال DocType: Report,Query,سوال DocType: DocType,Sort Order,ترتیب -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},'فہرست میں،' صف میں داخل {0} کرنے کی اجازت نہیں {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},'فہرست میں،' صف میں داخل {0} کرنے کی اجازت نہیں {1} DocType: Custom Field,Select the label after which you want to insert new field.,آپ نئے میدان داخل کرنا چاہتے ہیں، جس کے بعد لیبل منتخب کریں. ,Document Share Report,دستاویز کا اشتراک رپورٹ DocType: User,Last Login,آخری لاگ ان -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},FIELDNAME قطار میں کی ضرورت ہے {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},FIELDNAME قطار میں کی ضرورت ہے {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,کالم DocType: Custom Field,Adds a custom field to a DocType,ایک DOCTYPE کرنے کے لئے ایک اپنی مرضی کے میدان کا اضافہ کر دیتی DocType: File,Is Home Folder,ہوم فولڈر ہے @@ -587,7 +587,7 @@ DocType: File,Folder,فولڈر DocType: DocField,Index,انڈیکس DocType: Email Group,Newsletter Manager,نیوز لیٹر منیجر apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,اختیار 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,تمام پوسٹیں +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} کو {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,درخواستوں کے دوران خرابی کے لاگ ان. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} کامیابی ای میل گروپ میں شامل کر لیا گیا ہے. DocType: Address,Uttar Pradesh,اتر پردیش @@ -597,7 +597,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,اشارے DocType: DocShare,Everyone,ہر کوئی DocType: Workflow State,backward,پسماندہ -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: ایک ہی کردار، سطح اور ساتھ کی اجازت صرف ایک اصول {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}: ایک ہی کردار، سطح اور ساتھ کی اجازت صرف ایک اصول {1} DocType: Email Queue,Add Unsubscribe Link,رکنیت ختم لنک شامل کریں apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,ابھی تک کوئی تبصرہ. ایک نئی بحث کا آغاز کریں. DocType: Workflow State,share,حصہ @@ -616,7 +616,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,کی apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,لنک والے apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,محترمہ DocType: Website Theme,Background Color,پس منظر کا رنگ -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,ای میل بھیجنے جبکہ غلطیاں تھیں. برائے مہربانی دوبارہ کوشش کریں. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,ای میل بھیجنے جبکہ غلطیاں تھیں. برائے مہربانی دوبارہ کوشش کریں. DocType: Portal Settings,Portal Settings,پورٹل ترتیبات DocType: Web Page,0 is highest,0 سب سے زیادہ ہے apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,کیا آپ واقعی کرنا {0} اس مواصلات دوبارہ لنک کرنا چاہتے ہیں؟ @@ -644,7 +644,7 @@ DocType: Contact Us Settings,Contact Us Settings,ہم سے رابطہ کی تر apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,تلاش ہو ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,تلاش ہو ... DocType: Workflow State,text-width,متن چوڑائی -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,اس ریکارڈ کے لئے زیادہ سے زیادہ منسلکہ کی حد تک پہنچ. +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,اس ریکارڈ کے لئے زیادہ سے زیادہ منسلکہ کی حد تک پہنچ. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,مندرجہ ذیل لازمی شعبوں بھر جائے ضروری ہے:
DocType: Email Alert,View Properties (via Customize Form),(اپنی مرضی کے مطابق فارم کے ذریعے) دیکھیں پراپرٹیز DocType: Note Seen By,Note Seen By,کی طرف سے دیکھا نوٹ @@ -654,16 +654,16 @@ DocType: Address,Rajasthan,راجستھان apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,رپورٹ بلڈر رپورٹس رپورٹ بلڈر کی طرف سے براہ راست منظم کر رہے ہیں. کرنے کو کچھ نہیں. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,اپنا ای میل ایڈریس کی تصدیق کریں apps/frappe/frappe/model/document.py +903,none of,میں سے کوئی بھی -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,مجھے ایک کاپی ارسال کریں +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,مجھے ایک کاپی ارسال کریں apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,صارف کی اجازت کو اپ لوڈ کریں DocType: Dropbox Settings,App Secret Key,اپلی راز کلید apps/frappe/frappe/config/website.py +7,Web Site,ویب سائٹ apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,چیک کئے گئے آئٹمز کے ڈیسک ٹاپ پر دکھایا جائے گا -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0}ایک اقسام کے لئے مقرر نہیں کیا جا سکتا +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0}ایک اقسام کے لئے مقرر نہیں کیا جا سکتا apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} اس وقت اس دستاویز ملاحظہ فرما رہے ہیں DocType: ToDo,Assigned By Full Name,فل نام کی طرف سے تفویض apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} مکمل -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,رپورٹ سنگل اقسام کے لئے مقرر نہیں کیا جا سکتا +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,رپورٹ سنگل اقسام کے لئے مقرر نہیں کیا جا سکتا apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} دن پھلے DocType: Email Account,Awaiting Password,انتظارہے پاس ورڈ DocType: Address,Address Line 1,پتہ لائن 1 @@ -673,7 +673,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",کام کے فلو کو کے لئے ریاستوں (مثلا ڈرافٹ، منظور، منسوخ کر دیا گیا). DocType: Print Settings,Allow Print for Draft,ڈرافٹ کے لئے پرنٹ کرنے کی اجازت دیں apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,مقرر مقدار -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,تصدیق کے لئے اس دستاویز جمع کرائیں +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,تصدیق کے لئے اس دستاویز جمع کرائیں DocType: Contact,Unsubscribed,سبسکرائب apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,صفحہ اور رپورٹ کے لئے اپنی مرضی کے کردار پر مقرر کریں apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,درجہ بندی: @@ -681,7 +681,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,ڈیٹا درآمد کے آلے DocType: Address,Dadra and Nagar Haveli,دادرا اور نگر حویلی apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,اپ لوڈ کی فائلوں کو چند سیکنڈ کے لئے انتظار کریں. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,آپ تصویر منسلک +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,آپ تصویر منسلک apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,صف اقدار کو تبدیل کر دیا DocType: Workflow State,Stop,بند کرو DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,آپ کو کھولنے کے لئے چاہتے ہیں کے صفحے پر لنک. تم نے اسے ایک گروپ والدین بنانا چاہتے ہیں تو خالی چھوڑ دیں. @@ -696,7 +696,7 @@ DocType: Print Format,Align Labels to the Left,بائیں لیبلز سیدھ ک DocType: Help Article,Expert,ماہر DocType: Workflow State,circle-arrow-right,دائرے تیر دائیں DocType: LDAP Settings,LDAP Server Url,LDAP سرور URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,اس {0} کھلا ہوا ہے جب مثال کے طور پر نہیں کھول سکتا +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,اس {0} کھلا ہوا ہے جب مثال کے طور پر نہیں کھول سکتا apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,انسٹال کرنے کے لیے قطار DocType: Custom DocPerm,Custom DocPerm,اپنی مرضی DocPerm DocType: Newsletter,Send Unsubscribe Link,رکنیت ختم لنک بھیجیں @@ -713,7 +713,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,اپلی کیشن {0} کو ہٹا دیا DocType: Custom DocPerm,Apply User Permissions,صارف کی اجازت کا اطلاق DocType: User,Modules HTML,ماڈیول ایچ ٹی ایم ایل -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,سیٹ اپ> صارف کی اجازت مینیجر apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,لاپتہ اقدار مطلوب DocType: DocType,Other Settings,دیگر ترتیبات DocType: Social Login Keys,Frappe,Frappe @@ -732,7 +731,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth کا بیئرر ٹوکن apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,منتخب کوئی دستاویز apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,ڈاکٹر DocType: Event,Event,تقریب -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0} پر، {1} لکھا ہے: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0} پر، {1} لکھا ہے: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,معیاری فیلڈ کو خارج نہیں کیا جا سکتا. اگر آپ چاہتے ہیں آپ کو یہ چھپا سکتے ہیں DocType: Top Bar Item,For top bar,سب سے اوپر بار کے لئے DocType: Address,Address,پتہ @@ -745,7 +744,7 @@ DocType: Role,Desk Access,ڈیسک رسائی DocType: Workflow State,minus,مائنس apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,سرور کی خامی: آپ کے سرور نوشتہ چیک یا ٹیک کی حمایت سے رابطہ کریں. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,میں خوش آمدید ای میل بھیجا -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,کا پہلا استعمال کے لئے نظام تیار کرتے ہیں. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,کا پہلا استعمال کے لئے نظام تیار کرتے ہیں. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,نمایاں apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,پہلے سے ہی رجسٹرڈ DocType: System Settings,Float Precision,فلوٹ پریسجن @@ -759,7 +758,7 @@ DocType: Web Form,Allow Print,پرنٹ اجازت دیں apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,کوئی اطلاقات نصب apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,کے طور پر لازمی میدان نشان زد کریں DocType: Communication,Clicked,کلک -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},کرنے کی اجازت نہیں '{0} {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},کرنے کی اجازت نہیں '{0} {1} DocType: User,Google User ID,گوگل صارف کی شناخت apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,بھیجنے کے لئے تخسوچت DocType: DocType,Track Seen,ٹریک دیکھا @@ -829,7 +828,7 @@ DocType: Address,Kerala,کیرالہ DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,بیک وقت سیشن DocType: OAuth Client,Client Credentials,کلائنٹ اسناد -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,ایک ماڈیول یا آلے کو کھولنے +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,ایک ماڈیول یا آلے کو کھولنے DocType: Communication,Delivery Status,ترسیل کی حیثیت DocType: Module Def,App Name,اپلی کیشن کا نام apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,زیادہ سے زیادہ فائل کے سائز کی اجازت دی ہے {0} MB @@ -841,8 +840,8 @@ DocType: Feedback Request,Reference Communication,حوالہ مواصلات DocType: Email Queue,Unsubscribe Method,رکنیت ختم طریقہ DocType: GSuite Templates,Related DocType,متعلقہ DOCTYPE apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,مواد شامل کرنے کے ترمیم -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,زبانیں منتخب -apps/frappe/frappe/__init__.py +510,No permission for {0},کے لئے کی اجازت نہیں {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,زبانیں منتخب +apps/frappe/frappe/__init__.py +509,No permission for {0},کے لئے کی اجازت نہیں {0} DocType: DocType,Advanced,اعلی درجے apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,API کلید لگتا ہے یا API خفیہ غلط ہے !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},حوالہ: {0} {1} @@ -863,7 +862,7 @@ DocType: Customize Form,Enter Form Type,فارم کی قسم درج apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,کوئی ریکارڈ ٹیگ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,فیلڈ کو ہٹا دیں DocType: User,Send Password Update Notification,پاس ورڈ اپ ڈیٹ نوٹیفکیشن بھیجیں -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",DOCTYPE، DOCTYPE کی اجازت دیتا ہے. محتاط رہیں! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",DOCTYPE، DOCTYPE کی اجازت دیتا ہے. محتاط رہیں! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",پرنٹنگ، ای میل کے لئے اپنی مرضی کے مطابق ترتیب apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,نئے ورژن پر اپ ڈیٹ DocType: Custom Field,Depends On,منحصرکرتاہے @@ -955,6 +954,7 @@ apps/frappe/frappe/model/document.py +902,one of,اس میں سے ایک apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,کاپی کرنے کے لئے فائل براہ مہربانی منتخب کریں apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,ایک لمحے پڑتال کر رہا ہے apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,دکھائیں ٹیگز +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",لگائیں سخت صارف کی اجازت کی جانچ پڑتال کی جاتی ہے اور صارف کی اجازت کسی صارف کے لئے ایک DOCTYPE لئے بیان کیا جاتا ہے، تو پھر تمام دستاویزات لنک کی قدر خالی ہے جہاں، جو کہ صارف کو نہیں دکھایا جائے گا DocType: Address,Billing,بلنگ DocType: Email Queue,Not Sent,نہیں بھیجا DocType: Web Form,Actions,عوامل @@ -985,6 +985,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,واضح apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,ہر دن کے واقعات ایک ہی دن پر ختم کرنا چاہئے. DocType: Communication,User Tags,صارف ٹیگز apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,نکال رہا امیجز .. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,سیٹ اپ> صارف DocType: Workflow State,download-alt,ڈاؤن لوڈ، اتارنا-ALT apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},ڈاؤن لوڈ اپلی کیشن {0} DocType: Communication,Feedback Request,آپ کی رائے گذارش @@ -1002,7 +1003,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,بیک اپ apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,رابطہ شامل کریں DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,اختیاری: ہمیشہ ان آئی ڈیز کو بھیجیں. ایک نئی صف پر ہر ای میل ایڈریس -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,چھپائیں تفصیلات +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,چھپائیں تفصیلات DocType: Workflow State,Tasks,ٹاسکس DocType: Event,Tuesday,منگل DocType: Blog Settings,Blog Settings,بلاگ کی ترتیبات @@ -1022,9 +1023,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,اس کو بچایا اور کالم اور نتیجہ واپس کیا جاتا ہے جہاں ایک ہی فولڈر میں ایک ازگر فائل لکھنے. DocType: DocType,Sort Field,ترتیب دیں میدان DocType: Razorpay Settings,Razorpay Settings,Razorpay ترتیبات -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,میں ترمیم کریں فلٹر -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,فیلڈ {0} قسم کا {1} لازمی نہیں ہو سکتا -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",مثال کے طور پر. رپورٹ DOCTYPE لئے کی جانچ پڑتال ہے لیکن کوئی صارف کی اجازت ایک صارف کے لئے رپورٹ کے لئے کی وضاحت کر رہے ہیں صارف کی اجازت کا اطلاق، تو تمام رپورٹوں اس صارف کے لئے ظاہر کئے گئے ہیں +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,میں ترمیم کریں فلٹر +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,فیلڈ {0} قسم کا {1} لازمی نہیں ہو سکتا apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,شامل مزید apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,چارٹ چھپائیں DocType: System Settings,Session Expiry Mobile,سیشن ختم ہونے موبائل @@ -1039,6 +1039,7 @@ DocType: Communication,Delayed,تاخیر apps/frappe/frappe/config/setup.py +128,List of backups available for download,ڈاؤن لوڈ، اتارنا کے لئے دستیاب بیک اپ کی فہرست apps/frappe/frappe/www/login.html +89,Sign up,اکاؤنٹ بنانا DocType: Test Runner,Output,پیداوار +DocType: Email Alert,Set Property After Alert,انتباہ کے بعد جائیداد پر مقرر کریں apps/frappe/frappe/config/setup.py +226,Add fields to forms.,فارم پر شعبوں میں شامل کریں. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,کچھ کی طرح لگتا ہے اس سائٹ کے پے پال کی ترتیب کے ساتھ غلط ہے. DocType: File,rgt,rgt @@ -1046,6 +1047,7 @@ DocType: Email Account,Sendgrid,میل Sendgrid DocType: Workflow State,leaf,پتی DocType: Portal Menu Item,Portal Menu Item,پورٹل مینو اشیاء DocType: User Email,Email ID,ای میل ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",رپورٹ DOCTYPE موازنہ کیا جاتا ہے لیکن کوئی صارف کی اجازت کسی صارف کیلئے رپورٹ کے لئے کی وضاحت کر رہے ہیں صارف کی اجازت کا اطلاق، تو پھر تمام رپورٹیں ہے کہ صارف کو دکھائے گئے ہیں DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,وسائل کی ایک فہرست ہے جس میں کلائنٹ اے پی پی کے بعد صارف کو یہ اجازت دیتا ہے تک رسائی حاصل ہوگی.
مثال کے طور پر اس منصوبے DocType: Translation,Translated Text,ترجمہ شدہ متن DocType: Contact Us Settings,Query Options,استفسار کے اختیارات @@ -1062,7 +1064,7 @@ DocType: Address,Contacts,رابطے DocType: System Settings,Setup Complete,مکمل سیٹ apps/frappe/frappe/config/setup.py +66,Report of all document shares,تمام دستاویز حصص کی رپورٹ apps/frappe/frappe/www/update-password.html +18,New Password,نیا پاس ورڈ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,فلٹر {0} لاپتہ +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,فلٹر {0} لاپتہ apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,معاف کیجئے گا! آپ آٹو تخلیق تبصروں کو حذف نہیں کر سکتے ہیں DocType: Website Theme,Style using CSS,سی ایس ایس کا استعمال کرتے ہوئے انداز apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,حوالہ DOCTYPE @@ -1116,7 +1118,7 @@ DocType: User,Block Modules,بلاک ماڈیول apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,لمبائی واپس {0} کے لئے '{1}' میں '{2}'؛ لمبائی مقرر {3} اعداد و شمار کے ٹرنکیشن سبب بن جائے گا کے طور پر. DocType: Print Format,Custom CSS,اپنی مرضی کے مطابق سی ایس ایس apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,ایک تبصرہ شامل کریں -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},نظر انداز: {0} سے {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},نظر انداز: {0} سے {1} DocType: Address,Gujarat,گجرات apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,خود کار طریقے سے واقعات (تخسوچک) پر غلطی کے لاگ ان. apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),ایک درست جدا بہ کاما قدریں (CSV فائل) @@ -1125,7 +1127,7 @@ DocType: Email Account,Default Incoming,پہلے سے طے شدہ موصولہ DocType: Workflow State,repeat,دوبارہ DocType: Website Settings,Banner,بینر DocType: Role,"If disabled, this role will be removed from all users.",غیر فعال، اس کردار کے تمام صارفین کی طرف سے ہٹا دیا جائے گا. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,تلاش کرنے میں مدد +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,تلاش کرنے میں مدد apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,رجسٹرڈ لیکن غیر فعال DocType: DocType,Hide Copy,کاپی چھپائیں apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,تمام کردار صاف @@ -1157,7 +1159,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,ملک apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,پتے DocType: Communication,Shared,اشتراک کیا -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,دستاویز پرنٹ منسلک +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,دستاویز پرنٹ منسلک DocType: Bulk Update,Field,فیلڈ DocType: Communication,Received,موصول DocType: Social Login Keys,Google Client ID,گوگل کلائنٹ کی شناخت @@ -1178,12 +1180,12 @@ DocType: Report,Query Report,استفسار رپورٹ DocType: User,Set New Password,نیا پاس ورڈ مقرر DocType: User,Github User ID,Github کے صارف کی شناخت apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,دستاویز کی قسم تو -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","حذف یا کیونکہ {0} منسوخ نہیں کرسکتے {1} سے جڑا ہوا ہے {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","حذف یا کیونکہ {0} منسوخ نہیں کرسکتے {1} سے جڑا ہوا ہے {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},نامعلوم اپلی کیشن {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",٪ s کو ایک درست رپورٹ کی شکل نہیں ہے. رپورٹ کی شکل مندرجہ ذیل٪ ے میں سے ایک \ چاہئے DocType: Communication,Chat,چیٹ -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} قطار میں ایک سے زیادہ مرتبہ ظاہر ہوتا ہے {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},FIELDNAME {0} قطار میں ایک سے زیادہ مرتبہ ظاہر ہوتا ہے {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} سے {1} {2} میں صف # کرنے {3} DocType: Communication,Expired,میعاد ختم ہوگئی DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),ایک گرڈ میں ایک فیلڈ کے لئے کالم کی تعداد (ایک گرڈ میں کل کالم 11 سے کم ہونا چاہئے) @@ -1193,30 +1195,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,کیا آپ کا ا apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},نامعلوم پرنٹ فارمیٹ: {0} DocType: Workflow State,arrow-down,تیر نیچے apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,کھولیں بند کریں -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},صارف کو خارج کرنے کی اجازت نہیں {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},صارف کو خارج کرنے کی اجازت نہیں {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,آخری بار اپ ڈیٹ DocType: Help Article,Likes,پسند DocType: Website Settings,Top Bar,اوپر بار DocType: GSuite Settings,Script Code,سکرپٹ کے کوڈ apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,یوزر کے ای میل بنائیں apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,یوزر کے ای میل بنائیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,کوئی اجازت متعین +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,کوئی اجازت متعین apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,گلوبل ترتیبات: صارفین صرف جانچ پڑتال کی شبیہیں کو منتخب کرنے کے قابل ہو جائے گا apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} نہیں ملا DocType: Custom Role,Custom Role,اپنی مرضی کے کردار apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,ہوم / ٹیسٹ کے فولڈر 2 DocType: System Settings,Ignore User Permissions If Missing,لاپتہ ہے، تو صارف کی اجازت کو نظر انداز -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,اپ لوڈ کرنے سے پہلے دستاویز کو بچانے کے کریں. +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,اپ لوڈ کرنے سے پہلے دستاویز کو بچانے کے کریں. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,آپ اپنا پاس ورڈ درج کریں DocType: Dropbox Settings,Dropbox Access Secret,ڈراپ باکس تک رسائی خفیہ apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,ایک اور تبصرہ شامل کریں apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,DOCTYPE ترمیم کریں apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,نیوز لیٹر سے ان سبسکرائب کیا -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,ایک دفعہ وقفے سے پہلے آنا ہوگا گنا +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,ایک دفعہ وقفے سے پہلے آنا ہوگا گنا apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,کی طرف سے گزشتہ بار ترمیم DocType: Workflow State,hand-down,نیچے ہاتھ DocType: Address,GST State,GST ریاست -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0}: بغیر جمع کرائیں منسوخ قائم نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0}: بغیر جمع کرائیں منسوخ قائم نہیں کر سکتے ہیں DocType: Website Theme,Theme,موضوع apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,غلطیاں تھیں. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,URI AUTH کوڈ کرنے کی پابند لوٹایا گیا @@ -1235,7 +1237,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,می DocType: Website Theme,Text Color,متن کا رنگ DocType: Desktop Icon,Force Show,طاقت کا مظاہرہ apps/frappe/frappe/auth.py +78,Invalid Request,غلط درخواست -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,یہ فارم کسی بھی ان پٹ نہیں ہے +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,یہ فارم کسی بھی ان پٹ نہیں ہے apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},سیشن ختم ہونے کی شکل میں ہونا چاہیے {0} DocType: Website Sidebar Item,Group,گروپ DocType: Footer Item,"Select target = ""_blank"" to open in a new page.",منتخب ہدف = "_blank" کے ایک نئے صفحے میں کھولنے کے لئے. @@ -1244,7 +1246,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,غلطیوں انکوڈنگ نظر انداز. DocType: Workflow State,wrench,رنچ apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,مقرر نہیں -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,سیٹ اپ> صارف DocType: Authentication Log,Date,تاریخ DocType: Website Settings,Disable Signup,سائن اپ غیر فعال apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,آپ کے نظام سیٹ اپ کیا جا رہا ہے جبکہ تنگ بیٹھو. یہ چند لمحے لگ سکتے ہیں. @@ -1255,7 +1256,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,تبصرہ شامل کریں DocType: DocField,Mandatory,لازمی apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,برآمد کرنے ماڈیول -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: کوئی بنیادی اجازت مقرر +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: کوئی بنیادی اجازت مقرر apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,آپ کی رکنیت کو ختم ہوجائے گا {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},آپ کے بیک اپ کے لئے ڈاؤن لوڈ لنک مندرجہ ذیل ای میل ایڈریس پر ای میل کیا جائے گا: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",منسوخ، جمع کرانے کا معنی، ترمیم @@ -1268,11 +1269,11 @@ DocType: Desktop Icon,query-report,استفسار رپورٹ apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},کو تفویض {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,فلٹرز کو بچا لیا DocType: DocField,Percent,فیصد -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,فلٹر مقرر کریں +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,فلٹر مقرر کریں apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,کے ساتھ منسلک DocType: Workflow State,book,کتاب DocType: Website Settings,Landing Page,لینڈنگ پیج -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,اپنی مرضی کے سکرپٹ میں خرابی +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,اپنی مرضی کے سکرپٹ میں خرابی apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} نام apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",درآمد کی درخواست قطار میں. یہ چند لمحے لگ سکتے ہیں، صبر کریں. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,کوئی اجازت اس معیار کے لئے مقرر کیا. @@ -1284,7 +1285,7 @@ DocType: System Settings,Allow Login using Mobile Number,موبائل نمبر apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,تم اس کے وسائل تک رسائی حاصل کرنے کے لئے کافی اجازتیں نہیں ہیں. تک رسائی حاصل کرنے کے لئے اپنے مینیجر سے رابطہ کریں. DocType: Custom Field,Custom,اپنی مرضی کے مطابق apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,مختلف معیار کی بنیاد پر سیٹ اپ ای میل الرٹ. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},کے تحت دائر پوسٹس {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},کے تحت دائر پوسٹس {0} DocType: Email Alert,Send alert if date matches this field's value,تاریخ اس میدان کی قدر سے میل کھاتا ہے تو انتباہ بھیج دیا DocType: Workflow,Transitions,ٹرانزیشن apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,{0} کو ہٹا دیں اور تمام ڈیٹا حذف کریں؟ @@ -1293,9 +1294,8 @@ DocType: User,Login After,لاگ ان کے بعد DocType: Print Format,Monospace,مونو سپیس DocType: Letter Head,Printing,پرنٹنگ DocType: Workflow State,thumbs-up,بہت خوب -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں. سیٹ اپ> ای میل> ای میل اکاؤنٹ سے ایک نیا ای میل اکاؤنٹ بنا مہربانی DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,صحت سے متعلق 1 اور 6 کے درمیان ہونا چاہئے +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,صحت سے متعلق 1 اور 6 کے درمیان ہونا چاہئے apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,اور DocType: Error Snapshot,Frames,فریم apps/frappe/frappe/patches/v6_19/comment_feed_communication.py +131,Assignment,تفویض @@ -1303,7 +1303,7 @@ DocType: About Us Team Member,Image Link,تصویر کے لنک DocType: Auto Email Report,Report Filters,رپورٹ کے فلٹرز apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,ابھی DocType: Workflow State,step-backward,قدم پیچھے -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,آپ کی ویب سائٹ تشکیل میں ڈراپ باکس رسائی کی چابیاں مقرر کریں apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,اس ای میل ایڈریس پر بھیجنے کی اجازت دینے کے لیے اس ریکارڈ کو حذف کریں apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,صرف لازمی شعبوں نئے ریکارڈ کے لئے ضروری ہیں. اگر تم چاہو تو غیر لازمی کالم حذف کر سکتے ہیں. @@ -1324,8 +1324,7 @@ DocType: File,Is Attachments Folder,ملحقات فولڈر ہے apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,تمام کو وسیع کریں apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,درست لاگ ان کی شناخت کی ضرورت. apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,دوبارہ کھولنے -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,آپ کی ادائیگی کو منسوخ کر دیا -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,ڈیٹا کے ساتھ ایک درست CSV فائل منتخب کریں +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,ڈیٹا کے ساتھ ایک درست CSV فائل منتخب کریں apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} غیر مشترکہ کے ساتھ اس دستاویز {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,{0} {1} کی اجازت نہیں ہے سے دستاویز رتبہ منتقلی DocType: DocType,"Make ""name"" searchable in Global Search","نام" بنائیں گلوبل تلاش میں قابل تلاش @@ -1338,7 +1337,6 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,ا DocType: Help Category,Help Category,مدد زمرہ apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,صارف {0} غیر فعال ہے apps/frappe/frappe/www/404.html +8,Page missing or moved,لاپتہ یا منتقل کر دیا صفحہ -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,{0} خصوصیات میں ترمیم DocType: DocType,Route,روٹ apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay ادائیگی کے گیٹ وے ترتیبات DocType: DocField,Name,نام @@ -1346,8 +1344,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,دستاویزات میں تلاش apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,دستاویزات میں تلاش DocType: OAuth Authorization Code,Valid,درست -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,ربط کھولیں -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,آپ کی زبان +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,ربط کھولیں +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,آپ کی زبان apps/frappe/frappe/desk/form/load.py +46,Did not load,لوڈ نہیں کیا apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,قطار شامل کریں DocType: Tag Category,Doctypes,Doctypes @@ -1362,7 +1360,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,آپ کی ر DocType: Address,Lakshadweep Islands,لکشادیپ جزائر apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,لکھ سکتے ہیں apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",بعض دستاویزات، ایک انوائس، ایک بار آخری تبدیل نہیں کیا جانا چاہئے. ایسی دستاویزات کے لئے حتمی ریاست پیش کہا جاتا ہے. آپ رولز کے پیش کر سکتے ہیں جس میں محدود کر سکتے ہیں. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,آپ کو اس رپورٹ برآمد کرنے کی اجازت نہیں کر رہے ہیں +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,آپ کو اس رپورٹ برآمد کرنے کی اجازت نہیں کر رہے ہیں apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 آئٹم منتخب DocType: Newsletter,Test Email Address,ٹیسٹ ای میل ایڈریس DocType: ToDo,Sender,مرسل @@ -1396,7 +1394,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,درآمد کریں. زپ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,دستاویز ID DocType: Print Settings,Letter,خط -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,تصویری میدان کی قسم کا ہونا چاہیے تصویر منسلک +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,تصویری میدان کی قسم کا ہونا چاہیے تصویر منسلک DocType: DocField,Columns,کالم DocType: Async Task,Succeeded,کامیاب apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},میں ضرورت لازمی شعبوں {0} @@ -1446,7 +1444,7 @@ DocType: DocField,Text Editor,ٹیکسٹ ایڈیٹر apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,ہمارے بارے میں صفحہ کے لئے ترتیبات. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,اپنی مرضی کے HTML میں ترمیم کریں DocType: Error Snapshot,Error Snapshot,خرابی سنیپشاٹ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,میں +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,میں DocType: Email Alert,Value Change,قدر تبدیل DocType: Standard Reply,Standard Reply,سٹینڈرڈ جواب apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,ان پٹ باکس کی چوڑائی @@ -1462,12 +1460,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,عنوان پیدا کرنے کے لئے اس کا استعمال کریں FIELDNAME apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,سے درآمد ای میل apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,صارف کے طور پر مدعو کریں -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,منتخب ملحقات +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,منتخب ملحقات apps/frappe/frappe/model/naming.py +94, for {0},کے لئے {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,خامیاں تھیں. اس کی رپورٹ کریں. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,آپ اس دستاویز کو پرنٹ کرنے کے لئے کی اجازت نہیں کر رہے ہیں +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,آپ اس دستاویز کو پرنٹ کرنے کے لئے کی اجازت نہیں کر رہے ہیں apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,میں رپورٹ فلٹر میز فلٹرز قیمت مقرر کریں. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,لوڈ کر رہا ہے رپورٹ +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,لوڈ کر رہا ہے رپورٹ apps/frappe/frappe/limits.py +72,Your subscription will expire today.,آپ کی رکنیت کو آج ختم ہوجائے گا. DocType: Page,Standard,سٹینڈرڈ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,فائل منسلک @@ -1496,7 +1494,7 @@ DocType: Workflow Document State,Update Field,اپ ڈیٹ میدان apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,علاقائی ایکسٹنشن DocType: LDAP Settings,Base Distinguished Name (DN),بیس معزز نام (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,اس گفتگو کو چھوڑنا -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},اختیارات لنک فیلڈ کے لئے مقرر نہیں {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},اختیارات لنک فیلڈ کے لئے مقرر نہیں {0} DocType: Customize Form,"Must be of type ""Attach Image""",قسم کا ہونا ضروری ہے "تصویر منسلک" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,غیر منتخب تمام apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},آپ کو میدان کے لئے ناسیٹ نہیں 'صرف پڑھیں' کر سکتے ہیں {0} @@ -1539,9 +1537,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,نوٹ apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,غلطی کی رپورٹ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,آپ کی رائے کے حالات کے مطابق نہیں ہیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,ٹائم لائن میدان میں ایک درست FIELDNAME ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,ٹائم لائن میدان میں ایک درست FIELDNAME ہونا ضروری ہے DocType: Currency,Symbol,علامت -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,صف # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,صف # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,نیا پاس ورڈ ای میل apps/frappe/frappe/auth.py +245,Login not allowed at this time,اس وقت کی اجازت نہیں لاگ ان DocType: Email Account,Email Sync Option,ای میل کی مطابقت پذیری اختیار @@ -1563,7 +1561,7 @@ DocType: DocField,Text,متن apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,سٹینڈرڈ عام سوالات کے جوابات. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,پہلے سے طے شدہ بھیجنا DocType: Workflow State,volume-off,حجم آف -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},کی طرف سے پسند {0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},کی طرف سے پسند {0} DocType: Footer Item,Footer Item,فوٹر آئٹم ,Download Backups,لوڈ بیک اپ apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,ہوم / ٹیسٹ کے فولڈر 1 @@ -1596,7 +1594,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedbac DocType: Web Page,Text Align,متن سیدھ کریں DocType: Contact Us Settings,Forward To Email Address,فارورڈ ای میل ایڈریس apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,تمام اعداد و شمار دکھائیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,عنوان کے خانے ایک درست FIELDNAME ہونا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,عنوان کے خانے ایک درست FIELDNAME ہونا ضروری ہے apps/frappe/frappe/config/core.py +7,Documents,دستاویزات DocType: Email Flag Queue,Is Completed,مکمل ہو گیا ہے apps/frappe/frappe/www/me.html +22,Edit Profile,پروفائل میں ترمیم کریں @@ -1606,8 +1604,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",یہ فیلڈ دکھایا جائے گا FIELDNAME یہاں بیان کیا قیمت ہے یا قوانین سچے (مثالیں) ہیں صرف اس صورت: myfield سے Eval: doc.myfield == 'میری قدر' سے Eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,آج -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,آج +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,آج +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,آج apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",آپ کو اس سیٹ ہے ایک بار، صارفین کو صرف قابل رسائی دستاویزات ہو جائے گا (مثال کے طور پر. بلاگ پوسٹ) لنک (مثلا بلاگر) موجود ہے جہاں. DocType: Error Log,Log of Scheduler Errors,تخسوچک نقائص کے لاگ ان DocType: User,Bio,تعارف @@ -1631,6 +1629,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 ستارہ ہونے کی سب سے کم اور 5 ستارے سب سے زیادہ درجہ ہونے DocType: Event,Ref Name,ممبران نام DocType: Web Page,Center,سینٹر +DocType: Email Alert,Value To Be Set,ویلیو مقرر کیا جا کرنے کے لئے apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,پہلے کی سطح DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,حالت کو تبدیل کرنے کے لئے مقرر ایک دستاویز اور کردار میں اس کی اجازت امریکہ کی نمائندگی کرتا ہے. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,تازہ کاری فارم @@ -1651,18 +1650,18 @@ DocType: DocType,Has Web View,ویب لنک ہے apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DOCTYPE کے نام ایک خط کے ساتھ شروع کر دینا چاہئے اور یہ صرف حروف، نمبرز، خالی جگہوں اور انڈر پر مشتمل کر سکتے DocType: Communication,Spam,سپام DocType: Integration Request,Integration Request,انٹیگریشن گذارش -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,عزیز +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,عزیز DocType: Address,Maharashtra,مہاراشٹر DocType: Address,Accounts User,صارف اکاؤنٹس DocType: Web Page,HTML for header section. Optional,ہیڈر کے حصے کے لیے ایچ ٹی ایم ایل. اختیاری apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,یہ خصوصیت نئے برانڈ اور اب بھی تجرباتی ہے -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,زیادہ سے زیادہ {0} قطاروں کی اجازت +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,زیادہ سے زیادہ {0} قطاروں کی اجازت DocType: Email Unsubscribe,Global Unsubscribe,گلوبل رکنیت ختم apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,یہ ایک بہت ہی عام پاسورڈ ہے. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,دیکھیں DocType: Communication,Assigned,تفویض DocType: Print Format,Js,جے ایس -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,منتخب کریں پرنٹ کی شکل +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,منتخب کریں پرنٹ کی شکل apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,مختصر بورڈ کے پیٹرن اندازہ لگانا آسان ہے DocType: Portal Settings,Portal Menu,پورٹل مینو apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,{0} کی لمبائی 1 اور 1000 کے درمیان ہونا چاہئے @@ -1701,7 +1700,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,صارف کی تلاش نہیں کر سکتے ہیں apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,غلط آؤٹ پٹ فارمیٹ DocType: Custom DocPerm,Apply this rule if the User is the Owner,صارف مالک ہے تو اس اصول کا اطلاق -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,اپنے لاگ ان ID ہو جائے گا +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,اپنے لاگ ان ID ہو جائے گا apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,رپورٹ تشکیل دیں DocType: Note,Notify users with a popup when they log in,وہ میں لاگ ان کریں جب ایک پاپ اپ کے ساتھ صارفین کو مطلع کریں apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1} موجود نہیں ہے، ضم کرنے کے لئے ایک نیا ہدف کا انتخاب @@ -1720,17 +1719,17 @@ DocType: User Permission for Page and Report,Roles Permission,کردار کی ا apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,اپ ڈیٹ کریں DocType: Error Snapshot,Snapshot View,سنیپشاٹ دیکھیں apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,بھیجنے سے پہلے نیوز لیٹر بچا لو -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},اختیارات قطار میں میدان {0} کے لئے ایک درست DOCTYPE ہونا ضروری ہے {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},اختیارات قطار میں میدان {0} کے لئے ایک درست DOCTYPE ہونا ضروری ہے {1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,ترمیم پراپرٹیز DocType: Patch Log,List of patches executed,پیچ کی فہرست کو پھانسی دے دی apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} پہلے سے رکنیت ختم -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,مواصلات میڈیم +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,مواصلات میڈیم DocType: Website Settings,Banner HTML,بینر ایچ ٹی ایم ایل apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',ایک اور طریقہ ادائیگی کا انتخاب کریں. Razorpay کرنسی میں لین دین کی حمایت نہیں کرتا '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,بیک اپ کے لیے قطار. اس ایک گھنٹے کے لئے چند منٹ لگ سکتے ہیں. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,OAuth کلائنٹ اپلی رجسٹر -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} نہیں ہو سکتا "{2}". اس میں سے ایک ہونا چاہئے "{3}" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} نہیں ہو سکتا "{2}". اس میں سے ایک ہونا چاہئے "{3}" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} یا {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,دکھائیں یا چھپائیں ڈیسک ٹاپ شبیہیں apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,پاس ورڈ کی تازہ کاری کریں @@ -1757,7 +1756,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,دکھائیں لائن آف سیکشنز بعد توڑتا DocType: Blogger,Short Name,مختصر نام apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},صفحہ {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",آپ کے طور پر سب کی مطابقت پذیری کے اختیار کو منتخب کیا جاتا ہے، یہ سرور سے تمام \ پڑھ کے طور پر اچھی طرح سے کے طور پر بغیر پڑھا ہوا پیغام resync گا. یہ بھی مواصلات (ای میلز) کی تخلپی \ سبب بن سکتا ہے. apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,فائلوں کا سائز @@ -1769,6 +1768,7 @@ DocType: Contact,Purchase Manager,خریداری مینیجر DocType: Custom Script,Sample,نمونہ apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,گیا Uncategorised ٹیگز DocType: Event,Every Week,ہر ہفتے +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,ای میل اکاؤنٹ سیٹ اپ نہیں. سیٹ اپ> ای میل> ای میل اکاؤنٹ سے ایک نیا ای میل اکاؤنٹ بنا مہربانی apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,آپ کے استعمال کی جانچ یا ایک اعلی کی منصوبہ بندی پر اپ گریڈ کرنے کیلئے یہاں کلک کریں DocType: Custom Field,Is Mandatory Field,لازمی میدان ہے DocType: User,Website User,ویب سائٹ کے صارف @@ -1792,16 +1792,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,اپنی مرضی سائڈبار مینو DocType: Workflow State,pencil,پنسل apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,پیغامات اور دیگر اطلاعات چیٹ. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},کے طور پر مقرر نہیں کیا جا سکتا کے بعد ڈالیں {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},کے طور پر مقرر نہیں کیا جا سکتا کے بعد ڈالیں {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,بانٹیں {0} کے ساتھ apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,ای میل اکاؤنٹ سیٹ اپ کے لئے آپ کا پاس ورڈ درج کریں: DocType: Workflow State,hand-up,ہاتھ سے تیار DocType: Blog Settings,Writers Introduction,مصنفین کا تعارف DocType: Address,Phone,فون -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,وقت خامی کا جائزہ لینے ای میل الرٹ {0}. آپ کے سانچے کو ٹھیک کریں. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,وقت خامی کا جائزہ لینے ای میل الرٹ {0}. آپ کے سانچے کو ٹھیک کریں. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,منتخب دستاویز کی قسم یا کردار شروع کرنے کے لئے. DocType: Contact,Passive,غیر فعال DocType: Contact,Accounts Manager,اکاؤنٹس منیجر +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,آپ کی ادائیگی کو منسوخ کر دیا گیا ہے. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,منتخب فائل کی قسم DocType: Help Article,Knowledge Base Editor,سویدی ایڈیٹر apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,صفحہ نہیں ملا @@ -1829,6 +1830,7 @@ DocType: Property Setter,Property Type,خاصیت کی قسم DocType: Workflow State,screenshot,اسکرین شاٹ apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,صرف ایڈمنسٹریٹر ایک معیاری رپورٹ کو محفوظ کر سکتے ہیں. نام تبدیل اور بچا لو. DocType: System Settings,Background Workers,پس منظر ورکرز +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,FIELDNAME {0} میٹا اعتراض کے ساتھ متصادم DocType: Deleted Document,Data,ڈیٹا apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,دستاویز کی حیثیت apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},تم بنا دیا ہے {0} کی {1} @@ -1852,7 +1854,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,دکھائیں صارف کی اجازت apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,آپ لاگ ان اور بیک اپ تک رسائی حاصل کرنے کے قابل ہو جائے کرنے کے لئے سسٹم مینیجر کردار ہے کرنے کی ضرورت ہے. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,باقی -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,منسلک کرنے سے قبل بچا لو. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,منسلک کرنے سے قبل بچا لو. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),شامل کر دیا گیا {0} ({1}) apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype کی طرف سے تبدیل نہیں کیا جا سکتا {0} سے {1} قطار میں {2} apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,کردار اجازتیں @@ -1872,11 +1874,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,سیشن ش apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,سیشن شروع ناکام ہوگیا apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},یہ ای میل {0} کو بھیجا اور میں کاپی کیا گیا {1} DocType: Workflow State,th,ویں -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,سیٹ اپ> ای میل> ای میل اکاؤنٹ سے براہ مہربانی سیٹ اپ ڈیفالٹ ای میل اکاؤنٹ -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},ایک نئے {0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},ایک نئے {0} DocType: Email Rule,Is Spam,فضول ہے apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},رپورٹ {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},کھولیں {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},کھولیں {0} DocType: OAuth Client,Default Redirect URI,پہلے سے طے شدہ لوٹایا URI DocType: Email Alert,Recipients,وصول کنندگان DocType: Workflow State,ok-sign,OK-نشانی @@ -1894,6 +1895,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,مدد مضامین ,Modules Setup,ماڈیول ترتیب apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,پروپوزل کی گذارش: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,آپ کی ادائیگی ناکام رہی ہے. DocType: Communication,Unshared,اشتراک ختم DocType: Address,Karnataka,کرناٹک apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,ماڈیول نہیں ملا @@ -1939,7 +1941,7 @@ DocType: Website Settings,Brand Image,برانڈ کی تصویر DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",سب سے اوپر نیویگیشن بار، فوٹر اور علامت (لوگو) کی سیٹ اپ. DocType: Web Form Field,Max Value,زیادہ سے زیادہ قیمت -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},کے لئے {0} میں سطح {1} پر {2} قطار میں {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},کے لئے {0} میں سطح {1} پر {2} قطار میں {3} DocType: Contact,All,تمام DocType: Email Queue,Recipient,وصول کنندہ DocType: Communication,Has Attachment,منسلکہ ہے @@ -1955,7 +1957,8 @@ DocType: Workflow State,align-right,دائیں سیدھ DocType: Auto Email Report,Email To,کرنے کے لئے ای میل apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,فولڈر {0} خالی نہیں ہے DocType: Page,Roles,کردار -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,فیلڈ {0} انتخاب نہیں ہے. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},خرابی: قدر کے لاپتہ {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,فیلڈ {0} انتخاب نہیں ہے. DocType: System Settings,Session Expiry,سیشن ختم ہونے کی DocType: Workflow State,ban-circle,پابندی دائرے DocType: Email Flag Queue,Unread,بغیر پڑھے ہوئے @@ -1970,7 +1973,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,صارف ڈیفالٹس apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,نیا بنائیں DocType: Workflow State,chevron-down,شیوران نیچے -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),نہیں بھیجا ای میل {0} (غیر فعال / رکنیت ختم) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),نہیں بھیجا ای میل {0} (غیر فعال / رکنیت ختم) DocType: Async Task,Traceback,واپس تلاش کرنا، پھر جانچنا DocType: Currency,Smallest Currency Fraction Value,چھوٹا کرنسی کسر ویلیو apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,کو تفویض @@ -1981,12 +1984,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,سے DocType: Website Theme,Google Font (Heading),گوگل فونٹ (سرخی) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,سب سے پہلے ایک گروپ نوڈ کو منتخب کریں. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},تلاش {0} میں {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},تلاش {0} میں {1} DocType: OAuth Client,Implicit,ضمنی DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",(، کھیتوں، "کی حیثیت" ہونا ضروری ہے "مشروط") اس DOCTYPE خلاف مواصلات کے طور پر ملائیں DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",ناکامی کے جوابات صارف کی رسائی کی اجازت دیتا ہے ایک بار اجازت کوڈ حاصل کرنے والے، کے ساتھ ساتھ کے لئے کے URIs. عام طور پر کلائنٹ اے پی پی کی طرف سے بے نقاب آرام نقطہ اختتام.
مثلا HTTP: //hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,جمع کرانے کے بعد {0} تبدیل کرنے کی اجازت نہیں +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,جمع کرانے کے بعد {0} تبدیل کرنے کی اجازت نہیں DocType: Communication,Comment Type,تبصرہ قسم DocType: OAuth Client,OAuth Client,OAuth کلائنٹ apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,صارفین @@ -2001,7 +2004,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,فلٹر ڈیٹا DocType: Auto Email Report,Filter Data,فلٹر ڈیٹا apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,ایک ٹیگ شامل -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,سب سے پہلے ایک فائل منسلک کریں. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,سب سے پہلے ایک فائل منسلک کریں. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",نام ترتیب کچھ غلطیاں موجود تھے، ایڈمنسٹریٹر سے رابطہ کریں apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,آنے والی ای میل اکاؤنٹ درست نہیں apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2016,11 +2019,11 @@ DocType: Blog Post,Email Sent,ای میل بھیجا DocType: DocField,Ignore XSS Filter,XSS فلٹر کو نظرانداز کریں apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,ہٹا دیا apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,ڈراپ باکس کے بیک اپ کی ترتیبات -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,ای میل کے طور پر بھیج +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,ای میل کے طور پر بھیج DocType: Website Theme,Link Color,لنک کا رنگ apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,صارف {0} غیر فعال نہیں کیا جا سکتا apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",عزیز سسٹم مینیجر، -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,آپ کا ملک +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,آپ کا ملک DocType: Event,Sunday,اتوار apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,گرڈ نقطہ نظر میں DocType: Address Template,Template,سانچہ @@ -2044,7 +2047,7 @@ DocType: DocField,Table,ٹیبل DocType: File,File Size,فائل کا سائز apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,اگر آپ اس فارم جمع کرنے کے لئے لاگ ان کرنا ضروری DocType: User,Background Image,پس منظر کی تصویر -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",آپ کے ملک، ٹائم زون اور کرنسی منتخب کریں +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",آپ کے ملک، ٹائم زون اور کرنسی منتخب کریں apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,کے درمیان DocType: Async Task,Queued,قطار میں @@ -2053,6 +2056,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,بنائیں apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},غلط فلٹر: {0} DocType: Email Account,no failed attempts,کوئی ناکام کوششوں +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,کوئی پہلے سے طے شدہ ایڈریس سانچہ پایا. سیٹ اپ> پرنٹنگ اور برانڈنگ> ایڈریس سانچہ کی طرف سے ایک نئی تشکیل کریں. DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,اپلی رسائی کلید DocType: OAuth Bearer Token,Access Token,رسائی کا ٹوکن @@ -2070,8 +2074,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,گاٹہوب اسم رکنیت DocType: DocType,Image View,تصویر دیکھیں apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",ایسا لگتا ہے کہ کچھ کی طرح لین دین کے دوران غلط ہو گیا. ہم ادائیگی کی تصدیق نہیں کی چونکہ، پے پال خود کار طریقے سے آپ کو اس رقم واپس کر دیں گے. اگر ایسا نہیں ہوتا، ہمیں ایک ای میل بھیج اور لزوم ID ذکر کیجیے: {0}. -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",پاس ورڈ علامات، اعداد اور بڑے حروف شامل ہیں -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",میدان '{0}' کسٹم فیلڈ میں ذکر کے بعد داخل کریں '{1}'، لیبل کے ساتھ '{2}'، موجود نہیں ہے +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",پاس ورڈ علامات، اعداد اور بڑے حروف شامل ہیں +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",میدان '{0}' کسٹم فیلڈ میں ذکر کے بعد داخل کریں '{1}'، لیبل کے ساتھ '{2}'، موجود نہیں ہے DocType: Workflow State,signal,سگنل DocType: DocType,Show Print First,دکھائیں پرنٹ سب سے پہلے apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,کے لئے Ctrl پوسٹ کرنے درج + @@ -2101,14 +2105,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,فائل '{0}' نہیں ملا apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,سیکشن ہٹائیں DocType: User,Change Password,پاس ورڈ بدلو -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},غلط ای میل: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,ہیلو! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},غلط ای میل: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,ہیلو! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,واقعہ آخر آغاز کے بعد ہونا ضروری ہے apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},تم پر ایک رپورٹ حاصل کرنے کی اجازت نہیں ہے: {0} +DocType: System Settings,Apply Strict User Permissions,سخت صارف کی اجازت کا اطلاق کریں DocType: DocField,Allow Bulk Edit,بلک میں ترمیم کریں کرنے کی اجازت دیں DocType: DocField,Allow Bulk Edit,بلک میں ترمیم کریں کرنے کی اجازت دیں DocType: Blog Post,Blog Post,بلاگ پوسٹ -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,برتر تلاش +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,برتر تلاش apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,پاس ورڈ دوبارہ ترتیب کی ہدایات آپ کا ای میل کرنے کے لئے بھیج دیا گیا ہے apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",لیول 0 دستاویز کی سطح کی اجازت، \ فیلڈ کی سطح کی اجازت کے لئے اعلی سطح کے لئے ہے. @@ -2130,12 +2135,12 @@ DocType: Stripe Settings,Publishable Key,Publishable کلید DocType: Workflow State,circle-arrow-left,دائرے تیر بائیں apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis کیشے سرور نہیں چل. منتظم / ٹیک مدد سے رابطہ کریں apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,پارٹی کا نام -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,ایک نیا ریکارڈ بنائیں +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,ایک نیا ریکارڈ بنائیں apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,تلاش ہو apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,تلاش ہو DocType: Currency,Fraction,کسر DocType: LDAP Settings,LDAP First Name Field,LDAP پہلا نام کے خانے -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,موجودہ اٹیچمنٹ سے منتخب کریں +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,موجودہ اٹیچمنٹ سے منتخب کریں DocType: Custom Field,Field Description,فیلڈ تفصیل apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,پرامپٹ کے ذریعے مقرر نہیں نام apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,ای میل ان باکس @@ -2181,11 +2186,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,معلومات: DocType: Custom Field,Permission Level,اجازت لیول DocType: User,Send Notifications for Transactions I Follow,میں فالو لین دین کے لئے اطلاعات بھیجیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جمع کرائیں منسوخ، لکھیں بغیر ترمیم مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0}: جمع کرائیں منسوخ، لکھیں بغیر ترمیم مقرر نہیں کر سکتے ہیں apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,آپ ملحق کو خارج کرنا چاہتے ہیں اس بات کا یقین کر رہے ہیں؟ -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","حذف یا کیونکہ {0} منسوخ نہیں کرسکتے {1} سے جڑا ہوا ہے {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,"

کوئی نتائج 'کے لئے مل گیا

" -apps/frappe/frappe/__init__.py +1063,Thank you,آپ کا شکریہ +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","حذف یا کیونکہ {0} منسوخ نہیں کرسکتے {1} سے جڑا ہوا ہے {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,آپ کا شکریہ apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,محفوظ کر رہا ہے DocType: Print Settings,Print Style Preview,انداز کا مشاہدہ کریں پرنٹ کریں apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2197,10 +2201,10 @@ DocType: DocField,In List View,فہرست ویو میں DocType: Email Account,Use TLS,استعمال TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,غلط لاگ ان یا پاس ورڈ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,فارم کے لئے اپنی مرضی کے مطابق جاوا سکرپٹ کو شامل. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,سینئر کوئی +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,سینئر کوئی ,Role Permissions Manager,کردار اجازت مینیجر apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,نئے پرنٹ کی شکل کا نام -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,واضح منسلکہ +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,واضح منسلکہ apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,لازمی: ,User Permissions Manager,صارف کی اجازت مینیجر DocType: Property Setter,New value to be set,نئی قیمت مقرر کیا جا کرنے کے لئے @@ -2229,26 +2233,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,دن apps/frappe/frappe/config/website.py +47,Categorize blog posts.,بلاگ خطوط کی درجہ بندی. DocType: Workflow State,Time,وقت DocType: DocField,Attach,منسلک کریں -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ایک درست FIELDNAME پیٹرن نہیں ہے. یہ ہونا چاہئے {{FIELD_NAME}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} ایک درست FIELDNAME پیٹرن نہیں ہے. یہ ہونا چاہئے {{FIELD_NAME}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,صرف اس صورت میں وہاں کم از کم ایک بات چیت کے دستاویز کے لئے دستیاب ہے ہے آپ کی رائے کی درخواست کو بھیجیں. DocType: Custom Role,Permission Rules,اجازت قواعد DocType: GSuite Settings,GSuite Settings,GSuite ترتیبات DocType: Address,Links,روابط -apps/frappe/frappe/model/base_document.py +428,Value missing for,قیمت کے لئے لاپتہ +apps/frappe/frappe/model/base_document.py +427,Value missing for,قیمت کے لئے لاپتہ apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,چائلڈ شامل -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: پیش ریکارڈ خارج نہیں کیا جا سکتا. +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}: پیش ریکارڈ خارج نہیں کیا جا سکتا. apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,بیک اپ کا سائز DocType: GSuite Templates,Template Name,سانچہ نام -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,دستاویز کی نئی قسم +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,دستاویز کی نئی قسم DocType: Custom DocPerm,Read,پڑھیں DocType: Role Permission for Page and Report,Role Permission for Page and Report,پیج اور رپورٹ کے کردار کی اجازت apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,ویلیو سیدھ کریں apps/frappe/frappe/www/update-password.html +14,Old Password,پرانا پاسورڈ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},کی طرف سے پیغامات {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},کی طرف سے پیغامات {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",شکل کالم، سوال میں کالم لیبل دے. DocType: Has Domain,Has Domain,ڈومین ہے apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,ایک اکاؤنٹ نہیں ہے؟ سائن اپ کریں -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable نہیں تو مقرر ترمیم مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0}: Submittable نہیں تو مقرر ترمیم مقرر نہیں کر سکتے ہیں DocType: Address,Bihar,بہار apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,ترمیم کردار اجازتیں DocType: Communication,Link DocType,لنک DOCTYPE @@ -2345,7 +2349,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,آپ کے پروفائل میں ایک ای میل ایڈریس ہے کہ براہ کرم یقینی بنائیں apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,اگر آپ اس فارم میں غیر محفوظ کردہ تبدیلیاں ہیں. جاری رکھنے سے پہلے بچا لو. DocType: Address,Telangana,تلنگانہ -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,{0} ایک آپشن ہونا ضروری ہے کے لئے پہلے سے طے شدہ +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,{0} ایک آپشن ہونا ضروری ہے کے لئے پہلے سے طے شدہ DocType: Tag Doc Category,Tag Doc Category,ٹیگ ڈاکٹر زمرہ DocType: User,User Image,صارف تصویر apps/frappe/frappe/email/queue.py +289,Emails are muted,ای میل خاموش ہیں @@ -2378,7 +2382,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,پیچھے DocType: Workflow State,ok,ٹھیک ہے DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,یہ خود کار طریقے سے اقدار کے لین دین میں اپ ڈیٹ کیا جائے گا اور یہ بھی ان اقدار پر مشتمل لین دین پر اس صارف کے لئے کی اجازت محدود لئے مفید ہو گا. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,پبلیشر -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},*** میں ناکام ہوگیا: {0} سے {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},*** میں ناکام ہوگیا: {0} سے {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,لازمی کریں apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,براؤز کریں apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,ای میلز بھیجے گئے @@ -2389,7 +2393,7 @@ apps/frappe/frappe/templates/includes/search_box.html +11,Clear Search,سرچ خ DocType: Async Task,Running,چل رہا ہے apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,پاس ورڈ ری سیٹ DocType: Workflow State,hand-left,ہاتھ سے بائیں -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} منفرد نہیں ہو سکتا کے لئے +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} {1} منفرد نہیں ہو سکتا کے لئے DocType: Email Account,Use SSL,استعمال کرنا SSL DocType: Workflow State,play-circle,پلے دائرے apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,ترمیم کرنے کے لئے پرنٹ کی شکل کو منتخب کریں @@ -2443,7 +2447,7 @@ DocType: DocField,No Copy,کوئی کاپی DocType: Workflow State,qrcode,qrCode دائر تحت: apps/frappe/frappe/www/login.html +34,Login with LDAP,LDAP ساتھ لاگ ان کریں DocType: Web Form,Breadcrumbs,breadcrumbs کے -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,مالک تو +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,مالک تو DocType: OAuth Authorization Code,Expiration time,ختم ہونے کا وقت DocType: Web Page,Website Sidebar,ویب سائٹ سائڈبار DocType: Web Form,Show Sidebar,سائڈبار دکھائیں @@ -2461,7 +2465,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},نہیں مل س apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,خود کی طرف سے نام اور خاندانی نام اندازہ لگانا آسان ہے. apps/frappe/frappe/config/website.py +93,Knowledge Base,علم کی بنیاد DocType: Workflow State,briefcase,اٹیچی -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},قیمت کے لئے تبدیل کر دیا گیا نہیں کیا جا سکتا {0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},قیمت کے لئے تبدیل کر دیا گیا نہیں کیا جا سکتا {0} DocType: Feedback Request,Is Manual,دستی ہے DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",سٹائل کے بٹن رنگ کی نمائندگی کرتا: کامیابی - گرین، خطرہ - ریڈ، الٹا - سیاہ، پرائمری - گہرا نیلا، معلومات - ہلکے نیلے رنگ، انتباہ - اورنج apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,کوئی رپورٹ بھری ہوئی. / [رپورٹ کا نام] ایک رپورٹ کو چلانے کے لئے کے استفسار رپورٹ کا استعمال کریں. @@ -2540,7 +2544,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,پیش رف apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,کردار کی طرف سے apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,لاپتہ قطعات apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,autoname میں غلط FIELDNAME '{0}' -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,ایک دستاویز کی قسم میں تلاش کریں +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,ایک دستاویز کی قسم میں تلاش کریں apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,میدان بھی جمع کرانے کے بعد قابل تدوین رہنے کی اجازت DocType: Custom DocPerm,Role and Level,کردار اور لیول DocType: File,Thumbnail URL,اظفورہ یو آر ایل @@ -2557,19 +2561,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(لئے Ctrl + G) DocType: Contact,More Information,مزید معلومات DocType: Desktop Icon,Desktop Icon,ڈیسک ٹاپ شبیہ -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,آپ کی ادائیگی کو کامیابی سے قبول کر لیا گیا +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,آپ کی ادائیگی کو کامیابی سے قبول کر لیا گیا apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,معاف کیجئے گا! آپ کو اس صفحہ کو دیکھنے کی اجازت نہیں ہے. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,ترکیب: میں ترمیم کریں کرنے ڈبل کلک سیل DocType: Workflow State,bell,گھنٹی apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ای میل الرٹ میں خرابی apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,ای میل الرٹ میں خرابی apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,کے ساتھ اس دستاویز کا اشتراک +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,سیٹ اپ> صارف کی اجازت مینیجر apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,یہ بچوں کے طور پر {0} {1} پتی کی نوڈ نہیں ہو سکتا DocType: Communication,Info,معلومات -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,منسلکہ شامل کریں +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,منسلکہ شامل کریں DocType: Communication,Email,ای میل apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,اپنے پیغام کے لئے آپ کا شکریہ -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,پڑھیں رسید ارسال کریں +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,پڑھیں رسید ارسال کریں DocType: Stripe Settings,Stripe Settings,پٹی ترتیبات DocType: Stripe Settings,Stripe Settings,پٹی ترتیبات DocType: Dropbox Settings,Dropbox Setup via Site Config,ویب سائٹ موافقت پذیری کے ذریعے ڈراپ باکس سیٹ اپ @@ -2635,6 +2640,7 @@ DocType: DocType,Web View,ویب لنک apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,انتباہ: اس پرنٹ کی شکل بڑی عمر کے انداز میں ہے اور API کے ذریعے پیدا نہیں کیا جا سکتا. DocType: DocField,Print Width,پرنٹ چوڑائی ,Setup Wizard,سیٹ اپ مددگار +DocType: Address,GST State Number,GST ریاست نمبر DocType: User,Allow user to login only before this hour (0-24),صارف صرف اس گھڑی سے پہلے لاگ ان کرنے کے لئے (0-24) کی اجازت دیں apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,فولڈر لازمی ہے apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2662,7 +2668,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,چھوٹے متن apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,ایڈمنسٹریٹر رسائی {0} پر {1} IP ایڈریس کے ذریعے {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,برابر -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',میدان کے اختیارات 'متحرک لنک' قسم 'DOCTYPE' کے طور پر اختیارات کے ساتھ ایک لنک فیلڈ کی طرف اشارہ کرنا ضروری ہے +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',میدان کے اختیارات 'متحرک لنک' قسم 'DOCTYPE' کے طور پر اختیارات کے ساتھ ایک لنک فیلڈ کی طرف اشارہ کرنا ضروری ہے DocType: About Us Settings,Team Members Heading,سرخی ٹیم کے ارکان apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,غلط CSV شکل apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,بیک اپ کی تعداد مقرر کریں @@ -2673,7 +2679,7 @@ DocType: Contact,Contact,رابطہ کریں DocType: User,Third Party Authentication,تیسری پارٹی کی توثیق DocType: Website Settings,Banner is above the Top Menu Bar.,بینر اوپر مینو بار کے اوپر ہے. DocType: Razorpay Settings,API Secret,API خفیہ -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,ایکسپورٹ رپورٹ: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,ایکسپورٹ رپورٹ: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} کا کوئی وجود نہیں DocType: Email Account,Port,پورٹ DocType: Print Format,Arial,ایریل @@ -2696,7 +2702,7 @@ DocType: Kanban Board Column,Column Name,کالم کا نام DocType: Language,Based On,پر مبنی apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,پہلے سے طے شدہ بنائیں apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Frappe سرور URL چیک کریں -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} سے حساب سے ترتیب نہیں کیا جا سکتا کے لئے +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} {1} سے حساب سے ترتیب نہیں کیا جا سکتا کے لئے DocType: Communication,Email Account,ای میل اکاؤنٹ DocType: Workflow State,Download,ڈاؤن لوڈ DocType: Blog Post,Blog Intro,انٹرو بلاگ @@ -2706,7 +2712,7 @@ DocType: DocField,Display Depends On,ڈسپلے پر انحصار کرتا ہے DocType: Web Page,Insert Code,داخل کوڈ DocType: ToDo,Low,کم apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,تم میں Jinja templating کے استعمال کر رہے ہیں کی طرف سے دستاویز سے متحرک خصوصیات شامل کر سکتے ہیں. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,ایک دستاویز کی قسم کی فہرست +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,ایک دستاویز کی قسم کی فہرست DocType: Event,Ref Type,ممبران کی قسم apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",آپ نئے ریکارڈ کو اپ لوڈ کر رہے ہیں تو، "کا نام" (ID) کالم خالی چھوڑ دیں. DocType: Address,Chattisgarh,چھتیس گڑھ @@ -2728,24 +2734,24 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,پی ڈی ایف کے طور پر پرنٹ بھیجیں DocType: Web Form,Amount,رقم DocType: Workflow Transition,Allowed,اجازت -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,ایک فارم میں صرف ایک ہی گلہ نہیں ہو سکتا +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,ایک فارم میں صرف ایک ہی گلہ نہیں ہو سکتا apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,پہلے سے طے شدہ ترتیبات کو بحال؟ apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,غلط ہوم پیج apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,غلط اندراج. دوبارہ کوشش کریں. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},قطار میں لنک یا ٹیبل کی قسم میدان {0} کے لئے ضروری اختیارات {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},قطار میں لنک یا ٹیبل کی قسم میدان {0} کے لئے ضروری اختیارات {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},قطار میں لنک یا ٹیبل کی قسم میدان {0} کے لئے ضروری اختیارات {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},قطار میں لنک یا ٹیبل کی قسم میدان {0} کے لئے ضروری اختیارات {1} DocType: Auto Email Report,Send only if there is any data,کوئی ڈیٹا نہیں ہے اگر صرف بھیجنے apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,ری سیٹ فلٹر -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: اعلی سطح مقرر کیا جاتا ہے سے پہلے کی سطح 0 میں اجازت مقرر کیا جانا چاہیے +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: اعلی سطح مقرر کیا جاتا ہے سے پہلے کی سطح 0 میں اجازت مقرر کیا جانا چاہیے apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},تفویض کی طرف سے بند کر دیا {0} DocType: Integration Request,Remote,ریموٹ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,کا حساب لگائیں +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,کا حساب لگائیں apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,پہلے DOCTYPE براہ مہربانی منتخب کریں apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,آپ کا ای میل کی توثیق کریں apps/frappe/frappe/www/login.html +42,Or login with,یا کے ساتھ لاگ ان کریں DocType: Error Snapshot,Locals,مقامی apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} میں ایک تبصرہ میں آپ کا ذکر {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,مثال کے طور پر (55 + 434) / 4 یا = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,مثال کے طور پر (55 + 434) / 4 یا = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} کی ضرورت ہے DocType: Integration Request,Integration Type,انٹیگریشن کی قسم DocType: Newsletter,Send Attachements,Attachements ارسال کریں @@ -2755,15 +2761,15 @@ DocType: DocField,Perm Level,پیرم لیول apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,آج کا کیلنڈر میں ہونے والے واقعات DocType: Web Page,Web Page,ویب صفحہ DocType: Blog Category,Blogger,بلاگر -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'گلوبل تلاش میں' قسم کے لئے کی اجازت نہیں {0} قطار میں {1} apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,لنک کی فہرست -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},تاریخ کی شکل میں ہونا ضروری ہے: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},تاریخ کی شکل میں ہونا ضروری ہے: {0} DocType: Workflow,Don't Override Status,سٹیٹس کی جگہ لے لے نہیں چھوڑیں apps/frappe/frappe/www/feedback.html +90,Please give a rating.,ایک درجہ بندی دے. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} تاثرات گذارش apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,تلاش کی اصطلاح -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,سب سے پہلے صارف: آپ +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,سب سے پہلے صارف: آپ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,منتخب کالم DocType: Translation,Source Text,ماخذ متن apps/frappe/frappe/www/login.py +55,Missing parameters for login,لاگ ان کے لئے لاپتہ پیرامیٹرز @@ -2785,7 +2791,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,درآمد DocType: ToDo,Assigned By,کی طرف سے تفویض apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,آپ کے کھیتوں پر کی سطح قائم کرنے کے لئے اپنی مرضی کے مطابق فارم استعمال کر سکتے. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,آپ کے علاقے کو منتخب کریں +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,آپ کے علاقے کو منتخب کریں DocType: Custom DocPerm,Level,سطح DocType: Custom DocPerm,Report,رپورٹ apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,رقم 0 سے زیادہ ہونا چاہیے. @@ -2805,7 +2811,7 @@ DocType: Website Theme,Background,پس منظر DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",صارف کی اجازت لاگو کرنے کے لئے استعمال کیا جاتا ہے DocTypes کی JSON فہرست. خالی تو، تمام مربوط DocTypes صارف کی اجازت لاگو کرنے کے لئے استعمال کیا جائے گا. DocType: Report,Ref DocType,ممبران DOCTYPE apps/frappe/frappe/www/feedback.py +42,Please add a rating,ایک درجہ بندی کا اضافہ براہ کرم -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: بغیر منسوخ ترمیم مقرر نہیں کر سکتے ہیں +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: بغیر منسوخ ترمیم مقرر نہیں کر سکتے ہیں apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,مکمل پیج DocType: DocType,Is Child Table,بچوں کی میز ہے apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} میں سے ایک ہونا ضروری ہے {1} @@ -2820,7 +2826,7 @@ DocType: Website Slideshow,This goes above the slideshow.,یہ شو اوپر ج apps/frappe/frappe/config/setup.py +260,Install Applications.,ایپلی کیشنز کو انسٹال. DocType: Contact,Last Name,آخری نام DocType: Event,Private,ذاتی -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,آج کے لئے کوئی انتباہات +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,آج کے لئے کوئی انتباہات DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),پی ڈی ایف کے طور پر ای میل پرنٹ اٹیچمنٹ بھیج (تجویز کردہ) DocType: Web Page,Left,بائیں DocType: Event,All Day,تمام دن @@ -2834,7 +2840,7 @@ DocType: Event,Send an email reminder in the morning,صبح میں ایک ای DocType: Blog Post,Published On,پر شائع DocType: Contact,Gender,صنفی apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,لازمی معلومات لاپتہ: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,میدان '{0}' یہ غیر منفرد اقدار ہے کے طور پر منفرد طور پر مقرر نہیں کیا جا سکتا +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,میدان '{0}' یہ غیر منفرد اقدار ہے کے طور پر منفرد طور پر مقرر نہیں کیا جا سکتا apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,صرف 200 کے اضافہ ایک درخواست میں اس کی اجازت DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,حوالہ قسم @@ -2847,7 +2853,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,انتباہ سائن ان کریں DocType: Workflow State,User,صارف DocType: Website Settings,"Show title in browser window as ""Prefix - title""",براؤزر ونڈو میں شو عنوان "اپسرگ - عنوان" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,دستاویز کی قسم میں متن +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,دستاویز کی قسم میں متن apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,چلائیں ٹیسٹ apps/frappe/frappe/handler.py +91,Logged Out,لاگ آؤٹ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,مزید ... @@ -2872,13 +2878,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,فی الحال دیکھنے DocType: DocField,Default,پہلے سے طے شدہ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} شامل -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',کے لئے تلاش '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',کے لئے تلاش '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,پہلی رپورٹ بچا لو apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0} صارفین شامل apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,اندر نہیں DocType: Workflow State,star,ستارہ -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,اقدار کوما سے علیحدہ -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},قسم کرنسی کے لئے زیادہ سے زیادہ چوڑائی قطار میں 100px ہے {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,اقدار کوما سے علیحدہ +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},قسم کرنسی کے لئے زیادہ سے زیادہ چوڑائی قطار میں 100px ہے {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},کے لئے آپ کی رائے اشتراک مہربانی {0} apps/frappe/frappe/config/website.py +13,Content web page.,مواد ویب کے صفحے. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,ایک نئے کردار میں شامل @@ -2956,7 +2962,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +863,Add Column, DocType: Auto Email Report,Filter Meta,میٹا فلٹر DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,اس فارم کو ایک ویب کے صفحے ہے تو متن کے ویب صفحے پر لنک کے لئے دکھایا جا کرنا. لنک راستہ خود کار طریقے سے page_name` اور `` parent_website_route` کی بنیاد پر پیدا کیا جائے گا DocType: Feedback Request,Feedback Trigger,آپ کی رائے ٹریگر -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,پہلے {0} مقرر کریں +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,پہلے {0} مقرر کریں DocType: Unhandled Email,Message-id,پیغام کا شناختی نمبر DocType: Patch Log,Patch,پیچ DocType: Async Task,Failed,ناکام diff --git a/frappe/translations/vi.csv b/frappe/translations/vi.csv index 1671d24f16..28a1aa76fb 100644 --- a/frappe/translations/vi.csv +++ b/frappe/translations/vi.csv @@ -1,7 +1,7 @@ apps/frappe/frappe/website/doctype/web_form/web_form.py +59,Please select a Amount Field.,Vui lòng chọn một Dòng Số tiền. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +282,Press Esc to close,Nhấn Esc để đóng apps/frappe/frappe/desk/form/assign_to.py +150,"A new task, {0}, has been assigned to you by {1}. {2}","Một nhiệm vụ mới, {0}, đã được {1}. {2} giao cho bạn" -DocType: Email Queue,Email Queue records.,Queue Email hồ sơ. +DocType: Email Queue,Email Queue records.,Hàng chờ bản ghi email apps/frappe/frappe/desk/page/chat/chat_main.html +14,Post,Bài apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +28,Please select Party Type first,Vui lòng chọn loại đối tác đầu tiên DocType: Address,Punjab,Punjab @@ -12,10 +12,10 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +24,Seems DocType: About Us Settings,Website,Website apps/frappe/frappe/www/me.py +14,You need to be logged in to access this page,Bạn cần phải đăng nhập để truy cập trang này DocType: User,Facebook Username,Facebook Tên -DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Lưu ý: Nhiều buổi sẽ được cho phép trong trường hợp thiết bị di động +DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,Lưu ý: Nhiều phần sẽ được cho phép trong trường hợp của thiết bị di động apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},Bật hộp thư email cho người dùng {người dùng} apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,Không thể gửi thư điện tử này. Bạn đã vượt quá giới hạn gửi của {0} email cho tháng này. -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,Gửi vĩnh viễn {0}? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,Gửi vĩnh viễn {0}? DocType: Address,County,quận DocType: Workflow,If Checked workflow status will not override status in list view,Nếu tình trạng công việc đã được kiểm tra sẽ không ghi đè lên trạng thái trong danh sách apps/frappe/frappe/client.py +280,Invalid file path: {0},Đường dẫn tập tin không hợp lệ: {0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,Vui lò apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} Cây DocType: User,User Emails,email người sử dụng DocType: User,Username,Tên đăng nhập -apps/frappe/frappe/model/base_document.py +581,Value too big,Giá trị quá lớn +apps/frappe/frappe/model/base_document.py +580,Value too big,Giá trị quá lớn DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,Chạy kiểm tra tập lệnh DocType: Contact,Department,Cục @@ -35,19 +35,19 @@ DocType: Print Format,Print Format Builder,Định dạng in Builder apps/frappe/frappe/public/js/frappe/ui/page.js +4,Form,Mẫu đơn DocType: Report,Report Manager,Quản lý Báo cáo DocType: Workflow,Document States,Tài liệu Hoa -apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not find what you were looking for.,Xin lỗi! Tôi không thể tìm thấy những gì bạn đang tìm kiếm. -apps/frappe/frappe/config/core.py +42,Logs,Logs +apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not find what you were looking for.,Xin lỗi! Tôi không thể tìm thấy những gì bạn yêu cầu +apps/frappe/frappe/config/core.py +42,Logs,Các đăng nhập DocType: Custom DocPerm,This role update User Permissions for a user,Vai trò này Quyền cập nhật người dùng cho một người sử dụng apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},Đổi tên {0} DocType: Workflow State,zoom-out,Thu nhỏ -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,Không thể mở {0} khi cá thể của nó là mở +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,Không thể mở {0} khi cá thể của nó là mở apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,Bảng {0} không thể để trống -apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Với Ledgers +apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,Với Sổ cái apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,hình ảnh DocType: Communication,Reference Owner,Chủ đầu tư tham khảo DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,Nhỏ nhất đơn vị lưu thông phân số (tiền xu). Đối với ví dụ 1 cent cho USD và nó cần được nhập như 0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}","{0}, dòng {1}" +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}","{0}, dòng {1}" apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,Xin vui lòng cho một tên đầy đủ. apps/frappe/frappe/model/document.py +904,Beginning with,bắt đầu bằng apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,Mẫu dữ liệu nhập @@ -55,23 +55,23 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,Nguồn gốc DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Nếu được bật, độ mạnh của mật khẩu sẽ được thi hành dựa trên giá trị điểm mật khẩu tối thiểu. một giá trị bằng 2 trở nên mạnh ở mức trung bình và bằng 4 là rất mạnh" DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.","Nếu được bật, độ mạnh của mật khẩu sẽ được thi hành dựa trên giá trị điểm mật khẩu tối thiểu. một giá trị bằng 2 trở nên mạnh ở mức trung bình và bằng 4 là rất mạnh" DocType: About Us Settings,"""Team Members"" or ""Management""","""Các Thành Viên Nhóm"" hoặc ""Ban Quản Lý""" -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',Mặc định cho loại 'Kiểm tra' của trường phải là '0' hoặc '1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',Mặc định cho loại 'Kiểm tra' của trường phải là '0' hoặc '1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,Hôm qua DocType: Contact,Designation,Chỉ định -DocType: Test Runner,Test Runner,Test Runner +DocType: Test Runner,Test Runner,chạy thử DocType: Auto Email Report,Monthly,Hàng tháng DocType: Address,Uttarakhand,Utttarakhand DocType: Email Account,Enable Incoming,Kích hoạt tính năng Incoming apps/frappe/frappe/core/doctype/version/version_view.html +47,Danger,Nguy hiểm apps/frappe/frappe/www/login.html +22,Email Address,Địa chỉ Email -DocType: Workflow State,th-large,thứ lớn +DocType: Workflow State,th-large,th - rộng DocType: Communication,Unread Notification Sent,Thông báo chưa đọc đã gửi apps/frappe/frappe/public/js/frappe/misc/tools.js +8,Export not allowed. You need {0} role to export.,Xuất khẩu không được phép. Bạn cần {0} vai trò xuất khẩu. DocType: DocType,Is Published Field,Được đăng Dòng DocType: Email Group,Email Group,email Nhóm DocType: Note,Seen By,Nhìn thấy bởi apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,Thêm Phức Hợp -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,Không giống +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,Không giống apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,Đặt nhãn hiển thị cho các trường apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},Giá trị không đúng: {0} phải {1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)","Tính chất thay đổi lĩnh vực (ẩn, chỉ đọc, cho phép vv)" @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,Cài đ apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,Quản trị Logged In DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.","Tùy chọn liên hệ, như ""Truy vấn Bán hàng, Truy vấn Hỗ trợ"" v.v.. mỗi thứ một dòng mới hoặc cách nhau bằng dấu phẩy." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2. Tải về -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,Chèn +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,Chèn apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},Chọn {0} DocType: Print Settings,Classic,Cổ điển DocType: Desktop Icon,Color,Màu @@ -97,17 +97,17 @@ DocType: Company History,Company History,Lịch sử công ty apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +9,Reset,Thiết lập lại DocType: Workflow State,volume-up,âm lượng tăng apps/frappe/frappe/core/page/data_import_tool/importer.py +56,Only allowed {0} rows in one import,Chỉ được phép {0} hàng trong một lần nhập vào -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To import or update records, you must first download the template for importing.","Để hồ sơ nhập khẩu, cập nhật, đầu tiên bạn phải tải về các mẫu nhập khẩu." +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +4,"To import or update records, you must first download the template for importing.","Để nhập hoặc cập nhật các bản ghi, trước tiên bạn phải tải về mẫu nhập" DocType: DocType,Default Print Format,Mặc định In Định dạng DocType: Workflow State,Tags,các lần đánh dấu apps/frappe/frappe/public/js/frappe/form/workflow.js +33,None: End of Workflow,Không: Kết thúc quy trình làm việc apps/frappe/frappe/model/db_schema.py +346,"{0} field cannot be set as unique in {1}, as there are non-unique existing values","{0}Lĩnh vực không thể được thiết lập là duy nhất trong {1}, vì đang tồn tại những giá trị không phải duy nhất" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +47,Document Types,Các loại tài liệu DocType: Address,Jammu and Kashmir,Jammu và Kashmir -DocType: Workflow,Workflow State Field,Công việc nhà nước Dòng +DocType: Workflow,Workflow State Field,Đoạn trạng thái công việc apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +54,Please sign-up or login to begin,Vui lòng đăng ký hoặc đăng nhập để bắt đầu DocType: Blog Post,Guest,Khách -DocType: DocType,Title Field,Dòng tiêu đề +DocType: DocType,Title Field,Đoạn tiêu đề DocType: Error Log,Error Log,Lỗi hệ thống apps/frappe/frappe/utils/password_strength.py +99,"Repeats like ""abcabcabc"" are only slightly harder to guess than ""abc""",Lặp đi lặp lại như "abcabcabc" chỉ hơi khó đoán hơn "abc" apps/frappe/frappe/core/doctype/user/user.py +874,"If you think this is unauthorized, please change the Administrator password.","Nếu bạn nghĩ rằng điều này là không được phép, hãy thay đổi mật khẩu quản trị." @@ -120,16 +120,16 @@ DocType: Communication,Visit,Lần DocType: LDAP Settings,LDAP Search String,Dãy tìm kiếm LDAP DocType: Translation,Translation,Dịch apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,Đặt -apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Ông +apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,Ngài DocType: Custom Script,Client,Khách hàng -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,Hình thức này đã được sửa đổi sau khi bạn đã tải nó +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,Hình thức này đã được sửa đổi sau khi bạn đã tải nó DocType: User Permission for Page and Report,User Permission for Page and Report,Quyền hạn người dùng cho Trang và báo cáo DocType: Address,Himachal Pradesh,Himachal Pradesh DocType: System Settings,"If not set, the currency precision will depend on number format","Nếu không được đặt, độ chính xác tiền tệ sẽ phụ thuộc vào định dạng số" DocType: System Settings,"If not set, the currency precision will depend on number format","Nếu không được đặt, độ chính xác tiền tệ sẽ phụ thuộc vào định dạng số" apps/frappe/frappe/config/website.py +27,Embed image slideshows in website pages.,Trình chiếu hình ảnh nhúng trong các trang web. apps/frappe/frappe/email/doctype/newsletter/newsletter.js +9,Send,Gửi -DocType: Workflow Action,Workflow Action Name,Công việc hành động Tên +DocType: Workflow Action,Workflow Action Name,Tên hành động công việc apps/frappe/frappe/core/doctype/doctype/doctype.py +287,DocType can not be merged,DocType không thể được sáp nhập DocType: Web Form Field,Fieldtype,Fieldtype apps/frappe/frappe/core/doctype/file/file.py +242,Not a zip file,Không phải là một tập tin zip @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,Nguyên nhân apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,Vui lòng chỉ sử dụng DocType: Email Unsubscribe,Email Unsubscribe,Email Hủy đăng ký DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,Chọn một hình ảnh của khoảng chiều rộng 150px với nền trong suốt cho kết quả tốt nhất. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,Người dùng đầu tiên sẽ trở thành quản lý hệ thống (bạn có thể thay đổi điều này sau). +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,Người dùng đầu tiên sẽ trở thành quản lý hệ thống (bạn có thể thay đổi điều này sau). ,App Installer,App Installer DocType: Workflow State,circle-arrow-up,vòng tròn mũi tên lên apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,Tải lên ... DocType: Email Domain,Email Domain,Tên miền email DocType: Workflow State,italic,nghiêng apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,Cho tất cả mọi người -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,"{0}: Không thể thiết lập ""nhập vào"" mà không chọn ""Khởi Tạo""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,"{0}: Không thể thiết lập ""nhập vào"" mà không chọn ""Khởi Tạo""" apps/frappe/frappe/config/desk.py +26,Event and other calendars.,Tổ chức sự kiện và lịch khác. apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,Tất cả các trường là cần thiết để duyệt bình luận apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,Kéo để sắp xếp cột @@ -169,12 +169,12 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_colum apps/frappe/frappe/public/js/frappe/form/print.js +101,Start,Bắt đầu DocType: Contact,First Name,Họ DocType: LDAP Settings,LDAP Username Field,Trường tên người dùng LDAP -DocType: Portal Settings,Standard Sidebar Menu,Chuẩn bên Menu +DocType: Portal Settings,Standard Sidebar Menu,Thanh menu tiêu chuẩn bên cạnh apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,Không thể xóa thư mục Home và đính kèm apps/frappe/frappe/config/desk.py +19,Files,Các tập tin apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,Quyền được áp dụng trên người sử dụng dựa trên những gì vai trò được giao. -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,Bạn không được phép gửi email liên quan đến tài liệu này -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,Vui lòng chọn ít nhất 1 cột từ {0} để sắp xếp/ nhóm +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,Bạn không được phép gửi email liên quan đến tài liệu này +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,Vui lòng chọn ít nhất 1 cột từ {0} để sắp xếp/ nhóm DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,Kiểm tra này nếu bạn đang thử nghiệm thanh toán của bạn bằng cách sử dụng API Sandbox apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,Bạn không được phép xóa Theme mặc định DocType: Feedback Trigger,Example,Thí dụ @@ -201,11 +201,11 @@ DocType: DocShare,Internal record of document shares,Bản ghi nội bộ cổ p DocType: Workflow State,Comment,Bình luận apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +17,"You can change Submitted documents by cancelling them and then, amending them.",Bạn có thể thay đổi tài liệu đã gửi bằng cách hủy bỏ chúng và sau đó sửa đổi. DocType: DocField,Display,Hiển thị -DocType: Email Group,Total Subscribers,Tổng số thuê bao +DocType: Email Group,Total Subscribers,Tổng số người theo dõi apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.","Nếu một vai trò không có quyền truy cập ở cấp độ 0, sau đó cấp độ cao hơn là vô nghĩa." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,Lưu DocType: Communication,Seen,Đã xem -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,Hiển thị thêm thông tin chi tiết +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,Hiển thị thêm thông tin chi tiết DocType: System Settings,Run scheduled jobs only if checked,Chạy các công việc dự kiến chỉ khi kiểm tra apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,Sẽ chỉ được hiển thị nếu phần tiêu đề được kích hoạt apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,lưu trữ @@ -221,7 +221,6 @@ apps/frappe/frappe/public/js/frappe/ui/charts.js +11,Show Chart,Hiện bảng apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name required,Email hợp lệ và tên yêu cầu DocType: DocType,Hide Heading,Hiện nhóm DocType: Address,Current,Hiện hành -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,Tài liệu liên quan apps/frappe/frappe/config/core.py +17,Groups of DocTypes,Nhóm doctypes DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,loại bỏ vòng tròn @@ -237,34 +236,33 @@ DocType: Workflow State,Filter,bộ lọc apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},Fieldname {0} không có các ký tự đặc biệt như {1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,Cập nhật nhiều giá trị cùng một lúc. apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,Lỗi: tài liệu đã được sửa đổi sau khi bạn đã mở nó -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy Mẫu Địa chỉ mặc định. Vui lòng tạo một hình mới từ Thiết lập> In và Thương hiệu> Mẫu Địa chỉ. apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} đăng xuất khỏi: {1} -DocType: Address,West Bengal,Phía tay Bengal -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,"{0}: Không thể thiết lập ""Duyệt chỉ định"" nếu không thể duyệt" +DocType: Address,West Bengal,Phía tây Bengal +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,"{0}: Không thể thiết lập ""Duyệt chỉ định"" nếu không thể duyệt" DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",Lọc bởi "{0}" DocType: Salutation,Administrator,Quản trị viên apps/frappe/frappe/desk/page/chat/chat.js +54,Message from {0},Thông điệp từ {0} DocType: Communication,Closed,Đã đóng DocType: Blog Settings,Blog Title,Nhan đề blog -apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Vai trò chuẩn không thể bị vô hiệu hóa +apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,Các vai trò tiêu chuẩn không thể bị vô hiệu hóa DocType: Address,Mizoram,Mizoram DocType: Newsletter,Newsletter,Đăng ký nhận bản tin -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,Không thể sử dụng phụ truy vấn theo thứ tự bằng +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,Không thể sử dụng phụ truy vấn theo thứ tự bằng DocType: Web Form,Button Help,nút Trợ giúp DocType: Kanban Board Column,purple,màu tím -DocType: About Us Settings,Team Members,Nhóm thành viên +DocType: About Us Settings,Team Members,Thành viên nhóm apps/frappe/frappe/public/js/frappe/upload.js +223,Please attach a file or set a URL,Xin đính kèm một tập tin hoặc thiết lập một URL DocType: Address Template,System Manager,Hệ thống quản lý DocType: Custom DocPerm,Permissions,Quyền DocType: Dropbox Settings,Allow Dropbox Access,Cho phép truy cập Dropbox apps/frappe/frappe/core/doctype/deleted_document/deleted_document.js +11,Restore,khôi phục -DocType: Bulk Update,"SQL Conditions. Example: status=""Open""",Điều kiện SQL. Ví dụ: trạng thái = "Open" +DocType: Bulk Update,"SQL Conditions. Example: status=""Open""","Điều kiện SQL. Ví dụ: trạng thái = ""Mở""" DocType: User,Get your globally recognized avatar from Gravatar.com,Nhận avatar nhận diện trên toàn cầu của bạn từ Gravatar.com apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.","Thuê bao của bạn đã hết hạn vào ngày {0}. Đổi mới, {1}." DocType: Workflow State,plus-sign,dấu cộng apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,Thiết lập đã hoàn tất -apps/frappe/frappe/__init__.py +890,App {0} is not installed,{0} ứng dụng không được cài đặt +apps/frappe/frappe/__init__.py +889,App {0} is not installed,{0} ứng dụng không được cài đặt DocType: Workflow State,Refresh,Làm mới DocType: Event,Public,Công bố apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,Không có gì để hiển thị @@ -272,7 +270,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,đã thích bở apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,Hỗ trợ email DocType: DocField,Print Hide If No Value,In Hide Nếu Không Value DocType: Event,yellow,màu vàng -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,Trường được công khai phải là một tên trường hợp lệ +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,Trường được công khai phải là một tên trường hợp lệ apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,Tải lên tập tin đính kèm DocType: Block Module,Block Module,Khối mô đun apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,Xuất bản @@ -289,10 +287,10 @@ DocType: Email Account,Total number of emails to sync in initial sync process ,T DocType: Website Settings,Set Banner from Image,Đặt Banner từ hình ảnh apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Tìm kiếm toàn cầu apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +355,Global Search,Tìm kiếm toàn cầu -DocType: Email Account,SparkPost,SparkPost +DocType: Email Account,SparkPost,Trang web SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},Một tài khoản mới đã được tạo ra cho bạn tại {0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,Hướng dẫn Gửi email -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),Nhập Email người nhận (s) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),Nhập Email người nhận (s) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,Email Cờ Queue apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,Không thể định danh mở {0}. Hãy thử cách khác @@ -307,8 +305,8 @@ DocType: Communication,Message ID,tin ID DocType: Property Setter,Field Name,Tên trường apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite không được định dạng apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,hoặc -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,Tên mô-đun ... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,Tiếp tục +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,Tên mô-đun ... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,Tiếp tục DocType: Custom Field,Fieldname,Fieldname DocType: Workflow State,certificate,Giấy chứng nhận DocType: User,Tile,Ngói @@ -317,6 +315,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,Hiển thị tất cả các phiên bản DocType: Workflow State,Print,in DocType: User,Restrict IP,Hạn chế IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,bảng điều khiển apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,Không thể gửi email vào thời điểm này apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,Tìm kiếm hoặc gõ lệnh DocType: Communication,Timeline Name,tên dòng thời gian @@ -327,8 +326,8 @@ DocType: Contact,Sales Master Manager,QUản lý bản hàng gốc apps/frappe/frappe/www/complete_signup.html +13,One Last Step,Một Bước cuối apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,Tên của các loại tài liệu (DocType) mà bạn muốn trường này được liên kết đến. ví dụ như khách hàng DocType: User,Roles Assigned,Vai trò được chỉ định -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,tìm kiếm sự trợ giúp -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,tìm kiếm sự trợ giúp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,tìm kiếm sự trợ giúp +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,tìm kiếm sự trợ giúp DocType: Top Bar Item,Parent Label,Nhãn gốc apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.","Chúng tôi đã nhận được yêu cầu của bạn và sẽ trả lời sớm. Nếu bạn có bất kỳ thông tin bổ sung, vui lòng trả lời email này." apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,Quyền được tự động dịch để báo cáo và kiếm tiêu chuẩn. @@ -343,8 +342,9 @@ DocType: Auto Email Report,Day of Week,Ngày trong tuần DocType: Note,Expire Notification On,Hết Hạn Thông báo Mở apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to add comment,Ctrl + Enter để thêm bình luận apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,Sửa Tiêu đề -DocType: File,File URL,Đường dẫn file +DocType: File,File URL,Đường dẫn tập tin DocType: Version,Table HTML,bảng HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Không tìm thấy kết quả nào cho '

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,Thêm Subscribers apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,Sự kiện sắp tới cho Hôm nay DocType: Email Alert Recipient,Email By Document Field,Email của tài liệu Dòng @@ -353,28 +353,27 @@ apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Upgrade,nâng cấp apps/frappe/frappe/email/receive.py +65,Cannot connect: {0},Không thể kết nối: {0} apps/frappe/frappe/utils/password_strength.py +163,A word by itself is easy to guess.,Một từ tự nó sẽ dễ dàng để đoán apps/frappe/frappe/www/search.html +11,Search...,Tìm kiếm... -apps/frappe/frappe/utils/nestedset.py +218,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sáp nhập chỉ có thể giữa Tập đoàn Group-to-hoặc lá Node-to-lá Node +apps/frappe/frappe/utils/nestedset.py +218,Merging is only possible between Group-to-Group or Leaf Node-to-Leaf Node,Sáp nhập chỉ có thể giữa nhóm - tới - nhóm hoặc nút lá - tới - nút lá apps/frappe/frappe/integrations/doctype/gsuite_templates/gsuite_templates.py +30,Added {0},Thêm {0} apps/frappe/frappe/www/search.html +28,No matching records. Search something new,Không có bản ghi phù hợp. Hãy kiếm bản khác. -DocType: Currency,Fraction Units,Các đơn vị phân +DocType: Currency,Fraction Units,Các đơn vị của phần apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +431,{0} from {1} to {2},{0} từ {1} đến {2} DocType: Communication,Type,Loại DocType: Authentication Log,Subject,Chủ đề DocType: Web Form,Amount Based On Field,Số tiền Dựa Trên Dòng -apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Người sử dụng là bắt buộc đối với Share +apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,Người sử dụng là bắt buộc đối với chia sẻ DocType: DocField,Hidden,ẩn DocType: Web Form,Allow Incomplete Forms,Cho phép hình thức không đầy đủ -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0} phải được thiết lập trước +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0} phải được thiết lập trước apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.","Sử dụng một vài từ, tránh cụm từ phổ biến." DocType: Workflow State,plane,phi cơ -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,Rất tiếc. thanh toán của bạn đã thất bại. apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.","Nếu bạn đang tải lên bản ghi mới, ""Đặt tên Series"" trở thành bắt buộc, nếu có." -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,Đại diện thực cho hôm nay +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,Đại diện thực cho hôm nay apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType chỉ có thể được đổi tên thành bởi Administrator apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},giá trị thay đổi của {0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,Hãy kiểm tra email của bạn để xác minh -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,Fold không thể được ở cuối mẫu +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,Sự sắp xếp không thể ở cuối mẫu DocType: Communication,Bounced,đã thải hồi DocType: Deleted Document,Deleted Name,Tên xóa apps/frappe/frappe/config/setup.py +14,System and Website Users,Hệ thống và Website Người dùng @@ -392,14 +391,14 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +695,You selected Draft or apps/frappe/frappe/model/document.py +1044,Document Queued,Tài liệu xếp hàng đợi DocType: GSuite Templates,Destination ID,điểm đến ID DocType: Desktop Icon,List,danh sách -DocType: Communication,Link Name,Tên liên kết -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,Lĩnh vực {0} trong hàng {1} có thể không được ẩn và bắt buộc mà không mặc định +DocType: Communication,Link Name,tên liên kết +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,Lĩnh vực {0} trong hàng {1} có thể không được ẩn và bắt buộc mà không mặc định DocType: System Settings,mm/dd/yyyy,dd / mm / yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,Mật khẩu không hợp lệ: DocType: Print Settings,Send document web view link in email,Gửi tài liệu liên kết xem web trong email apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,Phản hồi của bạn cho tài liệu {0} được lưu thành công apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,Trước -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,Lại: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,Lại: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} các dãy cho {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""","Phụ tiền tệ. Cho ví dụ ""Phần trăm """ apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,Chọn tập tin tải lên @@ -410,10 +409,11 @@ DocType: Desktop Icon,Link,Liên kết apps/frappe/frappe/utils/file_manager.py +96,No file attached,Không có tập tin đính kèm DocType: Version,Version,Phiên bản DocType: User,Fill Screen,Điền vào màn hình -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Không thể hiển thị báo cáo cây này, do dữ liệu bị mất. Nhiều khả năng, nó đang được lọc ra do quyền." +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Hãy thiết lập Tài khoản Email mặc định từ Thiết lập> Email> Tài khoản Email +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.","Không thể hiển thị báo cáo cây này, do dữ liệu bị mất. Nhiều khả năng, nó đang được lọc ra bởi các quyền hạn." apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1. Chọn File apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,Chỉnh sửa qua Tải lên -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer","loại tài liệu ..., ví dụ: khách hàng" +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer","loại tài liệu ..., ví dụ: khách hàng" apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,Điều kiện '{0}' không hợp lệ DocType: Workflow State,barcode,mã vạch apps/frappe/frappe/config/setup.py +232,Add your own translations,Thêm bản dịch của riêng bạn @@ -423,8 +423,8 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,Thứ tư apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.","Ngoài vai trò dựa trên quy phép, bạn có thể áp dụng tài Quyền dựa trên doctypes." apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.","Các điều khoản sẽ được áp dụng cho tất cả các giao dịch mà các bản ghi cho phép được liên kết. Ví dụ, nếu Công ty C được thêm vào danh Quyền của người sử dụng X, người sử dụng X sẽ chỉ có thể nhìn thấy các giao dịch có công ty C như là một giá trị được liên kết." -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,lĩnh vực hình ảnh phải là một fieldname hợp lệ -DocType: OAuth Client,Token,Mã thông báo +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,trường hình ảnh phải là một trường tên hợp lệ +DocType: OAuth Client,Token,thông báo DocType: Property Setter,ID (name) of the entity whose property is to be set,ID (tên) của đơn vị có tài sản được thiết lập apps/frappe/frappe/limits.py +82,"To renew, {0}.","Đổi mới, {0}." DocType: Website Settings,Website Theme Image Link,link ảnh giao diện website @@ -432,20 +432,20 @@ DocType: Web Form,Sidebar Items,Mục bên apps/frappe/frappe/installer.py +125,App {0} already installed,Phần mềm {0} đã được cài đặt DocType: Workflow State,exclamation-sign,chấm than-dấu apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,Hiện Quyền -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,Trường của dòng thời gian phải là một liên kết hoặc liên kết động +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,Trường của dòng thời gian phải là một liên kết hoặc liên kết động apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,Phạm vi ngày apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,Biểu đồ Gantt apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},Trang {0} của {1} -DocType: About Us Settings,Introduce your company to the website visitor.,Giới thiệu công ty của bạn để người truy cập website. +DocType: About Us Settings,Introduce your company to the website visitor.,Giới thiệu công ty của bạn tới người truy cập website. apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json","Khóa mã hóa không hợp lệ, Vui lòng kiểm tra site_config.json" apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,đến DocType: Kanban Board Column,darkgrey,màu xám đen -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},Thành công: {0} đến {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},Thành công: {0} đến {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,Không thể thay đổi các chi tiết người dùng trong bản giới thiệu. Vui lòng đăng ký tài khoản mới tại https://erpnext.com apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,Hãy lặp lại này để thay đổi -apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF thế hệ thất bại vì các liên kết bị phá vỡ hình ảnh +apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,Kiến tạo PDF thất bại bởi các đường dẫn hình ảnh bị vỡ DocType: Print Settings,Font Size,Kích thước văn bản -DocType: System Settings,Disable Standard Email Footer,Vô hiệu hóa Chuẩn Email Footer +DocType: System Settings,Disable Standard Email Footer,Vô hiệu hóa chân trang email chuẩn DocType: Workflow State,facetime-video,FaceTime video apps/frappe/frappe/website/doctype/blog_post/blog_post.py +78,1 comment,1 bình luận DocType: Email Alert,Days Before,những ngày trước đó @@ -455,26 +455,26 @@ DocType: DocType,List View Settings,Xem danh sách Cài đặt DocType: Email Account,Send Notification to,Gửi thông báo cho DocType: DocField,Collapsible,Ráp apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,Lưu -apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Bạn cần giúp về? +apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,Bạn cần giúp về vấn đề gì ? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,Các tùy chọn để chọn. Mỗi lựa chọn trên một dòng mới. -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,Hủy bỏ vĩnh viễn {0}? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,Hủy bỏ vĩnh viễn {0}? DocType: Workflow State,music,âm nhạc DocType: Web Page,Settings,Cài đặt apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,Vui lòng ghi rõ loại tài liệu DocType: Print Format,Style Settings,Thiết lập phong cách -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,Sắp xếp lĩnh vực {0} phải là một fieldname hợp lệ +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,Sắp xếp lĩnh vực {0} phải là một trường tên hợp lệ apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,Nhiều Hơn DocType: Contact,Sales Manager,Quản lý bán hàng apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,Đổi tên DocType: Print Format,Format Data,Định dạng dữ liệu -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,Thích +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,Thích DocType: Customize Form Field,Customize Form Field,Tùy chỉnh Field apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,Cho phép tài -DocType: OAuth Client,Grant Type,Loại Grant +DocType: OAuth Client,Grant Type,Loại trợ cấp apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,Kiểm tra các tài liệu có thể được đọc bởi một người dùng -apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,danh sách app không được phép -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,sử dụng ký tự đại diện% như -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?","Email tên miền không được cấu hình cho tài khoản này, Tạo một tài khoản?" +apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,danh sách phần mềm không được phép +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,sử dụng ký tự đại diện% như +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?","Email tên miền không được cấu hình cho tài khoản này, Tạo một tài khoản?" DocType: User,Reset Password Key,Reset Password chính DocType: Email Account,Enable Auto Reply,Enable Auto Reply apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,Không Nhìn Thấy @@ -487,7 +487,7 @@ DocType: Email Account,Notify if unreplied,Thông báo nếu không trả lời DocType: System Settings,Minimum Password Score,Điểm số Mật khẩu Tối thiểu DocType: System Settings,Minimum Password Score,Điểm số Mật khẩu Tối thiểu DocType: DocType,Fields,Các trường -DocType: System Settings,Your organization name and address for the email footer.,Tên tổ chức của bạn và địa chỉ dùng cho chữ ký email footer. +DocType: System Settings,Your organization name and address for the email footer.,Tên tổ chức của bạn và địa chỉ dùng cho chữ ký dưới email apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +15,Parent Table,Bảng tổng apps/frappe/frappe/config/desktop.py +60,Developer,Nhà phát triển apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +140,Created,Tạo @@ -498,31 +498,31 @@ apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +1 apps/frappe/frappe/model/document.py +574,Cannot change docstatus from 1 to 0,Không thể thay đổi docstatus 1-0 apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.js +40,Take Backup Now,lấy sao lưu ngay bây giờ apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +41,Welcome,Chào mừng bạn -apps/frappe/frappe/desk/page/applications/applications.js +95,Installed Apps,Apps cài đặt +apps/frappe/frappe/desk/page/applications/applications.js +95,Installed Apps,các phần mềm đã cài đặt DocType: Contact,Open,Mở DocType: Workflow Transition,Defines actions on states and the next step and allowed roles.,Xác định các hành động trên các quốc gia và các bước tiếp theo và vai trò cho phép. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +11,"As a best practice, do not assign the same set of permission rule to different Roles. Instead, set multiple Roles to the same User.","Như một thực hành tốt nhất, không chỉ định cùng một bộ quy tắc để cho phép Vai trò khác nhau. Thay vào đó, thiết lập nhiều vai trò cùng một người dùng." DocType: Web Form,Message to be displayed on successful completion,Thông báo sẽ được hiển thị trên hoàn thành công apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +42,Only {0} emailed reports are allowed per user,Chỉ {0} báo cáo bằng email được phép cho mỗi người dùng DocType: Address,Address Title,Địa chỉ Tiêu đề -DocType: Website Settings,Footer Items,Chân mục +DocType: Website Settings,Footer Items,Phần chân của các mẫu hàng apps/frappe/frappe/public/js/frappe/form/toolbar.js +180,Request Feedback,Yêu cầu phản hồi apps/frappe/frappe/public/js/frappe/ui/page.html +24,Menu,Menu DocType: DefaultValue,DefaultValue,DefaultValue DocType: Auto Email Report,Daily,Hàng ngày apps/frappe/frappe/config/setup.py +19,User Roles,Vai trò người sử dụng -DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Sở hữu Setter ghi đè một DOCTYPE tiêu chuẩn hoặc tài sản Dòng +DocType: Property Setter,Property Setter overrides a standard DocType or Field property,Người định cư tài sản ghi đè một OCTYPE tiêu chuẩn hoặc trường tài sản apps/frappe/frappe/core/doctype/user/user.py +689,Cannot Update: Incorrect / Expired Link.,Không thể Cập nhật: Không đúng / liên kết đã hết hạn apps/frappe/frappe/utils/password_strength.py +58,Better add a few more letters or another word,Nên thêm một vài chữ cái hoặc một từ DocType: DocField,Set Only Once,Chỉ khi thiết lập -DocType: Email Queue Recipient,Email Queue Recipient,Email người nhận Queue +DocType: Email Queue Recipient,Email Queue Recipient,Hàng chờ người nhận email DocType: Address,Nagaland,Nagaland apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,Tên đăng nhập {0} đã tồn tại -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,"{0}: Không thể thiết lập""nhập vào"" vì {1} không thể nhập vào được" -apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Có một lỗi trong Template Địa chỉ của bạn {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,"{0}: Không thể thiết lập""nhập vào"" vì {1} không thể nhập vào được" +apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},Có một lỗi trong mẫu Địa chỉ của bạn {0} DocType: Footer Item,"target = ""_blank""","mục tiêu = ""_trống""" DocType: Workflow State,hdd,hdd -DocType: Integration Request,Host,chủ nhà +DocType: Integration Request,Host,Chủ apps/frappe/frappe/desk/doctype/kanban_board/kanban_board.py +45,Column {0} already exist.,Cột {0} đã tồn tại. DocType: ToDo,High,Cao DocType: User,Male,Nữ giới @@ -530,12 +530,12 @@ DocType: Communication,From Full Name,Từ Tên đầy đủ apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},Bạn không có quyền truy cập vào báo: {0} DocType: User,Send Welcome Email,Gửi Welcome Email apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,Tải lên tập tin CSV có chứa tất cả các quyền của người dùng trong định dạng giống như Download. -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,Bỏ điều kiện lọc +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,Bỏ điều kiện lọc DocType: Address,Daman and Diu,Daman and Diu DocType: Address,Personal,Cá nhân apps/frappe/frappe/config/setup.py +113,Bulk Rename,THay tên hàng loạt DocType: Email Queue,Show as cc,Hiển thị như cc -DocType: DocField,Heading,Nhóm +DocType: DocField,Heading,Đề mục DocType: Workflow State,resize-vertical,thay đổi kích thước thẳng đứng apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +71,2. Upload,2. Đăng tải lên DocType: Contact Us Settings,Introductory information for the Contact Us Page,Thông tin giới thiệu cho Trang Liên hệ @@ -551,21 +551,21 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +151,No Emails,kh DocType: Report,Javascript,Javascript DocType: File,Content Hash,Nội dung Hash DocType: User,Stores the JSON of last known versions of various installed apps. It is used to show release notes.,Cửa hàng JSON của phiên bản cuối cùng được biết các ứng dụng được cài đặt khác nhau. Nó được sử dụng để hiển thị các ghi chú phát hành. -DocType: Website Theme,Google Font (Text),Google Font (Text) +DocType: Website Theme,Google Font (Text),Phông google (văn bản) DocType: DocType,MyISAM,MyISAM apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +31,{0} already unsubscribed for {1} {2},{0} đã hủy đăng ký cho {1} {2} apps/frappe/frappe/core/page/permission_manager/permission_manager.js +327,Did not remove,Không loại bỏ apps/frappe/frappe/desk/like.py +89,Liked,đã thích apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send Now,Bây giờ gửi -apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Tiêu chuẩn DocType không thể có định dạng in mặc định, sử dụng Customize Form" -apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Tiêu chuẩn DocType không thể có định dạng in mặc định, sử dụng Customize Form" +apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Loại văn bản tiêu chuẩn không thể có định dạng in mặc định, sử dụng dạng tùy chỉnh" +apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form","Loại văn bản tiêu chuẩn không thể có định dạng in mặc định, sử dụng dạng tùy chỉnh" DocType: Report,Query,Truy vấn DocType: DocType,Sort Order,Xếp theo thứ tự -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},"""Trong danh sách hiển thị"" không được công nhận với loại {0} trong hàng {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},"""Trong danh sách hiển thị"" không được công nhận với loại {0} trong hàng {1}" DocType: Custom Field,Select the label after which you want to insert new field.,Chọn nhãn sau đó bạn muốn chèn lĩnh vực mới. ,Document Share Report,Tài liệu Chia sẻ Báo cáo DocType: User,Last Login,Lần Đăng nhập Cuối -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},Fieldname là cần thiết trong hàng {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},Fieldname là cần thiết trong hàng {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,Trụ DocType: Custom Field,Adds a custom field to a DocType,Thêm một thông tin một DOCTYPE DocType: File,Is Home Folder,Là thư mục gốc @@ -579,7 +579,7 @@ DocType: Communication,Reference Name,Tên tài liệu tham khảo apps/frappe/frappe/public/js/frappe/toolbar.js +30,Chat Support,Hỗ trợ chat DocType: Error Snapshot,Exception,Exception DocType: Email Account,Use IMAP,Sử dụng IMAP -apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +39,Unable to make request to the Frappe Server URL,Không thể thực hiện yêu cầu đến URL sinh tố Máy chủ +apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +39,Unable to make request to the Frappe Server URL,Không thể thực hiện yêu cầu đến URL máy chủ Frappe DocType: Integration Request,Authorized,Ủy quyền DocType: DocType,Single Types have only one record no tables associated. Values are stored in tabSingles,Các loại duy nhất chỉ có 1 bản ghi không có bảng liên hệ. Các định mức được tích trữ tại tabSingles DocType: System Settings,Enable Password Policy,Bật Chính sách Mật khẩu @@ -591,7 +591,7 @@ DocType: File,Folder,Thư mục DocType: DocField,Index,Mục lục DocType: Email Group,Newsletter Manager,Quản lý bản tin apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,Lựa Chọn 1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,Tất cả bài viết +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0} đến {1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,Đăng nhập của lỗi trong quá trình yêu cầu. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} đã được thêm thành công vào Email Group. DocType: Address,Uttar Pradesh,Uttar Pradesh @@ -601,13 +601,13 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,chỉ số DocType: DocShare,Everyone,Tất cả mọi người DocType: Workflow State,backward,Ngược -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Chỉ có một quy tắc được cho phép với vai trò , cấp độ tương tự và {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}","{0}: Chỉ có một quy tắc được cho phép với vai trò , cấp độ tương tự và {1}" DocType: Email Queue,Add Unsubscribe Link,Thêm Hủy đăng ký liên kết apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,Chưa có bình luận nào. Bắt đầu một cuộc thảo luận mới. DocType: Workflow State,share,phần apps/frappe/frappe/limits.py +33,"Your subscription expired on {0}. To renew, please send an email to {1}.","Thuê bao của bạn đã hết hạn vào ngày {0}. Đổi mới, xin vui lòng gửi email đến {1}." apps/frappe/frappe/config/setup.py +107,Set numbering series for transactions.,Thiết lập đánh số hàng loạt cho các giao dịch. -apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,Bạn không thể like cái mà bạn đã tạo +apps/frappe/frappe/desk/like.py +38,You cannot like something that you created,Bạn không thể nhấn thích điều bạn đã tạo ra DocType: User,Last IP,IP cuối cùng apps/frappe/frappe/core/page/usage_info/usage_info.js +20,Renew / Upgrade,Đổi mới / nâng cấp DocType: Custom DocPerm,Filter records based on User Permissions defined for a user,Hồ sơ bộ lọc dựa trên Quyền người dùng định nghĩa cho một người dùng @@ -618,9 +618,9 @@ apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +40,Fieldname not apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,Cập nhật lần cuối bởi apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,không được phép. apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,Xem người theo dõi -apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Ms +apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,Cô DocType: Website Theme,Background Color,Màu nền -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,Có lỗi khi gửi email. Vui lòng thử lại sau. +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,Có lỗi khi gửi email. Vui lòng thử lại sau. DocType: Portal Settings,Portal Settings,Thiết lập cổng DocType: Web Page,0 is highest,0 là cao nhất apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,Bạn có chắc chắn bạn muốn liên kết lại thông tin liên lạc này để {0}? @@ -647,38 +647,38 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,Thiết lập Liên hệ apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Đang tìm kiếm ... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,Đang tìm kiếm ... -DocType: Workflow State,text-width,văn bản rộng -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,Giới hạn tối đa cho tập tin đính kèm hồ sơ này đạt. +DocType: Workflow State,text-width,chiều rộng văn bản +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,Giới hạn tối đa cho tập tin đính kèm hồ sơ này đạt. apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,Các trường bắt buộc sau đây phải được điền:
-DocType: Email Alert,View Properties (via Customize Form),Xem Tài sản (qua đặc chế form) +DocType: Email Alert,View Properties (via Customize Form),Xem Tài sản (qua mẫu đặc chế) DocType: Note Seen By,Note Seen By,Ghi chú đã xem bởi -apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard pattern with more turns,Hãy thử sử dụng một mô hình bàn phím lâu hơn với lần lượt hơn +apps/frappe/frappe/utils/password_strength.py +78,Try to use a longer keyboard pattern with more turns,Hãy thử sử dụng một mô hình bàn phím lâu hơn với nhiều lượt hơn DocType: Feedback Trigger,Check Communication,Kiểm tra Truyền thông DocType: Address,Rajasthan,Rajasthan apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,Báo cáo báo cáo Builder được quản lý trực tiếp của những người xây dựng báo cáo. Không có gì để làm. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,Vui lòng xác nhận địa chỉ email apps/frappe/frappe/model/document.py +903,none of,không có -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,Nhớ gửi Bản sao +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,Nhớ gửi Bản sao apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,Đăng tải quyền hạn người dùng DocType: Dropbox Settings,App Secret Key,App bí mật chính apps/frappe/frappe/config/website.py +7,Web Site,Website apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,Mục đã chọn sẽ được hiển thị trên máy tính để bàn -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0} không thể thiết lập cho những kiểu Đơn -apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Kanban Board {0} không tồn tại. +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0} không thể thiết lập cho những kiểu Đơn +apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,Bảng Kanban {0} không tồn tại. apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0} đang xem tài liệu này DocType: ToDo,Assigned By Full Name,Giao By Tên đầy đủ apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0} đã được cập nhật -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,Báo cáo không thể được thiết lập cho các loại đơn +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,Báo cáo không thể được thiết lập cho các loại đơn apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0} ngày trước DocType: Email Account,Awaiting Password,Đang chờ Mật khẩu DocType: Address,Address Line 1,Địa chỉ Line 1 DocType: Custom DocPerm,Role,Vai trò apps/frappe/frappe/utils/data.py +441,Cent,Phần trăm apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,Soạn email -apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Hoa cho công việc (ví dụ như Dự thảo, phê duyệt, hủy bỏ)." +apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).","Báo cáo quy trình công việc (ví dụ như Dự thảo, phê duyệt, hủy bỏ)." DocType: Print Settings,Allow Print for Draft,cho phép in nháp apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,Đặt Số lượng -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,Gửi tài liệu này để xác nhận +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,Gửi tài liệu này để xác nhận DocType: Contact,Unsubscribed,Bỏ đăng ký apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,Đặt vai trò tùy chỉnh cho trang và báo cáo apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,Đánh giá: @@ -686,7 +686,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,Công cụ nhập dữ liệu DocType: Address,Dadra and Nagar Haveli,Dadra and Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,tải lên tập tin xin vui lòng chờ một vài giây. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,Hình ảnh đính kèm của bạn +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,Hình ảnh đính kèm của bạn apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,Giá trị hàng thay đổi DocType: Workflow State,Stop,dừng lại DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,Liên kết với các trang web mà bạn muốn mở. Để trống nếu bạn muốn làm cho nó một nhóm gốc. @@ -694,14 +694,14 @@ DocType: DocType,Is Single,Là Đơn apps/frappe/frappe/core/doctype/user/user.py +720,Sign Up is disabled,Đăng ký bị vô hiệu hóa apps/frappe/frappe/email/queue.py +278,{0} has left the conversation in {1} {2},{0} đã rời khỏi cuộc trò chuyện trong {1} {2} DocType: Blogger,User ID of a Blogger,User ID của một Blogger -apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Có nên vẫn còn ít nhất một hệ thống quản lý +apps/frappe/frappe/core/doctype/user/user.py +287,There should remain at least one System Manager,Nên còn ít nhất một người quản lý hệ thống DocType: GSuite Settings,Authorization Code,Mã ủy quyền DocType: PayPal Settings,Mention transaction completion page URL,Đề cập đến giao dịch URL trang hoàn thành DocType: Print Format,Align Labels to the Left,Căn Nhãn để Left DocType: Help Article,Expert,Chuyên gia DocType: Workflow State,circle-arrow-right,vòng tròn mũi tên bên phải DocType: LDAP Settings,LDAP Server Url,LDAP Server Url -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,Không thể mở ví dụ khi nó {0} là mở +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,Không thể mở ví dụ khi nó {0} là mở apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,được đặt hàng chờ để cài đặt DocType: Custom DocPerm,Custom DocPerm,tuỳ chỉnh DocPerm DocType: Newsletter,Send Unsubscribe Link,Gửi Hủy đăng ký liên kết @@ -717,8 +717,7 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like
{{ doc.name }} Delivered
","Để thêm môn học năng động, sử dụng các thẻ jinja như
 {{ doc.name }} Delivered 
" apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,App {0} đã bị xóa DocType: Custom DocPerm,Apply User Permissions,Áp dụng tài Quyền -DocType: User,Modules HTML,Modules HTML -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Thiết lập> Quản lý Quyền Người dùng +DocType: User,Modules HTML,HTML các mô đun apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,Giá trị khuyết bắt buộc DocType: DocType,Other Settings,Các thiết lập khác DocType: Social Login Keys,Frappe,sinh tố @@ -737,7 +736,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth Bearer Thông báo apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,Không có tài liệu đã chọn apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,Tiến sĩ DocType: Event,Event,Sự Kiện -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:","Trên {0}, {1} đã viết:" +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:","Trên {0}, {1} đã viết:" apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,Không thể xóa lĩnh vực tiêu chuẩn. Bạn có thể ẩn nó nếu bạn muốn DocType: Top Bar Item,For top bar,Cho thanh hàng đầu apps/frappe/frappe/utils/bot.py +148,Could not identify {0},Không thể xác định {0} @@ -751,24 +750,24 @@ DocType: Role,Desk Access,bàn truy cập DocType: Workflow State,minus,trừ apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,Lỗi Máy chủ: Vui lòng kiểm tra nhật ký máy chủ của bạn hoặc liên hệ hỗ trợ kỹ thuật. apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,Email chào mừng gửi -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,Hãy chuẩn bị hệ thống để sử dụng đầu tiên. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,Hãy chuẩn bị hệ thống để sử dụng đầu tiên. apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,Đặc sắc apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,Đã đăng ký -DocType: System Settings,Float Precision,Nổi chính xác +DocType: System Settings,Float Precision,Độ nổi chính xác apps/frappe/frappe/core/doctype/page/page.py +40,Only Administrator can edit,Chỉ có quản trị có thể chỉnh sửa apps/frappe/frappe/public/js/frappe/upload.js +64,Filename,Tên tệp apps/frappe/frappe/public/js/frappe/upload.js +64,Filename,Tên tệp DocType: DocType,Editable Grid,mạng lưới có thể chỉnh sửa -DocType: Property Setter,Property Setter,Setter tài sản +DocType: Property Setter,Property Setter,Người định cư tài sản apps/frappe/frappe/core/page/user_permissions/user_permissions.js +222,Select User or DocType to start.,Chọn người dùng hoặc DocType để bắt đầu. DocType: Web Form,Allow Print,cho phép In apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,Không phần mềm nào được cài đặt apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,Đánh dấu trường là bắt buộc DocType: Communication,Clicked,Clicked -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},Không có quyền tới '{0}' {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},Không có quyền tới '{0}' {1} DocType: User,Google User ID,Google ID của người dùng apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,Lên lịch gửi -DocType: DocType,Track Seen,Theo dõi Seen +DocType: DocType,Track Seen,đã xem theo dõi apps/frappe/frappe/desk/form/utils.py +55,This method can only be used to create a Comment,Phương pháp này chỉ có thể được sử dụng để tạo ra một Nhận xét DocType: Event,orange,trái cam apps/frappe/frappe/public/js/frappe/list/list_renderer.js +554,No {0} found,Không tìm thấy {0} @@ -781,7 +780,7 @@ DocType: Country,Geo,Geo DocType: Domain Settings,Domains,Tên miền DocType: Blog Category,Blog Category,Mục Blog apps/frappe/frappe/model/mapper.py +119,Cannot map because following condition fails: , -DocType: Role Permission for Page and Report,Roles HTML,Vai trò HTML +DocType: Role Permission for Page and Report,Roles HTML,HTML của các vai trò apps/frappe/frappe/website/doctype/website_settings/website_settings.js +84,Select a Brand Image first.,Chọn Nhãn hiệu Hình ảnh đầu tiên. apps/frappe/frappe/core/doctype/user/user_list.js +12,Active,có hiệu lực apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +13,Insert Below,Chèn phía dưới @@ -789,7 +788,7 @@ DocType: Event,Blue,Màu xanh da trời apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +167,All customizations will be removed. Please confirm.,Tất cả các tùy chỉnh sẽ được gỡ bỏ. Vui lòng xác nhận. apps/frappe/frappe/www/login.html +20,Email address or Mobile number,Địa chỉ email hoặc số điện thoại di động DocType: Page,Page HTML,Trang HTML -apps/frappe/frappe/public/js/frappe/views/treeview.js +262,Further nodes can be only created under 'Group' type nodes,Các nút khác có thể được chỉ tạo ra dưới các nút kiểu 'Nhóm' +apps/frappe/frappe/public/js/frappe/views/treeview.js +262,Further nodes can be only created under 'Group' type nodes,Các nút khác có thể chỉ có thể tạo ra dưới các nút kiểu 'Nhóm' DocType: Web Page,Header,Phần đầu apps/frappe/frappe/public/js/frappe/model/model.js +80,Unknown Column: {0},Cột không rõ: {0} DocType: Email Alert Recipient,Email By Role,Email By Vai trò @@ -812,7 +811,7 @@ DocType: Event,Saturday,Thứ bảy DocType: User,Represents a User in the system.,Đại diện cho một thành viên trong hệ thống. DocType: Communication,Label,Nhãn Hiệu apps/frappe/frappe/desk/form/assign_to.py +137,"The task {0}, that you assigned to {1}, has been closed.","Nhiệm vụ {0}, mà bạn gán cho {1}, đã bị đóng cửa." -DocType: User,Modules Access,Modules truy cập +DocType: User,Modules Access,các mô đun truy cập apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +241,Please close this window,Hãy đóng cửa sổ này DocType: Print Format,Print Format Type,Định dạng in Loại DocType: Newsletter,A Lead with this Email Address should exist,Một Lead với Địa chỉ Email này nên tồn tại @@ -835,20 +834,20 @@ DocType: Address,Kerala,Kerala DocType: File,Lft,lft DocType: User,Simultaneous Sessions,phiên đồng thời DocType: OAuth Client,Client Credentials,Giây chứng nhận khách hàng -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,Mở một mô-đun hoặc công cụ +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,Mở một mô-đun hoặc công cụ DocType: Communication,Delivery Status,Tình trạng giao DocType: Module Def,App Name,Tên ứng dụng apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,Max kích thước tập tin cho phép là {0} MB DocType: Workflow,"Field that represents the Workflow State of the transaction (if field is not present, a new hidden Custom Field will be created)","Lĩnh vực đại diện cho Nhà nước Quy trình làm việc của giao dịch (nếu trường không có mặt, một ẩn mới Trường Tuỳ chỉnh sẽ được tạo ra)" apps/frappe/frappe/utils/oauth.py +194,Email not verified with {1},Email không xác minh với {1} -DocType: Help Article,Knowledge Base Contributor,Kiến thức cơ sở Contributor +DocType: Help Article,Knowledge Base Contributor,NGười đóng góp kiến thức nền DocType: Communication,Sent Read Receipt,Gửi xác nhận đọc DocType: Feedback Request,Reference Communication,Tham chiếu truyền thông DocType: Email Queue,Unsubscribe Method,Hủy đăng ký phương pháp DocType: GSuite Templates,Related DocType,Loại văn bản liên quan apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,Chỉnh sửa để thêm nội dung -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,Chọn Ngôn ngữ -apps/frappe/frappe/__init__.py +510,No permission for {0},Không quyền hạn cho {0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,Chọn Ngôn ngữ +apps/frappe/frappe/__init__.py +509,No permission for {0},Không quyền hạn cho {0} DocType: DocType,Advanced,Nâng cao apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,Dường như khóa API hoặc API ẩn có sai sót !!! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},Tham khảo: {0} {1} @@ -870,7 +869,7 @@ DocType: Customize Form,Enter Form Type,Nhập Loại Mẫu apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,Không có bản ghi được gắn thẻ. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,Di Dòng DocType: User,Send Password Update Notification,Gửi mật khẩu thông báo Update -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Chị cẩn thận đó!" +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!","Cho phép DocType, DocType. Chị cẩn thận đó!" apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email","Các định dạng tùy chỉnh cho in ấn, Email" apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,Để cập nhật phiên bản mới DocType: Custom Field,Depends On,Phụ thuộc Bật @@ -880,9 +879,9 @@ DocType: Email Account,Always use Account's Email Address as Sender,Luôn luôn apps/frappe/frappe/templates/includes/comments/comments.html +21,Login to comment,Đăng nhập để bình luận apps/frappe/frappe/core/page/data_import_tool/data_import_tool.py +13,Start entering data below this line,Bắt đầu nhập dữ liệu dưới dòng này apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +474,changed values for {0},giá trị thay đổi cho {0} -DocType: Workflow State,retweet,retweet +DocType: Workflow State,retweet,gõ tweet lại apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +221,Specify the value of the field,Xác định giá trị của trường -DocType: Report,Disabled,Đã tắt +DocType: Report,Disabled,Đã vô hiệu hóa DocType: Workflow State,eye-close,mắt gần DocType: OAuth Provider Settings,OAuth Provider Settings,Cài đặt nhà cung cấp OAuth apps/frappe/frappe/config/setup.py +254,Applications,Ứng dụng @@ -893,7 +892,7 @@ DocType: Address,City/Town,Thành phố / thị xã apps/frappe/frappe/email/doctype/email_alert/email_alert.py +69,Cannot set Email Alert on Document Type {0},Không thể thiết lập thông báo email trên Document Type {0} DocType: Address,Is Your Company Address,Là Địa chỉ công ty của bạn apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +4,Editing Row,dòng chỉnh sửa -DocType: Workflow Action,Workflow Action Master,Workflow hành động tổng thể +DocType: Workflow Action,Workflow Action Master,CHủ hành động công việc DocType: Custom Field,Field Type,Loại lĩnh vực apps/frappe/frappe/utils/data.py +471,only.,chỉ. apps/frappe/frappe/utils/password_strength.py +117,Avoid years that are associated with you.,Tránh năm có liên quan đến bạn. @@ -909,8 +908,8 @@ apps/frappe/frappe/utils/password_strength.py +116,Avoid recent years.,Tránh nh apps/frappe/frappe/utils/nestedset.py +229,Multiple root nodes not allowed.,Nhiều nút gốc không được phép. DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Nếu được kích hoạt, người dùng sẽ được thông báo mỗi khi họ đăng nhập. Nếu không được kích hoạt, người dùng sẽ chỉ được thông báo một lần." DocType: Note,"If enabled, users will be notified every time they login. If not enabled, users will only be notified once.","Nếu được bật, người dùng sẽ được thông báo mỗi khi họ đăng nhập. Nếu không được kích hoạt, người dùng sẽ chỉ được thông báo một lần." -DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Nếu được chọn, người dùng sẽ không thấy hộp thoại xác nhận truy cập." -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +543,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Trường ID là được yêu cầu để chỉnh sửa các giá trị bằng cách sử dụng Report. Vui lòng chọn các lĩnh vực ID bằng cách sử dụng Trình chọn Cột +DocType: OAuth Client,"If checked, users will not see the Confirm Access dialog.","Nếu được kiểm tra, người dùng sẽ không thấy hộp thoại xác nhận truy cập." +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +543,ID field is required to edit values using Report. Please select the ID field using the Column Picker,Trường ID được yêu cầu để chỉnh sửa các giá trị bằng cách sử dụng Báo cáo. Vui lòng chọn các trường ID bằng cách sử dụng Trình chọn Cột apps/frappe/frappe/public/js/frappe/model/model.js +25,Comments,Thẻ chú thích apps/frappe/frappe/public/js/frappe/ui/modal.html +17,Confirm,Xác nhận apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +50,Collapse All,Thu gọn tất cả @@ -922,7 +921,7 @@ apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py + apps/frappe/frappe/email/doctype/email_account/email_account.py +44,Login Id is required,Id đăng nhập là cần thiết DocType: Website Slideshow,Website Slideshow,Trình diễn Website apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +6,No Data,Không có dữ liệu -DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Liên kết mà là trang chủ website. Các Liên kết Chuẩn (index, login, products, blog, about, contact)" +DocType: Website Settings,"Link that is the website home page. Standard Links (index, login, products, blog, about, contact)","Liên kết mà là trang chủ website. Các Liên kết Chuẩn (mục lục, đăng nhập, các sản phẩm, blog, về, liên lạc)" apps/frappe/frappe/email/doctype/email_account/email_account.py +171,Authentication failed while receiving emails from Email Account {0}. Message from server: {1},Xác thực không thành công khi nhận được email từ tài khoản email {0}. Thông điệp từ máy chủ: {1} apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +54,values and dates,giá trị và ngày DocType: Custom Field,Custom Field,Trường Tuỳ chỉnh @@ -954,16 +953,17 @@ apps/frappe/frappe/model/document.py +1087,Action Failed,thao tác thất bại apps/frappe/frappe/core/page/modules_setup/modules_setup.html +8,For User,Đối với tài DocType: Address,Assam,Assam apps/frappe/frappe/email/doctype/email_domain/email_domain.py +57,Outgoing email account not correct,tài khoản email ngoài không chính xác -apps/frappe/frappe/core/doctype/user/user.py +732,Temperorily Disabled,Temperorily tàn tật +apps/frappe/frappe/core/doctype/user/user.py +732,Temperorily Disabled,Tạm thời bị vô hiệu hóa apps/frappe/frappe/desk/page/applications/applications.py +88,{0} Installed,{0} đã cài đặt apps/frappe/frappe/contacts/doctype/contact/contact.py +76,Please set Email Address,Hãy thiết lập Địa chỉ Email -DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Nếu người dùng có bất kỳ vai trò kiểm tra, sau đó người dùng sẽ trở thành một "hệ thống tài". "Hệ thống tài" có quyền truy cập vào các máy tính để bàn" +DocType: User,"If the user has any role checked, then the user becomes a ""System User"". ""System User"" has access to the desktop","Nếu người dùng có bất kỳ vai trò nào được kiểm tra, sau đó người dùng sẽ trở thành một ""người dùng hệ thống"". ""Người dùng hệ thống"" có quyền truy cập vào các máy tính để bàn" DocType: System Settings,Date and Number Format,định dạng ngày và số apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max attachment size is {0}MB,Max kích thước tập tin đính kèm là {0} MB apps/frappe/frappe/model/document.py +902,one of,Một trong apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,Vui lòng chọn tệp để sao chép apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,Kiểm tra một khoảnh khắc apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,Hiện tags +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User","Nếu Áp dụng Quyền Người Sử Dụng Nghiêm Trọng được kiểm tra và Quyền của Người Dùng được định nghĩa cho một DocType cho Người dùng, thì tất cả các tài liệu có giá trị của liên kết trống, sẽ không được hiển thị cho Người dùng đó" DocType: Address,Billing,thanh toán DocType: Email Queue,Not Sent,Không gửi DocType: Web Form,Actions,Các thao tác @@ -982,7 +982,7 @@ apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Tải lên apps/frappe/frappe/public/js/frappe/upload.js +203,Uploading,Tải lên apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +84,Please save the document before assignment,Vui lòng lưu tài liệu trước khi chuyển nhượng DocType: Website Settings,Address and other legal information you may want to put in the footer.,Địa chỉ và thông tin pháp lý khác mà bạn có thể muốn đặt ở chân. -DocType: Website Sidebar Item,Website Sidebar Item,Website Sidebar mục +DocType: Website Sidebar Item,Website Sidebar Item,Mục thanh bên của trang web apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +44,{0} records updated,{0} bản ghi được cập nhật DocType: PayPal Settings,PayPal Settings,Cài đặt PayPal apps/frappe/frappe/core/page/permission_manager/permission_manager.js +48,Select Document Type,Chọn kiểu tài liệu @@ -994,6 +994,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,trong sáng apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,Mỗi sự kiện ngày sẽ kết thúc vào cùng ngày. DocType: Communication,User Tags,Các lần đánh dấu người sử dụng apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,Những hình ảnh dài +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Thiết lập> Người dùng DocType: Workflow State,download-alt,tải-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},Tải App {0} DocType: Communication,Feedback Request,Phản hồi Yêu cầu @@ -1011,7 +1012,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,Sao lưu apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,Add Contact DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,Tùy chọn: Luôn gửi đến các id. Mỗi địa chỉ email trên một hàng mới -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,Ẩn Chi tiết +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,Ẩn Chi tiết DocType: Workflow State,Tasks,nhiệm vụ DocType: Event,Tuesday,Thứ ba DocType: Blog Settings,Blog Settings,Thiết lập Blog @@ -1025,38 +1026,39 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +51,Go,Đi DocType: OAuth Authorization Code,Invalid,không hợp lệ DocType: ToDo,Due Date,Ngày đáo hạn apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +99,Quarter Day,ba tháng một lần -DocType: Social Login Keys,Google Client Secret,Google Khách hàng bí mật -DocType: Website Settings,Hide Footer Signup,Ẩn Footer Đăng ký +DocType: Social Login Keys,Google Client Secret,Khách hàng bí mật của Google +DocType: Website Settings,Hide Footer Signup,Ẩn đăng ký dưới cùng apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this document,hủy tài liệu này -apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Viết một tập tin Python trong cùng thư mục này được lưu lại và quay trở lại cột và kết quả. -DocType: DocType,Sort Field,Sắp xếp Dòng +apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,Viết một tập tin Python trong cùng thư mục này vào chỗ được lưu lại và quay trở lại cột và xem kết quả. +DocType: DocType,Sort Field,Sắp xếp lĩnh vực DocType: Razorpay Settings,Razorpay Settings,Cài đặt Razorpay -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,Sửa Lọc -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,Lĩnh vực {0} kiểu {1} có thể không được bắt buộc -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User","ví dụ. Nếu áp dụng quyền hạn người dụng đã được kiểm tra cho báo cáo loại văn bản nhưng không có quyền hạn nào được xác định cho báo báo với người dùng, thì tất cả các báo cáo sẽ được hiển thị với người dùng đó" +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,Sửa bộ lọc +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,Lĩnh vực {0} kiểu {1} có thể không được bắt buộc apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,Bổ sung thêm -apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Ẩn Chart +apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,Ẩn Bảng DocType: System Settings,Session Expiry Mobile,Hạn sử dụng phiên Mobile apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,tìm kiếm kết quả cho apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +850,Select To Download:,Để chọn Download: apps/frappe/frappe/core/page/permission_manager/permission_manager.js +427,If {0} is permitted,Nếu {0} được phép DocType: Custom DocPerm,If user is the owner,Nếu người dùng là chủ sở hữu ,Activity,Hoạt động -DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Giúp đỡ: Để liên kết đến kỷ lục khác trong hệ thống, sử dụng ""# Mẫu / Lưu ý / [Chú ý Tên]"" như URL liên kết. (Không sử dụng ""http://"")" +DocType: Note,"Help: To link to another record in the system, use ""#Form/Note/[Note Name]"" as the Link URL. (don't use ""http://"")","Giúp đỡ: Để liên kết đến bản ghi khác trong hệ thống, sử dụng ""# Mẫu / Lưu ý / [Chú ý Tên]"" như URL liên kết. (Không sử dụng ""http://"")" apps/frappe/frappe/utils/password_strength.py +94,Let's avoid repeated words and characters,Hãy tránh những từ và ký tự lặp đi lặp lại DocType: Communication,Delayed,Bị hoãn apps/frappe/frappe/config/setup.py +128,List of backups available for download,Danh sách các bản sao lưu có sẵn để tải về apps/frappe/frappe/www/login.html +89,Sign up,Đăng ký DocType: Test Runner,Output,Đầu ra +DocType: Email Alert,Set Property After Alert,Đặt thuộc tính Sau khi Thông báo apps/frappe/frappe/config/setup.py +226,Add fields to forms.,Thêm các lĩnh vực với các hình thức. apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,Có vẻ như có gì đó không ổn với cấu hình Paypal của trang web này. DocType: File,rgt,rgt DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,lá DocType: Portal Menu Item,Portal Menu Item,Portal Menu Item -DocType: User Email,Email ID,Email ID +DocType: User Email,Email ID,Tài khoản Email +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",Nếu Quyền Sử Dụng Người Sử Dụng được kiểm tra cho Báo cáo DocType nhưng không có Quyền Người Sử Dụng nào được Định nghĩa cho Báo Cáo cho Người Sử Dụng thì tất cả các Báo cáo sẽ được hiển thị cho Người dùng đó DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,Một danh sách các nguồn App Khách hàng sẽ có quyền truy cập đến sau khi người dùng cho phép nó.
ví dụ như dự án -DocType: Translation,Translated Text,Translated Text +DocType: Translation,Translated Text,văn bản đã được dịch DocType: Contact Us Settings,Query Options,Tùy chọn truy vấn apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +159,Import Successful!,Nhập khẩu thành công! apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +40,Updating Records,Đang cập nhật các bản ghi @@ -1067,12 +1069,12 @@ apps/frappe/frappe/core/doctype/user/user.py +247,Welcome to {0},Chào mừng b apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +19,Add,Thêm apps/frappe/frappe/www/me.html +38,Profile,Hồ sơ DocType: Communication,Sent or Received,Gửi hoặc nhận -DocType: DefaultValue,Key,Chìa khoá +DocType: DefaultValue,Key,Chính DocType: Address,Contacts,Danh bạ DocType: System Settings,Setup Complete,thiết lập hoàn thành apps/frappe/frappe/config/setup.py +66,Report of all document shares,Báo cáo của tất cả các cổ phiếu tài liệu apps/frappe/frappe/www/update-password.html +18,New Password,Mật khẩu mới -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,Lọc {0} mất tích +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,Lọc {0} mất tích apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,Xin lỗi! Bạn không thể xóa nhận xét tự động tạo ra DocType: Website Theme,Style using CSS,Phong cách sử dụng CSS apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,Tài liệu tham khảo DocType @@ -1100,8 +1102,8 @@ DocType: ToDo,Medium,Trung bình DocType: Customize Form,Customize Form,Tùy chỉnh mẫu apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +104,Mandatory field: set role for,lĩnh vực bắt buộc: thiết lập vai trò cho DocType: Currency,A symbol for this currency. For e.g. $,Biểu tượng đồng tiền này. Ví dụ như $ -apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Khung sinh tố -apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Tên của {0} không thể {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/about.js +4,Frappe Framework,Khung Frappe +apps/frappe/frappe/model/naming.py +174,Name of {0} cannot be {1},Tên của {0} không thể là {1} apps/frappe/frappe/config/setup.py +46,Show or hide modules globally.,Hiển thị hoặc ẩn các mô-đun trên toàn cầu. apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +33,From Date,Từ ngày apps/frappe/frappe/core/doctype/version/version_view.html +47,Success,Thành công @@ -1126,39 +1128,39 @@ DocType: User,Block Modules,Khối mô đun apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,Lùi lại dài đến {0} cho {1} 'trong' {2} '; Thiết lập độ dài như {3} sẽ gây cụt của dữ liệu. DocType: Print Format,Custom CSS,CSS Tuỳ chỉnh apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,Thêm một lời nhận xét -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},Bỏ qua: {0} đến {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},Bỏ qua: {0} đến {1} DocType: Address,Gujarat,Gujarat -apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Đăng nhập lỗi về các sự kiện tự động (lịch). +apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,Lỗi đăng nhập của các sự kiện tự động (người lập trình) apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),Không phải là một giá trị định giới bằng dấu phẩy (CSV file) DocType: Address,Postal,Bưu chính DocType: Email Account,Default Incoming,Mặc định Incoming DocType: Workflow State,repeat,lặp lại DocType: Website Settings,Banner,Biểu ngữ DocType: Role,"If disabled, this role will be removed from all users.","Nếu vô hiệu hóa, vai trò này sẽ được gỡ bỏ khỏi tất cả người dùng." -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,Giúp đỡ về Tìm kiếm +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,Giúp đỡ về Tìm kiếm apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,Đăng ký nhưng bị loại -DocType: DocType,Hide Copy,Sao chép ẩn +DocType: DocType,Hide Copy,Ẩn sao chép apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,Xóa tất cả các vai trò apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +114,{0} generated on {1},{0} tạo ra trên {1} apps/frappe/frappe/model/base_document.py +361,{0} must be unique,{0} phải là duy nhất -apps/frappe/frappe/permissions.py +274,Row,Số luồng -DocType: DocType,Track Changes,track Changes +apps/frappe/frappe/permissions.py +274,Row,Hàng +DocType: DocType,Track Changes,theo dõi các thay đổi DocType: Workflow State,Check,Kiểm tra DocType: Razorpay Settings,API Key,API Key DocType: Email Account,Send unsubscribe message in email,Gửi tin nhắn hủy bỏ đăng ký trong email apps/frappe/frappe/public/js/frappe/form/toolbar.js +81,Edit Title,Sửa Tiêu đề -apps/frappe/frappe/desk/page/modules/modules.js +24,Install Apps,cài đặt Apps +apps/frappe/frappe/desk/page/modules/modules.js +24,Install Apps,cài đặt các ứng dụng apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +66,Fieldname which will be the DocType for this link field.,Fieldname đó sẽ là DOCTYPE cho trường liên kết này. apps/frappe/frappe/config/desk.py +14,Documents assigned to you and by you.,Tài liệu được giao cho bạn và bởi bạn. DocType: User,Email Signature,Chữ ký email -DocType: Website Settings,Google Analytics ID,Google Analytics ID +DocType: Website Settings,Google Analytics ID,ID Phân tích Google DocType: Website Theme,Link to your Bootstrap theme,Liên kết với chủ đề Bootstrap của bạn DocType: Custom DocPerm,Delete,Xóa apps/frappe/frappe/public/js/frappe/views/treeview.js +212,New {0},Mới {0} apps/frappe/frappe/core/page/user_permissions/user_permissions.js +199,No User Restrictions found.,Không có hạn chế người dùng được tìm thấy apps/frappe/frappe/email/doctype/email_account/email_account_list.js +10,Default Inbox,Mặc định Inbox apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +58,Make a new,Làm mới -DocType: Print Settings,PDF Page Size,PDF Trang Kích +DocType: Print Settings,PDF Page Size,PDF kích thước trang apps/frappe/frappe/public/js/frappe/list/list_permission_footer.html +20,Note: fields having empty value for above criteria are not filtered out.,Lưu ý: các trường có giá trị rỗng cho tiêu chí ở trên không được lọc ra. DocType: Communication,Recipient Unsubscribed,người nhận hủy đăng ký DocType: Feedback Request,Is Sent,Đã được gửi @@ -1167,11 +1169,11 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,Tại apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,Địa chỉ DocType: Communication,Shared,Chia sẻ -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,Đính kèm tài liệu In +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,Đính kèm tài liệu In DocType: Bulk Update,Field,Cánh đồng DocType: Communication,Received,Nhận được -DocType: Social Login Keys,Google Client ID,Google Khách hàng ID -DocType: Email Alert,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Trigger trên phương pháp giá trị như "before_insert", "after_update", vv (sẽ phụ thuộc vào DOCTYPE chọn)" +DocType: Social Login Keys,Google Client ID,ID khách hàng Google +DocType: Email Alert,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)","Sử dụng với các phương pháp có giá trị như ""before_insert"", ""after_update"", vv (sẽ phụ thuộc vào kiểu văn bản được chọn)" apps/frappe/frappe/core/doctype/user/user.py +115,Adding System Manager to this User as there must be atleast one System Manager,Thêm hệ thống quản lý để tài này phải có ít nhất một hệ thống quản lý DocType: DocField,Attach Image,Hình ảnh đính kèm apps/frappe/frappe/core/page/usage_info/usage_info.html +67,Space usage,sử dụng không gian @@ -1188,50 +1190,50 @@ DocType: Report,Query Report,Báo cáo truy vấn DocType: User,Set New Password,Set Password mới DocType: User,Github User ID,Github User ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,Nếu loại tài liệu -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},Ứng dụng không rõ {0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s không phải là một mẫu báo cáo hợp lệ. Mẫu báo cáo nên \ một trong những %s sau DocType: Communication,Chat,Trò chuyện -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},Fieldname {0} xuất hiện nhiều lần trong hàng {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},Fieldname {0} xuất hiện nhiều lần trong hàng {1} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0} từ {1} đến {2} trong hàng # {3} DocType: Communication,Expired,Hết hạn DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),Số cột cho một trường trong một lưới (Tổng số cột trong một mạng lưới nên được ít hơn 11) DocType: DocType,System,Hệ thống DocType: Web Form,Max Attachment Size (in MB),Max Size Attachment (tính bằng MB) apps/frappe/frappe/www/login.html +93,Have an account? Login,Có một tài khoản? Đăng nhập -apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Unknown In Format: {0} +apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},Định dạng in không xác định: {0} DocType: Workflow State,arrow-down,mũi tên xuống apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,Sụp đổ -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},Người sử dụng không được phép xóa {0}: {1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},Người sử dụng không được phép xóa {0}: {1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,Lần cập nhật cuối vào DocType: Help Article,Likes,các lượt thích -DocType: Website Settings,Top Bar,Top Bar +DocType: Website Settings,Top Bar,Thanh trên cùng DocType: GSuite Settings,Script Code,Mã bản thảo apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Tạo Email của Người dùng apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,Tạo Email của Người dùng -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,Không quyền hạn nào được xác định +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,Không quyền hạn nào được xác định apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,Cài đặt chung: Người dùng sẽ chỉ có thể chọn biểu tượng kiểm tra apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0} không tìm thấy DocType: Custom Role,Custom Role,Vai trò tùy chỉnh apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,Trang chủ / kiểm tra Thư mục 2 -DocType: System Settings,Ignore User Permissions If Missing,Bỏ qua tài Permissions Nếu Thiếu -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,Vui lòng lưu tài liệu trước khi tải lên. +DocType: System Settings,Ignore User Permissions If Missing,Bỏ qua quyền hạn người dùng nếu thiếu +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,Vui lòng lưu tài liệu trước khi tải lên. apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,Nhập mật khẩu của bạn DocType: Dropbox Settings,Dropbox Access Secret,Dropbox truy cập bí mật apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,Thêm bình luận khác -apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Sửa DocType +apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,Sửa Loại tài liệu apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,Đã hủy đăng ký Bản tin -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,Gấp phải đi trước một Break Mục +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,Sự sắp xếp phải đến trước việc ngắt phân đoạn apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,Sửa đổi lần cuối bởi DocType: Workflow State,hand-down,tay xuống DocType: Address,GST State,bang GST -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,"{0}: Không thể thiết lập Hủy bỏ mà không chọn ""Duyệt""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,"{0}: Không thể thiết lập Hủy bỏ mà không chọn ""Duyệt""" DocType: Website Theme,Theme,Chủ đề apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,Có một số lỗi. DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,Chuyển hướng URI hạn chế tới mã AUth DocType: DocType,Is Submittable,CÓ thể đệ trình -apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Giá trị cho một lĩnh vực kiểm tra có thể là 0 hoặc 1 +apps/frappe/frappe/custom/doctype/property_setter/property_setter.js +7,Value for a check field can be either 0 or 1,Giá trị cho một đoạn kiểm tra có thể là 0 hoặc 1 apps/frappe/frappe/model/document.py +634,Could not find {0},Không thể tìm thấy {0} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +54,Download in Excel File Format,Tải xuống ở định dạng tệp Excel apps/frappe/frappe/core/page/data_import_tool/exporter.py +265,Column Labels:,Nhãn cột: @@ -1242,10 +1244,10 @@ DocType: Event,Red,Đỏ DocType: Workflow State,Tag,Tag DocType: Custom Script,Script,bản thảo apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,Thiết lập của tôi -DocType: Website Theme,Text Color,Text Color -DocType: Desktop Icon,Force Show,Force hiện +DocType: Website Theme,Text Color,Màu văn bản +DocType: Desktop Icon,Force Show,Hiển thị sức ảnh hưởng apps/frappe/frappe/auth.py +78,Invalid Request,Yêu cầu không hợp lệ -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,Hình thức này không có bất kỳ đầu vào +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,Hình thức này không có bất kỳ đầu vào apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},Thời hạn Phiên làm việc phải có dạng {0} DocType: Website Sidebar Item,Group,Nhóm DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","Chọn target = ""_blank"" để mở một trang mới." @@ -1254,18 +1256,17 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,Bỏ qua mã hóa lỗi. DocType: Workflow State,wrench,cờ lê apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,Không đặt -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,Thiết lập> Người dùng DocType: Authentication Log,Date,Ngày DocType: Website Settings,Disable Signup,Vô hiệu hóa đăng ký apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,Giữ yên trong khi hệ thống đang được thiết lập. Điều này có thể mất vài phút -DocType: Email Queue,Email Queue,Queue email +DocType: Email Queue,Email Queue,Hàng chờ email apps/frappe/frappe/core/page/desktop/desktop.py +12,Add Employees to Manage Them,Thêm nhân viên để quản lý chúng DocType: Address,Haryana,Haryana -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,Vai trò có thể được thiết lập cho người sử dụng từ trang tài của họ. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7,Roles can be set for users from their User page.,Vai trò có thể được thiết lập cho người sử dụng từ trang người dùng của họ. apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,Thêm bình luận DocType: DocField,Mandatory,Bắt buộc apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,Mô- đun để xuất khẩu -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0}: Không có quyền cơ bản nào được thiết lập +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0}: Không có quyền cơ bản nào được thiết lập apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,đăng ký của bạn sẽ hết hạn vào ngày {0}. apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},Tải về liên kết cho sao lưu của bạn sẽ được gửi qua email vào địa chỉ email sau: {0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend","Ý Nghĩa của Gửi, Hủy bỏ, sửa đổi" @@ -1278,11 +1279,11 @@ DocType: Desktop Icon,query-report,truy vấn báo cáo apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},Gán cho {0}: {1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,Bộ lọc lưu DocType: DocField,Percent,Phần trăm -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,Xin hãy thiết lập bộ lọc +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,Xin hãy thiết lập bộ lọc apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,Liên kết với DocType: Workflow State,book,sách DocType: Website Settings,Landing Page,Trang hạ cánh -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,Lỗi trong Tuỳ chỉnh Script +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,Lỗi trong Tuỳ chỉnh Script apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0} Tên apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.","Yêu cầu nhập khẩu xếp hàng đợi. Điều này có thể mất một vài phút, hãy kiên nhẫn." apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,Quyền không thiết lập cho các tiêu chí này. @@ -1294,18 +1295,17 @@ DocType: System Settings,Allow Login using Mobile Number,Cho phép đăng nhập apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,Bạn không có đủ quyền truy cập tài nguyên này. Hãy liên hệ với quản lý của bạn để có được quyền truy cập. DocType: Custom Field,Custom,Tuỳ chỉnh apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,Thiết lập thông báo email dựa trên các tiêu chí khác nhau. -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},Bài viết đệ dưới {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},Bài viết đệ dưới {0} DocType: Email Alert,Send alert if date matches this field's value,Gửi cảnh báo nếu ngày phù hợp với giá trị của lĩnh vực này -DocType: Workflow,Transitions,Transitions +DocType: Workflow,Transitions,Chuyển tiếp apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,Di {0} và xóa tất cả dữ liệu? apps/frappe/frappe/desk/page/activity/activity_row.html +34,{0} {1} to {2},{0} {1} đến {2} DocType: User,Login After,Sau khi đăng nhập DocType: Print Format,Monospace,đơn cách DocType: Letter Head,Printing,In ấn DocType: Workflow State,thumbs-up,trỏ lên -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản Email chưa được thiết lập. Hãy tạo Tài khoản Email mới từ Thiết lập> Email> Tài khoản Email DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,Chính xác nên được giữa 1 và 6 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,Chính xác nên được giữa 1 và 6 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},Fw: {0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,và DocType: Error Snapshot,Frames,Khung @@ -1314,7 +1314,7 @@ DocType: About Us Team Member,Image Link,Liên kết hình ảnh DocType: Auto Email Report,Report Filters,Bộ lọc báo cáo apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,hiện nay DocType: Workflow State,step-backward,bước lùi -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{app_title} +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{app_title} apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,Xin vui lòng thiết lập các phím truy cập Dropbox trong cấu hình trang web của bạn apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,Xóa hồ sơ này để cho phép gửi đến địa chỉ email này apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,Chỉ các trường bắt buộc là cần thiết để làm hồ sơ mới. Bạn có thể xóa các cột không bắt buộc nếu bạn muốn. @@ -1323,34 +1323,32 @@ apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +304,Payment apps/frappe/frappe/utils/data.py +734,"Filter must have 4 values (doctype, fieldname, operator, value): {0}","Bộ lọc phải có 4 định giá (kiểu văn bản, tên trường , người điều khiển, định giá): {0}" apps/frappe/frappe/utils/bot.py +89,show,hiển thị DocType: Address Template,Address Template,Địa chỉ Template -DocType: Workflow State,text-height,văn bản chiều cao +DocType: Workflow State,text-height,chiều cao văn bản DocType: Web Form Field,Max Length,Độ dài tối đa DocType: Workflow State,map-marker,đánh dấu bản đồ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +39,Submit an Issue,Nộp cho quản trị DocType: Event,Repeat this Event,Lặp lại sự kiện này DocType: Address,Maintenance User,Bảo trì tài khoản -apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +660,Sorting Preferences,Tùy chọn sắp xếp +apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +660,Sorting Preferences,Sắp xếp theo ưu tiên apps/frappe/frappe/utils/password_strength.py +124,Avoid dates and years that are associated with you.,Tránh ngày và năm đó được liên kết với bạn. DocType: Custom DocPerm,Amend,Sửa đổi DocType: File,Is Attachments Folder,Là thư mục đính kèm apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,Mở rộng tất cả apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,Tài khoản đăng nhập hợp lệ được yêu cầu apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,Mở lại -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,Bạn đã huỷ bỏ thanh toán -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,Vui lòng chọn một tập tin csv hợp lệ với các dữ liệu +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,Vui lòng chọn một tập tin csv hợp lệ với các dữ liệu apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0} hủy chia sẻ tài liệu này với {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,Tình trạng tài liệu chuyển đổi từ {0} đến {1} không được phép DocType: DocType,"Make ""name"" searchable in Global Search","Tạo ""tên"" tìm kiếm trong toàn cầu Tìm kiếm" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +130,Setting Up,Thiết lập -apps/frappe/frappe/core/doctype/version/version_view.html +74,Row # ,Row # -apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically generated reply,Đây là một thư trả lời tự động tạo ra +apps/frappe/frappe/core/doctype/version/version_view.html +74,Row # ,Hàng # +apps/frappe/frappe/templates/emails/auto_reply.html +5,This is an automatically generated reply,Đây là một phản hồi được tự động tạo ra DocType: Help Category,Category Description,Category Description apps/frappe/frappe/model/document.py +526,Record does not exist,Bản ghi không tồn tại apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,Giá trị ban đầu -DocType: Help Category,Help Category,Giúp loại +DocType: Help Category,Help Category,Phân loại trợ giúp apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,Người sử dụng {0} bị vô hiệu hóa apps/frappe/frappe/www/404.html +8,Page missing or moved,Trang bị mất hoặc chuyển -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,Chỉnh sửa các thuộc tính {0} DocType: DocType,Route,tuyến đường apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,thiết lập cổng thanh toán Razorpay DocType: DocField,Name,Tên @@ -1358,8 +1356,8 @@ apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for you apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Tìm kiếm tài liệu apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,Tìm kiếm tài liệu DocType: OAuth Authorization Code,Valid,Có hiệu lực -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,Mở liên kết -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,Ngôn ngữ của bạn +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,Mở liên kết +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,Ngôn ngữ của bạn apps/frappe/frappe/desk/form/load.py +46,Did not load,Không tải apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,Thêm dòng DocType: Tag Category,Doctypes,doctypes @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,Yêu cầu ph DocType: Address,Lakshadweep Islands,Quần Đảo Lakshadweep apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,Có thể Viết apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.","Một số tài liệu, giống như một hóa đơn, nên không thể thay đổi một lần thức. Trạng thái cuối cùng cho các tài liệu như vậy được gọi là Đăng. Bạn có thể hạn chế những vai trò có thể Submit." -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,Bạn không được phép export báo cáo này +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,Bạn không được phép xuất báo cáo này apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,1 vật liệu được chọn DocType: Newsletter,Test Email Address,Địa chỉ Email kiểm tra DocType: ToDo,Sender,Người gửi @@ -1383,7 +1381,7 @@ apps/frappe/frappe/templates/includes/comments/comments.html +27,Leave a Comment DocType: Web Page,Description for search engine optimization.,Mô tả cho tối ưu hóa công cụ tìm kiếm. apps/frappe/frappe/website/doctype/help_article/templates/help_article.html +20,More articles on {0},Xem thêm bài viết về {0} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +34,Download Blank Template,Tải Mẫu trống -DocType: Web Form Field,Page Break,Phân trang +DocType: Web Form Field,Page Break,Ngắt trăng DocType: System Settings,Allow only one session per user,Chỉ cho phép một phiên mỗi người dùng apps/frappe/frappe/core/doctype/file/file_list.js +128,Copy,Sao chép apps/frappe/frappe/core/doctype/file/test_file.py +74,Home/Test Folder 1/Test Folder 3,Trang chủ / Kiểm tra Thư mục 1 / Kiểm tra thư mục 3 @@ -1392,7 +1390,7 @@ apps/frappe/frappe/public/js/frappe/views/calendar/calendar.js +66,Select or dra DocType: DocField,In Filter,Bộ lọc trong apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +32,Kanban,Kanban DocType: DocType,Show in Module Section,Hiện trong Module Mục -DocType: Website Theme,Footer Color,Footer Màu +DocType: Website Theme,Footer Color,Phần chân của bảng màu apps/frappe/frappe/core/doctype/communication/communication.js +53,Relink,relink apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +68,Seems ldap is not installed on system.,Dường như LDAP chưa được cài đặt trong hệ thống apps/frappe/frappe/www/feedback.py +39,Invalid Reference,Tài liệu tham khảo không hợp lệ @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,nhập .zip apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,tài liệu ID DocType: Print Settings,Letter,Chữ -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,lĩnh vực hình ảnh phải được loại Đính kèm hình ảnh +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,trường hình ảnh phải được loại Đính kèm hình ảnh DocType: DocField,Columns,Cột DocType: Async Task,Succeeded,Thành công apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},Trường bắt buộc là cần thiết trong {0} @@ -1426,7 +1424,7 @@ DocType: User,Defaults,Mặc định DocType: Feedback Request,Feedback Submitted,phản hồi được gửi apps/frappe/frappe/public/js/frappe/model/model.js +510,Merge with existing,Kết hợp với hiện tại DocType: User,Birth Date,Ngày sinh -DocType: Dynamic Link,Link Title,link Title +DocType: Dynamic Link,Link Title,Tiêu đề đường dẫn DocType: Workflow State,fast-backward,nhanh chóng lạc hậu DocType: Address,Chandigarh,Chandigarh DocType: DocShare,DocShare,DocShare @@ -1447,7 +1445,7 @@ apps/frappe/frappe/www/feedback.html +96,Please give a detailed feebdack.,Xin vu DocType: Currency,"1 Currency = [?] Fraction For e.g. 1 USD = 100 Cent","1 đơn vị tiền tệ = [?] phân số với ví dụ 1 USD = 100 Cent" -apps/frappe/frappe/core/doctype/user/user.py +733,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Quá nhiều người sử dụng đã đăng ký gần đây, do việc đăng ký là người tàn tật. Vui lòng thử lại trong một giờ" +apps/frappe/frappe/core/doctype/user/user.py +733,"Too many users signed up recently, so the registration is disabled. Please try back in an hour","Quá nhiều người sử dụng đã đăng ký gần đây, do việc đăng ký bị vô hiệu hóa. Vui lòng thử lại trong một giờ" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +375,Add New Permission Rule,Add New phép tắc apps/frappe/frappe/public/js/frappe/form/link_selector.js +26,You can use wildcard %,Bạn có thể sử dụng ký tự đại diện% apps/frappe/frappe/public/js/frappe/upload.js +271,"Only image extensions (.gif, .jpg, .jpeg, .tiff, .png, .svg) allowed","Chỉ có phần mở rộng hình ảnh (.gif, .jpg, .jpeg, .tiff, .png, .svg) cho phép" @@ -1456,16 +1454,16 @@ DocType: DocType,Database Engine,bộ máy cơ sở dữ liệu DocType: Customize Form,"Fields separated by comma (,) will be included in the ""Search By"" list of Search dialog box","Fields cách nhau bởi dấu phẩy (,) sẽ được bao gồm trong "Tìm Kiếm Theo" danh sách các hộp thoại Search" apps/frappe/frappe/website/doctype/website_theme/website_theme.py +35,Please Duplicate this Website Theme to customize.,Hãy nhân đôi nền website này để tùy chỉnh. DocType: Address,Meghalaya,Mehhalaya -DocType: DocField,Text Editor,Text Editor +DocType: DocField,Text Editor,Trình soạn thảo văn bản apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,Cài đặt cho Giới thiệu trang. apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,Sửa Tuỳ chỉnh HTML DocType: Error Snapshot,Error Snapshot,Lỗi Snapshot -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,Trong +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,Trong DocType: Email Alert,Value Change,Thay đổi giá trị DocType: Standard Reply,Standard Reply,Tiêu chuẩn Trả lời -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Chiều rộng của hộp nhập +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,Chiều rộng của hộp nhập liệu DocType: Address,Subsidiary,Công ty con -DocType: System Settings,In Hours,Trong Hours +DocType: System Settings,In Hours,Trong các giờ apps/frappe/frappe/public/js/frappe/list/list_view.js +704,With Letterhead,Với tiêu đề trang apps/frappe/frappe/email/smtp.py +192,Invalid Outgoing Mail Server or Port,Mail server đầu ra không hợp lệ hoặc Cảng tàu DocType: Custom DocPerm,Write,Viết @@ -1473,15 +1471,15 @@ apps/frappe/frappe/core/doctype/report/report.py +37,Only Administrator allowed apps/frappe/frappe/public/js/frappe/form/save.js +13,Updating,Đang cập nhật DocType: File,Preview,Xem trước apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" is mandatory. Please specify value to be updated",Dòng "giá trị" là bắt buộc. Hãy xác định giá trị được cập nhật -DocType: Customize Form,Use this fieldname to generate title,Sử dụng fieldname này để tạo tiêu đề +DocType: Customize Form,Use this fieldname to generate title,Sử dụng đoạn tên này để tạo tiêu đề apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,Nhập Email Từ apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,Mời như tài -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,Chọn File đính kèm +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,Chọn File đính kèm apps/frappe/frappe/model/naming.py +94, for {0},cho {0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,Có lỗi. Hãy báo cáo này. -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,Bạn không được phép in tài liệu này +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,Bạn không được phép in tài liệu này apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,Hãy thiết lập giá trị bộ lọc trong bảng Báo cáo Filter. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,Tải Báo cáo +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,Tải Báo cáo apps/frappe/frappe/limits.py +72,Your subscription will expire today.,đăng ký của bạn sẽ hết hạn ngày hôm nay. DocType: Page,Standard,Tiêu chuẩn apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,Tập tin đính kèm @@ -1511,18 +1509,18 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,Mở rộng khu vực DocType: LDAP Settings,Base Distinguished Name (DN),Cơ sở tên phân biệt (DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,Để lại cuộc trò chuyện này -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},Tùy chọn không được đặt cho trường liên kết {0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},Tùy chọn không được đặt cho trường liên kết {0} DocType: Customize Form,"Must be of type ""Attach Image""",Phải là loại "Đính kèm hình ảnh" apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,Bỏ chọn tất cả -apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Bạn không thể bỏ 'Chỉ xem ""cho trường {0}" -DocType: Auto Email Report,Zero means send records updated at anytime,Số 0 nghĩa là gửi bản ghi cập nhật bất cứ lúc nào -DocType: Auto Email Report,Zero means send records updated at anytime,Zero nghĩa là gửi bản ghi cập nhật bất cứ lúc nào +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},"Bạn không thể bỏ 'Chỉ xem ""cho đoạn {0}" +DocType: Auto Email Report,Zero means send records updated at anytime,Số 0 nghĩa là gửi các bản ghi cập nhật bất cứ lúc nào +DocType: Auto Email Report,Zero means send records updated at anytime,Zero nghĩa là gửi các bản ghi cập nhật bất cứ lúc nào apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +22,Complete Setup,Hoàn thành cài đặt DocType: Workflow State,asterisk,dấu apps/frappe/frappe/core/page/data_import_tool/exporter.py +62,Please do not change the template headings.,Xin vui lòng không thay đổi các tiêu đề mẫu. DocType: Communication,Linked,Liên kết apps/frappe/frappe/public/js/frappe/form/save.js +85,Enter the name of the new {0},Nhập tên của {0} mới -DocType: User,Frappe User ID,Sinh tố User ID +DocType: User,Frappe User ID,ID người dùng của Frappe apps/frappe/frappe/config/desk.py +44,Activity log of all users.,Nhật ký hoạt động của tất cả người dùng DocType: Workflow State,shopping-cart,mua sắm giỏ hàng apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Week,Tuần @@ -1548,15 +1546,15 @@ apps/frappe/frappe/config/website.py +63,List of themes for Website.,Danh sách apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +84,Successfully Updated,Cập nhật thành công DocType: Authentication Log,Logout,Đăng xuất apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +26,Permissions at higher levels are Field Level permissions. All Fields have a Permission Level set against them and the rules defined at that permissions apply to the field. This is useful in case you want to hide or make certain field read-only for certain Roles.,"Quyền hạn ở các cấp độ cao hơn chính là các quyền hạn cho cấp độ các trường, Tất cả các trường đều có cấp độ quyền hạn được thiết lập và các quy tắc được xác định với các quyền hạn đó để áp dụng cho trường. Điều này rất hữu dụng trong trường hợp bạn muốn ẩn hoặc tạo một trường chắc chắn chỉ đọc cho những quy tắc rõ ràng" -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Nếu những chỉ dẫn mà không hữu ích, hãy thêm vào đề xuất của bạn về các vấn đề GitHub." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +38,"If these instructions where not helpful, please add in your suggestions on GitHub Issues.","Nếu những chỉ dẫn không hữu ích, hãy thêm vào đề xuất của bạn về các vấn đề GitHub." DocType: Workflow State,bookmark,thẻ đánh dấu -apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not include '/' (slash),Tên thư mục không nên bao gồm '/' (slash) +apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not include '/' (slash),Tên thư mục không nên bao gồm '/' (đoạn cắt) DocType: Note,Note,Ghi chú apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,Báo cáo lỗi apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,Các trường hợp phản hồi không phù hợp với -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,Trường của dòng thời gian phải là một trường tên hợp lệ +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,Trường của dòng thời gian phải là một trường tên hợp lệ DocType: Currency,Symbol,Biểu tượng -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,Hàng # {0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,Hàng # {0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,Mật khẩu mới đã được email apps/frappe/frappe/auth.py +245,Login not allowed at this time,Đăng nhập không được phép tại thời điểm này DocType: Email Account,Email Sync Option,Đồng bộ hóa email Tùy chọn @@ -1578,8 +1576,8 @@ DocType: DocField,Text,Vãn bản apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,Tiêu chuẩn để trả lời các truy vấn thông thường. apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,Mặc định gửi DocType: Workflow State,volume-off,tắt âm lượng -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},đã thích bởi {0} -DocType: Footer Item,Footer Item,Footer mục +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},đã thích bởi {0} +DocType: Footer Item,Footer Item,Phần chân mẫu hàng ,Download Backups,Tải Backups apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,Trang chủ / kiểm tra thư mục 1 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +75,"Do not update, but insert new records.","Không cập nhật, nhưng chèn các bản ghi mới." @@ -1590,7 +1588,7 @@ apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +40,To Date, apps/frappe/frappe/core/page/background_jobs/background_jobs_outer.html +5,Show failed jobs,Hiện những thao tác thất bại apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +68,Details,Chi tiết DocType: Property Setter,DocType or Field,DocType hoặc Dòng -DocType: Communication,Soft-Bounced,Soft-Bị trả +DocType: Communication,Soft-Bounced,Hỏng mềm apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +38,Seems Publishable Key or Secret Key is wrong !!!,Dường như khóa xuất bản hoặc khóa ẩn có sai sót !!! apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +38,Seems Publishable Key or Secret Key is wrong !!!,Dường như khóa xuất bản hoặc khóa ẩn có sai sót !!! apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +3,Quick Help for Setting Permissions,Trợ giúp nhanh cho việc thiết lập quyền hạn @@ -1598,7 +1596,7 @@ DocType: Tag Doc Category,Doctype to Assign Tags,DOCTYPE để Gán khóa apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.js +9,Show Relapses,Hiện Tái phát apps/frappe/frappe/core/doctype/communication/communication.js +241,Email has been moved to trash,Email đã được di chuyển vào thùng rác DocType: Report,Report Builder,Báo cáo Builder -DocType: Async Task,Task Name,Tên nhiệm vụ +DocType: Async Task,Task Name,Tên công việc apps/frappe/frappe/app.py +145,"Your session has expired, please login again to continue.","Phiên của bạn đã hết hạn, vui lòng đăng nhập lại để tiếp tục." apps/frappe/frappe/app.py +145,"Your session has expired, please login again to continue.","Phiên của bạn đã hết hạn, vui lòng đăng nhập lại để tiếp tục." DocType: Communication,Workflow,Quy trình làm việc @@ -1609,11 +1607,11 @@ apps/frappe/frappe/website/doctype/blog_post/blog_post_list.js +7,Not Published, apps/frappe/frappe/config/setup.py +209,"Actions for workflow (e.g. Approve, Cancel).","Thao tác cho chuỗi công việc (ví dụ: Phê duyệt, Hủy bỏ)." DocType: Workflow State,flag,cờ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedback Request is already sent to user,Phản hồi Yêu cầu đã được gửi tới người dùng -DocType: Web Page,Text Align,Văn bản Align +DocType: Web Page,Text Align,Căn lề văn bản apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},Tên không thể chứa các ký tự đặc biệt như {0} -DocType: Contact Us Settings,Forward To Email Address,Chuyển tiếp Để Địa chỉ Email +DocType: Contact Us Settings,Forward To Email Address,Chuyển tiếp tới địa chỉ email apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,Hiển thị tất cả dữ liệu -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,Trường tiêu đề phải là một trường tên hợp lệ +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,đoạn tiêu đề phải là một đoạn tên hợp lệ apps/frappe/frappe/config/core.py +7,Documents,Tài liệu DocType: Email Flag Queue,Is Completed,Đã được hoàn thành apps/frappe/frappe/www/me.html +22,Edit Profile,Sửa hồ sơ @@ -1623,10 +1621,10 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",Trường này sẽ chỉ xuất hiện nếu fieldname định nghĩa ở đây có giá trị hoặc các quy định là đúng (ví dụ): myfield eval: doc.myfield == 'Giá trị của tôi' eval: doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Hôm nay -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,Hôm nay -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Một khi bạn đã thiết lập điều này, người dùng sẽ chỉ có khả năng truy cập các tài liệu (ví dụ: Blog Post) nơi liên kết tồn tại (ví dụ: Blogger)." -DocType: Error Log,Log of Scheduler Errors,Nhật ký của lỗi đăng nhập +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hôm nay +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,Hôm nay +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).","Một khi bạn đã thiết lập điều này, người dùng sẽ chỉ có khả năng truy cập các tài liệu (ví dụ: Bài viết trên blog) nơi liên kết tồn tại (ví dụ: Blogger)." +DocType: Error Log,Log of Scheduler Errors,Các lỗi đăng nhập của người lập trình DocType: User,Bio,Sinh học DocType: OAuth Client,App Client Secret,App Khách hàng Bí mật apps/frappe/frappe/public/js/frappe/form/save.js +12,Submitting,Trình @@ -1648,6 +1646,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1 sao là thấp nhất & 5 sao là đánh giá cao nhất DocType: Event,Ref Name,Tên Tài liệu tham khảo DocType: Web Page,Center,Trung tâm +DocType: Email Alert,Value To Be Set,Giá trị Để Đặt apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,Đầu Cấp DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,Đại diện cho tiểu bang cho phép trong một tài liệu và vai trò được giao để thay đổi trạng thái. apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,Dạng làm mới @@ -1661,25 +1660,25 @@ apps/frappe/frappe/www/printview.py +225,No template found at path: {0},Không c apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +87,Submit after importing.,Gửi sau khi nhập khẩu. apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +143,No Email Account,Không có tài khoản email DocType: Communication,Cancelled,Hủy -DocType: Standard Reply,Standard Reply Help,Chuẩn Trả lời giúp +DocType: Standard Reply,Standard Reply Help,Tiêu Chuẩn Trả lời giúp DocType: Blogger,Avatar,Avatar DocType: Blogger,Posts,Bài viết -DocType: DocType,Has Web View,Có xem trên web +DocType: DocType,Has Web View,Có thể xem trên web apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores","Tên DocType nên bắt đầu bằng chữ cái và nó chỉ có thể bao gồm các chữ cái, số, dấu khoảng cách và gạch chân" DocType: Communication,Spam,RAC DocType: Integration Request,Integration Request,tích hợp Yêu cầu -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,Thân +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,Thân DocType: Address,Maharashtra,Maharashstra DocType: Address,Accounts User,Người dùng tài khoản -DocType: Web Page,HTML for header section. Optional,HTML cho phần tiêu đề. Tùy chọn +DocType: Web Page,HTML for header section. Optional,HTML cho phần tiêu đề. Không bắt buộc apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,Tính năng này là thương hiệu mới và vẫn đang thử nghiệm -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,Tối đa {0} hàng cho phép +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,Tối đa {0} hàng cho phép DocType: Email Unsubscribe,Global Unsubscribe,Hủy đăng ký toàn cầu apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,Đây là một mật khẩu rất phổ biến. apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,Góc nhìn DocType: Communication,Assigned,giao DocType: Print Format,Js,Js -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,Chọn In Định dạng +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,Chọn In Định dạng apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,các mẫu bàn phím ngắn rất dễ đoán DocType: Portal Settings,Portal Menu,Portal Menu apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,Chiều dài của {0} nên nằm trong khoảng từ 1 đến 1000 @@ -1696,14 +1695,14 @@ DocType: Workflow State,forward,về phía trước apps/frappe/frappe/public/js/frappe/form/sidebar.js +59,{0} edited this {1},{0} đã sửa {1} này DocType: Custom DocPerm,Submit,Gửi apps/frappe/frappe/core/doctype/file/file_list.js +62,New Folder,Thư mục mới -DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Sử dụng Địa chỉ Email nêu tại khoản này là người gửi cho tất cả các email được gửi bằng tài khoản này. +DocType: Email Account,Uses the Email Address mentioned in this Account as the Sender for all emails sent using this Account. ,Sử dụng Địa chỉ Email nêu tại tài khoản này là người gửi cho tất cả các email được gửi bằng tài khoản này. DocType: Website Settings,Sub-domain provided by erpnext.com,Sub-domain cung cấp bởi erpnext.com DocType: System Settings,dd-mm-yyyy,ngày-tháng-năm apps/frappe/frappe/desk/query_report.py +77,Must have report permission to access this report.,Phải có sự cho phép báo cáo để truy cập báo cáo này. apps/frappe/frappe/core/doctype/system_settings/system_settings.py +18,Please select Minimum Password Score,Vui lòng chọn Điểm mật khẩu Tối thiểu apps/frappe/frappe/core/doctype/system_settings/system_settings.py +18,Please select Minimum Password Score,Vui lòng chọn Điểm mật khẩu Tối thiểu apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,Added,Thêm -apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +81,"Update only, do not insert new records.","chỉ cập nhật, đừng chèn kỷ lục mới." +apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +81,"Update only, do not insert new records.","chỉ cập nhật, không chèn bản ghi mới." apps/frappe/frappe/desk/doctype/event/event.py +61,Daily Event Digest is sent for Calendar Events where reminders are set.,báo cáo sự kiện hàng ngày được gửi như là Lịch sự kiện cùng với nhắc nhở apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +32,View Website,Xem trang web DocType: Workflow State,remove,Xóa Bỏ @@ -1718,7 +1717,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,Người sử dụng không thể tìm kiếm apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,Định dạng đầu ra không hợp lệ DocType: Custom DocPerm,Apply this rule if the User is the Owner,Áp dụng quy tắc này nếu người dùng là chủ sở hữu -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,Sẽ là ID đăng nhập của bạn +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,Sẽ là ID đăng nhập của bạn apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,Báo cáo xây dựng DocType: Note,Notify users with a popup when they log in,Thông báo cho người sử dụng với một popup khi họ đăng nhập apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge","{0} {1} không tồn tại, hãy chọn một mục tiêu mới để hợp nhất" @@ -1733,21 +1732,22 @@ apps/frappe/frappe/public/js/frappe/ui/messages.js +229,Verify Password,Xác Nh apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +138,There were errors,Có một số lỗi apps/frappe/frappe/core/doctype/communication/communication.js +42,Close,Đóng apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2,Không thể thay đổi docstatus 0-2 -DocType: User Permission for Page and Report,Roles Permission,vai trò Permission +DocType: User Permission for Page and Report,Roles Permission,Quyền hạn vai trò apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,Cập nhật DocType: Error Snapshot,Snapshot View,Xem ảnh chụp apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,Xin vui lòng lưu bản tin trước khi gửi đi -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},Lựa chọn phải là một loại văn bản hợp lệ cho lĩnh vực {0} trong hàng {1} -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Edit Properties +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} năm trước +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},Lựa chọn phải là một loại văn bản hợp lệ cho lĩnh vực {0} trong hàng {1} +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,Chỉnh sửa tài sản DocType: Patch Log,List of patches executed,Danh sách các bản vá lỗi thực thi apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0} đã bỏ đăng ký -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,Thông tin liên lạc trung +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,Thông tin liên lạc trung DocType: Website Settings,Banner HTML,Biểu ngữ HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',Vui lòng chọn phương thức thanh toán khác. Razorpay không hỗ trợ các giao dịch bằng tiền tệ '{0}' apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,Xếp hàng đợi để sao lưu. Nó có thể mất một vài phút đến một giờ. DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,Đăng ký OAuth ứng dụng khách hàng -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} không thể là ""{2}"". Nó phải là một trong những ""{3}""" +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""","{0} {1} không thể là ""{2}"". Nó phải là một trong những ""{3}""" apps/frappe/frappe/utils/data.py +565,{0} or {1},{0} hoặc {1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,Hiện hay ẩn Desktop Icons apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,Mật khẩu Cập nhật @@ -1765,26 +1765,27 @@ apps/frappe/frappe/utils/nestedset.py +181,Item cannot be added to its own desce apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +615,Show Totals,Hiện Totals DocType: Error Snapshot,Relapses,Tái phát DocType: Address,Preferred Shipping Address,Địa chỉ giao hàng ưu tiên -DocType: Social Login Keys,Frappe Server URL,URL sinh tố Máy chủ -apps/frappe/frappe/public/js/frappe/form/print.js +236,With Letter head,Với Thư đầu +DocType: Social Login Keys,Frappe Server URL,URL Server Frappe +apps/frappe/frappe/public/js/frappe/form/print.js +236,With Letter head,Với đầu thư apps/frappe/frappe/public/js/frappe/form/sidebar.js +62,{0} created this {1},{0} đã tạo ra {1} apps/frappe/frappe/public/js/frappe/form/workflow.js +36,Document is only editable by users of role,Tài liệu chỉ có thể sửa bằng cách sử dụng của vai trò apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned to {1}, has been closed by {2}.","Nhiệm vụ {0}, mà bạn gán cho {1}, đã bị đóng cửa bởi {2}." DocType: Print Format,Show Line Breaks after Sections,Hiện dòng Breaks sau mục DocType: Blogger,Short Name,Tên viết tắt apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},Trang {0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ - of Communication (emails).","Bạn đang chọn Sync Lựa chọn như tất cả, nó sẽ resync tất cả \ đọc cũng như tin nhắn chưa đọc từ máy chủ. Điều này cũng có thể gây ra sự chồng chéo \ nhân Truyền thông (email)." + of Communication (emails).","Bạn đang chọn Lựa chọn đồng bộ cho tất cả, nó sẽ tái đồng bộ tất cả \ đọc cũng như tin nhắn chưa đọc từ máy chủ. Điều này cũng có thể gây ra sự chồng chéo \ của Giao tiếp (email)." apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,tập tin Kích thước DocType: Workflow State,magnet,nam châm -apps/frappe/frappe/geo/doctype/currency/currency.js +7,This Currency is disabled. Enable to use in transactions,Tệ này bị vô hiệu hóa. Cho phép sử dụng trong các giao dịch +apps/frappe/frappe/geo/doctype/currency/currency.js +7,This Currency is disabled. Enable to use in transactions,Giá trị tiền tệ này bị vô hiệu hóa. Cho phép sử dụng trong các giao dịch DocType: Desktop Icon,Blocked,Đã ngăn lại DocType: Contact Us Settings,"Default: ""Contact Us""","Mặc định: ""Liên hệ""" -DocType: Contact,Purchase Manager,Mua Manager +DocType: Contact,Purchase Manager,Mua quản lý DocType: Custom Script,Sample,Mẫu apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,Các đánh dấu đã ngừng phân loại DocType: Event,Every Week,Mỗi tuần +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,Tài khoản Email chưa được thiết lập. Hãy tạo Tài khoản Email mới từ Thiết lập> Email> Tài khoản Email apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,Nhấn vào đây để kiểm tra việc sử dụng hoặc nâng cấp lên một kế hoạch cao hơn DocType: Custom Field,Is Mandatory Field,là Trường bắt buộc DocType: User,Website User,Website của người dùng @@ -1808,18 +1809,19 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,Tuỳ chỉnh bên Menu DocType: Workflow State,pencil,bút chì apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,Các tin nhắn và các thông báo khác. -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},Chèn Sau khi không thể được thiết lập như là {0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},Chèn Sau khi không thể được thiết lập như là {0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,Chia sẻ {0} với apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,Email Thiết lập tài khoản vui lòng nhập mật khẩu của bạn cho: DocType: Workflow State,hand-up,tay lên DocType: Blog Settings,Writers Introduction,Giới thiệu nhà văn DocType: Address,Phone,Chuyển tệp -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,Lỗi trong khi đánh giá Email Alert {0}. Hãy sửa mẫu của bạn. +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,Lỗi trong khi đánh giá Email Alert {0}. Hãy sửa mẫu của bạn. apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,Hãy chọn loại tài liệu hoặc Vai trò để bắt đầu. DocType: Contact,Passive,Thụ động DocType: Contact,Accounts Manager,Quản lý tài khoản +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,Thanh toán của bạn bị hủy. apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,Chọn File Type -DocType: Help Article,Knowledge Base Editor,Kiến thức cơ sở biên tập +DocType: Help Article,Knowledge Base Editor,Người biên tập kiến thức nền apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,Trang không tìm thấy DocType: DocField,Precision,Độ chính xác DocType: Website Slideshow,Slideshow Items,Slideshow mục @@ -1837,7 +1839,7 @@ DocType: Newsletter,Receipient,người nhận DocType: Contact Us Settings,Settings for Contact Us Page,Cài đặt cho Trang Liên hệ DocType: Custom Script,Script Type,Loại kịch bản apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +52,{0} weeks ago,Cách đây {0} tuần -DocType: Email Account,Footer,Chân +DocType: Email Account,Footer,Phần chân apps/frappe/frappe/config/integrations.py +38,Authentication,Xác thực apps/frappe/frappe/utils/verified_command.py +42,Invalid Link,Liên kết không hợp lệ DocType: Web Page,Show Title,HIện tiêu đề @@ -1845,12 +1847,13 @@ DocType: Property Setter,Property Type,Loại bất động sản DocType: Workflow State,screenshot,ảnh chụp màn hình apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,Chỉ Quản trị viên có thể lưu một báo cáo tiêu chuẩn. Xin đổi tên và lưu lại. DocType: System Settings,Background Workers,Người làm công nền +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,Fieldname {0} mâu thuẫn với đối tượng meta DocType: Deleted Document,Data,Dữ liệu apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,Trạng thái bản ghi apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},Bạn đã thực hiện {0} {1} DocType: OAuth Authorization Code,OAuth Authorization Code,OAuth Mã ủy quyền apps/frappe/frappe/core/page/data_import_tool/importer.py +249,Not allowed to Import,Không được phép nhập khẩu -DocType: Social Login Keys,Frappe Client Secret,Sinh tố Khách hàng Bí mật +DocType: Social Login Keys,Frappe Client Secret,Bí mật Frappe của khách hàng DocType: Deleted Document,Deleted DocType,DocType xóa apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +22,Permission Levels,Mức độ cho phép DocType: Workflow State,Warning,Cảnh báo @@ -1865,36 +1868,35 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +784,New Report apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Is,Là DocType: Workflow State,info-sign,thông tin-dấu apps/frappe/frappe/model/base_document.py +216,Value for {0} cannot be a list,Giá trị {0} không thể là một danh sách -DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Làm thế nào đồng tiền này nên được định dạng? Nếu không được thiết lập, sẽ sử dụng mặc định của hệ" +DocType: Currency,"How should this currency be formatted? If not set, will use system defaults","Loại tiền tệ này được định dạng ra sao ? Nếu không thiết lập, hệ thống sẽ quay về mặc định" apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,Hiện tài khoản Quyền apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,Bạn cần phải đăng nhập và có vai trò là System Manager để có thể truy cập vào các bản sao lưu. apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,còn lại -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,Hãy lưu trước khi đính kèm. +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,Hãy lưu trước khi đính kèm. apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),Thêm {0} ({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},Default theme được thiết lập trong {0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},Fieldtype không thể thay đổi từ {0} đến {1} trong hàng {2} -apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Vai trò Quyền +apps/frappe/frappe/public/js/frappe/roles_editor.js +195,Role Permissions,Quyền hạn vai trò DocType: Help Article,Intermediate,Trung gian apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +5,Can Read,có thể đọc DocType: Custom Role,Response,Phản hồi -apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Quy trình làm việc sẽ bắt đầu sau khi tiết kiệm. +apps/frappe/frappe/public/js/frappe/form/workflow.js +41,Workflow will start after saving.,Quy trình làm việc sẽ bắt đầu sau khi lưu lại. apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +7,Can Share,Có thể Chia sẻ apps/frappe/frappe/email/smtp.py +27,Invalid recipient address,Địa chỉ người nhận không hợp lệ DocType: Workflow State,step-forward,bước về phía trước apps/frappe/frappe/limits.py +67,Your subscription has expired.,Thuê bao của bạn đã hết hạn. DocType: Role Permission for Page and Report,Set Role For,Đặt Vai trò Đối với apps/frappe/frappe/core/doctype/user/user.js +42,Refreshing...,Làm mới ... -DocType: Event,Starts on,Bắt đầu từ ngày +DocType: Event,Starts on,Bắt đầu vào DocType: System Settings,System Settings,Cài đặt hệ thống apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Bắt đầu phiên không thành công apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,Bắt đầu phiên không thành công apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},Email này được gửi tới {0} và sao chép vào {1} -DocType: Workflow State,th,thứ -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,Hãy thiết lập Tài khoản Email mặc định từ Thiết lập> Email> Tài khoản Email -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},Tạo một {0} mới +DocType: Workflow State,th,th +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},Tạo một {0} mới DocType: Email Rule,Is Spam,là Spam apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},Báo cáo {0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},Mở {0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},Mở {0} DocType: OAuth Client,Default Redirect URI,Mặc định Redirect URI DocType: Email Alert,Recipients,Những Người nhận DocType: Workflow State,ok-sign,ok-dấu @@ -1909,16 +1911,17 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +70,"""Parent"" signif DocType: Website Theme,Apply Style,Áp dụng phong cách DocType: Feedback Request,Feedback Rating,Phản hồi Đánh giá apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared With,Với chia sẻ -DocType: Help Category,Help Articles,Trợ giúp bài viết +DocType: Help Category,Help Articles,Các điều khoản trợ giúp ,Modules Setup,Các mô-đun cài đặt apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,Loại: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,Thanh toán của bạn đã không thành công. DocType: Communication,Unshared,Không thể được chia sẻ DocType: Address,Karnataka,Karnataka apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,Không tìm thấy mô-đun DocType: User,Location,Vị trí apps/frappe/frappe/core/page/usage_info/usage_info.html +4,Renew before: {0},Gia hạn trước: {0} ,Permitted Documents For User,Tài liệu được phép Đối với tài -apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Bạn cần phải có quyền cho phép ""Share""" +apps/frappe/frappe/core/doctype/docshare/docshare.py +40,"You need to have ""Share"" permission","Bạn cần phải có quyền cho phép ""chia sẻ """ DocType: Communication,Assignment Completed,phân Hoàn thành apps/frappe/frappe/public/js/frappe/form/grid.js +609,Bulk Edit {0},Chỉnh sửa hàng loạt {0} DocType: Email Alert Recipient,Email Alert Recipient,Email người nhận báo @@ -1959,7 +1962,7 @@ DocType: Website Settings,Brand Image,Hình ảnh của nhãn hàng DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.","Thiết lập các đầu thanh điều hướng, chân và logo." DocType: Web Form Field,Max Value,Giá trị tối đa -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},Cho {0} ở mức {1} trong {2} trong hàng {3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},Cho {0} ở mức {1} trong {2} trong hàng {3} DocType: Contact,All,Tất cả DocType: Email Queue,Recipient,Người nhận DocType: Communication,Has Attachment,có tập tin đính kèm @@ -1968,21 +1971,22 @@ apps/frappe/frappe/config/setup.py +178,Drag and Drop tool to build and customiz apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Expand,Mở rộng DocType: Address,Sikkim,Sikkim apps/frappe/frappe/core/page/permission_manager/permission_manager.js +434,Set,Cài đặt -apps/frappe/frappe/desk/search.py +41,This query style is discontinued,Kiểu câu hỏi này đã bị ngừng +apps/frappe/frappe/desk/search.py +41,This query style is discontinued,Kiểu truy vấn này đã bị ngừng DocType: Email Alert,Trigger Method,kích hoạt Phương pháp apps/frappe/frappe/utils/data.py +744,Operator must be one of {0},Người điều hành phải là một trong {0} DocType: Dropbox Settings,Dropbox Access Token,phiếu truy cập Dropbox DocType: Workflow State,align-right,sắp xếp bên phải DocType: Auto Email Report,Email To,Để Email -apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Thư mục {0} là không có sản phẩm nào +apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,Thư mục {0} không trống DocType: Page,Roles,Vai trò -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,Lĩnh vực {0} không phải là lựa chọn. +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},Lỗi: Giá trị thiếu trong {0}: {1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,Lĩnh vực {0} không phải là lựa chọn. DocType: System Settings,Session Expiry,Phiên làm việc hết hạn DocType: Workflow State,ban-circle,ban-circle DocType: Email Flag Queue,Unread,chưa đọc DocType: Bulk Update,Desk,Bàn giấy -apps/frappe/frappe/utils/data.py +728,Filter must be a tuple or list (in a list),Trường phải là một dữ liệu tuplle hoặc list (trong một danh sách) -apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Viết một truy vấn SELECT. Lưu ý kết quả là không đánh số trang (tất cả các dữ liệu được gửi trong một đi). +apps/frappe/frappe/utils/data.py +728,Filter must be a tuple or list (in a list),Bộ lọc phải là một dãy hữu hạn hoặc một danh sách (trong 1 danh sách) +apps/frappe/frappe/core/doctype/report/report.js +8,Write a SELECT query. Note result is not paged (all data is sent in one go).,Viết một truy vấn LỰA CHỌN. Ghi nhận kết quả không đánh số trang (tất cả các dữ liệu được gửi trong một đi). DocType: Email Account,Attachment Limit (MB),Giới hạn Attachment (MB) DocType: Address,Arunachal Pradesh,Arunachal Pradesh apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +131,Setup Auto Email,Cài đặt tự động Email @@ -1991,7 +1995,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,Mặc định người sử dụng apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,Tạo mới DocType: Workflow State,chevron-down,Chevron xuống -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),Gửi mail không được gửi đến {0} (bỏ đăng ký / vô hiệu hóa) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),Gửi mail không được gửi đến {0} (bỏ đăng ký / vô hiệu hóa) DocType: Async Task,Traceback,Tìm lại DocType: Currency,Smallest Currency Fraction Value,Nhỏ nhất Fraction tệ Giá trị apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,Để gán @@ -2000,14 +2004,14 @@ DocType: Web Page,Enable Comments,Cho phép nhận xét apps/frappe/frappe/desk/doctype/note/note_list.js +3,Notes,Ghi chú: DocType: User,Restrict user from this IP address only. Multiple IP addresses can be added by separating with commas. Also accepts partial IP addresses like (111.111.111),Hạn chế người dùng từ địa chỉ IP này mà thôi. Nhiều địa chỉ IP có thể được thêm bằng cách tách biệt bằng dấu phẩy. Cũng chấp nhận địa chỉ IP một phần như (111.111.111) DocType: Communication,From,Từ -DocType: Website Theme,Google Font (Heading),Google Font (Heading) +DocType: Website Theme,Google Font (Heading),Phông Google (Phần đầu) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,Chọn một nút nhóm đầu tiên. -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},Tìm {0} trong {1} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},Tìm {0} trong {1} DocType: OAuth Client,Implicit,ngầm DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")","Nối như truyền thông so với DocType này (phải có các lĩnh vực, ""Status"", ""Subject"")" DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook","URI cho nhận được mã uỷ quyền khi người sử dụng cho phép truy cập, cũng như phản ứng thất bại. Thông thường một thiết bị đầu cuối REST của tiếp xúc của khách hàng App.
ví dụ như http: //hostname//api/method/frappe.www.login.login_via_facebook" -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,Không được phép thay đổi {0} sau khi nộp +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,Không được phép thay đổi {0} sau khi nộp DocType: Communication,Comment Type,Comment Loại DocType: OAuth Client,OAuth Client,OAuth khách hàng apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,Người sử dụng @@ -2022,7 +2026,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,Lọc dữ liệu DocType: Auto Email Report,Filter Data,Lọc dữ liệu apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,Thêm một tag -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,Xin đính kèm một tập tin đầu tiên. +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,Xin đính kèm một tập tin đầu tiên. apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator","Đã có một số lỗi thiết lập tên, xin vui lòng liên hệ quản trị viên" apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,địa chỉ email gửi đến không chính xác apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2030,29 +2034,29 @@ apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written y DocType: Website Slideshow Item,Website Slideshow Item,Mục trình diễn website DocType: GSuite Templates,Template ID,Mẫu ID DocType: Portal Settings,Default Role at Time of Signup,Mặc định vai trò tại Thời gian đăng ký -DocType: DocType,Title Case,Trường hợp tiêu đề +DocType: DocType,Title Case,Đề mục của trường hợp DocType: DocType,"Naming Options:
  1. field:[fieldname] - By Field
  2. naming_series: - By Naming Series (field called naming_series must be present
  3. Prompt - Prompt user for a name
  4. [series] - Series by prefix (separated by a dot); for example PRE.#####
",Đặt tên tùy chọn:
  1. lĩnh vực: [fieldname] - Bằng Dòng
  2. naming_series: - Bằng cách đặt tên Series (lĩnh vực được gọi naming_series phải có mặt
  3. Prompt - Nhắc người dùng cho một tên
  4. [series] - Series bởi tiền tố (cách nhau bằng một dấu chấm); ví dụ PRE. #####
-DocType: Blog Post,Email Sent,Email gửi -DocType: DocField,Ignore XSS Filter,Bỏ qua XSS Filter +DocType: Blog Post,Email Sent,Email đã gửi +DocType: DocField,Ignore XSS Filter,Bỏ qua bộ lọc apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,loại bỏ apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,thiết lập Dropbox sao lưu -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,Gửi dưới dạng email +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,Gửi dưới dạng email DocType: Website Theme,Link Color,Màu liên kết apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,Người sử dụng {0} không thể bị vô hiệu hóa apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,","Thưa System Manager," -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,Quốc gia của bạn +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,Quốc gia của bạn DocType: Event,Sunday,Chủ Nhật -apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Trong Grid View +apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,Trong tầm nhìn mạng lưới DocType: Address Template,Template,Mẫu DocType: Address,Delhi,Delhi apps/frappe/frappe/config/integrations.py +48,LDAP Settings,Cài đặt LDAP apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,Sửa đổi apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,thiết lập cổng thanh toán PayPal -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) sẽ được cắt ngắn, vì số kí tự tối đa cho phép là {2}" +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}","{0}: {1} '({3}) sẽ được cắt ngắn, vì số kí tự tối đa cho phép là {2}" DocType: OAuth Client,Resource Owner Password Credentials,Ủy nhiệm mât khẩu của người sở hữu nguồn tài nguyên DocType: OAuth Client,Response Type,Loại phản hồi -apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Tài khoản tối đa +apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,Người dùng tối đa DocType: Contact Us Settings,Send enquiries to this email address,Gửi yêu cầu đến địa chỉ email này DocType: Letter Head,Letter Head Name,Tên tiêu đề trang DocType: DocField,Number of columns for a field in a List View or a Grid (Total Columns should be less than 11),Số cột cho một trường trong một xem danh sách hoặc một lưới (Tổng cột nên được ít hơn 11) @@ -2064,9 +2068,9 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +439,Apply DocType: User,Karma,Karma DocType: DocField,Table,Bảng DocType: File,File Size,Dung lượng file -apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Bạn phải đăng nhập để trình duyệt Form này +apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,Bạn phải đăng nhập để trình duyệt mẫu này DocType: User,Background Image,Hình nền -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency","Chọn quốc gia của bạn, Time Zone và ngoại tệ" +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency","Chọn quốc gia của bạn, Time Zone và ngoại tệ" apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,Mx apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,Giữa DocType: Async Task,Queued,Xếp hàng @@ -2075,13 +2079,14 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,Tạo apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},Bộ lọc không hợp lệ: {0} DocType: Email Account,no failed attempts,Không có cố gắng nào thất bại +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,Không tìm thấy Mẫu Địa chỉ mặc định. Vui lòng tạo một hình mới từ Thiết lập> In và Thương hiệu> Mẫu Địa chỉ. DocType: GSuite Settings,refresh_token,làm mới_thông bao DocType: Dropbox Settings,App Access Key,App Access Key DocType: OAuth Bearer Token,Access Token,Mã truy cập DocType: About Us Settings,Org History,Org Lịch sử DocType: Workflow,Workflow Name,Tên công việc apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +144,Notify by Email,Thông báo qua email -DocType: DocField,In Standard Filter,Trong tiêu chuẩn lọc +DocType: DocField,In Standard Filter,Trong tiêu chuẩn bộ lọc DocType: Web Form,Allow Edit,Cho phép Chỉnh sửa apps/frappe/frappe/core/doctype/file/file_list.js +142,Paste,Dán DocType: Auto Email Report,Based on Permissions For User,Dựa trên sự chấp thuận đối với người sử dụng @@ -2092,8 +2097,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github Tên DocType: DocType,Image View,Xem hình ảnh apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.","Hình như cái gì đó đã đi sai trong quá trình giao dịch. Kể từ khi chúng tôi đã không xác nhận việc thanh toán, Paypal sẽ tự động trả lại bạn số tiền này. Nếu không, xin vui lòng gửi email cho chúng tôi và đề cập đến các ID tương quan: {0}." -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password","Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu" -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Chèn Sau trường '{0}' đề cập trong trường tùy chỉnh '{1}', với nhãn '{2}', không tồn tại" +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password","Bao gồm các ký hiệu, số và chữ hoa trong mật khẩu" +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist","Chèn Sau trường '{0}' đề cập trong trường tùy chỉnh '{1}', với nhãn '{2}', không tồn tại" DocType: Workflow State,signal,tín hiệu DocType: DocType,Show Print First,Hiện In Đầu tiên apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl+Enter để ghi sổ @@ -2106,7 +2111,7 @@ apps/frappe/frappe/email/doctype/email_queue/email_queue_list.js +10,Resume Send apps/frappe/frappe/core/doctype/communication/communication.js +47,Reopen,Mở cửa trở lại apps/frappe/frappe/core/doctype/communication/communication.js +159,Re: {0},Lại: {0} DocType: Print Settings,Monochrome,Đơn sắc -DocType: Address,Purchase User,Mua tài khoản +DocType: Address,Purchase User,Mua người dùng DocType: Workflow,"Different ""States"" this document can exist in. Like ""Open"", ""Pending Approval"" etc.","Khác nhau ""Hoa"" tài liệu này có thể tồn tại in Như ""Open"", ""Đang xem xét"", vv" apps/frappe/frappe/utils/verified_command.py +43,This link is invalid or expired. Please make sure you have pasted correctly.,Liên kết này là không hợp lệ hoặc hết hạn. Hãy chắc chắn rằng bạn đã dán một cách chính xác. apps/frappe/frappe/email/doctype/newsletter/newsletter.py +135,{0} has been successfully unsubscribed from this mailing list.,{0} đã bị hủy đăng ký thành công từ mailing list này. @@ -2117,32 +2122,33 @@ DocType: Workflow State,Search,Tìm kiếm apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,Please select another payment method. Stripe does not support transactions in currency '{0}',Vui lòng chọn một phương thức thanh toán khác. Sọc không hỗ trợ giao dịch bằng tiền tệ '{0}' apps/frappe/frappe/integrations/doctype/stripe_settings/stripe_settings.py +42,Please select another payment method. Stripe does not support transactions in currency '{0}',Vui lòng chọn một phương thức thanh toán khác. Sọc không hỗ trợ giao dịch bằng tiền tệ '{0}' apps/frappe/frappe/core/doctype/communication/communication.js +87,Move To Trash,Di chuyển vào thùng rác -DocType: Web Form,Web Form Fields,Các trường mẫu web -DocType: Website Theme,Top Bar Text Color,Top Bar Text Color +DocType: Web Form,Web Form Fields,Các đoạn mẫu web +DocType: Website Theme,Top Bar Text Color,Mầu sắc mẫu hàng ở thanh trên cùng apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find {0} in any table related to {1},Cảnh báo: Không thể tìm thấy {0} trong bất kỳ bảng liên quan đến {1} -apps/frappe/frappe/model/document.py +1043,This document is currently queued for execution. Please try again,Tài liệu này hiện đang xếp hàng để thực hiện. Vui lòng thử lại +apps/frappe/frappe/model/document.py +1043,This document is currently queued for execution. Please try again,Tài liệu này hiện đang chờ để thực hiện. Vui lòng thử lại apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,File '{0}' không tìm thấy apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,Xóa đoạn DocType: User,Change Password,Đổi mật khẩu -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},Email không hợp lệ: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,Xin chào! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},Email không hợp lệ: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,Xin chào! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,Kết thúc sự kiện phải sau bắt đầu apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},Bạn không có quyền nhận bản báo cáo về: {0} +DocType: System Settings,Apply Strict User Permissions,Áp dụng Quyền người dùng nghiêm ngặt DocType: DocField,Allow Bulk Edit,Cho phép Chỉnh sửa Hàng loạt DocType: DocField,Allow Bulk Edit,Cho phép Chỉnh sửa Hàng loạt DocType: Blog Post,Blog Post,Bài Blog -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,Tìm kiếm nâng cao +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,Tìm kiếm nâng cao apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,Hướng dẫn đặt lại mật khẩu đã được gửi đến email của bạn apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.","Cấp độ 0 là dành cho quyền cấp tài liệu, \ cấp cao hơn cho quyền cấp trường." apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +661,Sort By,Sắp xếp theo -DocType: Workflow,States,Hoa +DocType: Workflow,States,Các báo cáo DocType: Email Alert,Attach Print,Đính kèm In apps/frappe/frappe/core/doctype/user/user.py +435,Suggested Username: {0},Tên đăng nhập đề nghị: {0} apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +98,Day,ngày -,Modules,modules +,Modules,các mô đun apps/frappe/frappe/core/doctype/user/user.js +49,Set Desktop Icons,Cài đặt Desktop Icons -apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,thành công thanh toán +apps/frappe/frappe/templates/pages/integrations/payment-success.html +3,Payment Success,thanh toán thành công apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +137,No {0} mail,Không {0} mail apps/frappe/frappe/core/doctype/file/file_list.js +101,Error in uploading files,Lỗi tải các tệp tin lên DocType: OAuth Bearer Token,Revoked,bị thu hồi @@ -2150,26 +2156,25 @@ DocType: Web Page,Sidebar and Comments,sidebar và Bình luận apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.","Khi bạn sửa đổi một tài liệu sau khi Hủy bỏ và lưu nó, nó sẽ nhận được một số mới mà là một phiên bản của số cũ." DocType: Stripe Settings,Publishable Key,Phím có thể xuất bản được DocType: Stripe Settings,Publishable Key,Phím có thể xuất bản được -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0} năm trước DocType: Workflow State,circle-arrow-left,vòng tròn mũi tên bên trái apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Máy chủ cache Redis không chạy. Vui lòng liên hệ Quản trị viên / Hỗ trợ kỹ thuật apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,Tên Đối tác -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,Thực hiện một bản ghi mới +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,Thực hiện một bản ghi mới apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Đang tìm kiếm apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,Đang tìm kiếm DocType: Currency,Fraction,Phần DocType: LDAP Settings,LDAP First Name Field,Tên trường LDAP đầu tiên -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,Chọn từ file đính kèm hiện có +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,Chọn từ file đính kèm hiện có DocType: Custom Field,Field Description,Dòng Mô tả -apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Tên được không thiết lập thông qua Prompt +apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,Tên được không thiết lập thông qua kỳ hạn apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,Hộp thư đến email DocType: Auto Email Report,Filters Display,Bộ lọc hiển thị -DocType: Website Theme,Top Bar Color,Top Bar Màu +DocType: Website Theme,Top Bar Color,Màu của thanh trên cùng apps/frappe/frappe/email/doctype/newsletter/newsletter.py +130,Do you want to unsubscribe from this mailing list?,Bạn có muốn huỷ đăng ký khỏi danh sách gửi thư này? DocType: Address,Plant,Cây apps/frappe/frappe/core/doctype/communication/communication.js +65,Reply All,Trả lời tất cả DocType: DocType,Setup,Cài đặt -DocType: Email Account,Initial Sync Count,Đếm Sync ban đầu +DocType: Email Account,Initial Sync Count,Tính toán đồng bộ ban đầu apps/frappe/frappe/templates/includes/comments/comments.py +55,New comment on {0} {1},Comment mới trên {0} {1} DocType: Workflow State,glass,ly DocType: DocType,Timeline Field,trường của dòng thời gian @@ -2178,10 +2183,10 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.py +93,There apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +67,Get Items,Được mục DocType: Contact,Image,Hình DocType: Workflow State,remove-sign,Dấu hiệu loại bỏ- -apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Gõ một cái gì đó trong hộp tìm kiếm để tìm kiếm +apps/frappe/frappe/www/search.html +30,Type something in the search box to search,Gõ gì đó trong hộp tìm kiếm để tìm kiếm apps/frappe/frappe/config/setup.py +199,Define workflows for forms.,Xác định quy trình công việc cho các hình thức. DocType: Address,Other,Khác -apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Bắt đầu Format mới +apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +162,Start new Format,Bắt đầu định dạng mới apps/frappe/frappe/core/page/user_permissions/user_permissions.js +144,Please attach a file,Xin đính kèm một tập tin DocType: Workflow State,font,font chữ apps/frappe/frappe/utils/password_strength.py +155,This is a top-100 common password.,Đây là một top-100 mật khẩu chung. @@ -2189,7 +2194,7 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +30,Plea DocType: Contact,Mobile No,Số Điện thoại di động DocType: Communication,Text Content,Nội dung văn bản DocType: Customize Form Field,Is Custom Field,Là Trường Tuỳ chỉnh -DocType: Workflow,"If checked, all other workflows become inactive.","Nếu được lựa chọn, tất cả các công việc khác trở nên không hoạt động." +DocType: Workflow,"If checked, all other workflows become inactive.","Nếu được kiểm tra, tất cả các công việc khác trở nên không hoạt động." apps/frappe/frappe/core/doctype/report/report.js +10,[Label]:[Field Type]/[Options]:[Width],[Nhãn]: [Kiểu trường] / [các lựa chọn]: [Chiều rộng] DocType: Workflow State,folder-close,thư mục đóng apps/frappe/frappe/model/rename_doc.py +130,{0} not allowed to be renamed,{0} không được phép đổi tên @@ -2205,33 +2210,32 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,Thông tin: DocType: Custom Field,Permission Level,Cấp phép DocType: User,Send Notifications for Transactions I Follow,Gửi thông báo cho tôi theo giao dịch -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Không thể thiết lập quyền Duyệt, Hủy bỏ, sửa đổi mà không chọn quyền ""Viết""" +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write","{0}: Không thể thiết lập quyền Duyệt, Hủy bỏ, sửa đổi mà không chọn quyền ""Viết""" apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,Bạn có chắc bạn muốn xóa các tập tin đính kèm? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

Không tìm thấy kết quả nào cho '

-apps/frappe/frappe/__init__.py +1063,Thank you,Cảm ơn bạn +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","Không thể xóa hoặc hủy bỏ vì {0} {1} được liên kết với {2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,Cảm ơn bạn apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,Tiết kiệm DocType: Print Settings,Print Style Preview,xem trước kiểu in -apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder +apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Chạy_thư mục apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,Bạn không được phép cập nhật apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +26,Please select Document Type first,Vui lòng chọn loại tài liệu đầu tiên DocType: About Us Settings,About Us Settings,thiết lập mục 'về chúng tôi' DocType: Website Settings,Website Theme,Giao diện Website -DocType: DocField,In List View,Trong Danh sách Xem +DocType: DocField,In List View,Trong xem danh sách DocType: Email Account,Use TLS,Sử dụng TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,Đăng nhập hoặc mật khẩu không hợp lệ apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,Thêm tùy chỉnh với các hình thức javascript. -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,Sr Không +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,Sr số ,Role Permissions Manager,Quản lý vai trò apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,Tên của Format In mới -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,rõ ràng đính kèm +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,rõ ràng đính kèm apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,Bắt buộc: ,User Permissions Manager,Quyền hạn quản lý DocType: Property Setter,New value to be set,Giá trị mới được thiết lập DocType: Email Alert,Days Before or After,những ngày trước hoặc sau DocType: Email Alert,Email Alert,Thông báo email apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +34,Select Document Types to set which User Permissions are used to limit access.,Chọn loại tài liệu để thiết lập tài khoản mà Quyền được sử dụng để hạn chế truy cập. -DocType: Website Settings,HTML Header & Robots,HTML Header & Robots +DocType: Website Settings,HTML Header & Robots,HTML tiêu đề & các người máy apps/frappe/frappe/config/website.py +32,Blog,Blog apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +28,LDAP Not Installed,LDAP không được cài đặt apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +43,Download with data,Tải dữ liệu @@ -2241,7 +2245,7 @@ apps/frappe/frappe/config/integrations.py +58,Settings for OAuth Provider,Cài apps/frappe/frappe/public/js/frappe/form/workflow.js +35,Current status,Tình trạng hiện tại DocType: Web Form,Allow Delete,Cho phép Xóa DocType: Email Alert,Message Examples,Ví dụ tin nhắn -DocType: Web Form,Login Required,Login Required +DocType: Web Form,Login Required,Đăng nhập được yêu cầu apps/frappe/frappe/config/website.py +42,Write titles and introductions to your blog.,Viết các tiêu đề và giới thiệu blog của bạn. DocType: Email Account,Email Login ID,ID Đăng nhập Email DocType: Email Account,Email Login ID,ID Đăng nhập Email @@ -2254,30 +2258,30 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2 ngà apps/frappe/frappe/config/website.py +47,Categorize blog posts.,Phân loại các bài viết blog. DocType: Workflow State,Time,Thời gian DocType: DocField,Attach,Đính kèm -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} không phải là một mẫu tên trường hợp lệ. Nên là {{field_name}}. +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}} không phải là một mẫu tên trường hợp lệ. Nên là {{field_name}}. DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,Gửi phản hồi Yêu cầu chỉ nếu có ít nhất một thông tin liên lạc hiện có sẵn cho tài liệu. DocType: Custom Role,Permission Rules,Quy định cho phép DocType: GSuite Settings,GSuite Settings,cài đặt GSuite DocType: Address,Links,Liên kết -apps/frappe/frappe/model/base_document.py +428,Value missing for,Giá trị mất tích +apps/frappe/frappe/model/base_document.py +427,Value missing for,Giá trị mất tích apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,Thêm mẫu con -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:đã đệ trình bản ghi không thể xóa +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:đã đệ trình bản ghi không thể xóa apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,Kích thước sao lưu DocType: GSuite Templates,Template Name,Tên mẫu -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,loại tài liệu mới +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,loại tài liệu mới DocType: Custom DocPerm,Read,Đọc -DocType: Role Permission for Page and Report,Role Permission for Page and Report,Vai trò Permission cho Page và Báo cáo +DocType: Role Permission for Page and Report,Role Permission for Page and Report,Quyền hạn vai trò cho trang và báo cáo apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,Căn Giá trị apps/frappe/frappe/www/update-password.html +14,Old Password,Mật khẩu cũ -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},Bài viết bởi {0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},Bài viết bởi {0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.","Để định dạng cột, cho nhãn cột trong truy vấn." DocType: Has Domain,Has Domain,Có miền apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,Không có tài khoản rồi? Đăng ký -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,"{0}: Không thể thiết lập ""Sửa chỉ định"" nếu không thể duyệt" +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,"{0}: Không thể thiết lập ""Sửa chỉ định"" nếu không thể duyệt" DocType: Address,Bihar,Bihar -apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Chỉnh sửa Vai trò Permissions -DocType: Communication,Link DocType,liên kết DocType -DocType: Social Login Keys,Social Login Keys,Đăng nhập xã hội phím +apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,Chỉnh sửa vai trò quyền hạn +DocType: Communication,Link DocType,liên kết kiểu văn bản +DocType: Social Login Keys,Social Login Keys,Các phím để đăng nhập mạng xã hội apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +76,Remove all customizations?,Loại bỏ tất cả các tùy chỉnh? DocType: Website Slideshow,Slideshow Name,Tên slideshow DocType: Address,Andhra Pradesh,Andhra Pradesh @@ -2303,17 +2307,17 @@ DocType: File,Is Folder,Là thư mục DocType: DocType,DocType,DocType apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +9,Party Type,Loại đối tác DocType: Website Theme,"If image is selected, color will be ignored.","Nếu hình ảnh được lựa chọn, màu sắc sẽ được bỏ qua." -DocType: User,Mute Sounds,Im lặng -DocType: Top Bar Item,Top Bar Item,Top Bar mục +DocType: User,Mute Sounds,tắt tiếng +DocType: Top Bar Item,Top Bar Item,Mẫu hàng ở thanh trên cùng apps/frappe/frappe/utils/csvutils.py +51,"Unknown file encoding. Tried utf-8, windows-1250, windows-1252.","Không biết mã hóa tập tin. Cố gắng UTF-8, các cửa sổ-1250, các cửa sổ-1252." DocType: Website Settings,Robots.txt,robots.txt -apps/frappe/frappe/core/doctype/user/user.py +174,Sorry! Sharing with Website User is prohibited.,Xin lỗi! Chia sẻ với trang web tài bị cấm. +apps/frappe/frappe/core/doctype/user/user.py +174,Sorry! Sharing with Website User is prohibited.,Xin lỗi! Chia sẻ với người dùng website bị cấm. apps/frappe/frappe/public/js/frappe/roles_editor.js +28,Add all roles,Thêm tất cả các vai trò apps/frappe/frappe/templates/includes/contact.js +11,"Please enter both your email and message so that we \ can get back to you. Thanks!","Vui lòng nhập cả email và tin nhắn của bạn để chúng tôi có thể nhận được \ lại cho bạn. Cảm ơn!" apps/frappe/frappe/email/smtp.py +170,Could not connect to outgoing email server,Không thể kết nối đến máy chủ email gửi đi -apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,Cảm ơn bạn đã quan tâm của bạn trong việc đăng ký vào các bản cập nhật của chúng tôi +apps/frappe/frappe/email/doctype/newsletter/newsletter.py +162,Thank you for your interest in subscribing to our updates,cảm ơn vì đã quan tâm đến việc đăng ký theo dõi các cập nhật của chúng tôi apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +169,Custom Column,Cột tùy chỉnh DocType: Workflow State,resize-full,thay đổi kích thước đầy DocType: Workflow State,off,tắt @@ -2325,7 +2329,7 @@ DocType: DocField,Set non-standard precision for a Float or Currency field,Đặ DocType: Email Account,Ignore attachments over this size,Bỏ qua file đính kèm vượt quá kích thước này DocType: Address,Preferred Billing Address,Địa chỉ thanh toán ưu tiên apps/frappe/frappe/config/integrations.py +63,External Documents,Tài liệu ngoài -apps/frappe/frappe/database.py +235,Too many writes in one request. Please send smaller requests,Quá nhiều viết trong một yêu cầu. Xin vui lòng gửi yêu cầu nhỏ hơn +apps/frappe/frappe/database.py +235,Too many writes in one request. Please send smaller requests,Quá nhiều kí tự trong một yêu cầu. Xin vui lòng gửi yêu cầu ngắn hơn apps/frappe/frappe/core/doctype/version/version_view.html +8,Values Changed,giá trị thay đổi DocType: Workflow State,arrow-up,mũi tên lên DocType: OAuth Bearer Token,Expires In,hết hạn trong @@ -2357,7 +2361,7 @@ apps/frappe/frappe/core/page/user_permissions/user_permissions.js +68,Select Use DocType: Async Task,Reference Doc,Tham khảo văn bản DocType: Communication,Keep a track of all communications,Giữ một đường dẫn của tất cả các thông tin liên lạc apps/frappe/frappe/desk/form/save.py +34,Did not save,Chưa lưu -DocType: Property Setter,Property,Đặc tính +DocType: Property Setter,Property,Tài sản DocType: Email Account,Yandex.Mail,Yandex.Mail DocType: Website Slideshow,"Note: For best results, images must be of the same size and width must be greater than height.","Lưu ý: Để có kết quả tốt nhất, hình ảnh phải có cùng kích thước và chiều rộng phải lớn hơn chiều cao." DocType: DocType,Auto Name,Tên tự động @@ -2373,12 +2377,12 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,Hãy đảm bảo rằng hồ sơ của bạn có một địa chỉ email apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,Bạn có thay đổi chưa được lưu trong mẫu này. Xin vui lòng lưu trước khi tiếp tục. DocType: Address,Telangana,Telangana -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,Mặc định cho {0} phải là một lựa chọn +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,Mặc định cho {0} phải là một lựa chọn DocType: Tag Doc Category,Tag Doc Category,đánh dấu loại văn bản DocType: User,User Image,Sử dụng hình ảnh apps/frappe/frappe/email/queue.py +289,Emails are muted,Email là tắt tiếng apps/frappe/frappe/public/js/frappe/form/templates/grid_form.html +25,Ctrl + Up,Ctrl + Up -DocType: Website Theme,Heading Style,Nhóm Phong cách +DocType: Website Theme,Heading Style,Kiểu đề mục apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +183,A new Project with this name will be created,Một dự án mới với tên này sẽ được tạo ra apps/frappe/frappe/utils/data.py +552,1 weeks ago,1 tuần trước apps/frappe/frappe/desk/page/applications/applications.py +75,You cannot install this app,Bạn không thể cài đặt ứng dụng này @@ -2400,25 +2404,25 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +17,Tree view not availabl DocType: DocType,Restrict To Domain,Hạn chế miền DocType: Domain,Domain,Tên miền DocType: Custom Field,Label Help,Nhãn Trợ giúp -DocType: Workflow State,star-empty,sao có sản phẩm nào +DocType: Workflow State,star-empty,sao - rỗng apps/frappe/frappe/utils/password_strength.py +122,Dates are often easy to guess.,Ngày thường dễ đoán. apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,Hành động tiếp theo DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,Những giá trị này sẽ được tự động cập nhật trong các giao dịch và cũng sẽ hữu ích để hạn chế quyền truy cập cho người dùng này về giao dịch có chứa các giá trị. apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,Nhà phát hành -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},** Thất bại: {0} đến {1}: {2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},** Thất bại: {0} đến {1}: {2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,chọn Bắt buộc apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,duyệt apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,Đã gửi email apps/frappe/frappe/utils/password_strength.py +32,"No need for symbols, digits, or uppercase letters.","Không cần ký hiệu, chữ số, hoặc con chữ in hoa" DocType: DocField,Currency,Tiền tệ -apps/frappe/frappe/templates/includes/comments/comments.py +50,View it in your browser,Xem nó trong trình duyệt của bạn +apps/frappe/frappe/templates/includes/comments/comments.py +50,View it in your browser,Xem trong trình duyệt của bạn apps/frappe/frappe/templates/includes/search_box.html +11,Clear Search,Tìm kiếm rõ ràng DocType: Async Task,Running,Chạy bộ apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,Đặt lại Mật khẩu apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,Vui lòng nâng cấp thêm hơn {0} người đăng ký DocType: Workflow State,hand-left,tay trái -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} cho {1} không thể là duy nhất +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,Fieldtype {0} cho {1} không thể là duy nhất DocType: Email Account,Use SSL,Sử dụng SSL DocType: Workflow State,play-circle,chơi vòng tròn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,Chọn Format Print Edit @@ -2430,19 +2434,19 @@ apps/frappe/frappe/www/feedback.py +45,Expired link,đường dẫn hết hạn apps/frappe/frappe/templates/includes/login/login.js +174,Not a valid user,Không phải là một người dùng hợp lệ apps/frappe/frappe/templates/includes/comments/comments.html +101,Please enter a valid email address.,VUi lòng thêm địa chỉ email hợp lệ DocType: Workflow State,arrow-right,mũi tên bên phải -DocType: Workflow State,Workflow state represents the current state of a document.,Công việc nhà nước đại diện cho nhà nước hiện tại của một tài liệu. -apps/frappe/frappe/utils/oauth.py +221,Token is missing,Mã thông báo là mất tích +DocType: Workflow State,Workflow state represents the current state of a document.,tình trạng làm việc đại diện cho tình trạng hiện tại của văn bản +apps/frappe/frappe/utils/oauth.py +221,Token is missing,Thông báo bị mất apps/frappe/frappe/public/js/frappe/misc/utils.js +517,Note: Changing the Page Name will break previous URL to this page.,Lưu ý: Việc thay đổi tên trang sẽ xóa URL trước đó của trang apps/frappe/frappe/utils/file_manager.py +269,Removed {0},Đã Loại bỏ {0} DocType: Company History,Highlight,Điểm nổi bật -DocType: OAuth Provider Settings,Force,Lực lượng +DocType: OAuth Provider Settings,Force,Sức ảnh hưởng DocType: DocField,Fold,Gập lại apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +664,Ascending,Tăng dần apps/frappe/frappe/printing/doctype/print_format/print_format.py +19,Standard Print Format cannot be updated,Tiêu chuẩn In Định dạng không thể được cập nhật apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Miss,Bỏ qua apps/frappe/frappe/public/js/frappe/model/model.js +554,Please specify,Vui lòng chỉ DocType: Communication,Bot,Máy -DocType: Help Article,Help Article,Trợ giúp Điều +DocType: Help Article,Help Article,Điều khoản trợ giúp DocType: Page,Page Name,Tên trang apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +204,Help: Field Properties,Trợ giúp: LĨnh vực tài sản apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +137,Importing...,Nhập khẩu ... @@ -2453,7 +2457,7 @@ apps/frappe/frappe/desk/reportview.py +219,Deleting {0},Xóa {0} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_start.html +2,Select an existing format to edit or start a new format.,Chọn một định dạng có sẵn để chỉnh sửa hoặc bắt đầu một định dạng mới. apps/frappe/frappe/workflow/doctype/workflow/workflow.py +38,Created Custom Field {0} in {1},Tạo Trường Tuỳ chỉnh {0} trong {1} DocType: System Settings,Time Zone,Múi giờ -apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Kí tự đặc biệt không được phép +apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +51,Special Characters are not allowed,Kí tự đặc biệt không được dùng DocType: Communication,Relinked,liên kết lại DocType: Print Settings,Compact Item Print,Nhỏ gọn mục Print DocType: Email Account,uidnext,uidnext @@ -2473,18 +2477,18 @@ DocType: DocField,No Copy,Không có bản sao chép DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,Đăng nhập với LDAP DocType: Web Form,Breadcrumbs,Đường dẫn -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,Nếu chủ +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,Nếu chủ DocType: OAuth Authorization Code,Expiration time,thời gian hết hạn -DocType: Web Page,Website Sidebar,website Sidebar +DocType: Web Page,Website Sidebar,Thanh bên của trang web DocType: Web Form,Show Sidebar,Hiện Sidebar apps/frappe/frappe/website/doctype/web_form/web_form.py +130,You need to be logged in to access this {0}.,Bạn cần phải đăng nhập để truy cập {0} này. apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +142,Complete By,Hoàn chỉnh bởi apps/frappe/frappe/templates/includes/comments/comments.py +48,{0} by {1},{0} bởi {1} apps/frappe/frappe/utils/password_strength.py +175,All-uppercase is almost as easy to guess as all-lowercase.,All-hoa là gần như là dễ đoán như tất cả-chữ thường. DocType: Feedback Trigger,Email Fieldname,Fieldname email -DocType: Website Settings,Top Bar Items,Top Bar mục +DocType: Website Settings,Top Bar Items,Các mẫu hàng ở thanh trên cùng apps/frappe/frappe/email/doctype/email_account/email_account.py +53,"Email id must be unique, Email Account is already exist \ - for {0}","Email id phải là duy nhất, tài khoản email đã tồn tại \ {0}" + for {0}","ID của email phải là duy nhất, tài khoản email đã tồn tại \ {0}" DocType: Print Settings,Print Settings,Thông số in ấn DocType: Page,Yes,Đồng ý DocType: DocType,Max Attachments,Max File đính kèm @@ -2493,11 +2497,11 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},Không tìm thấ apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,Họ và tên dễ đoán apps/frappe/frappe/config/website.py +93,Knowledge Base,Kiến thức cơ bản DocType: Workflow State,briefcase,cặp tài liệu -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},Giá trị không thể thay đổi cho {0} -DocType: Feedback Request,Is Manual,là Manual +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},Giá trị không thể thay đổi cho {0} +DocType: Feedback Request,Is Manual,là hướng dẫn DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange","Phong cách đại diện cho các nút màu: Thành công - Green, nguy hiểm - Đỏ, Inverse - Black, Tiểu học - Dark Blue, Thông tin - Light Blue, Cảnh báo - Orange" apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,Báo cáo không tải. Vui lòng sử dụng truy vấn báo cáo / [Báo cáo Tên] để chạy báo cáo. -DocType: Workflow Transition,Workflow Transition,Công việc chuyển tiếp +DocType: Workflow Transition,Workflow Transition,Chuyển tiếp quy trình làm việc apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +53,{0} months ago,{0} tháng trước apps/frappe/frappe/public/js/frappe/model/model.js +18,Created By,Tạo ra bởi apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +260,Dropbox Setup,Dropbox cài đặt @@ -2511,7 +2515,7 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +198,Series {0} already used apps/frappe/frappe/core/page/data_import_tool/importer.py +225,Unsupported File Format,Định dạng tập tin không được hỗ trợ DocType: DocField,Code,Code DocType: Workflow,"All possible Workflow States and roles of the workflow. Docstatus Options: 0 is""Saved"", 1 is ""Submitted"" and 2 is ""Cancelled""","Tất cả Workflow Kỳ có thể và vai trò của công việc này. Docstatus Options: 0 là "Saved", 1 là "Đăng" và 2 là "hủy"" -DocType: Website Theme,Footer Text Color,Footer Text Color +DocType: Website Theme,Footer Text Color,Phần chân của màu văn bản apps/frappe/frappe/public/js/frappe/model/meta.js +187,Last Modified On,Sửa đổi lần cuối vào apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +24,"Permissions at level 0 are Document Level permissions, i.e. they are primary for access to the document.","Quyền ở mức 0 là quyền hạn cấp độ văn bản, nghĩa là chúng chủ yếu là để để truy cập vào tài liệu." DocType: Print Format,Print Format,Định dạng in @@ -2523,7 +2527,7 @@ DocType: Address,Tripura,Tripura DocType: About Us Settings,"""Company History""","""Lịch sử công ty""" apps/frappe/frappe/permissions.py +397,Permission already set,Cho phép đã được thiết lập DocType: Address,Tamil Nadu,Tamil Nadu -DocType: Email Rule,Email Rule,email Rule +DocType: Email Rule,Email Rule,Điều lệ Email apps/frappe/frappe/core/doctype/docshare/docshare.py +47,{0} shared this document with everyone,{0} đã chia sẻ tài liệu này với tất cả mọi người apps/frappe/frappe/desk/page/activity/activity_row.html +17,Commented on {0}: {1},Nhận xét về {0}: {1} apps/frappe/frappe/templates/pages/integrations/stripe_checkout.py +28,Looks like someone sent you to an incomplete URL. Please ask them to look into it.,Hình như có ai đó gửi cho bạn một URL không đầy đủ. Hãy yêu cầu họ phải kiểm tra nó. @@ -2542,7 +2546,7 @@ apps/frappe/frappe/config/core.py +22,Pages in Desk (place holders),Các trang t DocType: DocField,Collapsible Depends On,Phụ thuộc ráp On apps/frappe/frappe/website/doctype/blog_post/templates/blog_post_row.html +14,By,Bởi DocType: Print Settings,Allow page break inside tables,Cho phép trang phá vỡ bên trong bảng -DocType: Email Account,SMTP Server,SMTP Server +DocType: Email Account,SMTP Server,máy chủ SMTP DocType: Print Format,Print Format Help,Định dạng in Trợ giúp apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +63,Update the template and save in downloaded format before attaching.,Cập nhật mẫu và lưu ở định dạng đã tải xuống trước khi đính kèm. apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +851,With Groups,Với các nhóm @@ -2553,10 +2557,10 @@ DocType: Event,Every Month,Mỗi tháng DocType: Letter Head,Letter Head in HTML,Tiêu đề trang HTML DocType: Web Form,Web Form,mẫu web DocType: About Us Settings,Org History Heading,Org Lịch sử nhóm -apps/frappe/frappe/core/doctype/user/user.py +471,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Lấy làm tiếc. Bạn đã đạt đến giới hạn tối đa cho người sử dụng đăng ký của bạn. Bạn có thể vô hiệu hóa một người dùng hiện có hoặc mua một kế hoạch thuê bao cao hơn. +apps/frappe/frappe/core/doctype/user/user.py +471,Sorry. You have reached the maximum user limit for your subscription. You can either disable an existing user or buy a higher subscription plan.,Rất tiếc. Bạn đã đạt tới ngưỡng người dùng tối đa cho việc đăng ký. Bạn có thể vô hiệu hóa một người dùng hoặc mua một bản đăng ký lớn hơn DocType: Print Settings,Allow Print for Cancelled,cho phép để hủy DocType: Communication,Integrations can use this field to set email delivery status,Tích hợp có thể sử dụng trường này để thiết lập tình trạng giao hàng email -DocType: Web Form,Web Page Link Text,Trang web liên kết đề mục +DocType: Web Form,Web Page Link Text,Văn bản liên kết trang web DocType: Page,System Page,Trang Hệ thống DocType: Page,System Page,Trang Hệ thống apps/frappe/frappe/config/setup.py +183,"Set default format, page size, print style etc.","Thiết lập định dạng mặc định, kích thước trang, phong cách in vv" @@ -2571,13 +2575,13 @@ apps/frappe/frappe/config/setup.py +230,Custom Translations,tuỳ chỉnh Dịch apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,"Tiến bộ, tiến trình" apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,bởi Vai trò apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,Thiếu trường -apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,tên trường không hợp lệ '{0}' trong autoname -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,Tìm kiếm trong một loại tài liệu +apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,tên trường không hợp lệ '{0}' trong tên tự động +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,Tìm kiếm trong một loại tài liệu apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,Cho phép trường vẫn có thể chỉnh sửa ngay cả sau khi nộp hồ sơ -DocType: Custom DocPerm,Role and Level,Vai trò và Cấp +DocType: Custom DocPerm,Role and Level,Vai trò và Cấp độ DocType: File,Thumbnail URL,URL hình đại diện apps/frappe/frappe/desk/moduleview.py +37,Custom Reports,Báo cáo tùy chỉnh -DocType: Website Script,Website Script,website Script +DocType: Website Script,Website Script,Bản thảo website DocType: GSuite Settings,If you aren't using own publish Google Apps Script webapp you can use the default https://script.google.com/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec ,"Nếu bạn không sử dụng webapp của Google Apps Script xuất bản của riêng bạn, bạn có thể sử dụng https://macl.com/vi/macros/s/AKfycbxIFOx3301xwtF2IFPJ4pUQGqkNF3hBiBebppWkeKn6fKZRQvk/exec" apps/frappe/frappe/config/setup.py +188,Customized HTML Templates for printing transactions.,Customized Templates HTML cho các giao dịch in ấn. apps/frappe/frappe/public/js/frappe/form/print.js +250,Orientation,Sự định hướng @@ -2589,27 +2593,28 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(Ctrl + G) DocType: Contact,More Information,Thêm thông tin DocType: Desktop Icon,Desktop Icon,Biểu tượng Desktop -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,thanh toán của bạn đã được chấp nhận thành công +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,thanh toán của bạn đã được chấp nhận thành công apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,Xin lỗi! Bạn không được phép xem trang này. apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,Mẹo: kích đúp vào ô để chỉnh sửa DocType: Workflow State,bell,chuông apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Lỗi trong Cảnh báo qua email apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,Lỗi trong Cảnh báo qua email apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,Chia sẻ tài liệu này với +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,Thiết lập> Quản lý Quyền Người dùng apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1} không thể là một cuống lá vì nó có nhánh con DocType: Communication,Info,Thông tin -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,Thêm bản đính kèm +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,Thêm bản đính kèm DocType: Communication,Email,Email -apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Cảm ơn bạn đã tin nhắn của bạn -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,Gửi tin xác nhận đọc +apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,Cảm ơn vì tin nhắn của bạn +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,Gửi tin xác nhận đọc DocType: Stripe Settings,Stripe Settings,Cài đặt Sọc DocType: Stripe Settings,Stripe Settings,Cài đặt Sọc DocType: Dropbox Settings,Dropbox Setup via Site Config,Dropbox cài đặt qua trang web Config -apps/frappe/frappe/www/login.py +64,Invalid Login Token,Đăng nhập vào token không hợp lệ +apps/frappe/frappe/www/login.py +64,Invalid Login Token,Đăng nhập vào thông báo không hợp lệ apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +48,1 hour ago,1 giờ trước -DocType: Social Login Keys,Frappe Client ID,Sinh tố Client ID +DocType: Social Login Keys,Frappe Client ID,ID Frappe của khách hàng DocType: Website Settings,Home Page,Trang chủ -DocType: Error Snapshot,Parent Error Snapshot,Lỗi snapshot gốc +DocType: Error Snapshot,Parent Error Snapshot,Lỗi chụp nhanh gốc DocType: Kanban Board,Filters,Bộ lọc DocType: Workflow State,share-alt,cổ alt apps/frappe/frappe/utils/background_jobs.py +169,Queue should be one of {0},Hàng chờ nên là một trong {0} @@ -2643,7 +2648,7 @@ DocType: Workflow Document State,Workflow Document State,Công việc tài liệ apps/frappe/frappe/public/js/frappe/request.js +116,File too big,Tệp quá lớn apps/frappe/frappe/core/doctype/user/user.py +479,Email Account added multiple times,Tài khoản Email thêm nhiều lần DocType: Payment Gateway,Payment Gateway,Cổng thanh toán -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Để cung cấp cho acess cho một vai trò chỉ ghi cụ thể, kiểm tra các Áp dụng tài Permissions. Quyền sử dụng được sử dụng để hạn chế người sử dụng với vai trò như hồ sơ cụ thể." +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +32,"To give acess to a role for only specific records, check the Apply User Permissions. User Permissions are used to limit users with such role to specific records.","Để cung cấp truy cập vào vai trò cho riêng các bản ghi, kiểm tra các quyền hạn áp dụng cho người dùng. Quyền hạn người dùng được sử dụng để giới hạn người dùng với vai trò cho các bản ghi đặc biệt" DocType: Portal Settings,Hide Standard Menu,Hide chuẩn đơn apps/frappe/frappe/config/setup.py +151,Add / Manage Email Domains.,Thêm / Quản lý Tên miền Email. apps/frappe/frappe/workflow/doctype/workflow/workflow.py +70,Cannot cancel before submitting. See Transition {0},Không thể hủy bỏ trước khi trình. Xem chuyển {0} @@ -2658,16 +2663,16 @@ apps/frappe/frappe/utils/data.py +462,Zero,Số 0 apps/frappe/frappe/core/doctype/doctype/doctype.py +92,Not in Developer Mode! Set in site_config.json or make 'Custom' DocType.,Không có trong chế độ nhà phát triển!Thiết lập trong site_config.json hoặc làm DocType 'Custom'. DocType: Workflow State,globe,toàn cầu DocType: System Settings,dd.mm.yyyy,ngày.tháng.năm -apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +251,Hide field in Standard Print Format,Ẩn Lĩnh vực trong dạng in in tiêu chuẩn +apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +251,Hide field in Standard Print Format,Ẩn Lĩnh vực trong dạng in tiêu chuẩn DocType: ToDo,Priority,Ưu tiên DocType: Email Queue,Unsubscribe Param,Hủy đăng ký Param DocType: Auto Email Report,Weekly,Hàng tuần -DocType: Communication,In Reply To,Trong Reply To +DocType: Communication,In Reply To,Trong Phản hồi tới DocType: DocType,Allow Import (via Data Import Tool),Cho phép nhập khẩu (thông qua Công cụ Nhập dữ liệu) apps/frappe/frappe/templates/print_formats/standard_macros.html +30,Sr,sr DocType: DocField,Float,Phao apps/frappe/frappe/www/update-password.html +71,Invalid Password,Mật khẩu không hợp lệ -DocType: Contact,Purchase Master Manager,Thạc sĩ Quản lý mua hàng +DocType: Contact,Purchase Master Manager,Mua chủ quản lý DocType: Module Def,Module Name,Tên mô-đun apps/frappe/frappe/public/js/frappe/views/image/image_view.js +172,No Images found,Không có hình ảnh nào được tìm thấy DocType: DocType,DocType is a Table / Form in the application.,DOCTYPE là một Table / Form trong ứng dụng. @@ -2675,12 +2680,13 @@ DocType: Email Account,GMail,GMail DocType: Address,Party GSTIN,Mã số GST cuả đối tác apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +112,{0} Report,{0} Báo cáo DocType: Communication,SMS,tin nhắn -DocType: DocType,Web View,Web Xem -apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Cảnh báo: Định dạng in này là theo Style cũ và không thể được tạo ra thông qua API. +DocType: DocType,Web View,Xem web +apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,Cảnh báo: Định dạng in này là theo kiểu cũ và không thể được tạo ra thông qua API. DocType: DocField,Print Width,Chiều rộng in ,Setup Wizard,Trình cài đặt +DocType: Address,GST State Number,Số tiểu bang GST DocType: User,Allow user to login only before this hour (0-24),Cho phép người dùng đăng nhập chỉ trước khi giờ này (0-24) -apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Folder là bắt buộc +apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,Thư mục là bắt buộc apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, please enable Allow Print For {0} in Print Settings","Không được phép đính kèm {0} tài liệu, vui lòng bật Cho phép In Cho {0} trong Cài đặt In" apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2703,12 +2709,12 @@ DocType: Event,Event Type,Loại sự kiện DocType: User,Last Known Versions,Các phiên bản được biết tới cuối cùng apps/frappe/frappe/config/setup.py +146,Add / Manage Email Accounts.,Thêm / Quản lý tài khoản Email. DocType: Blog Category,Published,Công bố -apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Cảm ơn bạn đã gửi email +apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email,Cảm ơn vì email này DocType: DocField,Small Text,Tiêu đề nhỏ apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,Quản trị viên truy cập {0} vào {1} qua IP Address {2}. apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,Bằng -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Các tùy chọn ""Liên kết động"" của kiểu trường phải nhắm tới một đường dẫn của trường khác với các tùy chọn như là 'Kiểu văn bản'" -DocType: About Us Settings,Team Members Heading,Nhóm thành viên nhóm +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',"Các tùy chọn ""Liên kết động"" của kiểu trường phải nhắm tới một đường dẫn của trường khác với các tùy chọn như là 'Kiểu văn bản'" +DocType: About Us Settings,Team Members Heading,Các thành viên nhóm dẫn đầu apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,Định dạng CSV không hợp lệ apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,Đặt Số Backups DocType: DocField,Do not allow user to change after set the first time,Không cho phép người dùng thay đổi sau khi thiết lập lần đầu tiên @@ -2718,7 +2724,7 @@ DocType: Contact,Contact,Liên hệ DocType: User,Third Party Authentication,Bên thứ ba xác thực DocType: Website Settings,Banner is above the Top Menu Bar.,BIểu ngữ nằm trên cùng thanh menu DocType: Razorpay Settings,API Secret,API Bí mật -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,Báo cáo xuất khẩu: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,Báo cáo xuất khẩu: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1} không tồn tại DocType: Email Account,Port,Cảng DocType: Print Format,Arial,Arial @@ -2735,13 +2741,13 @@ DocType: About Us Settings,More content for the bottom of the page.,Nhiều nộ DocType: Workflow,DocType on which this Workflow is applicable.,DocType mà Workflow này được áp dụng. DocType: Feedback Trigger,Enabled,Đã bật DocType: Tag Category,Category Name,Category Name -apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Subscribers nhập +apps/frappe/frappe/email/doctype/email_group/email_group.js +11,Import Subscribers,Nhập vào những người đăng ký DocType: Print Settings,PDF Settings,Thiết lập định dạng file PDF DocType: Kanban Board Column,Column Name,Tên cột DocType: Language,Based On,Dựa trên apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,Tạo mặc định apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,Kiểm tra URL sinh tố Máy chủ -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} cho {1} có thể không được lập chỉ mục +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,Fieldtype {0} cho {1} có thể không được lập chỉ mục DocType: Communication,Email Account,Tài khoản Email DocType: Workflow State,Download,Đã tải xuống DocType: Blog Post,Blog Intro,Giới thiệu Blog @@ -2752,7 +2758,7 @@ DocType: Web Page,Insert Code,Chèn Mã DocType: ToDo,Low,Thấp apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,Bạn có thể thêm các thuộc tính đa năng từ các tài liệu bằng cách sử dụng khuôn mẫu Jinja. apps/frappe/frappe/commands/site.py +451,Invalid limit {0},Giới hạn {0} không hợp lệ -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,Liệt kê một loại tài liệu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,Liệt kê một loại tài liệu DocType: Event,Ref Type,Tài liệu tham khảo Loại apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.","Nếu bạn đang tải lên bản ghi mới, để trống ""tên"" (ID) cột trống" DocType: Address,Chattisgarh,Chattisgarh @@ -2774,26 +2780,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,B DocType: Print Settings,Send Print as PDF,Gửi In PDF DocType: Web Form,Amount,Giá trị DocType: Workflow Transition,Allowed,Cho phép -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,Có thể chỉ có một Fold trong một hình thức +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,Chỉ có thể có một lần trong một mẫu apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},Không thể viết dạng tệp tin cho {0} apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,Khôi phục thông số mặc định apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,Trang chủ không hợp lệ apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,Đăng nhập không hợp lệ. Thử lại. -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Tùy chọn bắt buộc cho trường Loại liên kết hoặc Loại bảng {0} trong hàng {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},Tùy chọn bắt buộc cho trường Loại liên kết hoặc Loại bảng {0} trong hàng {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Tùy chọn bắt buộc cho trường Loại liên kết hoặc Loại bảng {0} trong hàng {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},Tùy chọn bắt buộc cho trường Loại liên kết hoặc Loại bảng {0} trong hàng {1} DocType: Auto Email Report,Send only if there is any data,Chỉ gửi nếu có bất kỳ dữ liệu apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,Thiết lập lại bộ lọc -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0}: Quyền ở mức 0 phải được thiết lập trước khi thiết lập cấp độ cao hơn +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0}: Quyền ở mức 0 phải được thiết lập trước khi thiết lập cấp độ cao hơn apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},Chuyển nhượng đóng cửa bởi {0} DocType: Integration Request,Remote,Xa -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,Tính toán +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,Tính toán apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,Vui lòng chọn DocType đầu tiên apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,Xác nhận Email của bạn apps/frappe/frappe/www/login.html +42,Or login with,Hoặc đăng nhập với DocType: Error Snapshot,Locals,Người dân địa phương apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},Thông qua {0} trên {1}: {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0} nhắc đến bạn trong một bình luận tại {1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ví dụ: (55 + 434) / 4 hoặc = Math.sin (Math.PI / 2) ... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,ví dụ: (55 + 434) / 4 hoặc = Math.sin (Math.PI / 2) ... apps/frappe/frappe/model/naming.py +44,{0} is required,{0} được yêu cầu DocType: Integration Request,Integration Type,Loại tích hợp DocType: Newsletter,Send Attachements,Gửi tệp đính kèm @@ -2803,15 +2809,15 @@ DocType: DocField,Perm Level,Cấp độ cho phép apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,Sự kiện Trong Hôm nay của Lịch DocType: Web Page,Web Page,Trang web DocType: Blog Category,Blogger,Blogger -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},'Trong Tìm kiếm tổng quát' không được cho phép với loại {0} trong dãy {1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},"""Trong Tìm kiếm chung"" không được công nhận với loại {0} trong dãy {1}" +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},'Trong Tìm kiếm tổng quát' không được cho phép với loại {0} trong dãy {1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},"""Trong Tìm kiếm chung"" không được công nhận với loại {0} trong dãy {1}" apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,Xem danh sách -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},Ngày phải có định dạng: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},Ngày phải có định dạng: {0} DocType: Workflow,Don't Override Status,Đừng Override Status apps/frappe/frappe/www/feedback.html +90,Please give a rating.,Xin vui lòng cho một đánh giá. apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} Yêu cầu Phản Hồi apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,Thuật ngữ tìm kiếm -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,Những thành viên đầu tiên: Bạn +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,Người dùng đầu tiên: Bạn apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,Select Columns DocType: Translation,Source Text,Tiêu đề nguồn apps/frappe/frappe/www/login.py +55,Missing parameters for login,Tham số thiếu để đăng nhập @@ -2823,7 +2829,7 @@ apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +10,Reports,Báo cáo DocType: Page,No,Không DocType: Property Setter,Set Value,Thiết lập giá trị apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +247,Hide field in form,Ẩn trường ở dạng -apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +261,Illegal Access Token. Please try again,Bất hợp pháp truy cập Token. Vui lòng thử lại +apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +261,Illegal Access Token. Please try again,Truy cập thông báo bất hợp pháp. Vui lòng thử lại apps/frappe/frappe/public/js/frappe/desk.js +93,"The application has been updated to a new version, please refresh this page","Ứng dụng này đã được cập nhật lên phiên bản mới, hãy làm mới trang này" apps/frappe/frappe/core/doctype/communication/communication.js +35,Resend,Gửi lại DocType: Feedback Trigger,Optional: The alert will be sent if this expression is true,Tùy chọn: Các cảnh báo sẽ được gửi nếu biểu thức này là đúng sự thật @@ -2832,8 +2838,8 @@ DocType: Unhandled Email,Raw Email,Email thô apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for assignment,Chọn hồ sơ chuyển nhượng apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,Nhập khẩu DocType: ToDo,Assigned By,Giao By -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Bạn có thể sử dụng Tùy chỉnh Form để thiết lập level trên các trường. -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,Chọn khu vực của bạn +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,Bạn có thể sử dụng Tùy chỉnh mẫu để thiết lập cấp độ trên các đoạn. +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,Chọn khu vực của bạn DocType: Custom DocPerm,Level,Mức độ DocType: Custom DocPerm,Report,Báo cáo apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,Số tiền phải lớn hơn 0. @@ -2853,9 +2859,9 @@ DocType: Website Theme,Background,Lý lịch DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.","JSON danh sách các kiểu văn bản được sử dụng để áp dụng các quyền hạn người dùng. Nếu để trống, tất cả các kiểu văn bản được liên kết sẽ được sử dụng để áp dụng cho các quyền hạn của người dùng" DocType: Report,Ref DocType,Loại văn bản tham khảo apps/frappe/frappe/www/feedback.py +42,Please add a rating,Vui lòng thêm đánh giá -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0}: Không thể thiết lập Sửa mà không chọn Hủy bỏ +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0}: Không thể thiết lập Sửa mà không chọn Hủy bỏ apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,Trang đầy đủ -DocType: DocType,Is Child Table,Bảng là trẻ em +DocType: DocType,Is Child Table,Là bảng con apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0} phải là một trong {1} apps/frappe/frappe/public/js/frappe/form/form_viewers.js +28,{0} is currently viewing this document,{0} hiện tại đang xem tài liệu này apps/frappe/frappe/config/core.py +52,Background Email Queue,Nền hàng chờ email @@ -2865,37 +2871,37 @@ DocType: Workflow State,chevron-left,Chevron bên trái DocType: Communication,Sending,Gửi apps/frappe/frappe/auth.py +231,Not allowed from this IP Address,Không được phép từ địa chỉ IP này DocType: Website Slideshow,This goes above the slideshow.,Điều này đi trên các slideshow. -apps/frappe/frappe/config/setup.py +260,Install Applications.,Cài đặt ứng dụng. +apps/frappe/frappe/config/setup.py +260,Install Applications.,Cài đặt các ứng dụng DocType: Contact,Last Name,Tên DocType: Event,Private,Riêng -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,Không có cảnh báo cho ngày hôm nay +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,Không có cảnh báo cho ngày hôm nay DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),Gửi Email In File đính kèm dưới dạng PDF (Recommended) DocType: Web Page,Left,Trái DocType: Event,All Day,Tất cả các ngày apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +387,Show rows with zero values,Hiển thị các hàng với giá trị bằng không apps/frappe/frappe/integrations/utils.py +88,Looks like something is wrong with this site's payment gateway configuration. No payment has been made.,Trông giống như một cái gì đó là sai với cấu hình cổng thanh toán của trang web này. Thanh toán đã không được thực hiện. -DocType: Address,State,Trạng thái +DocType: Address,State,Báo cáo DocType: Workflow Action,Workflow Action,Công việc hành động -DocType: DocType,"Image Field (Must of type ""Attach Image"")",Hình ảnh Field (Phải loại "Đính kèm hình ảnh") +DocType: DocType,"Image Field (Must of type ""Attach Image"")","Trường hình ảnh (Phải loại ""Đính kèm hình ảnh"")" apps/frappe/frappe/utils/bot.py +43,I found these: ,Tôi tìm thấy sau đây: DocType: Event,Send an email reminder in the morning,Gửi một email nhắc nhở trong buổi sáng DocType: Blog Post,Published On,Được công bố trên DocType: Contact,Gender,Giới Tính apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,Thông tin bắt buộc đang bị mất -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,Dòng '{0}' không thể được thiết lập như là độc đáo vì nó có giá trị không phải duy nhất +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,Dòng '{0}' không thể được thiết lập như là độc đáo vì nó có giá trị không phải duy nhất apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,Chỉ có 200 lần chèn được cho phép trong một yêu cầu DocType: Footer Item,URL,URL DocType: ToDo,Reference Type,Loại tài liệu tham khảo DocType: Event,Repeat On,Lặp lại Mở DocType: Communication,Marked As Spam,Đánh dấu là spam -apps/frappe/frappe/utils/file_manager.py +333,There is some problem with the file url: {0},Có một số vấn đề với các url file: {0} -apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Cây +apps/frappe/frappe/utils/file_manager.py +333,There is some problem with the file url: {0},Có một số vấn đề với các url của tệp: {0} +apps/frappe/frappe/public/js/frappe/list/list_sidebar.html +26,Tree,Cây biểu thị apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +184,You are not allowed to print this report,Bạn không được phép in báo cáo này apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30,User Permissions,Quyền hạn người dùng DocType: Workflow State,warning-sign,Dấu hiệu cảnh báo DocType: Workflow State,User,Người dùng DocType: Website Settings,"Show title in browser window as ""Prefix - title""",Hiển thị tiêu đề trong cửa sổ trình duyệt như "Prefix - title" -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,văn bản trong loại tài liệu +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,văn bản trong loại tài liệu apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,Chạy thử nghiệm apps/frappe/frappe/handler.py +91,Logged Out,Đăng suất apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,Hơn... @@ -2904,35 +2910,35 @@ DocType: Bulk Update,Update Value,Cập nhật giá trị gia tăng apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},Đánh dấu đã {0} apps/frappe/frappe/model/rename_doc.py +25,Please select a new name to rename,Vui lòng chọn một tên mới để đổi tên apps/frappe/frappe/model/rename_doc.py +25,Please select a new name to rename,Vui lòng chọn một tên mới để đổi tên -apps/frappe/frappe/public/js/frappe/request.js +137,Something went wrong,Một cái gì đó đã đi sai +apps/frappe/frappe/public/js/frappe/request.js +137,Something went wrong,Có gì đó sai sót apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +186,Only {0} entries shown. Please filter for more specific results.,Chỉ hiển thị {0} mục. Vui lòng lọc để có kết quả cụ thể hơn. DocType: System Settings,Number Format,Định dạng số DocType: Auto Email Report,Frequency,Tần số DocType: Custom Field,Insert After,Chèn sau DocType: Social Login Keys,GitHub Client Secret,GitHub Khách hàng bí mật DocType: Report,Report Name,Tên báo cáo -DocType: Desktop Icon,Reverse Icon Color,Xếp Biểu tượng màu +DocType: Desktop Icon,Reverse Icon Color,Màu biển tượng đảo ngược DocType: Email Alert,Save,Lưu apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +405,Section Heading,Mục Heading -DocType: Website Settings,Title Prefix,Tiêu đề Tiền tố -DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Thông báo và mail số lượng lớn sẽ được gửi từ máy chủ đi ra này. +DocType: Website Settings,Title Prefix,tiền tố tiêu đề +DocType: Email Account,Notifications and bulk mails will be sent from this outgoing server.,Thông báo và mail số lượng lớn sẽ được gửi từ máy chủ đi DocType: Workflow State,cog,răng cưa apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on Migrate,Sync trên Migrate apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,Hiện nay Xem DocType: DocField,Default,Mặc định apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}đã thêm -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',Tìm kiếm '{0}' +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',Tìm kiếm '{0}' apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,Hãy lưu lại báo cáo đầu tiên apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0}người đăng ký đã được thêm apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,Không chứa DocType: Workflow State,star,ngôi sao -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,các giá trị cách nhau bằng dấu phẩy -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},Tối đa chiều rộng cho các loại tiền tệ là 100px trong hàng {0} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,các giá trị cách nhau bằng dấu phẩy +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},Tối đa chiều rộng cho các loại tiền tệ là 100px trong hàng {0} apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},Xin hãy chia sẻ thông tin phản hồi của bạn cho {0} apps/frappe/frappe/config/website.py +13,Content web page.,Trang web nội dung. apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,Thêm một vai trò mới DocType: Deleted Document,Deleted Document,Tài liệu bị xóa -apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went wrong,Rất tiếc! Một cái gì đó đã đi sai +apps/frappe/frappe/templates/includes/login/login.js +193,Oops! Something went wrong,Rất tiếc! Có gì đó không đúng DocType: Help Article,Category,thể loại apps/frappe/frappe/config/core.py +37,Client side script extensions in Javascript,Phần mở rộng phía khách hàng script trong Javascript apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +70,Guidelines to install ldap dependancies and python,Hướng dẫn cài đặt dependancies ldap và trăn @@ -2946,10 +2952,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,Không phải là một người sử dụng LDAP hợp lệ apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0} tình trạng ko hợp lệ apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',Vui lòng chọn phương thức thanh toán khác. PayPal không hỗ trợ các giao dịch bằng tiền tệ '{0}' -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,lĩnh vực tìm kiếm {0} là không hợp lệ +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,lĩnh vực tìm kiếm {0} là không hợp lệ DocType: Workflow State,ok-circle,ok-vòng tròn apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',Bạn có thể tìm thấy bằng cách đặt câu hỏi 'tìm trái cam trong các khách hàng' -apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Xin lỗi! Người sử dụng cần có quyền truy cập đầy đủ đến kỷ lục của chính họ. +apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,Xin lỗi! Người sử dụng cần có quyền truy cập đầy đủ với bản ghi của họ ,Usage Info,Thông tin sử dụng apps/frappe/frappe/utils/oauth.py +226,Invalid Token,Mã không hợp lệ DocType: Email Account,Email Server,Email Server @@ -2962,7 +2968,7 @@ DocType: Communication,Communication Type,Loại thông tin liên lạc DocType: DocField,Unique,Độc nhất apps/frappe/frappe/public/js/frappe/form/quick_entry.js +194,Ctrl+enter to save,Ctrl + Enter để tiết kiệm DocType: Email Account,Service,Dịch vụ -DocType: File,File Name,File Name +DocType: File,File Name,Tên tệp tin apps/frappe/frappe/core/page/data_import_tool/importer.py +365,Did not find {0} for {0} ({1}),Không tìm thấy {0} cho {0} ({1}) apps/frappe/frappe/utils/bot.py +176,"Oops, you are not allowed to know that","Rất tiếc, bạn không được phép để biết rằng" apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +21,Next,Tiếp theo @@ -2972,7 +2978,7 @@ apps/frappe/frappe/printing/doctype/print_format/print_format.js +26,Edit Format apps/frappe/frappe/core/doctype/user/user.py +249,Complete Registration,Hoàn tất đăng ký DocType: GSuite Settings,Enable,K.hoạt apps/frappe/frappe/public/js/frappe/form/toolbar.js +189,New {0} (Ctrl+B),Mới {0} (Ctrl + B) -apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Top Bar Color và Text Color là như nhau. Họ nên có độ tương phản tốt để có thể đọc được. +apps/frappe/frappe/website/doctype/website_theme/website_theme.py +40,Top Bar Color and Text Color are the same. They should be have good contrast to be readable.,Màu của thanh trên cùng và màu văn bản trùng nhau. Nên có độ tương phản tốt để có thể đọc được apps/frappe/frappe/core/page/data_import_tool/exporter.py +68,You can only upload upto 5000 records in one go. (may be less in some cases),Bạn chỉ có thể tải lên tối đa 5000 bản ghi trong một lệnh. (Có thể ít hơn trong một số trường hợp) apps/frappe/frappe/model/document.py +159,Insufficient Permission for {0},Không đủ quyền cho {0} apps/frappe/frappe/model/document.py +159,Insufficient Permission for {0},Không đủ quyền cho {0} @@ -2981,9 +2987,9 @@ DocType: Print Settings,Print Style,Kiểu in apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Không Liên kết với bất kỳ bản ghi nào apps/frappe/frappe/public/js/frappe/form/linked_with.js +51,Not Linked to any record,Không Liên kết với bất kỳ bản ghi nào DocType: Custom DocPerm,Import,Nhập khẩu -apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Row {0}: Không được phép để cho phép Allow Gửi cho lĩnh vực tiêu chuẩn +apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +178,Row {0}: Not allowed to enable Allow on Submit for standard fields,Hàng{0}: Không có quyền hạn để cho phép đệ trình các trường tiêu chuẩn apps/frappe/frappe/config/setup.py +100,Import / Export Data,Nhập/ xuất dữ liệu -apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Vai trò chuẩn không thể đổi tên +apps/frappe/frappe/core/doctype/role/role.py +12,Standard roles cannot be renamed,Vai trò tiêu chuẩn không thể đổi tên DocType: Communication,To and CC,To và CC apps/frappe/frappe/public/js/frappe/change_log.html +7,updated to {0},cập nhật để {0} DocType: User,Desktop Background,Desktop Background @@ -2992,9 +2998,9 @@ DocType: Workflow State,chevron-right,Chevron phải apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +216,"Change type of field. (Currently, Type change is \ allowed among 'Currency and Float')","Thay đổi loại hình trường. (Hiện nay, loại thay đổi được \ phép giữa 'tệ và Float')" -apps/frappe/frappe/website/doctype/web_form/web_form.py +37,You need to be in developer mode to edit a Standard Web Form,Bạn cần phải ở trong chế độ nhà phát triển để sửa một mẫu Web Standard +apps/frappe/frappe/website/doctype/web_form/web_form.py +37,You need to be in developer mode to edit a Standard Web Form,Bạn cần phải ở trong chế độ nhà phát triển để sửa một mẫu Tiêu chuẩn web apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +53,"For comparative filters, start with","Cho các bộ lọc so sánh, bắt đầu với" -DocType: Website Theme,Link to Bootstrap CSS,Liên kết với Bootstrap CSS +DocType: Website Theme,Link to Bootstrap CSS,Liên kết với chương trình khởi động CSS DocType: Workflow State,camera,máy ảnh DocType: Website Settings,Brand HTML,Nhãn HTML DocType: Desktop Icon,_doctype,_loại tài liệu @@ -3005,10 +3011,10 @@ DocType: User,Security Settings,Security Settings apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +863,Add Column,Thêm cột ,Desktop,Máy tính để bàn apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Report: {0},Xuất báo cáo: {0} -DocType: Auto Email Report,Filter Meta,lọc Meta -DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Văn bản sẽ được hiển thị cho liên kết đến trang Web nếu hình thức này có một trang web. Tuyến đường liên kết sẽ được tự động được tạo ra dựa trên `và` page_name` parent_website_route` +DocType: Auto Email Report,Filter Meta,lọc bản thử +DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,Văn bản sẽ được hiển thị cho liên kết đến trang Web nếu hình thức này có một trang web. Tuyến đường liên kết sẽ được tự động được tạo ra dựa trên `và` tên_trang` đường dẫn _ trang web _ lớn` DocType: Feedback Request,Feedback Trigger,Phản hồi Kích hoạt -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,Hãy đặt {0} đầu tiên +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,Hãy đặt {0} đầu tiên DocType: Unhandled Email,Message-id,Tin nhắn - tài khoản DocType: Patch Log,Patch,Vá DocType: Async Task,Failed,Thất bại @@ -3024,7 +3030,7 @@ DocType: Web Form,Amount Field,Số tiền Dòng DocType: Dropbox Settings,Send Notifications To,Gửi thông báo để DocType: Bulk Update,Max 500 records at a time,Max 500 hồ sơ tại một thời điểm DocType: Translation,"If your data is in HTML, please copy paste the exact HTML code with the tags.","Nếu dữ liệu của bạn trong HTML, hãy sao chép và dán mã HTML chính xác với các thẻ." -apps/frappe/frappe/utils/csvutils.py +35,Unable to open attached file. Did you export it as CSV?,Không thể mở tập tin đính kèm. Bạn đã xuất khẩu nó như CSV? +apps/frappe/frappe/utils/csvutils.py +35,Unable to open attached file. Did you export it as CSV?,Không thể mở tập tin đính kèm. Bạn đã xuất nó dưới dạng CSV? DocType: DocField,Ignore User Permissions,Bỏ qua tài Quyền apps/frappe/frappe/core/doctype/user/user.py +754,Please ask your administrator to verify your sign-up,Hãy yêu cầu quản trị của bạn để xác minh của bạn đăng ký DocType: Domain Settings,Active Domains,Kích hoạt miền diff --git a/frappe/translations/zh-TW.csv b/frappe/translations/zh-TW.csv index 103d882735..9f8e8f5a95 100644 --- a/frappe/translations/zh-TW.csv +++ b/frappe/translations/zh-TW.csv @@ -23,7 +23,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,請選 apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0}樹 DocType: User,User Emails,用戶電子郵件 DocType: User,Username,用戶名 -apps/frappe/frappe/model/base_document.py +581,Value too big,值過大 +apps/frappe/frappe/model/base_document.py +580,Value too big,值過大 DocType: DocField,DocField,DocField DocType: GSuite Settings,Run Script Test,運行腳本測試 DocType: Contact,Department,部門 @@ -36,7 +36,7 @@ apps/frappe/frappe/public/js/frappe/views/pageview.js +104,Sorry! I could not fi apps/frappe/frappe/config/core.py +42,Logs,日誌 DocType: Custom DocPerm,This role update User Permissions for a user,這個角色更新用戶權限的用戶 DocType: Workflow State,zoom-out,縮小 -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,無法打開{0} ,當它的實例是開放的 +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,無法打開{0} ,當它的實例是開放的 apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,表{0}不能為空 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,與總帳 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,圖片 @@ -49,7 +49,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,親 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",如果啟用,密碼強度將根據最低密碼分數值執行。值2為中等強度,4為非常強。 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",如果啟用,密碼強度將根據最低密碼分數值執行。值2為中等強度,4為非常強。 DocType: About Us Settings,"""Team Members"" or ""Management""",“團隊成員”或“管理” -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',預設為“查詢”字段類型必須是'0'或'1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',預設為“查詢”字段類型必須是'0'或'1' DocType: Contact,Designation,指定 DocType: Test Runner,Test Runner,測試運行 DocType: Auto Email Report,Monthly,每月一次 @@ -63,7 +63,7 @@ DocType: DocType,Is Published Field,發布現場 DocType: Email Group,Email Group,電子郵件組 DocType: Note,Seen By,看到通過 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,添加多個 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,不喜歡 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,不喜歡 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,設置顯示的標籤的字段 apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},不正確的值:{0}必須是{1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",更改欄位屬性(隱藏,唯讀權限等) @@ -109,7 +109,7 @@ DocType: Communication,Visit,訪問 DocType: Translation,Translation,翻譯 apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,安裝 DocType: Custom Script,Client,客戶 -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,這種形式已被修改,你已經裝好了之後, +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,這種形式已被修改,你已經裝好了之後, DocType: User Permission for Page and Report,User Permission for Page and Report,用戶權限的頁面和報告 DocType: Address,Himachal Pradesh,喜馬偕爾邦 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未設置,則貨幣精度將取決於數字格式 @@ -135,14 +135,14 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +35,Newsletter has alr apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,請註明用戶 DocType: Email Unsubscribe,Email Unsubscribe,電子郵件退訂 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,選擇約寬150像素的透明背景圖像以獲得最佳效果。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,第一個用戶將成為系統管理器(你可以改變這個版本)。 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,第一個用戶將成為系統管理器(你可以改變這個版本)。 ,App Installer,應用程序安裝程序 DocType: Workflow State,circle-arrow-up,圓圈箭頭向上 apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,上傳中... DocType: Email Domain,Email Domain,電子郵件域名 DocType: Workflow State,italic,斜體 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,為了所有人 -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} :沒有建立則無法設定導入 +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} :沒有建立則無法設定導入 apps/frappe/frappe/config/desk.py +26,Event and other calendars.,事件和其他日曆。 apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,所有字段都必須提交評論。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,拖動進行排序的列 @@ -154,8 +154,8 @@ DocType: Portal Settings,Standard Sidebar Menu,標準工具欄菜單 apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,無法刪除首頁和附件的文件夾 apps/frappe/frappe/config/desk.py +19,Files,檔 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,套用於用戶的權限設定是根據該用戶被指定的角色而定。 -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,你不被允許發送與此相關的文檔的電子郵件 -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,請選擇從{0}進行排序/組ATLEAST 1柱 +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,你不被允許發送與此相關的文檔的電子郵件 +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,請選擇從{0}進行排序/組ATLEAST 1柱 DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,檢查這個,如果你正在測試使用沙盒API付款 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,你不允許刪除標準的網站主題 DocType: Feedback Trigger,Example,例 @@ -182,7 +182,7 @@ DocType: Email Group,Total Subscribers,用戶總數 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色沒有訪問權限級別為0級,那麼更高的水平是沒有意義的。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,另存為 DocType: Communication,Seen,可見 -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,查看更多詳情 +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,查看更多詳情 DocType: System Settings,Run scheduled jobs only if checked,僅執行勾選的排定工作 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,如果章節標題啟用才會顯示 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,檔案 @@ -199,7 +199,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,隱藏標題 DocType: Address,Current,當前 DocType: Address,Current,當前 -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,相關文件 apps/frappe/frappe/config/core.py +17,Groups of DocTypes,文檔類型的組 DocType: Workflow State,remove-circle,刪除圈 DocType: Help Article,Beginner,初學者 @@ -212,9 +211,8 @@ DocType: Workflow,Defines workflow states and rules for a document.,定義文檔 DocType: Workflow State,Filter,過濾器 apps/frappe/frappe/config/setup.py +121,Update many values at one time.,同時更新多個值。 apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,錯誤:你已經打開了它之後,文件已被修改 -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,未找到默認地址模板。請從設置>打印和品牌>地址模板創建一個新的。 apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0}登出:{1} -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} :如果不可提交的話,便無法設為指定提交 +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} :如果不可提交的話,便無法設為指定提交 apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",通過過濾“{0}” DocType: Salutation,Administrator,管理員 apps/frappe/frappe/desk/page/chat/chat.js +54,Message from {0},從訊息{0} @@ -222,7 +220,7 @@ DocType: Communication,Closed,關閉 DocType: Blog Settings,Blog Title,部落格標題 apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,標準的角色不能被禁用 DocType: Newsletter,Newsletter,新聞 -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,不能使用子查詢,以便 +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,不能使用子查詢,以便 DocType: Web Form,Button Help,按鈕幫助 DocType: About Us Settings,Team Members,團隊成員 apps/frappe/frappe/public/js/frappe/upload.js +223,Please attach a file or set a URL,請附上一個文件或設置一個URL @@ -235,7 +233,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,讓您的全 apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",您的訂閱過期於{0}。要續訂,{1}。 DocType: Workflow State,plus-sign,加號 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,設置已經完成 -apps/frappe/frappe/__init__.py +890,App {0} is not installed,未安裝應用程序{0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,未安裝應用程序{0} DocType: Workflow State,Refresh,重新載入 DocType: Event,Public,公開 apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,沒有顯示 @@ -243,7 +241,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,喜歡通過 apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,電子郵件支持 DocType: DocField,Print Hide If No Value,打印隱藏如果沒有值 DocType: Event,yellow,黃色 -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,發布現場必須是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,發布現場必須是有效的字段名 apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,上傳附件 DocType: Block Module,Block Module,封鎖模組 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,導出模板 @@ -260,7 +258,7 @@ DocType: Website Settings,Set Banner from Image,從圖像設置橫幅 apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},一個新的帳戶在被創建為您{0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,電子郵件說明 apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,電子郵件說明 -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),輸入電子郵件收件人 +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),輸入電子郵件收件人 DocType: Print Format,Verdana,宋體 DocType: Email Flag Queue,Email Flag Queue,電子郵件標誌隊列 apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,無法識別開{0}。嘗試別的東西。 @@ -270,8 +268,8 @@ DocType: System Settings,Currency Precision,貨幣精確度 apps/frappe/frappe/public/js/frappe/request.js +113,Another transaction is blocking this one. Please try again in a few seconds.,另一個事務阻塞這一個。請稍後再試。 DocType: DocType,App,應用 DocType: Property Setter,Field Name,欄位名稱 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,模塊的名稱... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,繼續 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,模塊的名稱... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,繼續 DocType: Custom Field,Fieldname,欄位名稱 DocType: Workflow State,certificate,證書 DocType: User,Tile,瓦狀圖案 @@ -279,6 +277,7 @@ apps/frappe/frappe/templates/includes/login/login.js +106,Verifying...,驗證中 apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column must be blank.,第一個數據列必須為空。 apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,顯示所有版本 DocType: Workflow State,Print,列印 +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,儀表板 apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,無法在這個時候發送電子郵件 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,搜索或輸入命令 DocType: Communication,Timeline Name,時間軸名稱 @@ -288,8 +287,8 @@ DocType: Contact,Sales Master Manager,銷售主檔經理 apps/frappe/frappe/www/complete_signup.html +13,One Last Step,最後一步 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,你想這個字段鏈接到該文檔類型(DOCTYPE)下的名稱。如客戶 DocType: User,Roles Assigned,角色指定 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,搜索幫助 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,搜索幫助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,搜索幫助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,搜索幫助 DocType: Top Bar Item,Parent Label,父標籤 apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",查詢已收到。我們將儘快回覆郵件。如果您有任何其他的訊息,請回覆此郵件。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,權限會自動轉換為標準報表和搜索。 @@ -303,6 +302,7 @@ DocType: Blogger,Will be used in url (usually first name).,在URL(通常是第 DocType: Auto Email Report,Day of Week,星期幾 apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to add comment,Ctrl + Enter以添加評論 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,編輯標題 +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

沒有找到結果'

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,添加訂閱 apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,近期活動今日 DocType: Email Alert Recipient,Email By Document Field,電子郵件通過文檔欄位 @@ -320,16 +320,15 @@ DocType: Web Form,Amount Based On Field,用量以現場 apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,用戶是強制性的分享 DocType: DocField,Hidden,隱藏 DocType: Web Form,Allow Incomplete Forms,允許不完整的表格 -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0}必須先設定 +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0}必須先設定 apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",用幾個字,避免常用短語。 DocType: Workflow State,plane,飛機 -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,哎呀。您的付款失敗。 apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果您上傳新的記錄,“命名系列”變成強制性的,如果存在的話。 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,買到今天通知 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,買到今天通知 apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,DocType只能由管理員進行重命名 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},的改變後的值{0} apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,請檢查您的電子郵件驗證 -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,折疊不能在表單的端 +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,折疊不能在表單的端 DocType: Deleted Document,Deleted Name,刪除名稱 apps/frappe/frappe/config/setup.py +14,System and Website Users,系統和網站用戶 DocType: Workflow Document State,Doc Status,文件狀態 @@ -344,7 +343,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +695,You selected Draft or apps/frappe/frappe/model/document.py +1044,Document Queued,文檔排隊 DocType: Desktop Icon,List,名單 DocType: Communication,Link Name,鏈接名稱 -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,行{1}的欄位{0}若沒有預設值,則不能被隱藏及設為必須。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,行{1}的欄位{0}若沒有預設值,則不能被隱藏及設為必須。 DocType: System Settings,mm/dd/yyyy,mm/dd/yyyy apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,無效的密碼: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,無效的密碼: @@ -359,10 +358,11 @@ DocType: Print Format,Server,服務器 DocType: Desktop Icon,Link,鏈接 apps/frappe/frappe/utils/file_manager.py +96,No file attached,沒有附加的文件 DocType: User,Fill Screen,全螢幕 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",無法顯示此樹報告,由於數據缺失。最有可能的,它是被濾掉由於權限。 +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認電子郵件帳戶 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",無法顯示此樹報告,由於數據缺失。最有可能的,它是被濾掉由於權限。 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1.選擇文件 apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,通過上傳編輯 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",文檔類型...,如客戶 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",文檔類型...,如客戶 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,條件“{0}”無效 DocType: Workflow State,barcode,條碼 apps/frappe/frappe/config/setup.py +232,Add your own translations,添加您自己的翻譯 @@ -371,7 +371,7 @@ DocType: About Us Team Member,About Us Team Member,關於我們的團隊成員 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5,"Permissions are set on Roles and Document Types (called DocTypes) by setting rights like Read, Write, Create, Delete, Submit, Cancel, Amend, Report, Import, Export, Print, Email and Set User Permissions.",權限為對角色和文件類型(DocTypes)的設定值,諸如讀取、寫入、建立、刪除、提交、取消、修改、報表、匯入、匯出、列印、寄信與用戶權限設定等的權限設定。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",除了基於角色的權限規則,您可以根據文檔類型應用的用戶權限。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",這些權限將申請在那裡允許記錄被鏈接的所有交易。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,圖像字段必須是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,圖像字段必須是有效的字段名 DocType: OAuth Client,Token,象徵 DocType: Property Setter,ID (name) of the entity whose property is to be set,其屬性是要設定的實體的ID(名稱) apps/frappe/frappe/limits.py +82,"To renew, {0}.",要續訂,{0}。 @@ -380,7 +380,7 @@ DocType: Web Form,Sidebar Items,邊欄項目 apps/frappe/frappe/installer.py +125,App {0} already installed,已安裝App {0} DocType: Workflow State,exclamation-sign,驚嘆號標誌 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,顯示權限 -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,時間軸字段必須是一個鏈接或動態鏈接 +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,時間軸字段必須是一個鏈接或動態鏈接 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,日期範圍 apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,甘特圖 DocType: About Us Settings,Introduce your company to the website visitor.,對網站訪客介紹貴公司。 @@ -405,17 +405,17 @@ DocType: Workflow State,music,音樂 DocType: Web Page,Settings,設定 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,請註明文檔類型 DocType: Print Format,Style Settings,樣式設置 -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,排序字段{0}必須是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,排序字段{0}必須是有效的字段名 DocType: Contact,Sales Manager,銷售經理 DocType: Print Format,Format Data,格式數據 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,包含 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,包含 DocType: Customize Form Field,Customize Form Field,自定義表單域 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,允許用戶 DocType: OAuth Client,Grant Type,格蘭特類型 apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,勾選那些文件是用戶可讀取的 apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,列表應用不允許 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,使用%作為通配符 -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",電子郵件域名未配置此帳戶,創建一個嗎? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,使用%作為通配符 +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",電子郵件域名未配置此帳戶,創建一個嗎? DocType: User,Reset Password Key,重設密碼鍵值 DocType: Email Account,Enable Auto Reply,啟用自動回复 apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,沒見過 @@ -456,7 +456,7 @@ DocType: DocField,Set Only Once,設置一次 DocType: Email Queue Recipient,Email Queue Recipient,電子郵件收件人排隊 DocType: Address,Nagaland,那加蘭邦 apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,用戶名{0}已存在 -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} :無法設定導入,因為{1}不是可導入的 +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} :無法設定導入,因為{1}不是可導入的 apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},有一個在你的地址模板錯誤{0} DocType: Footer Item,"target = ""_blank""",目標=“_blank” DocType: Workflow State,hdd,硬盤 @@ -466,7 +466,7 @@ DocType: Communication,From Full Name,從全名 apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},您沒有訪問報告:{0} DocType: User,Send Welcome Email,發送歡迎電子郵件 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,上傳包含在相同的格式,下載的所有用戶權限的CSV文件。 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,刪除過濾器 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,刪除過濾器 DocType: Address,Daman and Diu,達曼和迪烏 DocType: Address,Personal,個人 apps/frappe/frappe/config/setup.py +113,Bulk Rename,批次重命名 @@ -491,11 +491,11 @@ apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +33,Send apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",標準DocType不能具有默認打印格式,請使用自定義表單 apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",標準DocType不能具有默認打印格式,請使用自定義表單 DocType: Report,Query,查詢 -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},“在列表視圖中”第{1}行的類型{0}不允許 +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},“在列表視圖中”第{1}行的類型{0}不允許 DocType: Custom Field,Select the label after which you want to insert new field.,之後要插入新字段中選擇的標籤。 ,Document Share Report,文檔分享舉報 DocType: User,Last Login,上次登錄 -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},行{0}的欄位名稱是必需的 +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},行{0}的欄位名稱是必需的 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,柱 DocType: Custom Field,Adds a custom field to a DocType,添加自定義字段,以一個DOCTYPE DocType: File,Is Home Folder,是主文件夾 @@ -522,7 +522,7 @@ apps/frappe/frappe/public/js/frappe/upload.js +364,Make file(s) private or publi apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send to {0},要寄送給{0}的排程 DocType: DocShare,Everyone,大家 DocType: Workflow State,backward,落後 -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:只具允許有一個同的角色,級別和{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:只具允許有一個同的角色,級別和{1} DocType: Email Queue,Add Unsubscribe Link,添加退訂鏈接 apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,還沒有評論。開始一個新的討論。 apps/frappe/frappe/limits.py +33,"Your subscription expired on {0}. To renew, please send an email to {1}.",您的訂閱過期於{0}。要續訂,請發送電子郵件至{1}。 @@ -539,7 +539,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +22,Last Updated By,最後更 apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,是不允許的。 apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,查看訂閱 DocType: Website Theme,Background Color,背景顏色 -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,還有在發送電子郵件是錯誤的。請再試一次。 +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,還有在發送電子郵件是錯誤的。請再試一次。 DocType: Portal Settings,Portal Settings,門戶網站設置 apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,您確定要重新鏈接該通信{0}? apps/frappe/frappe/www/login.html +104,Send Password,發送密碼 @@ -564,7 +564,7 @@ DocType: Contact Us Settings,Contact Us Settings,聯絡我們的設定 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,正在搜尋... apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,正在搜尋... DocType: Workflow State,text-width,文字寬度 -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,此記錄最大附件限制到達。 +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,此記錄最大附件限制到達。 apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,以下必填字段必須填寫:
DocType: Email Alert,View Properties (via Customize Form),視圖屬性(通過自定義窗體) DocType: Note Seen By,Note Seen By,注意看通過 @@ -574,21 +574,21 @@ DocType: Address,Rajasthan,拉賈斯坦邦 apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,報表生成器報表直接由報表生成器來管理。無事可做。 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,請驗證您的郵箱地址 apps/frappe/frappe/model/document.py +903,none of,沒有 -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,給我發一份 +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,給我發一份 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,上傳用戶權限 DocType: Dropbox Settings,App Secret Key,應用保密密鑰 apps/frappe/frappe/config/website.py +7,Web Site,網站 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,勾選將在桌面上顯示的項目 -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0}不能設定為單一類型 +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0}不能設定為單一類型 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0}正在查看該文檔 -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,報告不能單類型設置 +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,報告不能單類型設置 DocType: Email Account,Awaiting Password,等待密碼 apps/frappe/frappe/utils/data.py +441,Cent,一分錢 apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email,寫郵件 apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",工作流程狀態(例如草稿,已批准,已取消)。 DocType: Print Settings,Allow Print for Draft,允許打印草稿 apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,設置數量 -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,提交該文件以確認 +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,提交該文件以確認 DocType: Contact,Unsubscribed,退訂 apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,對於頁面和報表設置自定義角色 apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,評分: @@ -607,7 +607,7 @@ DocType: Print Format,Align Labels to the Left,對準標籤的左 DocType: Help Article,Expert,專家 DocType: Workflow State,circle-arrow-right,圓圈箭頭向右 DocType: LDAP Settings,LDAP Server Url,LDAP服務器URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,無法打開實例時,它的{0}是開放的 +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,無法打開實例時,它的{0}是開放的 apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,排隊等待安裝 DocType: Newsletter,Send Unsubscribe Link,發送退訂鏈接 DocType: Report,Script Report,腳本報告 @@ -622,7 +622,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,應用{0}移除 DocType: Custom DocPerm,Apply User Permissions,套用用戶權限 DocType: User,Modules HTML,HTML模塊 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,設置>用戶權限管理器 apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,遺漏必須值 DocType: DocType,Other Settings,其他設置 apps/frappe/frappe/core/doctype/communication/communication_list.js +17,Mark as Unread,標記為未讀 @@ -639,7 +638,7 @@ DocType: DocType,Search Fields,搜索欄位 DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth的承載令牌 apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,沒有選定的文檔 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,博士 -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",在{0},{1}中寫道: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",在{0},{1}中寫道: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,無法刪除標準的現場。你可以將其隱藏,如果你想 DocType: Top Bar Item,For top bar,對於頂端選單 apps/frappe/frappe/utils/bot.py +148,Could not identify {0},無法識別{0} @@ -651,7 +650,7 @@ DocType: Role,Desk Access,台訪問 DocType: Workflow State,minus,減 apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,服務器錯誤:請檢查您的服務器日誌或聯絡技術支持。 apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,歡迎發送電子郵件 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,讓我們準備系統首次使用。 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,讓我們準備系統首次使用。 apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,精選 apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,已註冊 DocType: System Settings,Float Precision,浮點數精度 @@ -663,7 +662,7 @@ DocType: Web Form,Allow Print,允許打印 apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,應用程式未安裝 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,標記字段作為強制性 DocType: Communication,Clicked,點擊 -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},沒有權限“{0}” {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},沒有權限“{0}” {1} DocType: User,Google User ID,Google的用戶ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,計劃送 DocType: DocType,Track Seen,軌道看 @@ -725,7 +724,7 @@ DocType: Communication,Sent,已送出 DocType: File,Lft,LFT DocType: User,Simultaneous Sessions,並發會話 DocType: OAuth Client,Client Credentials,客戶端憑證 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,打開一個模塊或工具 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,打開一個模塊或工具 DocType: Communication,Delivery Status,交貨狀態 DocType: Module Def,App Name,應用程式名稱 apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,允許最大文件大小為{0} MB @@ -737,8 +736,8 @@ DocType: Feedback Request,Reference Communication,參考通信 DocType: Email Queue,Unsubscribe Method,退訂方法 DocType: GSuite Templates,Related DocType,相關DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,編輯添加內容 -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,選擇語言 -apps/frappe/frappe/__init__.py +510,No permission for {0},對於無許可{0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,選擇語言 +apps/frappe/frappe/__init__.py +509,No permission for {0},對於無許可{0} DocType: DocType,Advanced,先進 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,似乎API密鑰或API的秘密是錯誤的! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},參考:{0} {1} @@ -757,7 +756,7 @@ DocType: Customize Form,Enter Form Type,輸入表單類型 apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,沒有記錄標記。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,刪除字段 DocType: User,Send Password Update Notification,發送密碼更新通知 -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",允許的DOCTYPE,DocType 。要小心! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",允許的DOCTYPE,DocType 。要小心! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",自定義列印及電子郵件的格式, DocType: Custom Field,Depends On,取決於 DocType: Event,Green,綠 @@ -839,6 +838,7 @@ apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +169,Max att apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,請選擇要復制的文件 apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,檢查一個時刻 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,顯示標籤 +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",如果選中了“嚴格用戶權限”,並為用戶定義了“用戶權限”,則該鏈接的值為空的所有文檔將不會顯示給該用戶 DocType: Address,Billing,計費 DocType: Email Queue,Not Sent,未發送 DocType: Workflow State,align-justify,對齊對齊 @@ -866,6 +866,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,清除 apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,每天的活動應該結束在同一天。 DocType: Communication,User Tags,用戶標籤 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,獲取圖像.. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,設置>用戶 DocType: Workflow State,download-alt,下載的Alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},下載應用程序{0} DocType: Communication,Feedback Request,反饋請求 @@ -880,7 +881,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,備份 apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,增加聯繫人 DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,可選:總是發送給這些ID。在新行的每個電子郵件地址 -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,隱藏詳情 +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,隱藏詳情 DocType: Workflow State,Tasks,任務 DocType: Blog Settings,Blog Settings,部落格設定 apps/frappe/frappe/templates/emails/new_user.html +17,You can also copy-paste this link in your browser,您也可以複製粘貼此鏈接到瀏覽器 @@ -895,9 +896,8 @@ DocType: Website Settings,Hide Footer Signup,隱藏頁腳註冊 apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,寫一個Python文件,在這個被保存在同一文件夾中,並返回列和結果。 DocType: DocType,Sort Field,排序欄位 DocType: Razorpay Settings,Razorpay Settings,Razorpay設置 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,編輯過濾器 -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,域{0}類型{1}不能強制 -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",例如。如果應用用戶權限的檢查報告的DocType,但沒有用戶權限被定義為報告用戶,那麼所有的報告都顯示該用戶 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,編輯過濾器 +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,域{0}類型{1}不能強制 apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,隱藏圖表 DocType: System Settings,Session Expiry Mobile,會話過期移動 apps/frappe/frappe/templates/includes/search_box.html +19,Search results for,為。。。。尋找結果 @@ -911,11 +911,13 @@ DocType: Communication,Delayed,延遲 apps/frappe/frappe/config/setup.py +128,List of backups available for download,可供下載的備份目錄 apps/frappe/frappe/www/login.html +89,Sign up,報名 DocType: Test Runner,Output,產量 +DocType: Email Alert,Set Property After Alert,警報後設置屬性 apps/frappe/frappe/config/setup.py +226,Add fields to forms.,將欄位添加到表單。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,看起來這個網站的Paypal配置有問題。 DocType: Workflow State,leaf,葉 DocType: Portal Menu Item,Portal Menu Item,門戶菜單項 DocType: User Email,Email ID,電子郵件ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",如果為Report DocType選中了“應用用戶權限”,但是為“用戶報告”定義了用戶權限,則會向該用戶顯示所有報告 DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,資源的列表,它的客戶端應用程序必須將用戶允許後訪問。
如項目 DocType: Translation,Translated Text,翻譯文本 DocType: Contact Us Settings,Query Options,查詢選項 @@ -932,7 +934,7 @@ DocType: Address,Contacts,往來 DocType: System Settings,Setup Complete,安裝完成 apps/frappe/frappe/config/setup.py +66,Report of all document shares,所有的文件共享報告 apps/frappe/frappe/www/update-password.html +18,New Password,新密碼 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,過濾器{0}丟失 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,過濾器{0}丟失 apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,抱歉!不能刪除自動生成的註釋 DocType: Website Theme,Style using CSS,使用CSS樣式 apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,DocType參照 @@ -987,7 +989,7 @@ DocType: Email Account,Default Incoming,預設傳入信箱 DocType: Workflow State,repeat,重複 DocType: Website Settings,Banner,橫幅 DocType: Role,"If disabled, this role will be removed from all users.",如果禁用了,這個角色將會從所有用戶中刪除。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,搜索幫助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,搜索幫助 apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,註冊但被禁用 DocType: DocType,Hide Copy,隱藏副本 apps/frappe/frappe/model/base_document.py +361,{0} must be unique,{0}必須是獨特的 @@ -1015,7 +1017,7 @@ DocType: Feedback Request,Is Sent,已發送 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +61,About,關於 apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you can update only selective columns.",對於更新,您可以更新只選擇列。 DocType: Address,Country,國家 -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,附加文件列印 +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,附加文件列印 DocType: Bulk Update,Field,領域 DocType: Social Login Keys,Google Client ID,Google客戶ID DocType: Email Alert,"Trigger on valid methods like ""before_insert"", ""after_update"", etc (will depend on the DocType selected)",像“before_insert”,“after_update”等有效方法觸發(取決於所選的文檔類型) @@ -1033,11 +1035,11 @@ DocType: Report,Query Report,查詢報表 DocType: User,Set New Password,設定新密碼 DocType: User,Github User ID,Github上的用戶ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,如果文件類型 -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","無法刪除或取消,因為{0} {1}相鏈接{2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","無法刪除或取消,因為{0} {1}相鏈接{2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},未知的應用程序{0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s不是一個有效的報告格式。報告格式應\下面%S之一 -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},列{1}中多次出現欄位名稱{0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},列{1}中多次出現欄位名稱{0} apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},{0}從{1}到{2}中的行#{3} DocType: Communication,Expired,過期 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),對於一個場的列在網格數(在網格總列應小於11) @@ -1045,28 +1047,28 @@ DocType: DocType,System,系統 apps/frappe/frappe/www/login.html +93,Have an account? Login,有一個賬戶?登錄 DocType: Workflow State,arrow-down,箭頭向下 apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,摺疊 -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},用戶不得刪除{0}:{1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},用戶不得刪除{0}:{1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,最後更新日期: DocType: Help Article,Likes,喜歡 DocType: Website Settings,Top Bar,頂欄 DocType: GSuite Settings,Script Code,腳本代碼 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,創建用戶電子郵件 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,創建用戶電子郵件 -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,未指定權限 +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,未指定權限 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,全局設置:用戶只能選擇檢查圖標 DocType: Custom Role,Custom Role,自定義角色 apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,首頁/測試文件夾2 DocType: System Settings,Ignore User Permissions If Missing,忽略用戶權限如果缺少 -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,請上傳之前保存文檔。 +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,請上傳之前保存文檔。 apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,輸入密碼 DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的訪問秘密 apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,添加另一個評論 apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,編輯的DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,從通訊退訂 -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,折疊一定要來一個分節符前 +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,折疊一定要來一個分節符前 DocType: Workflow State,hand-down,手向下 DocType: Address,GST State,消費稅狀態 -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} :沒有提交便無法設為取消 +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} :沒有提交便無法設為取消 DocType: Website Theme,Theme,主題 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,有錯誤。 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,重定向URI勢必授權碼 @@ -1082,7 +1084,7 @@ DocType: Custom Script,Script,腳本 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,我的設定 DocType: Website Theme,Text Color,文字顏色 apps/frappe/frappe/auth.py +78,Invalid Request,無效請求 -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,這種形式沒有任何輸入 +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,這種形式沒有任何輸入 apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},會話到期格式必須是{0} DocType: Website Sidebar Item,Group,組 DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","選擇target = ""_blank""以在新頁面中打開。" @@ -1091,7 +1093,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,忽略編碼錯誤。 DocType: Workflow State,wrench,扳手 apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,沒有設置 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,設置>用戶 DocType: Website Settings,Disable Signup,禁止註冊 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,坐好囉!您的系統正在安裝。這可能需要一些時間。 DocType: Email Queue,Email Queue,電子郵件隊列 @@ -1101,7 +1102,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,添加評論 DocType: DocField,Mandatory,強制性 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,模塊導出 -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} :無基本權限設定 +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} :無基本權限設定 apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,您的訂閱將在到期{0}。 apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},下載連接,您的備份將以電子郵件發送到以下電子郵件地址:{0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",的含義提交,取消,修改 @@ -1114,11 +1115,11 @@ DocType: Desktop Icon,query-report,查詢的報告 apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},指派給{0}:{1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,過濾器保存 DocType: DocField,Percent,百分比 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,請設定篩選條件 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,請設定篩選條件 apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,連結到 DocType: Workflow State,book,書 DocType: Website Settings,Landing Page,著陸頁 -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,錯誤自定義腳本 +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,錯誤自定義腳本 apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0}名稱 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",導入請求排隊。這可能需要幾分鐘,請耐心等待。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,沒有權限設置此標準。 @@ -1138,9 +1139,8 @@ DocType: User,Login After,登錄後 DocType: Print Format,Monospace,等寬 DocType: Letter Head,Printing,列印 DocType: Workflow State,thumbs-up,豎起大拇指 -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建新的電子郵件帳戶 DocType: DocPerm,DocPerm,DocPerm -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,精度應為1和6之間 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,精度應為1和6之間 DocType: About Us Team Member,Image Link,圖片鏈接 DocType: Auto Email Report,Report Filters,報告過濾器 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,現在 @@ -1163,7 +1163,7 @@ DocType: File,Is Attachments Folder,是附件文件夾 apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,展開全部 apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,有效的登錄ID必需的。 apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,重新打開 -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,請選擇有合格資料的csv檔案 +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,請選擇有合格資料的csv檔案 apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0}停止與{1}未共享這個文件 apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,從{0}到{1}文件狀態轉換是不允許的 DocType: DocType,"Make ""name"" searchable in Global Search",讓“名”在全球的搜索搜索 @@ -1174,15 +1174,14 @@ apps/frappe/frappe/model/document.py +526,Record does not exist,記錄不存在 DocType: Help Category,Help Category,幫助分類 apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,用戶{0}被禁用 apps/frappe/frappe/www/404.html +8,Page missing or moved,頁面丟失或移動 -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,編輯{0}性能 DocType: DocType,Route,路線 apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay支付網關設置 DocType: DocField,Name,名稱 apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,您已超過{0}最大空間,為您的計劃。 {1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,搜索文檔 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,搜索文檔 -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,打開鏈接 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,你的語言 +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,打開鏈接 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,你的語言 apps/frappe/frappe/desk/form/load.py +46,Did not load,沒有加載 DocType: Tag Category,Doctypes,文檔類型 apps/frappe/frappe/desk/query_report.py +87,Query must be a SELECT,查詢必須是一個SELECT @@ -1194,7 +1193,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,被反饋請 DocType: Address,Lakshadweep Islands,Lakshadweep群島 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,可以寫 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",某些文件,如發票,一旦定稿後不應更改。對這類文件來說定稿稱為提交。您可以限制哪些角色可以提交。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,你不允許匯出此報告 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,你不允許匯出此報告 apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,選擇1個項目 DocType: Newsletter,Test Email Address,測試電子郵件地址 DocType: ToDo,Sender,寄件人 @@ -1224,7 +1223,7 @@ apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +32,Incor apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default Sending and Inbox,預設發送和收件匣 apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,進口.ZIP apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,文件編號 -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,圖像字段的類型必須為附著圖像 +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,圖像字段的類型必須為附著圖像 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +95,Reset Permissions for {0}?,對{0}重置權限? apps/frappe/frappe/core/doctype/version/version_view.html +32,Rows Removed,刪除行 DocType: Communication,Attachment Removed,附件已刪除 @@ -1278,11 +1277,11 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,使用該字段名來生成標題 apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,輸入電子郵件從 apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,邀請成為用戶 -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,選擇附件 +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,選擇附件 apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,有錯誤。請報告此。 -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,你不允許列印此文件 +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,你不允許列印此文件 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,請設置在報告過濾表過濾器值。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,加載報表 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,加載報表 apps/frappe/frappe/limits.py +72,Your subscription will expire today.,您的訂閱今天將到期。 DocType: Page,Standard,標準 apps/frappe/frappe/templates/emails/password_update.html +1,Password Update Notification,密碼更新通知 @@ -1304,7 +1303,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,區域擴展 DocType: LDAP Settings,Base Distinguished Name (DN),基本專有名稱(DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,離開這個談話 -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},對於鏈接欄位沒有設置選項{0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},對於鏈接欄位沒有設置選項{0} DocType: Customize Form,"Must be of type ""Attach Image""",類型必須為“附加圖片” apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,全部取消選擇 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},你不能沒有設置'只讀'現場{0} @@ -1340,9 +1339,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,注釋 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,錯誤報告 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,反饋條件不匹配 -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,時間軸場必須是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,時間軸場必須是有效的字段名 DocType: Currency,Symbol,符號 -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,列#{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,列#{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,新的密碼通過電子郵件發送 apps/frappe/frappe/auth.py +245,Login not allowed at this time,在這個時候不允許登錄 DocType: Email Account,Email Sync Option,電子郵件同步選項 @@ -1362,7 +1361,7 @@ DocType: Communication,Timeline DocType,時間軸的DocType apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,常見查詢的標準答复。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,預設發送 DocType: Workflow State,volume-off,體積過 -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},由喜歡{0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},由喜歡{0} DocType: Footer Item,Footer Item,頁腳項目 ,Download Backups,下載備份 apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,首頁/測試文件夾1 @@ -1393,7 +1392,7 @@ apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +57,Feedbac DocType: Web Page,Text Align,文本對齊 DocType: Contact Us Settings,Forward To Email Address,轉發到郵件地址 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,顯示所有數據 -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,標題字段必須是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,標題字段必須是有效的字段名 apps/frappe/frappe/config/core.py +7,Documents,文件 apps/frappe/frappe/www/me.html +22,Edit Profile,編輯個人資料 DocType: Kanban Board Column,Archived,存檔 @@ -1423,6 +1422,7 @@ DocType: Workflow State,fullscreen,全屏 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are not allowed to make PDF for this report,你不允許做PDF本報告 apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1星表示最低和5星為最高評價 DocType: Event,Ref Name,參考名稱 +DocType: Email Alert,Value To Be Set,價值待定 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,第一級 DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,代表一個文檔和角色分配給改變國家允許的狀態。 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,更新表格 @@ -1441,16 +1441,16 @@ DocType: DocType,Has Web View,具有Web視圖 apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",DocType的名稱應以字母開始,它只能由字母,數字,空格和下劃線組成。 DocType: Communication,Spam,垃圾郵件 DocType: Integration Request,Integration Request,集成請求 -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,親愛 +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,親愛 DocType: Address,Maharashtra,馬哈拉施特拉邦 DocType: Address,Accounts User,會計人員 DocType: Web Page,HTML for header section. Optional,標題區塊的HTML。可選 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,此功能是全新的,仍處於試驗階段 -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,最多允許{0}列 +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,最多允許{0}列 DocType: Email Unsubscribe,Global Unsubscribe,全球退訂 apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,這是一個非常普遍的密碼。 apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,視圖 -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,選擇列印格式 +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,選擇列印格式 apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,短鍵盤模式容易被猜中 DocType: Portal Settings,Portal Menu,門戶網站菜單 apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,的{0}長度應介於1和1000之間 @@ -1484,7 +1484,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,無法搜尋使用者 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,無效的輸出格式 DocType: Custom DocPerm,Apply this rule if the User is the Owner,應用此規則如果用戶是業主 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,將是您的登錄ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,將是您的登錄ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,建立報告 DocType: Note,Notify users with a popup when they log in,通知用戶有一個彈出登錄時 apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1}不存在,選擇一個新的合併目標 @@ -1501,16 +1501,16 @@ apps/frappe/frappe/model/document.py +564,Cannot change docstatus from 0 to 2, DocType: User Permission for Page and Report,Roles Permission,角色權限 DocType: Error Snapshot,Snapshot View,快照視圖 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,請在發送之前保存信件 -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},選項必須是字段的有效的DocType {0}行{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},選項必須是字段的有效的DocType {0}行{1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,編輯屬性 DocType: Patch Log,List of patches executed,執行補丁列表 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0}已經退訂 -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,通信介質 +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,通信介質 DocType: Website Settings,Banner HTML,橫幅的HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',請選擇其他付款方式。 Razorpay不支持貨幣交易“{0}” apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,排隊等待備份。這可能需要幾分鐘到一個小時。 apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,註冊OAuth客戶端應用程序 -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} 不能為“{2}”。它應該是“{3}”的其中一個 +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1} 不能為“{2}”。它應該是“{3}”的其中一個 apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,顯示或隱藏桌面圖標 apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,密碼更新 DocType: System Settings,Older backups will be automatically deleted,舊的備份將被自動刪除 @@ -1534,7 +1534,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +36,Document is only editab apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned to {1}, has been closed by {2}.",任務{0},您分配給{1},已被關閉{2}。 DocType: Print Format,Show Line Breaks after Sections,章節後,顯示換行符 DocType: Blogger,Short Name,簡稱 -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",你是所有選擇同步選項,它會重新同步所有\讀取以及未讀郵件從服務器。這也可能會導致通信(電子郵件)的重複數據刪除\。 DocType: Workflow State,magnet,磁鐵 @@ -1544,6 +1544,7 @@ DocType: Contact,Purchase Manager,採購經理 DocType: Custom Script,Sample,樣品 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,未分類標籤 DocType: Event,Every Week,每一周 +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,電子郵件帳戶未設置。請從設置>電子郵件>電子郵件帳戶創建一個新的電子郵件帳戶 apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,點擊此處查詢您的使用或升級到更高的計劃 DocType: Custom Field,Is Mandatory Field,是必須填寫 DocType: User,Website User,網站用戶 @@ -1566,12 +1567,12 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,自定義工具欄菜單 DocType: Workflow State,pencil,鉛筆 apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,聊天訊息和其他通知。 -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},插入不能設定為後{0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},插入不能設定為後{0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,電子郵件帳戶設置,請輸入您的密碼: DocType: Workflow State,hand-up,手向上 DocType: Blog Settings,Writers Introduction,作家簡介 DocType: Address,Phone,電話 -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,出錯評估電郵提示{0}。請修正您的模板。 +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,出錯評估電郵提示{0}。請修正您的模板。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,選擇文件類型或角色開始。 DocType: Contact,Passive,被動 DocType: Contact,Accounts Manager,會計經理 @@ -1596,6 +1597,7 @@ DocType: Web Page,Show Title,顯示標題 DocType: Property Setter,Property Type,屬性類型 DocType: Workflow State,screenshot,屏幕截圖 apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,只有管理員可以保存一個標準的報告。請重新命名並保存。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,字段名{0}與元對象衝突 DocType: Deleted Document,Data,數據 apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,文檔狀態 apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},你已經做了{0} {1} @@ -1617,7 +1619,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,顯示用戶權限 apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登錄,並具有系統管理員角色才能夠訪問備份。 apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,剩餘 -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,請安裝前儲存。 +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,請安裝前儲存。 apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),添加{0}({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},默認主題是設置{0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},列{2}的欄位類型不能從{0}改變為{1} @@ -1636,11 +1638,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,會話開 apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,會話開始失敗 apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},此電子郵件發送到{0},並複製到{1} DocType: Workflow State,th,日 -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,請從設置>電子郵件>電子郵件帳戶設置默認電子郵件帳戶 -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},建立一個新的{0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},建立一個新的{0} DocType: Email Rule,Is Spam,是垃圾郵件 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},報告{0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},打開{0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},打開{0} DocType: OAuth Client,Default Redirect URI,默認重定向URI DocType: Email Alert,Recipients,受助人 DocType: Workflow State,ok-sign,OK符號 @@ -1657,6 +1658,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,幫助文章 ,Modules Setup,模塊設置 apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,類型: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,您的付款失敗。 DocType: Address,Karnataka,卡納塔克邦 apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,模塊未找到 ,Permitted Documents For User,對於用戶的許可文件 @@ -1695,7 +1697,7 @@ DocType: Feedback Trigger,Email Field,電子郵件字段 apps/frappe/frappe/www/update-password.html +59,New Password Required.,需要新密碼 apps/frappe/frappe/core/doctype/docshare/docshare.py +49,{0} shared this document with {1},{0}與{1}共享這個文件 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",安裝程序的頂部導航欄,頁腳和徽標。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},{0}在水平{1}的{2}行{3} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},{0}在水平{1}的{2}行{3} DocType: Email Queue,Recipient,接受者 DocType: Address,Sales User,銷售用戶 apps/frappe/frappe/config/setup.py +178,Drag and Drop tool to build and customize Print Formats.,拖放工具來構建和定製列印格式。 @@ -1709,7 +1711,8 @@ DocType: Dropbox Settings,Dropbox Access Token,Dropbox訪問令牌 DocType: Workflow State,align-right,靠右對齊 DocType: Auto Email Report,Email To,發送電子郵件給 apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,文件夾{0}非空 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,欄位{0}是不可選擇的。 +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},錯誤:{0}缺少值:{1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,欄位{0}是不可選擇的。 DocType: System Settings,Session Expiry,連線過期 DocType: Workflow State,ban-circle,禁令圈 DocType: Email Flag Queue,Unread,未讀 @@ -1723,7 +1726,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,使用者預設 apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,新建立 DocType: Workflow State,chevron-down,人字形-下 -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),電子郵件不會被發送到{0}(退訂/禁用) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),電子郵件不會被發送到{0}(退訂/禁用) DocType: Async Task,Traceback,回溯 DocType: Currency,Smallest Currency Fraction Value,最小的貨幣分數值 apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,指派給 @@ -1737,7 +1740,7 @@ apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node f DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",作為追加對通信本的DocType(必須有田,“狀態”,“主題”) DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",的URI,用於接收授權代碼一旦用戶允許訪問,以及失敗的響應。通常,REST端點的客戶端應用程序暴露出來。
例如http://hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,不允許提交後更改{0} +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,不允許提交後更改{0} DocType: Communication,Comment Type,註釋類型 DocType: OAuth Client,OAuth Client,OAuth客戶端 apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,用戶 @@ -1750,7 +1753,7 @@ apps/frappe/frappe/config/integrations.py +43,"Enter keys to enable login via Fa apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for {0},無法讀取{0}的文件格式 DocType: Auto Email Report,Filter Data,過濾數據 apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,新增標籤 -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,請先加上附檔。 +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,請先加上附檔。 apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",有一些錯誤設定的名稱,請與管理員聯絡 apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,收到的電子郵件帳戶不正確 apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -1763,16 +1766,16 @@ DocType: DocType,"Naming Options: DocType: Blog Post,Email Sent,郵件發送 DocType: DocField,Ignore XSS Filter,忽略XSS過濾器 apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox的備份設置 -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,以電子郵件發送 +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,以電子郵件發送 DocType: Website Theme,Link Color,鏈接顏色 apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,用戶{0}不能被禁用 apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",親愛的系統管理器, -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,你的國家 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,你的國家 apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,在網格視圖 apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP設置 apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,修訂 apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,貝寶支付網關設置 -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:“{1}”({3})將被截斷,因為允許的上限字符為{2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:“{1}”({3})將被截斷,因為允許的上限字符為{2} DocType: OAuth Client,Resource Owner Password Credentials,資源所有者密碼憑據 DocType: OAuth Client,Response Type,響應類型 apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,最大用戶 @@ -1787,13 +1790,14 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager.js +439,Apply DocType: User,Karma,因果報應 apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,您必須登錄才能提交此表單 DocType: User,Background Image,背景圖片 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",選擇國家時區和貨幣 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",選擇國家時區和貨幣 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,之間 DocType: Async Task,Queued,排隊 apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format,新自定義列印格式 DocType: Custom DocPerm,Create,建立 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},無效的過濾器: {0} DocType: Email Account,no failed attempts,沒有失敗的嘗試 +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,未找到默認地址模板。請從設置>打印和品牌>地址模板創建一個新的。 DocType: Dropbox Settings,App Access Key,應用程序訪問密鑰 DocType: OAuth Bearer Token,Access Token,存取 Token DocType: About Us Settings,Org History,組織歷史 @@ -1810,8 +1814,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github上用戶名 DocType: DocType,Image View,圖像查看 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",似乎發生在交易過程中錯誤的。因為我們還沒有確認付款,支付寶會自動退還你這一數額。如果沒有,請給我們發郵件並註明相關ID:{0}。 -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",在密碼中加入符號,數字和大寫字母 -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",插入自定義字段“{0}”提到的後場“{1}”,標記為“{2}”不存在 +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",在密碼中加入符號,數字和大寫字母 +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",插入自定義字段“{0}”提到的後場“{1}”,標記為“{2}”不存在 DocType: Workflow State,signal,信號 DocType: DocType,Show Print First,先顯示列印 apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter發布 @@ -1837,13 +1841,14 @@ apps/frappe/frappe/public/js/frappe/model/meta.js +168,Warning: Unable to find { apps/frappe/frappe/model/document.py +1043,This document is currently queued for execution. Please try again,這份文件目前正在排隊等待執行。請再試一次 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,刪除部分 DocType: User,Change Password,更改密碼 -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},無效的電子郵件: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},無效的電子郵件: {0} apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,活動必須在開始後才能結束 apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},你無權得到一份報告:{0} +DocType: System Settings,Apply Strict User Permissions,應用嚴格的用戶權限 DocType: DocField,Allow Bulk Edit,允許批量修改 DocType: DocField,Allow Bulk Edit,允許批量修改 DocType: Blog Post,Blog Post,網誌文章 -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,高級搜索 +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,高級搜索 apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,密碼重置說明已發送到您的電子郵件 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",級別0是用於文檔級別權限,\更高級別的字段級權限。 @@ -1862,10 +1867,10 @@ DocType: Stripe Settings,Publishable Key,可發布密鑰 DocType: Workflow State,circle-arrow-left,圓圈箭頭向左 apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis的暫存服務器無法運行。請聯絡管理員/技術支持 apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,方名稱 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,建立新紀錄 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,建立新紀錄 DocType: Currency,Fraction,分數 DocType: LDAP Settings,LDAP First Name Field,LDAP名現場 -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,從現有的附件選擇 +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,從現有的附件選擇 DocType: Custom Field,Field Description,欄位說明 apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,名稱未通過設置提示 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,電子郵件收件箱 @@ -1908,11 +1913,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,資訊: DocType: Custom Field,Permission Level,權限級別 DocType: User,Send Notifications for Transactions I Follow,發送通知進行交易我跟隨 -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :沒有寫入則無法設定提交,取消,修改 +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :沒有寫入則無法設定提交,取消,修改 apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,您確定要刪除附件? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","無法刪除或取消,因為{0} {1}相鏈接{2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

沒有找到結果'

-apps/frappe/frappe/__init__.py +1063,Thank you,謝謝 +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","無法刪除或取消,因為{0} {1}相鏈接{2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,謝謝 apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,儲存中 DocType: Print Settings,Print Style Preview,列印樣式預覽 apps/frappe/frappe/website/doctype/web_form/web_form.py +358,You are not allowed to update this Web Form Document,你不允許更新此網頁表單文件 @@ -1922,7 +1926,7 @@ DocType: Website Settings,Website Theme,網站主題 DocType: DocField,In List View,在列表視圖 apps/frappe/frappe/email/smtp.py +24,Invalid login or password,無效的登錄名或密碼 apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,添加自定義的JavaScript到表單內。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,序號 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,序號 ,Role Permissions Manager,角色權限管理 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,新列印格式的名稱 apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,強制性: @@ -1951,23 +1955,23 @@ DocType: Email Account,Notify if unreplied for (in mins),對於通知,如果 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,分類博客文章。 DocType: Workflow State,Time,時間 DocType: DocField,Attach,附加檔案 -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}是不是一個有效欄位名模式。它應該是{{FIELD_NAME}}。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}是不是一個有效欄位名模式。它應該是{{FIELD_NAME}}。 DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,發送反饋請求僅當有至少一個通信是可用於文檔。 DocType: Custom Role,Permission Rules,權限規則 DocType: GSuite Settings,GSuite Settings,GSuite設置 DocType: Address,Links,鏈接 apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,新增子項目 -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:已呈交的記錄不能被刪除。 +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:已呈交的記錄不能被刪除。 apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,備份大小 DocType: GSuite Templates,Template Name,模板名稱 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,新類型的文件 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,新類型的文件 DocType: Custom DocPerm,Read,閱讀 DocType: Role Permission for Page and Report,Role Permission for Page and Report,角色權限頁和報告 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,對齊值 apps/frappe/frappe/www/update-password.html +14,Old Password,舊密碼 apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",要格式化列,給列標籤在查詢中。 apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,還沒有賬號?註冊 -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} :如果不可提交的話,便無法設為指定修改 +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} :如果不可提交的話,便無法設為指定修改 DocType: Address,Bihar,比哈爾邦 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,編輯角色權限 DocType: Communication,Link DocType,連接 DocType @@ -2051,7 +2055,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,請確保您的個人資料有一個電子郵件地址, apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,你在本表格未保存的更改。 DocType: Address,Telangana,特蘭伽納 -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,預設為{0}必須是一種選項 +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,預設為{0}必須是一種選項 DocType: Tag Doc Category,Tag Doc Category,標籤單據類別 DocType: User,User Image,使用者圖片 apps/frappe/frappe/email/queue.py +289,Emails are muted,電子郵件是靜音模式 @@ -2077,7 +2081,7 @@ DocType: Workflow State,star-empty,明星空 apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,下一步行動 DocType: Workflow State,ok,好 DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,這些值將在交易中自動更新,也將是有益的權限限制在含有這些值交易這個用戶。 -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},**失敗:{0}到 {1}:{2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},**失敗:{0}到 {1}:{2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,強制性選擇 apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,瀏覽 apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,發送電子郵件 @@ -2133,7 +2137,7 @@ DocType: DocField,No Copy,沒有複製 DocType: Workflow State,qrcode,QRcode apps/frappe/frappe/www/login.html +34,Login with LDAP,與LDAP登錄 DocType: Web Form,Breadcrumbs,麵包屑 -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,如果業主 +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,如果業主 DocType: OAuth Authorization Code,Expiration time,到期時間 DocType: Web Page,Website Sidebar,網站邊欄 DocType: Web Form,Show Sidebar,顯示側邊欄 @@ -2148,7 +2152,7 @@ DocType: Print Settings,Print Settings,列印設置 DocType: Page,Yes,是的 DocType: Desktop Icon,Page,頁面 apps/frappe/frappe/config/website.py +93,Knowledge Base,知識庫 -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},值不能被改變為{0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},值不能被改變為{0} DocType: Feedback Request,Is Manual,為手動 DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",風格代表按鈕的顏色:成功 - 綠色,危險 - 紅,逆 - 黑色,主要 - 深藍色,資訊 - 淺藍,警告 - 橙 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,無報告加載。請使用查詢-報告/[Report Name]跑出報告。 @@ -2214,7 +2218,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,進展 apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,依角色 apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,丟失的字段 apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,在自動命名無效字段名“{0}” -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,對文檔類型搜索 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,對文檔類型搜索 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,讓外地甚至提交後仍然可編輯 DocType: Custom DocPerm,Role and Level,角色和級別 DocType: File,Thumbnail URL,縮略圖網址 @@ -2235,11 +2239,12 @@ DocType: Workflow State,bell,鐘 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,電子郵件警報中出錯 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,電子郵件警報中出錯 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,分享這個文件 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,設置>用戶權限管理器 apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1}不能是一個葉節點,因為它有子節點 DocType: Communication,Info,資訊 DocType: Communication,Email,電子郵件 apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,謝謝您的留言 -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,發送閱讀回執 +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,發送閱讀回執 DocType: Stripe Settings,Stripe Settings,條紋設置 DocType: Stripe Settings,Stripe Settings,條紋設置 DocType: Dropbox Settings,Dropbox Setup via Site Config,通過站點配置的Dropbox設置 @@ -2311,6 +2316,7 @@ DocType: DocType,Web View,Web視圖 apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,警告:此列印格式是舊式的,不能透過API生成。 DocType: DocField,Print Width,列印寬度 ,Setup Wizard,設置嚮導 +DocType: Address,GST State Number,GST州號 DocType: User,Allow user to login only before this hour (0-24),允許用戶在幾小時前登入(0 - 24) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,文件夾是必需的 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2339,7 +2345,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,小文 apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,管理員訪問{0}在{1}通過IP地址{2}。 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,等號 -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',選擇“動態鏈接”類型的字段都必須指向另一個鏈接字段的選項為'的DocType“ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',選擇“動態鏈接”類型的字段都必須指向另一個鏈接字段的選項為'的DocType“ DocType: About Us Settings,Team Members Heading,小組成員標題 apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,CSV格式無效。 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,設置備份數量 @@ -2348,7 +2354,7 @@ apps/frappe/frappe/utils/data.py +560,1 year ago,1年以前 DocType: Contact,Contact,聯絡人 DocType: User,Third Party Authentication,第三方認證 DocType: Website Settings,Banner is above the Top Menu Bar.,橫幅位於選單欄上方。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,導出報告: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,導出報告: DocType: Print Format,Arial,Arial apps/frappe/frappe/config/core.py +12,Models (building blocks) of the Application,該應用程序的模型(積木) DocType: Website Slideshow,Slideshow like display for the website,幻燈片一樣顯示的網站 @@ -2366,7 +2372,7 @@ DocType: Print Settings,PDF Settings,PDF設置 DocType: Language,Based On,基於 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,設為默認 apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,檢查冰沙服務器URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1}不能進行索引 +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1}不能進行索引 DocType: Communication,Email Account,電子郵件帳戶 DocType: Workflow State,Download,下載 DocType: Blog Post,Blog Intro,部落格介紹 @@ -2376,7 +2382,7 @@ DocType: DocField,Display Depends On,顯示的內容取決於 DocType: Web Page,Insert Code,插入源碼 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,您可以通過使用Jinja模板從添加文件動態特性。 apps/frappe/frappe/commands/site.py +451,Invalid limit {0},無效限制{0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,列出的文件類型 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,列出的文件類型 DocType: Event,Ref Type,參考類型 apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",如果您上傳新的記錄,留下了“名”(ID)欄為空白。 DocType: Address,Chattisgarh,恰蒂斯加爾 @@ -2395,19 +2401,19 @@ DocType: DocField,Read Only,只讀 apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter,新的通訊 DocType: Print Settings,Send Print as PDF,發送列印為PDF DocType: Workflow Transition,Allowed,允許的 -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,只能有一個折疊的形式 +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,只能有一個折疊的形式 apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},無法寫入{0}的文件格式 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,恢復到默認設置? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,無效的主頁 apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,登錄無效。再試一次。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},行{1}中鏈接或表類型字段{0}所需的選項 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},行{1}中鏈接或表類型字段{0}所需的選項 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},行{1}中鏈接或表類型字段{0}所需的選項 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},行{1}中鏈接或表類型字段{0}所需的選項 DocType: Auto Email Report,Send only if there is any data,僅發送,如果有任何數據 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,重設過濾器 -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} :權限在0水平必須於更高級別前設定 +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} :權限在0水平必須於更高級別前設定 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},指派作業由 {0} 結案 DocType: Integration Request,Remote,遠程 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,計算 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,計算 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,請首先選擇的DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,確認您的電子郵件 apps/frappe/frappe/www/login.html +42,Or login with,或登錄 @@ -2420,14 +2426,14 @@ DocType: DocField,Perm Level,權限等級 apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,活動在今天的日曆 DocType: Web Page,Web Page,網頁 DocType: Blog Category,Blogger,部落格 -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},行{1}中的類型{0}不允許“全局搜索” -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},行{1}中的類型{0}不允許“全局搜索” -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},日期格式必須是: {0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}中的類型{0}不允許“全局搜索” +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}中的類型{0}不允許“全局搜索” +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},日期格式必須是: {0} DocType: Workflow,Don't Override Status,不要覆蓋狀態 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,請給予評級。 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0}反饋請求 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,搜索詞 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,第一個用戶:您 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,第一個用戶:您 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,選擇列 apps/frappe/frappe/www/login.py +55,Missing parameters for login,缺少參數登錄 DocType: Workflow State,folder-open,文件夾打開 @@ -2447,7 +2453,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,輸入 DocType: ToDo,Assigned By,由....指派 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,您可以使用自定義表格中的字段設置的水平。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,選擇您的地區 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,選擇您的地區 DocType: Custom DocPerm,Level,級別 DocType: Custom DocPerm,Report,報告 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,量必須大於0。 @@ -2464,7 +2470,7 @@ DocType: Kanban Board Column,Order,訂購 DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",用於應用用戶權限的文檔類型的JSON列表。如果為空,所有鏈接的文檔類型將用於應用的用戶權限。 DocType: Report,Ref DocType,參考的DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,請添加評分 -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} :如果沒有取消便無法設為修改 +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} :如果沒有取消便無法設為修改 apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,全頁 DocType: DocType,Is Child Table,是子表 apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0}必須是{1} 之一 @@ -2477,7 +2483,7 @@ DocType: Communication,Sending,發出 apps/frappe/frappe/auth.py +231,Not allowed from this IP Address,不接受來自此IP地址 DocType: Website Slideshow,This goes above the slideshow.,這正好幻燈片上面。 apps/frappe/frappe/config/setup.py +260,Install Applications.,安裝應用程式。 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,沒有警報今天 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,沒有警報今天 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),發送郵件列印附件為PDF格式(推薦) DocType: Web Page,Left,左 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +387,Show rows with zero values,秀值為零的列 @@ -2490,7 +2496,7 @@ DocType: Event,Send an email reminder in the morning,在早上發送電子郵件 DocType: Blog Post,Published On,發表於 DocType: Contact,Gender,性別 apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,強制性信息丟失: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,欄位“{0}”不能設定為唯一的,因為它具有非唯一值 +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,欄位“{0}”不能設定為唯一的,因為它具有非唯一值 apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,只有200將允許一個請求 DocType: Footer Item,URL,網址 DocType: ToDo,Reference Type,參考類型 @@ -2503,7 +2509,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,警告符號 DocType: Workflow State,User,使用者 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",標題顯示在瀏覽器窗口中的“前綴 - 標題” -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,在文件類型的文本 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,在文件類型的文本 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,運行測試 DocType: System Settings,User can login using Email id or Mobile number,用戶可以使用電子郵件ID或手機號登錄 apps/frappe/frappe/core/doctype/communication/communication.js +73,Mark as {0},標記為{0} @@ -2527,8 +2533,8 @@ apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0}已 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,請先保存報表 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0}用戶已新增 DocType: Workflow State,star,星號 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,用逗號分隔的值 -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},{0}列內的貨幣類型的最大寬度為100px +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,用逗號分隔的值 +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},{0}列內的貨幣類型的最大寬度為100px apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},請分享您的反饋{0} apps/frappe/frappe/config/website.py +13,Content web page.,內容的網頁。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,添加新角色 @@ -2546,7 +2552,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,不是有效的LDAP用戶 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0}不是有效的國家 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',請選擇其他付款方式。貝寶不支持貨幣交易“{0}” -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,搜索欄{0}無效 +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,搜索欄{0}無效 DocType: Workflow State,ok-circle,OK-圈 apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',你可以通過問“找到橙客戶找東西 apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,對不起!用戶應該擁有完全訪問他們自己的紀錄。 @@ -2597,7 +2603,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,過濾元 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,要顯示的文本鏈接網頁,如果這種形式有一個網頁。線路路由會自動生成基於`page_name`和`parent_website_route` DocType: Feedback Request,Feedback Trigger,反饋觸發 -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,請先設定{0} +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,請先設定{0} DocType: Unhandled Email,Message-id,郵件ID DocType: Patch Log,Patch,補丁 DocType: Async Task,Failed,失敗 diff --git a/frappe/translations/zh.csv b/frappe/translations/zh.csv index 7b0d37820a..596a609f77 100644 --- a/frappe/translations/zh.csv +++ b/frappe/translations/zh.csv @@ -15,7 +15,7 @@ DocType: User,Facebook Username,Facebook的用户名 DocType: System Settings,Note: Multiple sessions will be allowed in case of mobile device,注:多个会议将在移动设备的情况下,被允许 apps/frappe/frappe/core/doctype/user/user.py +651,Enabled email inbox for user {users},为用户启用电子邮件收件箱{}用户 apps/frappe/frappe/email/queue.py +210,Cannot send this email. You have crossed the sending limit of {0} emails for this month.,无法发送此邮件。你已经越过了{0}电子邮件发送限制这个月。 -apps/frappe/frappe/public/js/legacy/form.js +776,Permanently Submit {0}?,永久提交{0} ? +apps/frappe/frappe/public/js/legacy/form.js +751,Permanently Submit {0}?,永久提交{0} ? DocType: Address,County,县 DocType: Workflow,If Checked workflow status will not override status in list view,如果经过工作流状态不会覆盖列表视图状态 apps/frappe/frappe/client.py +280,Invalid file path: {0},无效的文件路径:{0} @@ -25,7 +25,7 @@ apps/frappe/frappe/utils/file_manager.py +31,Please select a file or url,请选 apps/frappe/frappe/public/js/frappe/views/treeview.js +65,{0} Tree,{0} 树 DocType: User,User Emails,用户电子邮件 DocType: User,Username,用户名 -apps/frappe/frappe/model/base_document.py +581,Value too big,值过大 +apps/frappe/frappe/model/base_document.py +580,Value too big,值过大 DocType: DocField,DocField,文档字段 DocType: GSuite Settings,Run Script Test,运行脚本测试 DocType: Contact,Department,部门 @@ -40,14 +40,14 @@ apps/frappe/frappe/config/core.py +42,Logs,日志 DocType: Custom DocPerm,This role update User Permissions for a user,这个角色更新用户权限的用户 apps/frappe/frappe/public/js/frappe/model/model.js +507,Rename {0},重命名{0} DocType: Workflow State,zoom-out,缩小 -apps/frappe/frappe/public/js/legacy/form.js +67,Cannot open {0} when its instance is open,无法打开{0} ,当它的实例是开放的 +apps/frappe/frappe/public/js/legacy/form.js +66,Cannot open {0} when its instance is open,无法打开{0} ,当它的实例是开放的 apps/frappe/frappe/model/document.py +930,Table {0} cannot be empty,表{0}不能为空 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +852,With Ledgers,与总帐 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +15,Images,图片 DocType: Communication,Reference Owner,参考者 DocType: Currency,Smallest circulating fraction unit (coin). For e.g. 1 cent for USD and it should be entered as 0.01,最小的循环部分单元(硬币)。对于如1%用于美元,因此应输入为0.01 DocType: Social Login Keys,GitHub,GitHub -apps/frappe/frappe/model/base_document.py +575,"{0}, Row {1}",{0},列{1} +apps/frappe/frappe/model/base_document.py +574,"{0}, Row {1}",{0},列{1} apps/frappe/frappe/www/feedback.html +93,Please give a fullname.,请给一个全名。 apps/frappe/frappe/model/document.py +904,Beginning with,以此开头 apps/frappe/frappe/core/page/data_import_tool/exporter.py +52,Data Import Template,数据导入模板 @@ -55,7 +55,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +31,Parent,亲 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",如果启用,密码强度将根据最低密码分数值执行。值2为中等强度,4为非常强。 DocType: System Settings,"If enabled, the password strength will be enforced based on the Minimum Password Score value. A value of 2 being medium strong and 4 being very strong.",如果启用,密码强度将根据最低密码分数值执行。值2为中等强度,4为非常强。 DocType: About Us Settings,"""Team Members"" or ""Management""",“团队成员”或“管理” -apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Default for 'Check' type of field must be either '0' or '1',“勾选”字段类型的默认值必须是'0'或'1' +apps/frappe/frappe/core/doctype/doctype/doctype.py +457,Default for 'Check' type of field must be either '0' or '1',“勾选”字段类型的默认值必须是'0'或'1' apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +50,Yesterday,昨天 DocType: Contact,Designation,指派 DocType: Test Runner,Test Runner,测试运行 @@ -71,7 +71,7 @@ DocType: DocType,Is Published Field,发布现场 DocType: Email Group,Email Group,电子邮件组 DocType: Note,Seen By,看到通过 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +15,Add Multiple,添加多个 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Not Like,不喜欢 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Not Like,不喜欢 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +212,Set the display label for the field,为此字段设置显示标签 apps/frappe/frappe/model/document.py +921,Incorrect value: {0} must be {1} {2},值有错误,{0}必须是{1} {2} apps/frappe/frappe/config/setup.py +220,"Change field properties (hide, readonly, permission etc.)",更改字段属性(隐藏,只读,权限等) @@ -81,7 +81,7 @@ apps/frappe/frappe/config/website.py +78,Settings for Contact Us Page.,联系我 apps/frappe/frappe/core/doctype/user/user.py +877,Administrator Logged In,管理员登录 DocType: Contact Us Settings,"Contact options, like ""Sales Query, Support Query"" etc each on a new line or separated by commas.",联系人选项,如“销售查询,支持查询”等每个新行或以逗号分隔。 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +30,2. Download,2.下载 -apps/frappe/frappe/public/js/frappe/form/control.js +1895,Insert,插入 +apps/frappe/frappe/public/js/frappe/form/control.js +1896,Insert,插入 apps/frappe/frappe/public/js/frappe/form/link_selector.js +22,Select {0},选择{0} DocType: Print Settings,Classic,经典 DocType: Desktop Icon,Color,颜色 @@ -122,7 +122,7 @@ DocType: Translation,Translation,翻译 apps/frappe/frappe/desk/page/applications/application_row.html +18,Install,安装 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mr,先生 DocType: Custom Script,Client,客户 -apps/frappe/frappe/public/js/legacy/form.js +487,This form has been modified after you have loaded it,这种形式已被修改,你已经装好了之后, +apps/frappe/frappe/public/js/legacy/form.js +462,This form has been modified after you have loaded it,这种形式已被修改,你已经装好了之后, DocType: User Permission for Page and Report,User Permission for Page and Report,用户权限的页面和报告 DocType: Address,Himachal Pradesh,喜马偕尔邦 DocType: System Settings,"If not set, the currency precision will depend on number format",如果未设置,则货币精度将取决于数字格式 @@ -154,14 +154,14 @@ DocType: Unhandled Email,Reason,原因 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +33,Please specify user,请注明用户 DocType: Email Unsubscribe,Email Unsubscribe,电子邮件退订 DocType: Website Settings,Select an image of approx width 150px with a transparent background for best results.,为了最佳效果,请选择一个宽度约150像素,背景透明的图片。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +504,The first user will become the System Manager (you can change this later).,第一个用户将成为系统管理员,你以后可以更改。 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +516,The first user will become the System Manager (you can change this later).,第一个用户将成为系统管理员,你以后可以更改。 ,App Installer,应用程序安装程序 DocType: Workflow State,circle-arrow-up,圆圈箭头向上 apps/frappe/frappe/public/js/frappe/upload.js +296,Uploading...,上传中.... DocType: Email Domain,Email Domain,电子邮件域名 DocType: Workflow State,italic,italic apps/frappe/frappe/core/page/modules_setup/modules_setup.html +7,For Everyone,为了所有人 -apps/frappe/frappe/core/doctype/doctype/doctype.py +698,{0}: Cannot set Import without Create,{0} :没有“创建”的情况下不能分配“导入” +apps/frappe/frappe/core/doctype/doctype/doctype.py +702,{0}: Cannot set Import without Create,{0} :没有“创建”的情况下不能分配“导入” apps/frappe/frappe/config/desk.py +26,Event and other calendars.,事件和其他日历。 apps/frappe/frappe/templates/includes/comments/comments.html +96,All fields are necessary to submit the comment.,所有字段都必须提交评论。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +861,Drag to sort columns,拖动进行排序的列 @@ -173,8 +173,8 @@ DocType: Portal Settings,Standard Sidebar Menu,标准工具栏菜单 apps/frappe/frappe/core/doctype/file/file.py +167,Cannot delete Home and Attachments folders,无法删除首页和附件的文件夹 apps/frappe/frappe/config/desk.py +19,Files,档 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +6,Permissions get applied on Users based on what Roles they are assigned.,权限基于什么角色,他们被分配在用户得到应用。 -apps/frappe/frappe/public/js/frappe/views/communication.js +459,You are not allowed to send emails related to this document,你不允许发送与此文档相关的电子邮件 -apps/frappe/frappe/model/db_query.py +517,Please select atleast 1 column from {0} to sort/group,请选择从{0}进行排序/组ATLEAST 1柱 +apps/frappe/frappe/public/js/frappe/views/communication.js +460,You are not allowed to send emails related to this document,你不允许发送与此文档相关的电子邮件 +apps/frappe/frappe/model/db_query.py +522,Please select atleast 1 column from {0} to sort/group,请选择从{0}进行排序/组ATLEAST 1柱 DocType: PayPal Settings,Check this if you are testing your payment using the Sandbox API,检查这个,如果你正在测试使用沙盒API付款 apps/frappe/frappe/website/doctype/website_theme/website_theme.py +30,You are not allowed to delete a standard Website Theme,你不允许删除标准的网站主题 DocType: Feedback Trigger,Example,例如 @@ -205,7 +205,7 @@ DocType: Email Group,Total Subscribers,用户总数 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +25,"If a Role does not have access at Level 0, then higher levels are meaningless.",如果角色没有0级的访问权限,那么无需设置更高级权限 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +745,Save As,另存为 DocType: Communication,Seen,可见 -apps/frappe/frappe/public/js/frappe/form/layout.js +98,Show more details,显示更多详情 +apps/frappe/frappe/public/js/frappe/form/layout.js +125,Show more details,显示更多详情 DocType: System Settings,Run scheduled jobs only if checked,只有勾选后,才会运行计划任务 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +408,Will only be shown if section headings are enabled,如果章节标题启用才会显示 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_column.html +9,Archive,档案 @@ -222,7 +222,6 @@ apps/frappe/frappe/templates/includes/login/login.js +36,Valid email and name re DocType: DocType,Hide Heading,隐藏标题 DocType: Address,Current,当前 DocType: Address,Current,当前 -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +2,Related Documents,相关文件 apps/frappe/frappe/config/core.py +17,Groups of DocTypes,文档类型的组 DocType: Auto Email Report,XLSX,XLSX DocType: Workflow State,remove-circle,删除圈 @@ -238,10 +237,9 @@ DocType: Workflow State,Filter,过滤器 apps/frappe/frappe/model/db_schema.py +563,Fieldname {0} cannot have special characters like {1},字段名{0}不能有特殊字符,如{1} apps/frappe/frappe/config/setup.py +121,Update many values at one time.,同时更新多个值。 apps/frappe/frappe/model/document.py +538,Error: Document has been modified after you have opened it,错误:文档在你打开后已被修改 -apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,未找到默认地址模板。请从设置>打印和品牌>地址模板创建一个新的。 apps/frappe/frappe/core/doctype/communication/feed.py +63,{0} logged out: {1},{0} 登出: {1} DocType: Address,West Bengal,西孟加拉邦 -apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0}: Cannot set Assign Submit if not Submittable,{0} :没有“提交”的情况下不能分配“提交” +apps/frappe/frappe/core/doctype/doctype/doctype.py +723,{0}: Cannot set Assign Submit if not Submittable,{0} :没有“提交”的情况下不能分配“提交” DocType: Social Login Keys,Facebook,Facebook apps/frappe/frappe/www/list.py +65,"Filtered by ""{0}""",通过过滤“{0}” DocType: Salutation,Administrator,管理员 @@ -251,7 +249,7 @@ DocType: Blog Settings,Blog Title,博客标题 apps/frappe/frappe/core/doctype/role/role.py +24,Standard roles cannot be disabled,标准的角色不能被禁用 DocType: Address,Mizoram,米佐拉姆 DocType: Newsletter,Newsletter,通讯 -apps/frappe/frappe/model/db_query.py +508,Cannot use sub-query in order by,不能使用子查询,以便 +apps/frappe/frappe/model/db_query.py +513,Cannot use sub-query in order by,不能使用子查询,以便 DocType: Web Form,Button Help,按钮帮助 DocType: Kanban Board Column,purple,紫色 DocType: About Us Settings,Team Members,团队成员 @@ -265,7 +263,7 @@ DocType: User,Get your globally recognized avatar from Gravatar.com,让您的全 apps/frappe/frappe/limits.py +30,"Your subscription expired on {0}. To renew, {1}.",您的订阅过期于{0}。要续订,{1}。 DocType: Workflow State,plus-sign,加号 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.py +24,Setup already complete,设置已经完成 -apps/frappe/frappe/__init__.py +890,App {0} is not installed,未安装应用程序{0} +apps/frappe/frappe/__init__.py +889,App {0} is not installed,未安装应用程序{0} DocType: Workflow State,Refresh,刷新 DocType: Event,Public,公 apps/frappe/frappe/public/js/frappe/ui/base_list.js +76,Nothing to show,没有显示 @@ -273,7 +271,7 @@ apps/frappe/frappe/public/js/frappe/model/model.js +24,Liked By,喜欢通过 apps/frappe/frappe/public/js/frappe/toolbar.js +26,Email Support,电子邮件支持 DocType: DocField,Print Hide If No Value,打印隐藏如果没有值 DocType: Event,yellow,黄色 -apps/frappe/frappe/core/doctype/doctype/doctype.py +559,Is Published Field must be a valid fieldname,发布现场必须是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +563,Is Published Field must be a valid fieldname,发布现场必须是有效的字段名 apps/frappe/frappe/public/js/frappe/upload.js +20,Upload Attachment,上传附件 DocType: Block Module,Block Module,封锁模块 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +3,Export Template,导出模板 @@ -294,7 +292,7 @@ DocType: Email Account,SparkPost,SparkPost apps/frappe/frappe/templates/emails/new_user.html +3,A new account has been created for you at {0},一个新的帐户在被创建为您{0} apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,电子邮件说明 apps/frappe/frappe/templates/includes/login/login.js +178,Instructions Emailed,电子邮件说明 -apps/frappe/frappe/public/js/frappe/views/communication.js +448,Enter Email Recipient(s),输入电子邮件收件人(S) +apps/frappe/frappe/public/js/frappe/views/communication.js +449,Enter Email Recipient(s),输入电子邮件收件人(S) DocType: Print Format,Verdana,Verdana DocType: Email Flag Queue,Email Flag Queue,电子邮件标志队列 apps/frappe/frappe/utils/bot.py +83,Can't identify open {0}. Try something else.,无法识别开{0}。尝试别的东西。 @@ -309,8 +307,8 @@ DocType: Communication,Message ID,消息ID DocType: Property Setter,Field Name,字段名称 apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.py +20,Google GSuite is not configured.,Google GSuite未配置。 apps/frappe/frappe/public/js/frappe/misc/utils.js +151,or,或 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,module name...,模块的名称... -apps/frappe/frappe/templates/pages/integrations/payment-success.html +12,Continue,继续 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +139,module name...,模块的名称... +apps/frappe/frappe/templates/pages/integrations/payment-success.html +13,Continue,继续 DocType: Custom Field,Fieldname,字段名 DocType: Workflow State,certificate,证书 DocType: User,Tile,平铺显示 @@ -319,6 +317,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +63,First data column apps/frappe/frappe/core/doctype/version/version.js +5,Show all Versions,显示所有版本 DocType: Workflow State,Print,打印 DocType: User,Restrict IP,限制IP +apps/frappe/frappe/public/js/frappe/form/layout.js +93,Dashboard,仪表板 apps/frappe/frappe/email/smtp.py +202,Unable to send emails at this time,暂时无法发送电子邮件 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +81,Search or type a command,搜索或输入命令 DocType: Communication,Timeline Name,时间轴名称 @@ -329,8 +328,8 @@ DocType: Contact,Sales Master Manager,销售经理大师 apps/frappe/frappe/www/complete_signup.html +13,One Last Step,最后一步 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +60,Name of the Document Type (DocType) you want this field to be linked to. e.g. Customer,此字段链接到的文档类型,例如客户 DocType: User,Roles Assigned,角色分配 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,搜索帮助 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Search Help,搜索帮助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,搜索帮助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +143,Search Help,搜索帮助 DocType: Top Bar Item,Parent Label,父标签 apps/frappe/frappe/templates/emails/auto_reply.html +2,"Your query has been received. We will reply back shortly. If you have any additional information, please reply to this mail.",您的问题已收到。我们将尽快回复邮件。如果您还有任何其他的信息,请回覆此邮件。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +10,Permissions are automatically translated to Standard Reports and Searches.,权限会自动转换为标准报表和搜索。 @@ -347,6 +346,7 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +12,Ctrl+Enter to apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_layout.html +8,Edit Heading,编辑标题 DocType: File,File URL,文件的URL DocType: Version,Table HTML,表HTML +apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

没有找到结果'

apps/frappe/frappe/email/doctype/email_group/email_group.js +28,Add Subscribers,添加订阅 apps/frappe/frappe/desk/doctype/event/event.py +63,Upcoming Events for Today,今日活动 DocType: Email Alert Recipient,Email By Document Field,通过文档字段发送邮件 @@ -366,17 +366,16 @@ DocType: Web Form,Amount Based On Field,用量以现场 apps/frappe/frappe/core/doctype/docshare/docshare.py +34,User is mandatory for Share,用户是强制性的分享 DocType: DocField,Hidden,隐 DocType: Web Form,Allow Incomplete Forms,允许不完整的表格 -apps/frappe/frappe/model/base_document.py +470,{0} must be set first,{0}必须首先设置 +apps/frappe/frappe/model/base_document.py +469,{0} must be set first,{0}必须首先设置 apps/frappe/frappe/utils/password_strength.py +31,"Use a few words, avoid common phrases.",用几个字,避免常用短语。 DocType: Workflow State,plane,机 -apps/frappe/frappe/templates/pages/integrations/payment-failed.html +10,Oops. Your payment has failed.,哎呀。您的付款失败。 apps/frappe/frappe/core/page/data_import_tool/exporter.py +65,"If you are uploading new records, ""Naming Series"" becomes mandatory, if present.",如果你在上传新纪录,那么“命名序列”必须指定。 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +66,Get Alerts for Today,买到今天通知 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +67,Get Alerts for Today,买到今天通知 apps/frappe/frappe/core/doctype/doctype/doctype.py +280,DocType can only be renamed by Administrator,的DocType只能由管理员进行重命名 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +442,changed value of {0},的改变后的值{0} DocType: Report,JSON,JSON apps/frappe/frappe/core/doctype/user/user.py +752,Please check your email for verification,请检查您的电子邮件验证 -apps/frappe/frappe/core/doctype/doctype/doctype.py +505,Fold can not be at the end of the form,不能在表单的末端折叠 +apps/frappe/frappe/core/doctype/doctype/doctype.py +509,Fold can not be at the end of the form,不能在表单的末端折叠 DocType: Communication,Bounced,退回 DocType: Deleted Document,Deleted Name,删除名称 apps/frappe/frappe/config/setup.py +14,System and Website Users,系统和网站用户 @@ -395,14 +394,14 @@ apps/frappe/frappe/model/document.py +1044,Document Queued,文档排队 DocType: GSuite Templates,Destination ID,目的地ID DocType: Desktop Icon,List,列表 DocType: Communication,Link Name,链接名称 -apps/frappe/frappe/core/doctype/doctype/doctype.py +429,Field {0} in row {1} cannot be hidden and mandatory without default,行{1}中的字段{0}不能为隐藏字段,请设置默认值 +apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Field {0} in row {1} cannot be hidden and mandatory without default,行{1}中的字段{0}不能为隐藏字段,请设置默认值 DocType: System Settings,mm/dd/yyyy,月/日/年 apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,无效的密码: apps/frappe/frappe/core/doctype/user/user.py +890,Invalid Password: ,无效的密码: DocType: Print Settings,Send document web view link in email,发送电子邮件文件Web视图链接 apps/frappe/frappe/www/feedback.html +114,Your Feedback for document {0} is saved successfully,您的文档反馈{0}保存成功 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +20,Previous,以前 -apps/frappe/frappe/email/doctype/email_account/email_account.py +551,Re:,回复: +apps/frappe/frappe/email/doctype/email_account/email_account.py +552,Re:,回复: apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +496,{0} rows for {1},{0} 行 {1} DocType: Currency,"Sub-currency. For e.g. ""Cent""",子货币,例如分 apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +215,Select uploaded file,选择上传的文件 @@ -413,10 +412,11 @@ DocType: Desktop Icon,Link,链接 apps/frappe/frappe/utils/file_manager.py +96,No file attached,没有附加的文件 DocType: Version,Version,版本 DocType: User,Fill Screen,填充屏幕 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +663,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",无法显示此树报告,由于数据缺失。最有可能的,它是被滤掉由于权限。 +apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认电子邮件帐户 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +662,"Unable to display this tree report, due to missing data. Most likely, it is being filtered out due to permissions.",无法显示此树报告,由于数据缺失。最有可能的,它是被滤掉由于权限。 apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +67,1. Select File,1.选择文件 apps/frappe/frappe/public/js/frappe/form/grid.js +599,Edit via Upload,通过上传编辑 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,"document type..., e.g. customer",文档类型...,如客户 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,"document type..., e.g. customer",文档类型...,如客户 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +29,The Condition '{0}' is invalid,条件“{0}”无效 DocType: Workflow State,barcode,条码 apps/frappe/frappe/config/setup.py +232,Add your own translations,添加您自己的翻译 @@ -426,7 +426,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +5, DocType: Event,Wednesday,星期三 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +19,"Apart from Role based Permission Rules, you can apply User Permissions based on DocTypes.",除了基于角色的权限规则,您还可以根据文档类型应用用户权限。 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +23,"These permissions will apply for all transactions where the permitted record is linked. For example, if Company C is added to User Permissions of user X, user X will only be able to see transactions that has company C as a linked value.",这些权限将申请在那里允许记录被链接的所有交易。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +550,Image field must be a valid fieldname,图像字段必须是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +554,Image field must be a valid fieldname,图像字段必须是有效的字段名 DocType: OAuth Client,Token,象征 DocType: Property Setter,ID (name) of the entity whose property is to be set,设置对象的ID(名称) apps/frappe/frappe/limits.py +82,"To renew, {0}.",要续订,{0}。 @@ -435,7 +435,7 @@ DocType: Web Form,Sidebar Items,边栏项目 apps/frappe/frappe/installer.py +125,App {0} already installed,已安装App {0} DocType: Workflow State,exclamation-sign,exclamation-sign apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.js +30,Show Permissions,显示权限 -apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a Link or Dynamic Link,时间轴字段必须是一个链接或动态链接 +apps/frappe/frappe/core/doctype/doctype/doctype.py +574,Timeline field must be a Link or Dynamic Link,时间轴字段必须是一个链接或动态链接 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +53,Date Range,日期范围 apps/frappe/frappe/public/js/frappe/views/gantt/gantt_view.js +20,Gantt,甘特图 apps/frappe/frappe/public/html/print_template.html +27,Page {0} of {1},第{0} {1} @@ -443,7 +443,7 @@ DocType: About Us Settings,Introduce your company to the website visitor.,向网 apps/frappe/frappe/utils/password.py +106,"Encryption key is invalid, Please check site_config.json",加密密钥无效,请检查site_config.json apps/frappe/frappe/public/js/frappe/form/workflow.js +116,To,到 DocType: Kanban Board Column,darkgrey,深灰色 -apps/frappe/frappe/model/rename_doc.py +372,Successful: {0} to {1},成功:{0} {1} +apps/frappe/frappe/model/rename_doc.py +373,Successful: {0} to {1},成功:{0} {1} apps/frappe/frappe/core/doctype/user/user.py +91,Cannot change user details in demo. Please signup for a new account at https://erpnext.com,演示中无法更改用户详细信息。请在https://erpnext.com注册一个新帐户 apps/frappe/frappe/printing/doctype/print_format/print_format.js +18,Please duplicate this to make changes,请复制此做出改变 apps/frappe/frappe/utils/pdf.py +36,PDF generation failed because of broken image links,PDF生成,因为破碎的图像链接失败 @@ -460,24 +460,24 @@ DocType: DocField,Collapsible,可折叠 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +790,Saved,已保存 apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +50,What do you need help with?,你有什么需要帮助的? apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Options for select. Each option on a new line.,对于选择选项。在新的一行每个选项。 -apps/frappe/frappe/public/js/legacy/form.js +799,Permanently Cancel {0}?,永久取消{0} ? +apps/frappe/frappe/public/js/legacy/form.js +774,Permanently Cancel {0}?,永久取消{0} ? DocType: Workflow State,music,音乐 DocType: Web Page,Settings,设置 apps/frappe/frappe/core/report/permitted_documents_for_user/permitted_documents_for_user.py +36,Please specify doctype,请注明文档类型 DocType: Print Format,Style Settings,样式设置 -apps/frappe/frappe/core/doctype/doctype/doctype.py +581,Sort field {0} must be a valid fieldname,排序字段{0}必须是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +585,Sort field {0} must be a valid fieldname,排序字段{0}必须是有效的字段名 apps/frappe/frappe/public/js/frappe/ui/base_list.js +81,More,更多 DocType: Contact,Sales Manager,销售经理 apps/frappe/frappe/public/js/frappe/model/model.js +513,Rename,重命名 DocType: Print Format,Format Data,格式化数据 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,Like,喜欢 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,Like,喜欢 DocType: Customize Form Field,Customize Form Field,自定义表单域 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,Allow User,允许用户 DocType: OAuth Client,Grant Type,格兰特类型 apps/frappe/frappe/config/setup.py +59,Check which Documents are readable by a User,查看某个用户可读的文件 apps/frappe/frappe/desk/page/applications/applications.py +71,Listing app not allowed,列表应用不允许 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +216,use % as wildcard,使用%作为通配符 -apps/frappe/frappe/email/doctype/email_account/email_account.js +150,"Email Domain not configured for this account, Create one?",电子邮件域名未配置此帐户,创建一个吗? +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +229,use % as wildcard,使用%作为通配符 +apps/frappe/frappe/email/doctype/email_account/email_account.js +151,"Email Domain not configured for this account, Create one?",电子邮件域名未配置此帐户,创建一个吗? DocType: User,Reset Password Key,重设密码钥匙 DocType: Email Account,Enable Auto Reply,启用自动回复 apps/frappe/frappe/core/doctype/error_log/error_log_list.js +7,Not Seen,没见过 @@ -521,7 +521,7 @@ DocType: DocField,Set Only Once,仅设置一次 DocType: Email Queue Recipient,Email Queue Recipient,电子邮件收件人排队 DocType: Address,Nagaland,那加兰邦 apps/frappe/frappe/core/doctype/user/user.py +405,Username {0} already exists,用户名{0}已存在 -apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set import as {1} is not importable,{0} :{1}无法导入所以不能设置“导入” +apps/frappe/frappe/core/doctype/doctype/doctype.py +729,{0}: Cannot set import as {1} is not importable,{0} :{1}无法导入所以不能设置“导入” apps/frappe/frappe/contacts/doctype/address/address.py +110,There is an error in your Address Template {0},有一个在你的地址模板错误{0} DocType: Footer Item,"target = ""_blank""","target = ""_blank""" DocType: Workflow State,hdd,hdd @@ -533,7 +533,7 @@ DocType: Communication,From Full Name,从全名 apps/frappe/frappe/desk/query_report.py +20,You don't have access to Report: {0},您没有权限访问报表:{0} DocType: User,Send Welcome Email,发送欢迎电子邮件 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +132,Upload CSV file containing all user permissions in the same format as Download.,上传一个于下载格式相同的,罗列所有用户权限的csv文件 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +428,Remove Filter,删除过滤器 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +449,Remove Filter,删除过滤器 DocType: Address,Daman and Diu,达曼和迪乌 DocType: Address,Personal,个人 apps/frappe/frappe/config/setup.py +113,Bulk Rename,批量重命名 @@ -564,11 +564,11 @@ apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot apps/frappe/frappe/core/doctype/doctype/doctype.py +74,"Standard DocType cannot have default print format, use Customize Form",标准DocType不能具有默认打印格式,请使用自定义表单 DocType: Report,Query,查询 DocType: DocType,Sort Order,排序 -apps/frappe/frappe/core/doctype/doctype/doctype.py +437,'In List View' not allowed for type {0} in row {1},行{1}中的类型{0}不允许选择“显示在列表视图中” +apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In List View' not allowed for type {0} in row {1},行{1}中的类型{0}不允许选择“显示在列表视图中” DocType: Custom Field,Select the label after which you want to insert new field.,选择标签,在其后插入新字段。 ,Document Share Report,文档分享报告 DocType: User,Last Login,最后登录 -apps/frappe/frappe/core/doctype/doctype/doctype.py +597,Fieldname is required in row {0},行{0}的字段名是必须项 +apps/frappe/frappe/core/doctype/doctype/doctype.py +600,Fieldname is required in row {0},行{0}的字段名是必须项 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_column_selector.html +4,Column,列 DocType: Custom Field,Adds a custom field to a DocType,为文档类型添加一个自定义字段 DocType: File,Is Home Folder,是主文件夹 @@ -594,7 +594,7 @@ DocType: File,Folder,文件夹 DocType: DocField,Index,索引 DocType: Email Group,Newsletter Manager,通讯经理 apps/frappe/frappe/custom/doctype/custom_field/custom_field.js +63,Option 1,选项1 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +108,All Posts,所有文章 +apps/frappe/frappe/public/js/frappe/form/formatters.js +124,{0} to {1},{0}到{1} apps/frappe/frappe/config/setup.py +89,Log of error during requests.,错误的过程中请求日志。 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +193,{0} has been successfully added to the Email Group.,{0} 已经被成功的加入到邮件组之中。 DocType: Address,Uttar Pradesh,北方邦 @@ -604,7 +604,7 @@ apps/frappe/frappe/email/doctype/newsletter/newsletter.py +30,Scheduled to send DocType: Kanban Board Column,Indicator,指示符 DocType: DocShare,Everyone,所有人 DocType: Workflow State,backward,向后 -apps/frappe/frappe/core/doctype/doctype/doctype.py +672,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:具有相同的角色,级别和允许只有一个规则{1} +apps/frappe/frappe/core/doctype/doctype/doctype.py +676,"{0}: Only one rule allowed with the same Role, Level and {1}",{0}:具有相同的角色,级别和允许只有一个规则{1} DocType: Email Queue,Add Unsubscribe Link,添加退订链接 apps/frappe/frappe/templates/includes/comments/comments.html +7,No comments yet. Start a new discussion.,还没有评论。开始一个新的讨论。 DocType: Workflow State,share,分享 @@ -623,7 +623,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +117,is not allowed.,是不 apps/frappe/frappe/email/doctype/email_group/email_group.js +6,View Subscribers,查看订阅 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Ms,女士 DocType: Website Theme,Background Color,背景颜色 -apps/frappe/frappe/public/js/frappe/views/communication.js +509,There were errors while sending email. Please try again.,邮件发送失败,请重试。 +apps/frappe/frappe/public/js/frappe/views/communication.js +520,There were errors while sending email. Please try again.,邮件发送失败,请重试。 DocType: Portal Settings,Portal Settings,门户网站设置 DocType: Web Page,0 is highest,0是最高的 apps/frappe/frappe/core/doctype/communication/communication.js +117,Are you sure you want to relink this communication to {0}?,您确定要重新链接该通信{0}? @@ -650,7 +650,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_no_result.html +3,No Email DocType: Contact Us Settings,Contact Us Settings,联系我们设置 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +176,Searching ...,正在搜寻... DocType: Workflow State,text-width,文字宽度 -apps/frappe/frappe/public/js/legacy/form.js +144,Maximum Attachment Limit for this record reached.,此记录最大附件限制到达。 +apps/frappe/frappe/public/js/legacy/form.js +142,Maximum Attachment Limit for this record reached.,此记录最大附件限制到达。 apps/frappe/frappe/website/js/web_form.js +313,The following mandatory fields must be filled:
,以下必填字段必须填写:
DocType: Email Alert,View Properties (via Customize Form),视图属性(通过自定义窗体) DocType: Note Seen By,Note Seen By,注意看通过 @@ -660,17 +660,17 @@ DocType: Address,Rajasthan,拉贾斯坦邦 apps/frappe/frappe/core/doctype/report/report.js +5,Report Builder reports are managed directly by the report builder. Nothing to do.,报表生成器报表直接由报表生成器来管理。无事可做。 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +163,Please verify your Email Address,请验证您的邮箱地址 apps/frappe/frappe/model/document.py +903,none of,没有 -apps/frappe/frappe/public/js/frappe/views/communication.js +66,Send Me A Copy,给我发一份 +apps/frappe/frappe/public/js/frappe/views/communication.js +65,Send Me A Copy,给我发一份 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +127,Upload User Permissions,上传用户权限 DocType: Dropbox Settings,App Secret Key,应用保密密钥 apps/frappe/frappe/config/website.py +7,Web Site,网站 apps/frappe/frappe/core/page/desktop/all_applications_dialog.html +8,Checked items will be shown on desktop,勾选的项目会显示在桌面上 -apps/frappe/frappe/core/doctype/doctype/doctype.py +715,{0} cannot be set for Single types,{0}不能设置为单例类型 +apps/frappe/frappe/core/doctype/doctype/doctype.py +719,{0} cannot be set for Single types,{0}不能设置为单例类型 apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +858,Kanban Board {0} does not exist.,看板{0}不存在。 apps/frappe/frappe/public/js/frappe/form/form_viewers.js +48,{0} are currently viewing this document,{0}正在查看该文档 DocType: ToDo,Assigned By Full Name,分配者姓名 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +151,{0} updated,{0}已更新 -apps/frappe/frappe/core/doctype/doctype/doctype.py +705,Report cannot be set for Single types,报告不能单类型设置 +apps/frappe/frappe/core/doctype/doctype/doctype.py +709,Report cannot be set for Single types,报告不能单类型设置 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +51,{0} days ago,{0}天前 DocType: Email Account,Awaiting Password,等待密码 DocType: Address,Address Line 1,地址行1 @@ -680,7 +680,7 @@ apps/frappe/frappe/public/js/frappe/views/inbox/inbox_view.js +152,Compose Email apps/frappe/frappe/config/setup.py +204,"States for workflow (e.g. Draft, Approved, Cancelled).",工作流程状况(例如草稿,已批准,已取消) 。 DocType: Print Settings,Allow Print for Draft,允许打印草稿 apps/frappe/frappe/public/js/frappe/form/link_selector.js +139,Set Quantity,设置数量 -apps/frappe/frappe/public/js/legacy/form.js +357,Submit this document to confirm,提交该文件以确认 +apps/frappe/frappe/public/js/legacy/form.js +338,Submit this document to confirm,提交该文件以确认 DocType: Contact,Unsubscribed,已退订 apps/frappe/frappe/config/setup.py +51,Set custom roles for page and report,对于页面和报表设置自定义角色 apps/frappe/frappe/public/js/frappe/misc/rating_icons.html +2,Rating: ,评分: @@ -688,7 +688,7 @@ apps/frappe/frappe/email/receive.py +197,Can not find UIDVALIDITY in imap status ,Data Import Tool,数据导入工具 DocType: Address,Dadra and Nagar Haveli,Dadra和Nagar Haveli apps/frappe/frappe/website/js/web_form.js +259,Uploading files please wait for a few seconds.,上传文件,请稍等几秒钟。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +497,Attach Your Picture,附上你的照片 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +509,Attach Your Picture,附上你的照片 apps/frappe/frappe/core/doctype/version/version_view.html +69,Row Values Changed,行值更改 DocType: Workflow State,Stop,停止 DocType: Footer Item,Link to the page you want to open. Leave blank if you want to make it a group parent.,链接到你想打开的页面。如果你想使之成为集团母公司留空。 @@ -703,7 +703,7 @@ DocType: Print Format,Align Labels to the Left,对准标签的左 DocType: Help Article,Expert,专家 DocType: Workflow State,circle-arrow-right,圆圈箭头向右 DocType: LDAP Settings,LDAP Server Url,LDAP服务器URL -apps/frappe/frappe/public/js/legacy/form.js +73,Cannot open instance when its {0} is open,无法打开实例时,它的{0}是开放的 +apps/frappe/frappe/public/js/legacy/form.js +72,Cannot open instance when its {0} is open,无法打开实例时,它的{0}是开放的 apps/frappe/frappe/desk/page/applications/applications.py +79,Queued for install,排队等待安装 DocType: Custom DocPerm,Custom DocPerm,自DocPerm DocType: Newsletter,Send Unsubscribe Link,发送退订链接 @@ -720,7 +720,6 @@ DocType: Feedback Trigger,"To add dynamic subject, use jinja tags like apps/frappe/frappe/desk/page/applications/applications.py +103,App {0} removed,应用{0}移除 DocType: Custom DocPerm,Apply User Permissions,应用用户权限 DocType: User,Modules HTML,HTML模块 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,设置>用户权限管理器 apps/frappe/frappe/public/js/frappe/ui/field_group.js +82,Missing Values Required,未指定的必须项 DocType: DocType,Other Settings,其他设置 DocType: Social Login Keys,Frappe,冰咖啡 @@ -739,7 +738,7 @@ DocType: OAuth Bearer Token,OAuth Bearer Token,OAuth的承载令牌 apps/frappe/frappe/public/js/legacy/print_format.js +124,No document selected,没有选定的文档 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Dr,借方 DocType: Event,Event,事件 -apps/frappe/frappe/public/js/frappe/views/communication.js +548,"On {0}, {1} wrote:",{0},{1}写道: +apps/frappe/frappe/public/js/frappe/views/communication.js +568,"On {0}, {1} wrote:",{0},{1}写道: apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +133,Cannot delete standard field. You can hide it if you want,无法删除标准的现场。你可以将其隐藏,如果你想 DocType: Top Bar Item,For top bar,对顶部条 apps/frappe/frappe/utils/bot.py +148,Could not identify {0},无法识别{0} @@ -753,7 +752,7 @@ DocType: Role,Desk Access,台访问 DocType: Workflow State,minus,minus apps/frappe/frappe/public/js/frappe/request.js +137,Server Error: Please check your server logs or contact tech support.,服务器错误:请检查服务器日志或联系技术支持。 apps/frappe/frappe/core/doctype/user/user.py +188,Welcome email sent,欢迎电子邮件已发送 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +436,Let's prepare the system for first use.,让我们为首次使用准备一下。 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +448,Let's prepare the system for first use.,让我们为首次使用准备一下。 apps/frappe/frappe/desk/page/applications/applications.js +129,Featured,精选 apps/frappe/frappe/core/doctype/user/user.py +727,Already Registered,已注册 DocType: System Settings,Float Precision,浮点数精度 @@ -766,7 +765,7 @@ DocType: Web Form,Allow Print,允许打印 apps/frappe/frappe/desk/page/applications/applications.js +25,No Apps Installed,没有安装的应用程序 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +239,Mark the field as Mandatory,标记字段为必须项 DocType: Communication,Clicked,点击 -apps/frappe/frappe/public/js/legacy/form.js +971,No permission to '{0}' {1},没有权限“{0}” {1} +apps/frappe/frappe/public/js/legacy/form.js +946,No permission to '{0}' {1},没有权限“{0}” {1} DocType: User,Google User ID,谷歌用户ID apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.js +38,Scheduled to send,计划送 DocType: DocType,Track Seen,轨道看 @@ -836,7 +835,7 @@ DocType: Address,Kerala,喀拉拉邦 DocType: File,Lft,Lft DocType: User,Simultaneous Sessions,并发会话 DocType: OAuth Client,Client Credentials,客户端凭证 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +135,Open a module or tool,打开一个模块或工具 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,Open a module or tool,打开一个模块或工具 DocType: Communication,Delivery Status,交货状态 DocType: Module Def,App Name,应用程序名称 apps/frappe/frappe/website/js/web_form.js +31,Max file size allowed is {0}MB,允许最大文件大小为{0} MB @@ -848,8 +847,8 @@ DocType: Feedback Request,Reference Communication,参考通信 DocType: Email Queue,Unsubscribe Method,退订方法 DocType: GSuite Templates,Related DocType,相关DocType apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +674,Edit to add content,编辑以添加内容 -apps/frappe/frappe/public/js/frappe/views/communication.js +80,Select Languages,选择语言 -apps/frappe/frappe/__init__.py +510,No permission for {0},对于无许可{0} +apps/frappe/frappe/public/js/frappe/views/communication.js +79,Select Languages,选择语言 +apps/frappe/frappe/__init__.py +509,No permission for {0},对于无许可{0} DocType: DocType,Advanced,高级 apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +78,Seems API Key or API Secret is wrong !!!,似乎API密钥或API的秘密是错误的! apps/frappe/frappe/templates/emails/auto_reply.html +3,Reference: {0} {1},参考:{0} {1} @@ -871,7 +870,7 @@ DocType: Customize Form,Enter Form Type,输入表单类型 apps/frappe/frappe/public/js/frappe/list/list_sidebar_stat.html +5,No records tagged.,没有记录标记。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +466,Remove Field,删除字段 DocType: User,Send Password Update Notification,发送密码更新通知 -apps/frappe/frappe/public/js/legacy/form.js +63,"Allowing DocType, DocType. Be careful!",允许的DOCTYPE,的DocType 。要小心! +apps/frappe/frappe/public/js/legacy/form.js +62,"Allowing DocType, DocType. Be careful!",允许的DOCTYPE,的DocType 。要小心! apps/frappe/frappe/config/core.py +32,"Customized Formats for Printing, Email",自定义打印格式,电子邮件 apps/frappe/frappe/public/js/frappe/desk.js +460,Updated To New Version,更新到新版本 DocType: Custom Field,Depends On,取决于 @@ -965,6 +964,7 @@ apps/frappe/frappe/model/document.py +902,one of,其中 apps/frappe/frappe/core/doctype/file/file_list.js +135,Please select file to copy,请选择要复制的文件 apps/frappe/frappe/public/js/frappe/desk.js +151,Checking one moment,检查一个时刻 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +353,Show Tags,显示标签 +DocType: System Settings,"If Apply Strict User Permission is checked and User Permission is defined for a DocType for a User, then all the documents where value of the link is blank, will not be shown to that User",如果选中了“严格用户权限”,并为用户定义了“用户权限”,则该链接的值为空的所有文档将不会显示给该用户 DocType: Address,Billing,账单 DocType: Email Queue,Not Sent,未发送 DocType: Web Form,Actions,操作 @@ -995,6 +995,7 @@ apps/frappe/frappe/templates/includes/list/filters.html +19,clear,明确 apps/frappe/frappe/desk/doctype/event/event.py +30,Every day events should finish on the same day.,每日活动应该在当天结束。 DocType: Communication,User Tags,用户标签 apps/frappe/frappe/public/js/frappe/views/image/image_view.js +169,Fetching Images..,获取图像.. +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,设置>用户 DocType: Workflow State,download-alt,download-alt apps/frappe/frappe/desk/page/applications/applications.py +112,Downloading App {0},下载应用程序{0} DocType: Communication,Feedback Request,反馈请求 @@ -1012,7 +1013,7 @@ apps/frappe/frappe/integrations/doctype/gsuite_settings/gsuite_settings.js +32,G DocType: System Settings,Backups,备份 apps/frappe/frappe/core/doctype/communication/communication.js +77,Add Contact,增加联系人 DocType: Email Alert Recipient,Optional: Always send to these ids. Each Email Address on a new row,可选:总是发送给这些ID。在新行的每个电子邮件地址 -apps/frappe/frappe/public/js/frappe/form/layout.js +106,Hide Details,隐藏详情 +apps/frappe/frappe/public/js/frappe/form/layout.js +133,Hide Details,隐藏详情 DocType: Workflow State,Tasks,任务 DocType: Event,Tuesday,星期二 DocType: Blog Settings,Blog Settings,博客设置 @@ -1032,9 +1033,8 @@ apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +421,cancelled this apps/frappe/frappe/core/doctype/report/report.js +16,Write a Python file in the same folder where this is saved and return column and result.,在相同的目录下建立一个返回列和结果的Python文件。 DocType: DocType,Sort Field,字段排序 DocType: Razorpay Settings,Razorpay Settings,Razorpay设置 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +424,Edit Filter,编辑过滤器 -apps/frappe/frappe/core/doctype/doctype/doctype.py +411,Field {0} of type {1} cannot be mandatory,类型{1}的字段{0}不能是必须项 -DocType: System Settings,"eg. If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",例如。如果应用用户权限的检查报告的DocType,但没有用户权限被定义为报告用户,那么所有的报告都显示该用户 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +445,Edit Filter,编辑过滤器 +apps/frappe/frappe/core/doctype/doctype/doctype.py +415,Field {0} of type {1} cannot be mandatory,类型{1}的字段{0}不能是必须项 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard_page.html +15,Add More,添加更多 apps/frappe/frappe/public/js/frappe/ui/charts.js +101,Hide Chart,隐藏图表 DocType: System Settings,Session Expiry Mobile,会话过期移动 @@ -1049,6 +1049,7 @@ DocType: Communication,Delayed,延迟 apps/frappe/frappe/config/setup.py +128,List of backups available for download,可供下载的备份目录 apps/frappe/frappe/www/login.html +89,Sign up,报名 DocType: Test Runner,Output,产量 +DocType: Email Alert,Set Property After Alert,警报后设置属性 apps/frappe/frappe/config/setup.py +226,Add fields to forms.,为表单添加字段。 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +159,Looks like something is wrong with this site's Paypal configuration.,看起来这个网站的Paypal配置有问题。 DocType: File,rgt,RGT @@ -1056,6 +1057,7 @@ DocType: Email Account,Sendgrid,Sendgrid DocType: Workflow State,leaf,leaf DocType: Portal Menu Item,Portal Menu Item,门户菜单项 DocType: User Email,Email ID,电子邮件ID +DocType: System Settings,"If Apply User Permissions is checked for Report DocType but no User Permissions are defined for Report for a User, then all Reports are shown to that User",如果为Report DocType选中了“应用用户权限”,但是为“用户报告”定义了用户权限,则会向该用户显示所有报告 DocType: OAuth Client,A list of resources which the Client App will have access to after the user allows it.
e.g. project,资源的列表,它的客户端应用程序必须将用户允许后访问。
如项目 DocType: Translation,Translated Text,翻译文本 DocType: Contact Us Settings,Query Options,查询选项 @@ -1073,7 +1075,7 @@ DocType: Address,Contacts,往来 DocType: System Settings,Setup Complete,安装完成 apps/frappe/frappe/config/setup.py +66,Report of all document shares,所有的文件共享报告 apps/frappe/frappe/www/update-password.html +18,New Password,新密码 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +68,Filter {0} missing,过滤器{0}丢失 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +73,Filter {0} missing,过滤器{0}丢失 apps/frappe/frappe/core/doctype/communication/communication.py +107,Sorry! You cannot delete auto-generated comments,抱歉!不能删除自动生成的注释 DocType: Website Theme,Style using CSS,使用CSS样式 apps/frappe/frappe/core/doctype/communication/communication.js +100,Reference DocType,参考文档类型 @@ -1113,7 +1115,7 @@ DocType: Kanban Board Column,Kanban Board Column,看板列 apps/frappe/frappe/utils/password_strength.py +76,Straight rows of keys are easy to guess,键的直排容易被猜中 DocType: Communication,Phone No.,电话号码 DocType: Workflow State,fire,fire -apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,;不允许在条件 +apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +23,; not allowed in condition,不满足条件 DocType: Async Task,Async Task,异步任务 DocType: Workflow State,picture,图片 apps/frappe/frappe/www/complete_signup.html +22,Complete,完成 @@ -1127,7 +1129,7 @@ DocType: User,Block Modules,封锁模块 apps/frappe/frappe/model/db_schema.py +141,Reverting length to {0} for '{1}' in '{2}'; Setting the length as {3} will cause truncation of data.,恢复长度{0}为“{1}”在“{2}”;设置长度为{3}将导致数据截断。 DocType: Print Format,Custom CSS,自定义CSS apps/frappe/frappe/public/js/frappe/form/footer/timeline.html +4,Add a comment,添加评论 -apps/frappe/frappe/model/rename_doc.py +375,Ignored: {0} to {1},忽略:{0} {1} +apps/frappe/frappe/model/rename_doc.py +376,Ignored: {0} to {1},忽略:{0} {1} DocType: Address,Gujarat,古吉拉特邦 apps/frappe/frappe/config/setup.py +84,Log of error on automated events (scheduler).,自动事件的错误日志。 apps/frappe/frappe/utils/csvutils.py +75,Not a valid Comma Separated Value (CSV File),不是一个有效的CSV文件 @@ -1136,7 +1138,7 @@ DocType: Email Account,Default Incoming,默认收入 DocType: Workflow State,repeat,重复 DocType: Website Settings,Banner,横幅 DocType: Role,"If disabled, this role will be removed from all users.",如果禁用了,这个角色将会从所有用户中删除。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +124,Help on Search,搜索帮助 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +127,Help on Search,搜索帮助 apps/frappe/frappe/core/doctype/user/user.py +725,Registered but disabled,注册但被禁用 DocType: DocType,Hide Copy,隐藏副本 apps/frappe/frappe/public/js/frappe/roles_editor.js +38,Clear all roles,清除所有角色 @@ -1168,7 +1170,7 @@ apps/frappe/frappe/core/page/data_import_tool/exporter.py +67,"For updating, you DocType: Address,Country,国家 apps/frappe/frappe/contacts/doctype/address/address.py +131,Addresses,地址 DocType: Communication,Shared,共享 -apps/frappe/frappe/public/js/frappe/views/communication.js +76,Attach Document Print,附加文档打印 +apps/frappe/frappe/public/js/frappe/views/communication.js +75,Attach Document Print,附加文档打印 DocType: Bulk Update,Field,领域 DocType: Communication,Received,收到 DocType: Social Login Keys,Google Client ID,谷歌客户ID @@ -1189,12 +1191,12 @@ DocType: Report,Query Report,查询报告 DocType: User,Set New Password,设置新密码 DocType: User,Github User ID,Github用户ID apps/frappe/frappe/core/page/user_permissions/user_permissions.js +251,If Document Type,如果文件类型 -apps/frappe/frappe/model/delete_doc.py +220,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","无法删除或取消,因为{0} {1}相链接{2} {3} {4}" +apps/frappe/frappe/model/delete_doc.py +221,"Cannot delete or cancel because {0} {1} is linked with {2} {3} {4}","无法删除或取消,因为{0} {1}相链接{2} {3} {4}" apps/frappe/frappe/desk/page/applications/applications.py +109,Unknown app {0},未知的应用程序{0} apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +48,"%s is not a valid report format. Report format should \ one of the following %s",%s 不是有效的报告格式. 报告格式应以 \ 开头然后才是 %s DocType: Communication,Chat,聊天 -apps/frappe/frappe/core/doctype/doctype/doctype.py +407,Fieldname {0} appears multiple times in rows {1},字段名{0}在列{1}中多次出现 +apps/frappe/frappe/core/doctype/doctype/doctype.py +408,Fieldname {0} appears multiple times in rows {1},字段名{0}在列{1}中多次出现 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +460,{0} from {1} to {2} in row #{3},在列 #{3} 中 {0} 从 {1} 到 {2} DocType: Communication,Expired,已过期 DocType: Customize Form Field,Number of columns for a field in a Grid (Total Columns in a grid should be less than 11),对于一个场的列在网格数(在网格总列应小于11) @@ -1204,30 +1206,30 @@ apps/frappe/frappe/www/login.html +93,Have an account? Login,有一个账户? apps/frappe/frappe/public/js/legacy/print_format.js +148,Unknown Print Format: {0},未知的打印格式:{0} DocType: Workflow State,arrow-down,向下箭头 apps/frappe/frappe/public/js/frappe/ui/tree.js +130,Collapse,收起 -apps/frappe/frappe/model/delete_doc.py +161,User not allowed to delete {0}: {1},用户不能删除{0}:{1} +apps/frappe/frappe/model/delete_doc.py +162,User not allowed to delete {0}: {1},用户不能删除{0}:{1} apps/frappe/frappe/public/js/frappe/model/model.js +21,Last Updated On,最后更新日期 DocType: Help Article,Likes,喜欢 DocType: Website Settings,Top Bar,顶栏 DocType: GSuite Settings,Script Code,脚本代码 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,创建用户电子邮件 apps/frappe/frappe/core/doctype/user/user.js +97,Create User Email,创建用户电子邮件 -apps/frappe/frappe/core/doctype/doctype/doctype.py +643,No Permissions Specified,未指定权限 +apps/frappe/frappe/core/doctype/doctype/doctype.py +647,No Permissions Specified,未指定权限 apps/frappe/frappe/core/page/modules_setup/modules_setup.html +32,Global Settings: Users will only be able to choose checked icons,全局设置:用户只能选择检查图标 apps/frappe/frappe/desk/doctype/desktop_icon/desktop_icon.py +295,{0} not found,{0}未找到 DocType: Custom Role,Custom Role,自定义角色 apps/frappe/frappe/core/doctype/file/test_file.py +57,Home/Test Folder 2,首页/测试文件夹2 DocType: System Settings,Ignore User Permissions If Missing,忽略用户权限如果缺少 -apps/frappe/frappe/public/js/frappe/form/control.js +1016,Please save the document before uploading.,请上传之前保存文档。 +apps/frappe/frappe/public/js/frappe/form/control.js +990,Please save the document before uploading.,请上传之前保存文档。 apps/frappe/frappe/public/js/frappe/ui/messages.js +214,Enter your password,输入密码 DocType: Dropbox Settings,Dropbox Access Secret,Dropbox的密码 apps/frappe/frappe/templates/includes/comments/comments.html +119,Add Another Comment,添加另一个评论 apps/frappe/frappe/public/js/frappe/form/toolbar.js +171,Edit DocType,编辑的DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +134,Unsubscribed from Newsletter,从通讯退订 -apps/frappe/frappe/core/doctype/doctype/doctype.py +503,Fold must come before a Section Break,折叠一定要来一个分节符前 +apps/frappe/frappe/core/doctype/doctype/doctype.py +507,Fold must come before a Section Break,折叠一定要来一个分节符前 apps/frappe/frappe/public/js/frappe/model/meta.js +190,Last Modified By,上次修改者 DocType: Workflow State,hand-down,hand-down DocType: Address,GST State,消费税状态 -apps/frappe/frappe/core/doctype/doctype/doctype.py +691,{0}: Cannot set Cancel without Submit,{0} :没有“提交”的情况下不能分配“取消” +apps/frappe/frappe/core/doctype/doctype/doctype.py +695,{0}: Cannot set Cancel without Submit,{0} :没有“提交”的情况下不能分配“取消” DocType: Website Theme,Theme,主题 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +162,There were errors.,有错误发生。 DocType: OAuth Authorization Code,Redirect URI Bound To Auth Code,重定向URI势必授权码 @@ -1246,7 +1248,7 @@ apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +28,My Settings,个 DocType: Website Theme,Text Color,文字颜色 DocType: Desktop Icon,Force Show,炫耀武力 apps/frappe/frappe/auth.py +78,Invalid Request,无效请求 -apps/frappe/frappe/public/js/frappe/form/layout.js +33,This form does not have any input,这种形式没有任何输入 +apps/frappe/frappe/public/js/frappe/form/layout.js +35,This form does not have any input,这种形式没有任何输入 apps/frappe/frappe/core/doctype/system_settings/system_settings.py +26,Session Expiry must be in format {0},会话到期格式必须是{0} DocType: Website Sidebar Item,Group,组 DocType: Footer Item,"Select target = ""_blank"" to open in a new page.","选择taget=""_blank""在新页面中打开。" @@ -1255,7 +1257,6 @@ apps/frappe/frappe/core/doctype/file/file.py +151,Same file has already been att apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +93,Ignore encoding errors.,忽略编码错误。 DocType: Workflow State,wrench,wrench apps/frappe/frappe/desk/page/applications/applications.js +45,Not Set,未设置 -apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +8,Setup > User,设置>用户 DocType: Authentication Log,Date,日期 DocType: Website Settings,Disable Signup,禁止注册 apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +131,Sit tight while your system is being setup. This may take a few moments.,系统正在安装设置,请稍后。这可能需要一段时间。 @@ -1266,7 +1267,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +7, apps/frappe/frappe/templates/includes/comments/comments.html +25,Add Comment,添加评论 DocType: DocField,Mandatory,强制性 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +88,Module to Export,模块导出 -apps/frappe/frappe/core/doctype/doctype/doctype.py +655,{0}: No basic permissions set,{0} :基本权限未设置 +apps/frappe/frappe/core/doctype/doctype/doctype.py +659,{0}: No basic permissions set,{0} :基本权限未设置 apps/frappe/frappe/limits.py +78,Your subscription will expire on {0}.,您的订阅将在{0}到期。 apps/frappe/frappe/utils/backups.py +159,Download link for your backup will be emailed on the following email address: {0},备份的下载链接将被发送至以下电子邮件地址:{0} apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +14,"Meaning of Submit, Cancel, Amend",义提交,取消,修订的含义 @@ -1279,11 +1280,11 @@ DocType: Desktop Icon,query-report,查询的报告 apps/frappe/frappe/desk/doctype/todo/todo.py +20,Assigned to {0}: {1},分配给{0}:{1} apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +129,Filters saved,过滤器保存 DocType: DocField,Percent,百分之 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +436,Please set filters,请设置过滤器 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +435,Please set filters,请设置过滤器 apps/frappe/frappe/public/js/frappe/form/linked_with.js +29,Linked With,挂具 DocType: Workflow State,book,书 DocType: Website Settings,Landing Page,着陆页 -apps/frappe/frappe/public/js/frappe/form/script_manager.js +155,Error in Custom Script,错误自定义脚本 +apps/frappe/frappe/public/js/frappe/form/script_manager.js +163,Error in Custom Script,错误自定义脚本 apps/frappe/frappe/public/js/frappe/form/quick_entry.js +77,{0} Name,{0}名称 apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +132,"Import Request Queued. This may take a few moments, please be patient.",导入请求排队。这可能需要几分钟,请耐心等待。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +162,No Permissions set for this criteria.,没有符合条件的权限。 @@ -1295,7 +1296,7 @@ DocType: System Settings,Allow Login using Mobile Number,允许使用手机号 apps/frappe/frappe/public/js/frappe/request.js +105,You do not have enough permissions to access this resource. Please contact your manager to get access.,您没有足够的权限来访问该资源。请联系您的经理,以获得访问权。 DocType: Custom Field,Custom,习俗 apps/frappe/frappe/config/setup.py +156,Setup Email Alert based on various criteria.,根据不同的规则设置电子邮件警报。 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +98,Posts filed under {0},帖子下提出{0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +101,Posts filed under {0},帖子下提出{0} DocType: Email Alert,Send alert if date matches this field's value,如果日期匹配该字段的值则发送警报 DocType: Workflow,Transitions,转换 apps/frappe/frappe/desk/page/applications/applications.js +175,Remove {0} and delete all data?,删除{0}并删除所有数据吗? @@ -1304,9 +1305,8 @@ DocType: User,Login After,登录后 DocType: Print Format,Monospace,等宽 DocType: Letter Head,Printing,印花 DocType: Workflow State,thumbs-up,竖起大拇指 -apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建新的电子邮件帐户 DocType: DocPerm,DocPerm,文档权限 -apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Precision should be between 1 and 6,精度应为1和6之间 +apps/frappe/frappe/core/doctype/doctype/doctype.py +463,Precision should be between 1 and 6,精度应为1和6之间 apps/frappe/frappe/core/doctype/communication/communication.js +180,Fw: {0},FW:{0} apps/frappe/frappe/public/js/frappe/misc/utils.js +154,and,和 DocType: Error Snapshot,Frames,框架 @@ -1315,7 +1315,7 @@ DocType: About Us Team Member,Image Link,图片链接 DocType: Auto Email Report,Report Filters,报告过滤器 apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +15,now,现在 DocType: Workflow State,step-backward,step-backward -apps/frappe/frappe/utils/boilerplate.py +262,{app_title},{ app_title } +apps/frappe/frappe/utils/boilerplate.py +263,{app_title},{ app_title } apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +200,Please set Dropbox access keys in your site config,请在您的网站配置设置Dropbox的访问键 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +16,Delete this record to allow sending to this email address,删除此记录允许发送此邮件地址 apps/frappe/frappe/core/page/data_import_tool/exporter.py +66,Only mandatory fields are necessary for new records. You can delete non-mandatory columns if you wish.,只有必填字段所必需的新记录。如果你愿意,你可以删除非强制性列。 @@ -1337,8 +1337,7 @@ DocType: File,Is Attachments Folder,是附件文件夹 apps/frappe/frappe/public/js/frappe/views/treeview.js +71,Expand All,展开全部 apps/frappe/frappe/templates/includes/login/login.js +49,Valid Login id required.,请输入有效的登录ID。 apps/frappe/frappe/desk/doctype/todo/todo.js +30,Re-open,重新打开 -apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +10,You have cancelled the payment,您已取消付款 -apps/frappe/frappe/model/rename_doc.py +359,Please select a valid csv file with data,请选择与数据的有效csv文件 +apps/frappe/frappe/model/rename_doc.py +360,Please select a valid csv file with data,请选择与数据的有效csv文件 apps/frappe/frappe/core/doctype/docshare/docshare.py +56,{0} un-shared this document with {1},{0}关闭了此文件对{1}的共享 apps/frappe/frappe/public/js/frappe/form/workflow.js +118,Document Status transition from {0} to {1} is not allowed,从{0}到{1}文件状态转换是不允许的 DocType: DocType,"Make ""name"" searchable in Global Search",让“名”在全球的搜索搜索 @@ -1351,15 +1350,14 @@ apps/frappe/frappe/core/doctype/version/version_view.html +13,Original Value,原 DocType: Help Category,Help Category,帮助分类 apps/frappe/frappe/utils/oauth.py +288,User {0} is disabled,用户{0}已禁用 apps/frappe/frappe/www/404.html +8,Page missing or moved,页面丢失或移动 -apps/frappe/frappe/public/js/legacy/form.js +192,Edit {0} properties,编辑{0}属性 DocType: DocType,Route,路线 apps/frappe/frappe/config/integrations.py +23,Razorpay Payment gateway settings,Razorpay支付网关设置 DocType: DocField,Name,名称 apps/frappe/frappe/limits.py +193,You have exceeded the max space of {0} for your plan. {1}.,您已超过{0}最大空间,为您的计划。 {1}。 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +376,Search the docs,搜索文档 DocType: OAuth Authorization Code,Valid,有效 -apps/frappe/frappe/public/js/frappe/form/control.js +1303,Open Link,打开链接 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +439,Your Language,你的语言 +apps/frappe/frappe/public/js/frappe/form/control.js +1269,Open Link,打开链接 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +451,Your Language,你的语言 apps/frappe/frappe/desk/form/load.py +46,Did not load,没有加载 apps/frappe/frappe/public/js/frappe/form/templates/grid_body.html +18,Add Row,添加行 DocType: Tag Category,Doctypes,文档类型 @@ -1374,7 +1372,7 @@ DocType: Feedback Request,Is Feedback request triggered manually ?,被反馈请 DocType: Address,Lakshadweep Islands,Lakshadweep群岛 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +6,Can Write,可以写 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +16,"Certain documents, like an Invoice, should not be changed once final. The final state for such documents is called Submitted. You can restrict which roles can Submit.",某些文档,例如发票一旦进入最终状态(即“已提交”)就不能再更改。你可以限制可以提交的角色。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +826,You are not allowed to export this report,你不准导出本报表 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +825,You are not allowed to export this report,你不准导出本报表 apps/frappe/frappe/public/js/frappe/list/list_view.js +804,1 item selected,选择1个项目 DocType: Newsletter,Test Email Address,测试电子邮件地址 DocType: ToDo,Sender,发件人 @@ -1409,7 +1407,7 @@ apps/frappe/frappe/email/doctype/email_account/email_account_list.js +6,Default apps/frappe/frappe/core/doctype/file/file_list.js +84,Import .zip,进口.ZIP apps/frappe/frappe/core/report/feedback_ratings/feedback_ratings.js +21,Document ID,文件编号 DocType: Print Settings,Letter,信 -apps/frappe/frappe/core/doctype/doctype/doctype.py +552,Image field must be of type Attach Image,图像字段的类型必须为附着图像 +apps/frappe/frappe/core/doctype/doctype/doctype.py +556,Image field must be of type Attach Image,图像字段的类型必须为附着图像 DocType: DocField,Columns,列 DocType: Async Task,Succeeded,成功 apps/frappe/frappe/public/js/frappe/form/save.js +141,Mandatory fields required in {0},在需要的必填字段{0} @@ -1459,7 +1457,7 @@ DocType: DocField,Text Editor,文本编辑器 apps/frappe/frappe/config/website.py +73,Settings for About Us Page.,关于我们页面的设置。 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +679,Edit Custom HTML,编辑自定义HTML DocType: Error Snapshot,Error Snapshot,错误快照 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +460,In,在 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +479,In,在 DocType: Email Alert,Value Change,更改值 DocType: Standard Reply,Standard Reply,标准回复 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +233,Width of the input box,输入框的宽度 @@ -1475,12 +1473,12 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.js +8,"Field ""value"" i DocType: Customize Form,Use this fieldname to generate title,使用该字段名来生成标题 apps/frappe/frappe/email/doctype/email_group/email_group.js +13,Import Email From,导入电子邮件发件人 apps/frappe/frappe/contacts/doctype/contact/contact.js +20,Invite as User,邀请成为用户 -apps/frappe/frappe/public/js/frappe/views/communication.js +83,Select Attachments,选择附件 +apps/frappe/frappe/public/js/frappe/views/communication.js +82,Select Attachments,选择附件 apps/frappe/frappe/model/naming.py +94, for {0},{0} apps/frappe/frappe/website/js/web_form.js +293,There were errors. Please report this.,有错误。请报告此。 -apps/frappe/frappe/public/js/legacy/form.js +176,You are not allowed to print this document,你不允许打印此文档 +apps/frappe/frappe/public/js/legacy/form.js +174,You are not allowed to print this document,你不允许打印此文档 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +107,Please set filters value in Report Filter table.,请设置在报告过滤表过滤器值。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +380,Loading Report,加载报表 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +379,Loading Report,加载报表 apps/frappe/frappe/limits.py +72,Your subscription will expire today.,您的订阅今天将到期。 DocType: Page,Standard,标准 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +46,Attach File,附加文件 @@ -1510,7 +1508,7 @@ apps/frappe/frappe/desk/doctype/bulk_update/bulk_update.py +36,Validation failed apps/frappe/frappe/desk/page/applications/applications.js +50,Regional Extensions,区域扩展 DocType: LDAP Settings,Base Distinguished Name (DN),基本专有名称(DN) apps/frappe/frappe/core/doctype/communication/email.py +143,Leave this conversation,离开这个谈话 -apps/frappe/frappe/model/base_document.py +466,Options not set for link field {0},对于链接字段没有设置选项{0} +apps/frappe/frappe/model/base_document.py +465,Options not set for link field {0},对于链接字段没有设置选项{0} DocType: Customize Form,"Must be of type ""Attach Image""",类型必须为“附加图片” apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +25,Unselect All,全部取消选择 apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +197,You cannot unset 'Read Only' for field {0},你不能为字段{0}取消“只读”设置 @@ -1553,9 +1551,9 @@ apps/frappe/frappe/core/doctype/file/file_list.js +65,Folder name should not inc DocType: Note,Note,注 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot.html +32,Error Report,错误报告 apps/frappe/frappe/core/doctype/feedback_trigger/feedback_trigger.py +132,Feedback conditions do not match,反馈条件不匹配 -apps/frappe/frappe/core/doctype/doctype/doctype.py +566,Timeline field must be a valid fieldname,时间轴场必须是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +570,Timeline field must be a valid fieldname,时间轴场必须是有效的字段名 DocType: Currency,Symbol,符号 -apps/frappe/frappe/model/base_document.py +535,Row #{0}:,行#{0}: +apps/frappe/frappe/model/base_document.py +534,Row #{0}:,行#{0}: apps/frappe/frappe/core/doctype/user/user.py +140,New password emailed,新密码已通过电子邮件发送 apps/frappe/frappe/auth.py +245,Login not allowed at this time,不允许在这个时候登录 DocType: Email Account,Email Sync Option,电子邮件同步选项 @@ -1577,7 +1575,7 @@ DocType: DocField,Text,文本 apps/frappe/frappe/config/setup.py +161,Standard replies to common queries.,常见查询的标注回复。 apps/frappe/frappe/email/doctype/email_account/email_account_list.js +14,Default Sending,默认发送账号 DocType: Workflow State,volume-off,volume-off -apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +160,Liked by {0},由喜欢{0} +apps/frappe/frappe/public/js/frappe/form/footer/timeline_item.html +161,Liked by {0},由喜欢{0} DocType: Footer Item,Footer Item,页脚项目 ,Download Backups,下载备份 apps/frappe/frappe/core/doctype/file/test_file.py +43,Home/Test Folder 1,首页/测试文件夹1 @@ -1612,7 +1610,7 @@ DocType: Web Page,Text Align,文本对齐 apps/frappe/frappe/model/naming.py +179,Name cannot contain special characters like {0},姓名不能包含特殊字符,如{0} DocType: Contact Us Settings,Forward To Email Address,转发到邮件地址 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +9,Show all data,显示所有数据 -apps/frappe/frappe/core/doctype/doctype/doctype.py +523,Title field must be a valid fieldname,标题字段必须是有效的字段名 +apps/frappe/frappe/core/doctype/doctype/doctype.py +527,Title field must be a valid fieldname,标题字段必须是有效的字段名 apps/frappe/frappe/config/core.py +7,Documents,文档 DocType: Email Flag Queue,Is Completed,完成了 apps/frappe/frappe/www/me.html +22,Edit Profile,编辑个人资料 @@ -1622,8 +1620,8 @@ DocType: Customize Form Field,"This field will appear only if the fieldname defi myfield eval:doc.myfield=='My Value' eval:doc.age>18",该字段将显示仅在此处定义的字段名具有值或规则是真实的(例子):MyField的EVAL:doc.myfield =='我的价值'的eval:doc.age> 18 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,今天 -apps/frappe/frappe/public/js/frappe/form/control.js +700,Today,今天 +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,今天 +apps/frappe/frappe/public/js/frappe/form/control.js +685,Today,今天 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +35,"Once you have set this, the users will only be able access documents (eg. Blog Post) where the link exists (eg. Blogger).",一旦你设置这个,用户将只能访问文档(如博客文章) ,其中链路存在(如Blogger的) 。 DocType: Error Log,Log of Scheduler Errors,日程安排程序错误日志 DocType: User,Bio,个人简历 @@ -1647,6 +1645,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +215,You are n apps/frappe/frappe/templates/emails/feedback_request_url.html +8,1 star being lowest & 5 stars being highest rating,1星表示最低和5星为最高评价 DocType: Event,Ref Name,参考名称 DocType: Web Page,Center,中心 +DocType: Email Alert,Value To Be Set,价值待定 apps/frappe/frappe/core/doctype/error_snapshot/error_snapshot_list.js +11,First Level,第一级 DocType: Workflow Document State,Represents the states allowed in one document and role assigned to change the state.,代表一个文档和角色分配给改变国家允许的状态。 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +71,Refresh Form,刷新表格 @@ -1667,18 +1666,18 @@ DocType: DocType,Has Web View,具有Web视图 apps/frappe/frappe/core/doctype/doctype/doctype.py +377,"DocType's name should start with a letter and it can only consist of letters, numbers, spaces and underscores",的DocType的名称应以字母开始,它只能由字母,数字,空格和下划线 DocType: Communication,Spam,垃圾邮件 DocType: Integration Request,Integration Request,集成请求 -apps/frappe/frappe/public/js/frappe/views/communication.js +533,Dear,亲爱 +apps/frappe/frappe/public/js/frappe/views/communication.js +553,Dear,亲爱 DocType: Address,Maharashtra,马哈拉施特拉邦 DocType: Address,Accounts User,会计人员 DocType: Web Page,HTML for header section. Optional,HTML的标题部分。可选 apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +13,This feature is brand new and still experimental,此功能是全新的,仍处于试验阶段 -apps/frappe/frappe/model/rename_doc.py +364,Maximum {0} rows allowed,仅允许最多{0}行 +apps/frappe/frappe/model/rename_doc.py +365,Maximum {0} rows allowed,仅允许最多{0}行 DocType: Email Unsubscribe,Global Unsubscribe,全球退订 apps/frappe/frappe/utils/password_strength.py +157,This is a very common password.,这是一个非常普遍的密码。 apps/frappe/frappe/email/doctype/email_group/email_group.js +9,View,视图 DocType: Communication,Assigned,分配 DocType: Print Format,Js,JS -apps/frappe/frappe/public/js/frappe/views/communication.js +78,Select Print Format,选择打印格式 +apps/frappe/frappe/public/js/frappe/views/communication.js +77,Select Print Format,选择打印格式 apps/frappe/frappe/utils/password_strength.py +83,Short keyboard patterns are easy to guess,短键盘模式容易被猜中 DocType: Portal Settings,Portal Menu,门户网站菜单 apps/frappe/frappe/model/db_schema.py +114,Length of {0} should be between 1 and 1000,的{0}长度应介于1和1000之间 @@ -1717,7 +1716,7 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +84,Export Cu DocType: DocType,User Cannot Search,用户不能搜索 apps/frappe/frappe/email/doctype/auto_email_report/auto_email_report.py +83,Invalid Output Format,无效的输出格式 DocType: Custom DocPerm,Apply this rule if the User is the Owner,应用此规则如果用户是业主 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +500,Will be your login ID,将是您的登录ID +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +512,Will be your login ID,将是您的登录ID apps/frappe/frappe/desk/page/activity/activity.js +76,Build Report,生成报告 DocType: Note,Notify users with a popup when they log in,通知用户有一个弹出登录时 apps/frappe/frappe/model/rename_doc.py +117,"{0} {1} does not exist, select a new target to merge",{0} {1}不存在,选择一个新的目标合并 @@ -1736,17 +1735,18 @@ DocType: User Permission for Page and Report,Roles Permission,角色权限 apps/frappe/frappe/core/doctype/role_permission_for_page_and_report/role_permission_for_page_and_report.js +14,Update,更新 DocType: Error Snapshot,Snapshot View,快照视图 apps/frappe/frappe/email/doctype/newsletter/newsletter.py +100,Please save the Newsletter before sending,请在发送之前保存通讯 -apps/frappe/frappe/core/doctype/doctype/doctype.py +422,Options must be a valid DocType for field {0} in row {1},选项必须是字段的有效的DocType {0}行{1} +apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0}年前 +apps/frappe/frappe/core/doctype/doctype/doctype.py +426,Options must be a valid DocType for field {0} in row {1},选项必须是字段的有效的DocType {0}行{1} apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +167,Edit Properties,编辑属性 DocType: Patch Log,List of patches executed,已应用补丁列表 apps/frappe/frappe/email/doctype/email_unsubscribe/email_unsubscribe.py +21,{0} already unsubscribed,{0}已经退订 -apps/frappe/frappe/public/js/frappe/views/communication.js +70,Communication Medium,通信介质 +apps/frappe/frappe/public/js/frappe/views/communication.js +69,Communication Medium,通信介质 DocType: Website Settings,Banner HTML,横幅HTML apps/frappe/frappe/integrations/doctype/razorpay_settings/razorpay_settings.py +82,Please select another payment method. Razorpay does not support transactions in currency '{0}',请选择其他付款方式。 Razorpay不支持货币交易“{0}” apps/frappe/frappe/integrations/doctype/dropbox_settings/dropbox_settings.py +29,Queued for backup. It may take a few minutes to an hour.,排队等待备份。这可能需要几分钟到一个小时。 DocType: Error Snapshot,Pyver,Pyver apps/frappe/frappe/config/integrations.py +53,Register OAuth Client App,注册OAuth客户端应用程序 -apps/frappe/frappe/model/base_document.py +539,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1}不能为“{2}”。它应该是一个“{3}” +apps/frappe/frappe/model/base_document.py +538,"{0} {1} cannot be ""{2}"". It should be one of ""{3}""",{0} {1}不能为“{2}”。它应该是一个“{3}” apps/frappe/frappe/utils/data.py +565,{0} or {1},{0}或{1} apps/frappe/frappe/core/page/modules_setup/modules_setup.js +4,Show or Hide Desktop Icons,显示或隐藏桌面图标 apps/frappe/frappe/core/doctype/user/user.py +231,Password Update,密码更新 @@ -1773,7 +1773,7 @@ apps/frappe/frappe/desk/form/assign_to.py +143,"The task {0}, that you assigned DocType: Print Format,Show Line Breaks after Sections,章节后,显示换行符 DocType: Blogger,Short Name,简称 apps/frappe/frappe/website/doctype/web_form/templates/web_form.html +241,Page {0},第{0} -apps/frappe/frappe/email/doctype/email_account/email_account.js +182,"You are selecting Sync Option as ALL, It will resync all \ +apps/frappe/frappe/email/doctype/email_account/email_account.js +183,"You are selecting Sync Option as ALL, It will resync all \ read as well as unread message from server. This may also cause the duplication\ of Communication (emails).",你是所有选择同步选项,它会重新同步所有\读取以及未读邮件从服务器。这也可能会导致通信(电子邮件)的重复数据删除\。 apps/frappe/frappe/core/page/usage_info/usage_info.html +95,Files Size,文件大小 @@ -1785,6 +1785,7 @@ DocType: Contact,Purchase Manager,采购经理 DocType: Custom Script,Sample,样本 apps/frappe/frappe/public/js/frappe/list/list_sidebar.js +389,UnCategorised Tags,未分类标签 DocType: Event,Every Week,每周 +apps/frappe/frappe/email/smtp.py +158,Email Account not setup. Please create a new Email Account from Setup > Email > Email Account,电子邮件帐户未设置。请从设置>电子邮件>电子邮件帐户创建一个新的电子邮件帐户 apps/frappe/frappe/limits.py +195,Click here to check your usage or upgrade to a higher plan,点击此处查询您的使用或升级到更高的计划 DocType: Custom Field,Is Mandatory Field,是否必须项 DocType: User,Website User,网站用户 @@ -1808,16 +1809,17 @@ apps/frappe/frappe/core/doctype/communication/communication.py +52,Cannot create DocType: Portal Settings,Custom Sidebar Menu,自定义工具栏菜单 DocType: Workflow State,pencil,铅笔 apps/frappe/frappe/config/desk.py +32,Chat messages and other notifications.,聊天信息和其他通知。 -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,Insert After cannot be set as {0},插入不能设置为后{0} +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +76,Insert After cannot be set as {0},插入不能设置为后{0} apps/frappe/frappe/public/js/frappe/form/share.js +57,Share {0} with,分享{0} apps/frappe/frappe/public/js/frappe/desk.js +134,Email Account setup please enter your password for: ,电子邮件帐户设置,请输入您的密码: DocType: Workflow State,hand-up,hand-up DocType: Blog Settings,Writers Introduction,作者简介 DocType: Address,Phone,电话 -apps/frappe/frappe/email/doctype/email_alert/email_alert.py +239,Error while evaluating Email Alert {0}. Please fix your template.,出错评估电邮提示{0}。请修正您的模板。 +apps/frappe/frappe/email/doctype/email_alert/email_alert.py +244,Error while evaluating Email Alert {0}. Please fix your template.,出错评估电邮提示{0}。请修正您的模板。 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +140,Select Document Type or Role to start.,选择文档类型或角色来开始。 DocType: Contact,Passive,被动 DocType: Contact,Accounts Manager,会计经理 +apps/frappe/frappe/templates/pages/integrations/payment-cancel.html +11,Your payment is cancelled.,您的付款已取消。 apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +719,Select File Type,选择文件类型 DocType: Help Article,Knowledge Base Editor,知识库编辑器 apps/frappe/frappe/public/js/frappe/views/container.js +57,Page not found,找不到网页 @@ -1845,6 +1847,7 @@ DocType: Property Setter,Property Type,物业类型 DocType: Workflow State,screenshot,screenshot apps/frappe/frappe/core/doctype/report/report.py +33,Only Administrator can save a standard report. Please rename and save.,只有管理员可以保存一个标准的报告。请重新命名并保存。 DocType: System Settings,Background Workers,背景工人 +apps/frappe/frappe/core/doctype/doctype/doctype.py +779,Fieldname {0} conflicting with meta object,字段名{0}与元对象冲突 DocType: Deleted Document,Data,数据 apps/frappe/frappe/public/js/frappe/model/model.js +27,Document Status,文档状态 apps/frappe/frappe/core/page/desktop/desktop_help_message.html +5,You have made {0} of {1},你已经做了{0} {1} @@ -1869,7 +1872,7 @@ DocType: Currency,"How should this currency be formatted? If not set, will use s apps/frappe/frappe/core/page/permission_manager/permission_manager.js +252,Show User Permissions,显示用户权限 apps/frappe/frappe/utils/response.py +134,You need to be logged in and have System Manager Role to be able to access backups.,您需要先登录,并具有系统管理员角色才能够访问备份。 apps/frappe/frappe/core/page/usage_info/usage_info.html +22,Remaining,剩余 -apps/frappe/frappe/public/js/legacy/form.js +139,Please save before attaching.,请安装前保存。 +apps/frappe/frappe/public/js/legacy/form.js +137,Please save before attaching.,请安装前保存。 apps/frappe/frappe/public/js/frappe/form/link_selector.js +124,Added {0} ({1}),已添加{0}({1}) apps/frappe/frappe/website/doctype/website_theme/website_theme.js +20,Default theme is set in {0},默认主题是设置{0} apps/frappe/frappe/custom/doctype/customize_form/customize_form.py +319,Fieldtype cannot be changed from {0} to {1} in row {2},排{2}中的字段类型不能从{0}更改为{1} @@ -1890,11 +1893,10 @@ apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,会话开 apps/frappe/frappe/public/js/frappe/desk.js +38,Session Start Failed,会话开始失败 apps/frappe/frappe/email/queue.py +454,This email was sent to {0} and copied to {1},此电子邮件发送到{0},并复制到{1} DocType: Workflow State,th,th -apps/frappe/frappe/email/smtp.py +57,Please setup default Email Account from Setup > Email > Email Account,请从设置>电子邮件>电子邮件帐户设置默认电子邮件帐户 -apps/frappe/frappe/public/js/frappe/form/control.js +1470,Create a new {0},创建一个新的{0} +apps/frappe/frappe/public/js/frappe/form/control.js +1432,Create a new {0},创建一个新的{0} DocType: Email Rule,Is Spam,是垃圾邮件 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +193,Report {0},报告{0} -apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +14,Open {0},打开{0} +apps/frappe/frappe/public/js/frappe/form/templates/form_links.html +13,Open {0},打开{0} DocType: OAuth Client,Default Redirect URI,默认重定向URI DocType: Email Alert,Recipients,收件人 DocType: Workflow State,ok-sign,ok-sign @@ -1912,6 +1914,7 @@ apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +59,Shared DocType: Help Category,Help Articles,帮助文章 ,Modules Setup,模块设置 apps/frappe/frappe/core/page/data_import_tool/exporter.py +268,Type:,类型: +apps/frappe/frappe/templates/pages/integrations/payment-failed.html +11,Your payment has failed.,您的付款失败。 DocType: Communication,Unshared,非共享 DocType: Address,Karnataka,卡纳塔克邦 apps/frappe/frappe/desk/moduleview.py +84,Module Not Found,模块未找到 @@ -1959,7 +1962,7 @@ DocType: Website Settings,Brand Image,品牌形象 DocType: Print Settings,A4,A4 apps/frappe/frappe/config/website.py +58,"Setup of top navigation bar, footer and logo.",顶部导航栏,页脚和Logo的设置。 DocType: Web Form Field,Max Value,最大值 -apps/frappe/frappe/core/doctype/doctype/doctype.py +651,For {0} at level {1} in {2} in row {3},对行{3},{2}中级别{1}的{0} +apps/frappe/frappe/core/doctype/doctype/doctype.py +655,For {0} at level {1} in {2} in row {3},对行{3},{2}中级别{1}的{0} DocType: Contact,All,所有 DocType: Email Queue,Recipient,收件人 DocType: Communication,Has Attachment,有附件 @@ -1976,7 +1979,8 @@ DocType: Workflow State,align-right,右对齐 DocType: Auto Email Report,Email To,通过电子邮件发送给 apps/frappe/frappe/core/doctype/file/file.py +211,Folder {0} is not empty,文件夹{0}非空 DocType: Page,Roles,角色 -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +269,Field {0} is not selectable.,域{0}是不可选择的。 +apps/frappe/frappe/model/base_document.py +430,Error: Value missing for {0}: {1},错误:{0}缺少值:{1} +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +286,Field {0} is not selectable.,域{0}是不可选择的。 DocType: System Settings,Session Expiry,会话过期 DocType: Workflow State,ban-circle,禁至圆圈 DocType: Email Flag Queue,Unread,未读 @@ -1991,7 +1995,7 @@ apps/frappe/frappe/utils/password_strength.py +153,This is a top-10 common passw DocType: User,User Defaults,用户默认 apps/frappe/frappe/public/js/frappe/views/treeview.js +223,Create New,创建新的 DocType: Workflow State,chevron-down,V形向下 -apps/frappe/frappe/public/js/frappe/views/communication.js +494,Email not sent to {0} (unsubscribed / disabled),电子邮件不会被发送到{0}(退订/禁用) +apps/frappe/frappe/public/js/frappe/views/communication.js +495,Email not sent to {0} (unsubscribed / disabled),电子邮件不会被发送到{0}(退订/禁用) DocType: Async Task,Traceback,追溯 DocType: Currency,Smallest Currency Fraction Value,最小的货币分数值 apps/frappe/frappe/public/js/frappe/form/footer/assign_to.js +137,Assign To,分配给 @@ -2002,12 +2006,12 @@ DocType: User,Restrict user from this IP address only. Multiple IP addresses can DocType: Communication,From,从 DocType: Website Theme,Google Font (Heading),谷歌字体(标题) apps/frappe/frappe/public/js/frappe/views/treeview.js +204,Select a group node first.,请先选择一个组节点。 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +229,Find {0} in {1},在{1}中找到{0} +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +232,Find {0} in {1},在{1}中找到{0} DocType: OAuth Client,Implicit,含蓄 DocType: Email Account,"Append as communication against this DocType (must have fields, ""Status"", ""Subject"")",作为此文档类型的交流信息添加(必须有“状态”和“主题”字段) DocType: OAuth Client,"URIs for receiving authorization code once the user allows access, as well as failure responses. Typically a REST endpoint exposed by the Client App.
e.g. http://hostname//api/method/frappe.www.login.login_via_facebook",的URI,用于接收授权代码一旦用户允许访问,以及失败的响应。通常,REST端点的客户端应用程序暴露出来。
例如http://hostname//api/method/frappe.www.login.login_via_facebook -apps/frappe/frappe/model/base_document.py +602,Not allowed to change {0} after submission,不允许提交后更改{0} +apps/frappe/frappe/model/base_document.py +601,Not allowed to change {0} after submission,不允许提交后更改{0} DocType: Communication,Comment Type,评论类型 DocType: OAuth Client,OAuth Client,OAuth客户端 apps/frappe/frappe/core/page/usage_info/usage_info.html +10,Users,用户 @@ -2022,7 +2026,7 @@ apps/frappe/frappe/core/doctype/file/file.py +343,Unable to read file format for DocType: Auto Email Report,Filter Data,过滤数据 DocType: Auto Email Report,Filter Data,过滤数据 apps/frappe/frappe/public/js/frappe/ui/tags.js +20,Add a tag,添加标签 -apps/frappe/frappe/public/js/frappe/form/control.js +1284,Please attach a file first.,请附上文件第一。 +apps/frappe/frappe/public/js/frappe/form/control.js +1250,Please attach a file first.,请附上文件第一。 apps/frappe/frappe/model/naming.py +168,"There were some errors setting the name, please contact the administrator",设置名称时出现错误,请与管理员联系 apps/frappe/frappe/email/doctype/email_domain/email_domain.py +41,Incoming email account not correct,收到的电子邮件帐户不正确 apps/frappe/frappe/templates/includes/contact.js +17,"You seem to have written your name instead of your email. \ @@ -2037,11 +2041,11 @@ DocType: Blog Post,Email Sent,邮件已发送 DocType: DocField,Ignore XSS Filter,忽略XSS过滤器 apps/frappe/frappe/public/js/frappe/form/footer/timeline.js +480,removed,去除 apps/frappe/frappe/config/integrations.py +33,Dropbox backup settings,Dropbox的备份设置 -apps/frappe/frappe/public/js/frappe/views/communication.js +64,Send As Email,作为电子邮件发送 +apps/frappe/frappe/public/js/frappe/views/communication.js +63,Send As Email,作为电子邮件发送 DocType: Website Theme,Link Color,链接颜色 apps/frappe/frappe/core/doctype/user/user.py +99,User {0} cannot be disabled,用户{0}不能被禁用 apps/frappe/frappe/core/doctype/user/user.py +866,"Dear System Manager,",亲爱的系统管理器, -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +465,Your Country,你的国家 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +477,Your Country,你的国家 DocType: Event,Sunday,星期天 apps/frappe/frappe/core/doctype/doctype/doctype.js +36,In Grid View,在网格视图 DocType: Address Template,Template,模板 @@ -2049,7 +2053,7 @@ DocType: Address,Delhi,新德里 apps/frappe/frappe/config/integrations.py +48,LDAP Settings,LDAP设置 apps/frappe/frappe/public/js/frappe/form/save.js +14,Amending,修订 apps/frappe/frappe/config/integrations.py +18,PayPal payment gateway settings,贝宝支付网关设置 -apps/frappe/frappe/model/base_document.py +580,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:“{1}”({3})将被截断,因为允许的上限字符为{2} +apps/frappe/frappe/model/base_document.py +579,"{0}: '{1}' ({3}) will get truncated, as max characters allowed is {2}",{0}:“{1}”({3})将被截断,因为允许的上限字符为{2} DocType: OAuth Client,Resource Owner Password Credentials,资源所有者密码凭据 DocType: OAuth Client,Response Type,响应类型 apps/frappe/frappe/core/page/usage_info/usage_info.html +21,Max Users,最大用户 @@ -2066,7 +2070,7 @@ DocType: DocField,Table,表 DocType: File,File Size,文件大小 apps/frappe/frappe/website/doctype/web_form/web_form.py +399,You must login to submit this form,您必须登录才能提交此表单 DocType: User,Background Image,背景图片 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +463,"Select your Country, Time Zone and Currency",设置你的国家,时区和货币 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +475,"Select your Country, Time Zone and Currency",设置你的国家,时区和货币 apps/frappe/frappe/desk/page/setup_wizard/install_fixtures.py +16,Mx,MX apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +16,Between,之间 DocType: Async Task,Queued,排队 @@ -2075,6 +2079,7 @@ apps/frappe/frappe/public/js/frappe/form/print.js +101,New Custom Print Format, DocType: Custom DocPerm,Create,创建 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +204,Invalid Filter: {0},无效的过滤器: {0} DocType: Email Account,no failed attempts,没有失败的尝试 +apps/frappe/frappe/contacts/doctype/address/address.py +170,No default Address Template found. Please create a new one from Setup > Printing and Branding > Address Template.,未找到默认地址模板。请从设置>打印和品牌>地址模板创建一个新的。 DocType: GSuite Settings,refresh_token,refresh_token DocType: Dropbox Settings,App Access Key,应用程序访问密钥 DocType: OAuth Bearer Token,Access Token,访问令牌 @@ -2092,8 +2097,8 @@ apps/frappe/frappe/email/doctype/email_account/email_account.py +85,Append To ca DocType: User,Github Username,Github用户名 DocType: DocType,Image View,图像查看 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +179,"Looks like something went wrong during the transaction. Since we haven't confirmed the payment, Paypal will automatically refund you this amount. If it doesn't, please send us an email and mention the Correlation ID: {0}.",似乎发生在交易过程中错误的。因为我们还没有确认付款,支付宝会自动退还你这一数额。如果没有,请给我们发邮件并注明相关ID:{0}。 -apps/frappe/frappe/public/js/frappe/form/control.js +585,"Include symbols, numbers and capital letters in the password",在密码中加入符号,数字和大写字母 -apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +68,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",插入自定义字段“{0}”提到的后场“{1}”,标记为“{2}”不存在 +apps/frappe/frappe/public/js/frappe/form/control.js +574,"Include symbols, numbers and capital letters in the password",在密码中加入符号,数字和大写字母 +apps/frappe/frappe/custom/doctype/custom_field/custom_field.py +72,"Insert After field '{0}' mentioned in Custom Field '{1}', with label '{2}', does not exist",插入自定义字段“{0}”提到的后场“{1}”,标记为“{2}”不存在 DocType: Workflow State,signal,signal DocType: DocType,Show Print First,首先显示打印 apps/frappe/frappe/desk/page/chat/chat_main.html +12,Ctrl + Enter to post,Ctrl + Enter发布 @@ -2124,14 +2129,15 @@ apps/frappe/frappe/model/document.py +1043,This document is currently queued for apps/frappe/frappe/core/doctype/file/file.py +370,File '{0}' not found,文件'{0}'未找到 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +411,Remove Section,删除部分 DocType: User,Change Password,更改密码 -apps/frappe/frappe/public/js/frappe/form/control.js +509,Invalid Email: {0},无效的电子邮件: {0} -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +434,Hello!,你好! +apps/frappe/frappe/public/js/frappe/form/control.js +498,Invalid Email: {0},无效的电子邮件: {0} +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +446,Hello!,你好! apps/frappe/frappe/desk/doctype/event/event.py +23,Event end must be after start,活动结束必须在活动开始后 apps/frappe/frappe/desk/query_report.py +23,You don't have permission to get a report on: {0},你没有权限获得{0}的报表 +DocType: System Settings,Apply Strict User Permissions,应用严格的用户权限 DocType: DocField,Allow Bulk Edit,允许批量修改 DocType: DocField,Allow Bulk Edit,允许批量修改 DocType: Blog Post,Blog Post,博客文章 -apps/frappe/frappe/public/js/frappe/form/control.js +1480,Advanced Search,高级搜索 +apps/frappe/frappe/public/js/frappe/form/control.js +1442,Advanced Search,高级搜索 apps/frappe/frappe/core/doctype/user/user.py +766,Password reset instructions have been sent to your email,密码重置说明已发送到您的电子邮件 apps/frappe/frappe/core/page/permission_manager/permission_manager.js +383,"Level 0 is for document level permissions, \ higher levels for field level permissions.",级别0是用于文档级别权限,\更高级别的字段级权限。 @@ -2150,16 +2156,15 @@ DocType: Web Page,Sidebar and Comments,边栏和评论 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +18,"When you Amend a document after Cancel and save it, it will get a new number that is a version of the old number.",当你修订一个已取消和保存的文档时,文档会复制为一个副本。 DocType: Stripe Settings,Publishable Key,可发布密钥 DocType: Stripe Settings,Publishable Key,可发布密钥 -apps/frappe/frappe/public/js/frappe/misc/pretty_date.js +54,> {0} year(s) ago,> {0}年前 DocType: Workflow State,circle-arrow-left,圆圈箭头向左 apps/frappe/frappe/sessions.py +156,Redis cache server not running. Please contact Administrator / Tech support,Redis缓存服务器无法运行。请联系管理员/技术支持 apps/frappe/frappe/contacts/report/addresses_and_contacts/addresses_and_contacts.js +23,Party Name,方名称 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +129,Make a new record,创建新记录 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +132,Make a new record,创建新记录 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,搜索 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_header.html +4,Searching,搜索 DocType: Currency,Fraction,分数 DocType: LDAP Settings,LDAP First Name Field,LDAP名现场 -apps/frappe/frappe/public/js/frappe/form/control.js +1026,Select from existing attachments,从现有的附件选择 +apps/frappe/frappe/public/js/frappe/form/control.js +1000,Select from existing attachments,从现有的附件选择 DocType: Custom Field,Field Description,字段说明 apps/frappe/frappe/model/naming.py +53,Name not set via Prompt,名称未通过提示符设置 apps/frappe/frappe/public/js/frappe/ui/toolbar/search_utils.js +235,Email Inbox,收件箱 @@ -2205,11 +2210,10 @@ apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +77,You are not apps/frappe/frappe/core/page/data_import_tool/exporter.py +269,Info:,信息: DocType: Custom Field,Permission Level,权限级别 DocType: User,Send Notifications for Transactions I Follow,发送通知进行交易我跟随 -apps/frappe/frappe/core/doctype/doctype/doctype.py +694,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :没有写入的情况下不能设置“提交”,“取消”,“修订” +apps/frappe/frappe/core/doctype/doctype/doctype.py +698,"{0}: Cannot set Submit, Cancel, Amend without Write",{0} :没有写入的情况下不能设置“提交”,“取消”,“修订” apps/frappe/frappe/public/js/frappe/form/footer/attachments.js +83,Are you sure you want to delete the attachment?,您确定要删除的附件? -apps/frappe/frappe/model/delete_doc.py +185,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","无法删除或取消,因为{0} {1}相链接{2} {3}" -apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +357,

No results found for '

,

没有找到结果'

-apps/frappe/frappe/__init__.py +1063,Thank you,谢谢 +apps/frappe/frappe/model/delete_doc.py +186,"Cannot delete or cancel because {0} {1} is linked with {2} {3}","无法删除或取消,因为{0} {1}相链接{2} {3}" +apps/frappe/frappe/__init__.py +1062,Thank you,谢谢 apps/frappe/frappe/public/js/frappe/form/save.js +11,Saving,保存 DocType: Print Settings,Print Style Preview,打印样式预览 apps/frappe/frappe/core/doctype/file/test_file.py +81,Test_Folder,Test_Folder @@ -2221,10 +2225,10 @@ DocType: DocField,In List View,在列表视图 DocType: Email Account,Use TLS,使用TLS apps/frappe/frappe/email/smtp.py +24,Invalid login or password,无效的登录名或密码 apps/frappe/frappe/config/setup.py +237,Add custom javascript to forms.,为表单添加自定义的Java Script。 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +489,Sr No,SR无 +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +488,Sr No,SR无 ,Role Permissions Manager,角色权限管理 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +117,Name of the new Print Format,新打印格式的名称 -apps/frappe/frappe/public/js/frappe/form/control.js +1028,Clear Attachment,清除附件 +apps/frappe/frappe/public/js/frappe/form/control.js +1002,Clear Attachment,清除附件 apps/frappe/frappe/core/page/data_import_tool/exporter.py +267,Mandatory:,必须项: ,User Permissions Manager,用户权限管理 DocType: Property Setter,New value to be set,要设置的新值 @@ -2254,26 +2258,26 @@ apps/frappe/frappe/public/js/frappe/list/list_renderer.js +497,2 days ago,2天 apps/frappe/frappe/config/website.py +47,Categorize blog posts.,分类博客文章。 DocType: Workflow State,Time,时间 DocType: DocField,Attach,附件 -apps/frappe/frappe/core/doctype/doctype/doctype.py +535,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAME}}。 +apps/frappe/frappe/core/doctype/doctype/doctype.py +539,{{{0}}} is not a valid fieldname pattern. It should be {{field_name}}.,{{{0}}}是不是一个有效的字段名模式。它应该是{{FIELD_NAME}}。 DocType: Feedback Trigger,Send Feedback Request only if there is at least one communication is available for the document.,发送反馈请求仅当有至少一个通信是可用于文档。 DocType: Custom Role,Permission Rules,权限规则 DocType: GSuite Settings,GSuite Settings,GSuite设置 DocType: Address,Links,链接 -apps/frappe/frappe/model/base_document.py +428,Value missing for,缺少值 +apps/frappe/frappe/model/base_document.py +427,Value missing for,缺少值 apps/frappe/frappe/public/js/frappe/views/treeview.js +161,Add Child,添加子项 -apps/frappe/frappe/model/delete_doc.py +165,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提交记录不能被删除。 +apps/frappe/frappe/model/delete_doc.py +166,{0} {1}: Submitted Record cannot be deleted.,{0} {1}:提交记录不能被删除。 apps/frappe/frappe/core/page/usage_info/usage_info.html +99,Backup Size,备份大小 DocType: GSuite Templates,Template Name,模板名称 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +130,new type of document,新类型的文件 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,new type of document,新类型的文件 DocType: Custom DocPerm,Read,阅读 DocType: Role Permission for Page and Report,Role Permission for Page and Report,角色权限页和报告 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +460,Align Value,对齐值 apps/frappe/frappe/www/update-password.html +14,Old Password,旧密码 -apps/frappe/frappe/website/doctype/blog_post/blog_post.py +102,Posts by {0},帖子{0} +apps/frappe/frappe/website/doctype/blog_post/blog_post.py +106,Posts by {0},帖子{0} apps/frappe/frappe/core/doctype/report/report.js +9,"To format columns, give column labels in the query.",要格式化列,给列标签在查询中。 DocType: Has Domain,Has Domain,有域名 apps/frappe/frappe/www/login.html +72,Don't have an account? Sign up,还没有账号?注册 -apps/frappe/frappe/core/doctype/doctype/doctype.py +721,{0}: Cannot set Assign Amend if not Submittable,{0} :没有“提交”的情况下不能分配“修订” +apps/frappe/frappe/core/doctype/doctype/doctype.py +725,{0}: Cannot set Assign Amend if not Submittable,{0} :没有“提交”的情况下不能分配“修订” DocType: Address,Bihar,比哈尔邦 apps/frappe/frappe/core/page/user_permissions/user_permissions.js +14,Edit Role Permissions,编辑角色权限 DocType: Communication,Link DocType,链接的DocType @@ -2373,7 +2377,7 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +81,Please make sure t apps/frappe/frappe/utils/oauth.py +232,Please ensure that your profile has an email address,请确保您的个人资料有一个电子邮件地址, apps/frappe/frappe/public/js/frappe/model/create_new.js +286,You have unsaved changes in this form. Please save before you continue.,本表单中存在未保存的修改,请先保存后继续使用。 DocType: Address,Telangana,特兰伽纳 -apps/frappe/frappe/core/doctype/doctype/doctype.py +455,Default for {0} must be an option,默认为{0}必须是一种选择 +apps/frappe/frappe/core/doctype/doctype/doctype.py +459,Default for {0} must be an option,默认为{0}必须是一种选择 DocType: Tag Doc Category,Tag Doc Category,标签单据类别 DocType: User,User Image,用户图片 apps/frappe/frappe/email/queue.py +289,Emails are muted,邮件已被静音 @@ -2406,7 +2410,7 @@ apps/frappe/frappe/public/js/frappe/form/workflow.js +39,Next actions,下一步 DocType: Workflow State,ok,ok DocType: User,These values will be automatically updated in transactions and also will be useful to restrict permissions for this user on transactions containing these values.,这些值将在交易中自动更新,也将是有益的权限限制在含有这些值交易这个用户。 apps/frappe/frappe/desk/page/applications/application_row.html +26,Publisher,出版者 -apps/frappe/frappe/model/rename_doc.py +377,** Failed: {0} to {1}: {2},**失败:{0} {1}:{2} +apps/frappe/frappe/model/rename_doc.py +378,** Failed: {0} to {1}: {2},**失败:{0} {1}:{2} apps/frappe/frappe/core/page/data_import_tool/data_import_main.html +23,Select Mandatory,强制性选择 apps/frappe/frappe/public/js/frappe/ui/upload.html +4,Browse,浏览 apps/frappe/frappe/core/page/usage_info/usage_info.html +50,Emails Sent,发送电子邮件 @@ -2418,7 +2422,7 @@ DocType: Async Task,Running,正在运行 apps/frappe/frappe/core/doctype/user/user.js +68,Reset Password,重设密码 apps/frappe/frappe/email/doctype/email_group/email_group.py +102,Please Upgrade to add more than {0} subscribers,请升级增加超过{0}用户 DocType: Workflow State,hand-left,hand-left -apps/frappe/frappe/core/doctype/doctype/doctype.py +468,Fieldtype {0} for {1} cannot be unique,FIELDTYPE {0} {1}不能是唯一的 +apps/frappe/frappe/core/doctype/doctype/doctype.py +472,Fieldtype {0} for {1} cannot be unique,FIELDTYPE {0} {1}不能是唯一的 DocType: Email Account,Use SSL,使用SSL DocType: Workflow State,play-circle,玩圈 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +82,Select Print Format to Edit,选择要编辑的打印格式 @@ -2473,7 +2477,7 @@ DocType: DocField,No Copy,没有复制 DocType: Workflow State,qrcode,qrcode apps/frappe/frappe/www/login.html +34,Login with LDAP,与LDAP登录 DocType: Web Form,Breadcrumbs,面包屑导航 -apps/frappe/frappe/core/doctype/doctype/doctype.py +667,If Owner,如果业主 +apps/frappe/frappe/core/doctype/doctype/doctype.py +671,If Owner,如果业主 DocType: OAuth Authorization Code,Expiration time,到期时间 DocType: Web Page,Website Sidebar,网站边栏 DocType: Web Form,Show Sidebar,显示侧边栏 @@ -2493,7 +2497,7 @@ apps/frappe/frappe/utils/bot.py +145,Could not find {0} in {1},找不到{0} {1} apps/frappe/frappe/utils/password_strength.py +167,Names and surnames by themselves are easy to guess.,自己名字和姓氏很容易被猜到。 apps/frappe/frappe/config/website.py +93,Knowledge Base,知识库 DocType: Workflow State,briefcase,公文包 -apps/frappe/frappe/model/base_document.py +561,Value cannot be changed for {0},值不能被改变为{0} +apps/frappe/frappe/model/base_document.py +560,Value cannot be changed for {0},值不能被改变为{0} DocType: Feedback Request,Is Manual,为手动 DocType: Workflow State,"Style represents the button color: Success - Green, Danger - Red, Inverse - Black, Primary - Dark Blue, Info - Light Blue, Warning - Orange",风格代表按钮的颜色:成功 - 绿色,危险 - 红色,逆向 - 黑色,主要 - 深蓝色,信息 - 浅蓝,警告 - 橙色 apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +158,No Report Loaded. Please use query-report/[Report Name] to run a report.,无报告加载。请使用查询报告/ [报告名称]运行报告。 @@ -2572,7 +2576,7 @@ apps/frappe/frappe/public/js/frappe/socketio_client.js +51,Progress,进展 apps/frappe/frappe/public/js/frappe/form/workflow.js +32, by Role ,按角色 apps/frappe/frappe/public/js/frappe/form/save.js +148,Missing Fields,丢失的字段 apps/frappe/frappe/core/doctype/doctype/doctype.py +188,Invalid fieldname '{0}' in autoname,在自动命名无效字段名“{0}” -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +133,Search in a document type,在文档类型中搜索 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +136,Search in a document type,在文档类型中搜索 apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +259,Allow field to remain editable even after submission,允许提交后继续编辑字段 DocType: Custom DocPerm,Role and Level,角色和级别 DocType: File,Thumbnail URL,缩略图网址 @@ -2589,19 +2593,20 @@ apps/frappe/frappe/core/page/data_import_tool/importer.py +49,Please do not chan apps/frappe/frappe/public/js/frappe/ui/toolbar/navbar.html +94,(Ctrl + G),(按Ctrl + G) DocType: Contact,More Information,更多信息 DocType: Desktop Icon,Desktop Icon,桌面图标 -apps/frappe/frappe/templates/pages/integrations/payment-success.html +10,Your payment was successfully accepted,您的付款已成功接受 +apps/frappe/frappe/templates/pages/integrations/payment-success.html +11,Your payment was successfully accepted,您的付款已成功接受 apps/frappe/frappe/public/js/frappe/views/pageview.js +112,Sorry! You are not permitted to view this page.,抱歉,你不允许查看此页面。 apps/frappe/frappe/public/js/frappe/views/reports/reportview_footer.html +16,Tip: Double click cell to edit,提示:双击单元格以编辑 DocType: Workflow State,bell,铃声 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,电子邮件警报中出错 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +108,Error in Email Alert,电子邮件警报中出错 apps/frappe/frappe/public/js/frappe/form/templates/set_sharing.html +39,Share this document with,分享这个文件 +apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +33,Setup > User Permissions Manager,设置>用户权限管理器 apps/frappe/frappe/utils/nestedset.py +235,{0} {1} cannot be a leaf node as it has children,{0} {1}不能是一个叶节点,因为它有下级 DocType: Communication,Info,信息 -apps/frappe/frappe/public/js/frappe/views/communication.js +336,Add Attachment,添加附件 +apps/frappe/frappe/public/js/frappe/views/communication.js +337,Add Attachment,添加附件 DocType: Communication,Email,邮件 apps/frappe/frappe/templates/includes/contact.js +30,Thank you for your message,谢谢您的留言 -apps/frappe/frappe/public/js/frappe/views/communication.js +68,Send Read Receipt,发送阅读回执 +apps/frappe/frappe/public/js/frappe/views/communication.js +67,Send Read Receipt,发送阅读回执 DocType: Stripe Settings,Stripe Settings,条纹设置 DocType: Stripe Settings,Stripe Settings,条纹设置 DocType: Dropbox Settings,Dropbox Setup via Site Config,通过站点配置的Dropbox设置 @@ -2679,6 +2684,7 @@ DocType: DocType,Web View,Web视图 apps/frappe/frappe/public/js/frappe/form/print.js +169,Warning: This Print Format is in old style and cannot be generated via the API.,警告:此打印格式是旧式的,不能透过API生成的。 DocType: DocField,Print Width,打印宽度 ,Setup Wizard,设置向导 +DocType: Address,GST State Number,GST州号 DocType: User,Allow user to login only before this hour (0-24),仅允许用户在此时前登录(0-24时) apps/frappe/frappe/core/doctype/file/file.py +125,Folder is mandatory,文件夹是必需的 apps/frappe/frappe/email/doctype/email_alert/email_alert.py +106,"Not allowed to attach {0} document, @@ -2707,7 +2713,7 @@ apps/frappe/frappe/templates/emails/auto_reply.html +1,Thank you for your email, DocType: DocField,Small Text,短文 apps/frappe/frappe/core/doctype/user/user.py +868,Administrator accessed {0} on {1} via IP Address {2}.,管理员访问{0}在{1}通过IP地址{2}。 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +6,Equals,等号 -apps/frappe/frappe/core/doctype/doctype/doctype.py +449,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',选择“动态链接”类型的字段都必须指向另一个链接字段的选项为'的DocType“ +apps/frappe/frappe/core/doctype/doctype/doctype.py +453,Options 'Dynamic Link' type of field must point to another Link Field with options as 'DocType',选择“动态链接”类型的字段都必须指向另一个链接字段的选项为'的DocType“ DocType: About Us Settings,Team Members Heading,团队成员标题 apps/frappe/frappe/utils/csvutils.py +35,Invalid CSV Format,CSV格式无效。 apps/frappe/frappe/desk/page/backups/backups.js +8,Set Number of Backups,设置备份数量 @@ -2718,7 +2724,7 @@ DocType: Contact,Contact,联系人 DocType: User,Third Party Authentication,第三方认证 DocType: Website Settings,Banner is above the Top Menu Bar.,横幅在顶部菜单上方。 DocType: Razorpay Settings,API Secret,API揭秘 -apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +859,Export Report: ,导出报告: +apps/frappe/frappe/public/js/frappe/views/reports/query_report.js +858,Export Report: ,导出报告: apps/frappe/frappe/public/js/frappe/views/kanban/kanban_board.js +695,{0} {1} does not exist,{0} {1}不存在 DocType: Email Account,Port,端口 DocType: Print Format,Arial,宋体 @@ -2741,7 +2747,7 @@ DocType: Kanban Board Column,Column Name,列名 DocType: Language,Based On,基于 apps/frappe/frappe/printing/doctype/print_format/print_format.js +34,Make Default,使默认 apps/frappe/frappe/integrations/doctype/social_login_keys/social_login_keys.py +31,Check Frappe Server URL,检查冰沙服务器URL -apps/frappe/frappe/core/doctype/doctype/doctype.py +491,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1}不能进行索引 +apps/frappe/frappe/core/doctype/doctype/doctype.py +495,Fieldtype {0} for {1} cannot be indexed,FIELDTYPE {0} {1}不能进行索引 DocType: Communication,Email Account,邮件帐户 DocType: Workflow State,Download,下载 DocType: Blog Post,Blog Intro,博客介绍 @@ -2752,7 +2758,7 @@ DocType: Web Page,Insert Code,插入代码 DocType: ToDo,Low,低 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder.js +697,You can add dynamic properties from the document by using Jinja templating.,您可以通过Jinja模板来添加文档的动态属性。 apps/frappe/frappe/commands/site.py +451,Invalid limit {0},无效限制{0} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +131,List a document type,列出某文件类型 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,List a document type,列出某文件类型 DocType: Event,Ref Type,参考类型 apps/frappe/frappe/core/page/data_import_tool/exporter.py +64,"If you are uploading new records, leave the ""name"" (ID) column blank.",如果你在上传新纪录,那么“名称”列必须留空。 DocType: Address,Chattisgarh,恰蒂斯加尔 @@ -2774,26 +2780,26 @@ apps/frappe/frappe/email/doctype/email_group/email_group.js +45,New Newsletter, DocType: Print Settings,Send Print as PDF,使用PDF格式发送打印 DocType: Web Form,Amount,量 DocType: Workflow Transition,Allowed,已允许 -apps/frappe/frappe/core/doctype/doctype/doctype.py +498,There can be only one Fold in a form,一个表单只能有一个折叠 +apps/frappe/frappe/core/doctype/doctype/doctype.py +502,There can be only one Fold in a form,一个表单只能有一个折叠 apps/frappe/frappe/core/doctype/file/file.py +198,Unable to write file format for {0},无法写入{0}的文件格式 apps/frappe/frappe/website/doctype/portal_settings/portal_settings.js +10,Restore to default settings?,恢复到默认设置? apps/frappe/frappe/website/doctype/website_settings/website_settings.py +23,Invalid Home Page,无效的主页 apps/frappe/frappe/templates/includes/login/login.js +192,Invalid Login. Try again.,登录无效。再试一次。 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},行{1}中链接或表类型字段{0}所需的选项 -apps/frappe/frappe/core/doctype/doctype/doctype.py +416,Options required for Link or Table type field {0} in row {1},行{1}中链接或表类型字段{0}所需的选项 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},行{1}中链接或表类型字段{0}所需的选项 +apps/frappe/frappe/core/doctype/doctype/doctype.py +420,Options required for Link or Table type field {0} in row {1},行{1}中链接或表类型字段{0}所需的选项 DocType: Auto Email Report,Send only if there is any data,仅发送,如果有任何数据 apps/frappe/frappe/public/js/frappe/views/reports/grid_report.js +170,Reset Filters,重设过滤器 -apps/frappe/frappe/core/doctype/doctype/doctype.py +684,{0}: Permission at level 0 must be set before higher levels are set,{0} :更高级别的权限设置前请先设置0级权限 +apps/frappe/frappe/core/doctype/doctype/doctype.py +688,{0}: Permission at level 0 must be set before higher levels are set,{0} :更高级别的权限设置前请先设置0级权限 apps/frappe/frappe/desk/doctype/todo/todo.py +28,Assignment closed by {0},指配由{0}关闭 DocType: Integration Request,Remote,远程 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,Calculate,计算 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +140,Calculate,计算 apps/frappe/frappe/printing/doctype/print_format/print_format.js +28,Please select DocType first,请首先选择的DocType apps/frappe/frappe/email/doctype/newsletter/newsletter.py +173,Confirm Your Email,确认您的电子邮件 apps/frappe/frappe/www/login.html +42,Or login with,或登录 DocType: Error Snapshot,Locals,当地人 apps/frappe/frappe/desk/page/activity/activity_row.html +19,Communicated via {0} on {1}: {2},通过传达{0}在{1} {2} apps/frappe/frappe/core/doctype/communication/comment.py +85,{0} mentioned you in a comment in {1},{0}在留言中提到你{1} -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +138,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)... +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +141,e.g. (55 + 434) / 4 or =Math.sin(Math.PI/2)...,例如:(55 + 434)/ 4 =或Math.sin(Math.PI / 2)... apps/frappe/frappe/model/naming.py +44,{0} is required,{0}是必填项 DocType: Integration Request,Integration Type,整合型 DocType: Newsletter,Send Attachements,发送附着物 @@ -2803,15 +2809,15 @@ DocType: DocField,Perm Level,权限等级 apps/frappe/frappe/desk/doctype/event/event.py +54,Events In Today's Calendar,今日事件 DocType: Web Page,Web Page,网页 DocType: Blog Category,Blogger,博客作者 -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” -apps/frappe/frappe/core/doctype/doctype/doctype.py +441,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” +apps/frappe/frappe/core/doctype/doctype/doctype.py +445,'In Global Search' not allowed for type {0} in row {1},行{1}中的类型{0}不允许“全局搜索” apps/frappe/frappe/public/js/frappe/views/treeview.js +297,View List,查看列表 -apps/frappe/frappe/public/js/frappe/form/control.js +739,Date must be in format: {0},日期格式必须是: {0} +apps/frappe/frappe/public/js/frappe/form/control.js +721,Date must be in format: {0},日期格式必须是: {0} DocType: Workflow,Don't Override Status,不要覆盖状态 apps/frappe/frappe/www/feedback.html +90,Please give a rating.,请给予评级。 apps/frappe/frappe/public/js/frappe/feedback.js +47,{0} Feedback Request,{0} 请求反馈 apps/frappe/frappe/public/js/frappe/form/multi_select_dialog.js +26,Search term,搜索词 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +493,The First User: You,第一个用户:您 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +505,The First User: You,第一个用户:您 apps/frappe/frappe/printing/page/print_format_builder/print_format_builder_field.html +32,Select Columns,选择列 DocType: Translation,Source Text,源文本 apps/frappe/frappe/www/login.py +55,Missing parameters for login,缺少参数登录 @@ -2833,7 +2839,7 @@ apps/frappe/frappe/public/js/frappe/list/list_view.js +664,Select records for as apps/frappe/frappe/core/page/data_import_tool/data_import_tool.js +138,Importing,输入 DocType: ToDo,Assigned By,通过分配 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +27,You can use Customize Form to set levels on fields.,你可以使用自定义表单设置字段的级别。 -apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +461,Select Your Region,选择您的地区 +apps/frappe/frappe/desk/page/setup_wizard/setup_wizard.js +473,Select Your Region,选择您的地区 DocType: Custom DocPerm,Level,级别 DocType: Custom DocPerm,Report,报告 apps/frappe/frappe/website/doctype/web_form/web_form.py +61,Amount must be greater than 0.,量必须大于0。 @@ -2853,7 +2859,7 @@ DocType: Website Theme,Background,背景 DocType: Custom DocPerm,"JSON list of DocTypes used to apply User Permissions. If empty, all linked DocTypes will be used to apply User Permissions.",用于设置用户权限的JSON文档类型列表。如果留空,所有关联的文档类型都会用来设置用户权限。 DocType: Report,Ref DocType,参考的DocType apps/frappe/frappe/www/feedback.py +42,Please add a rating,请添加评分 -apps/frappe/frappe/core/doctype/doctype/doctype.py +696,{0}: Cannot set Amend without Cancel,{0} :没有“取消”的情况下不能设置“修订” +apps/frappe/frappe/core/doctype/doctype/doctype.py +700,{0}: Cannot set Amend without Cancel,{0} :没有“取消”的情况下不能设置“修订” apps/frappe/frappe/public/js/frappe/form/templates/print_layout.html +22,Full Page,全页 DocType: DocType,Is Child Table,是否子表 apps/frappe/frappe/utils/csvutils.py +124,{0} must be one of {1},{0}必须属于{1} @@ -2868,7 +2874,7 @@ DocType: Website Slideshow,This goes above the slideshow.,这正好幻灯片上 apps/frappe/frappe/config/setup.py +260,Install Applications.,安装应用程序。 DocType: Contact,Last Name,姓 DocType: Event,Private,私人 -apps/frappe/frappe/email/doctype/email_alert/email_alert.js +76,No alerts for today,没有警报今天 +apps/frappe/frappe/email/doctype/email_alert/email_alert.js +77,No alerts for today,没有警报今天 DocType: Print Settings,Send Email Print Attachments as PDF (Recommended),使用PDF格式发送打印附件(推荐) DocType: Web Page,Left,离开 DocType: Event,All Day,全日 @@ -2882,7 +2888,7 @@ DocType: Event,Send an email reminder in the morning,在早上发送邮件提醒 DocType: Blog Post,Published On,发表于 DocType: Contact,Gender,性别 apps/frappe/frappe/website/doctype/web_form/web_form.py +342,Mandatory Information missing:,强制性信息丢失: -apps/frappe/frappe/core/doctype/doctype/doctype.py +488,Field '{0}' cannot be set as Unique as it has non-unique values,现场“{0}”不能设置独一无二的,因为它具有非唯一值 +apps/frappe/frappe/core/doctype/doctype/doctype.py +492,Field '{0}' cannot be set as Unique as it has non-unique values,现场“{0}”不能设置独一无二的,因为它具有非唯一值 apps/frappe/frappe/client.py +140,Only 200 inserts allowed in one request,只有200将允许一个请求 DocType: Footer Item,URL,网址 DocType: ToDo,Reference Type,参考类型 @@ -2895,7 +2901,7 @@ apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +30 DocType: Workflow State,warning-sign,警告标识 DocType: Workflow State,User,用户 DocType: Website Settings,"Show title in browser window as ""Prefix - title""",标题显示在浏览器窗口中的“前缀 - 标题” -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +134,text in document type,在文件类型的文本 +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +137,text in document type,在文件类型的文本 apps/frappe/frappe/core/doctype/test_runner/test_runner.js +7,Run Tests,运行测试 apps/frappe/frappe/handler.py +91,Logged Out,登出 apps/frappe/frappe/public/js/frappe/ui/toolbar/search.js +237,More...,更多... @@ -2921,13 +2927,13 @@ apps/frappe/frappe/custom/doctype/customize_form/customize_form.js +90,Sync on M apps/frappe/frappe/public/js/frappe/form/templates/form_sidebar.html +64,Currently Viewing,目前查看 DocType: DocField,Default,默认 apps/frappe/frappe/public/js/frappe/form/link_selector.js +143,{0} added,{0} 成功添加 -apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +209,Search for '{0}',搜索“{0}” +apps/frappe/frappe/public/js/frappe/ui/toolbar/awesome_bar.js +212,Search for '{0}',搜索“{0}” apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +135,Please save the report first,请先保存报表 apps/frappe/frappe/email/doctype/email_group/email_group.py +42,{0} subscribers added,{0}新增用户 apps/frappe/frappe/public/js/frappe/ui/filters/edit_filter.html +9,Not In,在不 DocType: Workflow State,star,star -apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +215,values separated by commas,用逗号分隔的值 -apps/frappe/frappe/core/doctype/doctype/doctype.py +433,Max width for type Currency is 100px in row {0},行{0}中,货币类型的最大宽度是100像素 +apps/frappe/frappe/public/js/frappe/ui/filters/filters.js +228,values separated by commas,用逗号分隔的值 +apps/frappe/frappe/core/doctype/doctype/doctype.py +437,Max width for type Currency is 100px in row {0},行{0}中,货币类型的最大宽度是100像素 apps/frappe/frappe/www/feedback.html +68,Please share your feedback for {0},请分享您的反馈{0} apps/frappe/frappe/config/website.py +13,Content web page.,内容的网页。 apps/frappe/frappe/core/page/permission_manager/permission_manager_help.html +9,Add a New Role,新建角色 @@ -2946,7 +2952,7 @@ apps/frappe/frappe/public/js/frappe/desk.js +383,Please Enter Your Password to C apps/frappe/frappe/integrations/doctype/ldap_settings/ldap_settings.py +97,Not a valid LDAP user,不是有效的LDAP用户 apps/frappe/frappe/workflow/doctype/workflow/workflow.py +57,{0} not a valid State,{0}不是有效的国家 apps/frappe/frappe/integrations/doctype/paypal_settings/paypal_settings.py +90,Please select another payment method. PayPal does not support transactions in currency '{0}',请选择其他付款方式。贝宝不支持货币交易“{0}” -apps/frappe/frappe/core/doctype/doctype/doctype.py +515,Search field {0} is not valid,搜索栏{0}无效 +apps/frappe/frappe/core/doctype/doctype/doctype.py +519,Search field {0} is not valid,搜索栏{0}无效 DocType: Workflow State,ok-circle,ok-circle apps/frappe/frappe/utils/bot.py +150,You can find things by asking 'find orange in customers',你可以通过问“找到橙客户找东西 apps/frappe/frappe/core/doctype/user/user.py +172,Sorry! User should have complete access to their own record.,抱歉,用户必须对自己的记录拥有完全的访问权。 @@ -3007,7 +3013,7 @@ apps/frappe/frappe/public/js/frappe/views/reports/reportview.js +734,Export Repo DocType: Auto Email Report,Filter Meta,过滤元 DocType: Web Form,Text to be displayed for Link to Web Page if this form has a web page. Link route will be automatically generated based on `page_name` and `parent_website_route`,如果此表单有网页的话,请输入页面链接的显示文本。链接会自动按照`页面名称`和`上级网站链接`生成 DocType: Feedback Request,Feedback Trigger,反馈触发 -apps/frappe/frappe/public/js/frappe/form/control.js +1697,Please set {0} first,请设置{0}第一 +apps/frappe/frappe/public/js/frappe/form/control.js +1656,Please set {0} first,请设置{0}第一 DocType: Unhandled Email,Message-id,邮件ID DocType: Patch Log,Patch,补丁 DocType: Async Task,Failed,失败 diff --git a/frappe/utils/backups.py b/frappe/utils/backups.py index 3bebd62a7a..d3a7b74ac4 100644 --- a/frappe/utils/backups.py +++ b/frappe/utils/backups.py @@ -217,7 +217,8 @@ def backup(with_files=False, backup_path_db=None, backup_path_files=None, quiet= odb = scheduled_backup(ignore_files=not with_files, backup_path_db=backup_path_db, backup_path_files=backup_path_files, force=True) return { "backup_path_db": odb.backup_path_db, - "backup_path_files": odb.backup_path_files + "backup_path_files": odb.backup_path_files, + "backup_path_private_files": odb.backup_path_private_files } if __name__ == "__main__": diff --git a/frappe/utils/formatters.py b/frappe/utils/formatters.py index 824b5a5411..bf5a81e4f7 100644 --- a/frappe/utils/formatters.py +++ b/frappe/utils/formatters.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals import frappe import datetime -from frappe.utils import formatdate, fmt_money, flt, cstr, cint, format_datetime +from frappe.utils import formatdate, fmt_money, flt, cstr, cint, format_datetime, format_time from frappe.model.meta import get_field_currency, get_field_precision import re @@ -20,6 +20,8 @@ def format_value(value, df=None, doc=None, currency=None, translated=False): df.fieldtype = 'Datetime' elif isinstance(value, datetime.date): df.fieldtype = 'Date' + elif isinstance(value, datetime.timedelta): + df.fieldtype = 'Time' elif isinstance(value, int): df.fieldtype = 'Int' elif isinstance(value, float): @@ -45,6 +47,9 @@ def format_value(value, df=None, doc=None, currency=None, translated=False): elif df.get("fieldtype")=="Datetime": return format_datetime(value) + elif df.get("fieldtype")=="Time": + return format_time(value) + elif value==0 and df.get("fieldtype") in ("Int", "Float", "Currency", "Percent") and df.get("print_hide_if_no_value"): # this is required to show 0 as blank in table columns return "" diff --git a/frappe/utils/jinja.py b/frappe/utils/jinja.py index f5848b4d07..1fd9a0d85c 100644 --- a/frappe/utils/jinja.py +++ b/frappe/utils/jinja.py @@ -22,6 +22,22 @@ def get_jenv(): def get_template(path): return get_jenv().get_template(path) +def get_email_from_template(name, args): + from jinja2 import TemplateNotFound + + args = args or {} + try: + message = get_template('templates/emails/' + name + '.html').render(args) + except TemplateNotFound: + message = None + + try: + text_content = get_template('templates/emails/' + name + '.txt').render(args) + except TemplateNotFound: + text_content = None + + return (message, text_content) + def validate_template(html): """Throws exception if there is a syntax error in the Jinja Template""" import frappe @@ -41,6 +57,9 @@ def render_template(template, context, is_path=None): :param context: dict of properties to pass to the template :param is_path: (optional) assert that the `template` parameter is a path''' + if not template: + return "" + # if it ends with .html then its a freaking path, not html if (is_path or template.startswith("templates/")